entities
listlengths 1
44.6k
| max_stars_repo_path
stringlengths 6
160
| max_stars_repo_name
stringlengths 6
66
| max_stars_count
int64 0
47.9k
| content
stringlengths 18
1.04M
| id
stringlengths 1
6
| new_content
stringlengths 18
1.04M
| modified
bool 1
class | references
stringlengths 32
1.52M
|
---|---|---|---|---|---|---|---|---|
[
{
"context": "bc/execute! db-spec [\"INSERT INTO TEST VALUES(1, 'John', 'Wayne')\"])\n (jdbc/execute! db-spec [\"INSERT",
"end": 4325,
"score": 0.999850869178772,
"start": 4321,
"tag": "NAME",
"value": "John"
},
{
"context": "te! db-spec [\"INSERT INTO TEST VALUES(1, 'John', 'Wayne')\"])\n (jdbc/execute! db-spec [\"INSERT INTO TES",
"end": 4334,
"score": 0.9997923374176025,
"start": 4329,
"tag": "NAME",
"value": "Wayne"
},
{
"context": "bc/execute! db-spec [\"INSERT INTO TEST VALUES(2, 'Elton', 'John')\"])\n (is (= 2 (count (jdbc/query db-s",
"end": 4402,
"score": 0.9997855424880981,
"start": 4397,
"tag": "NAME",
"value": "Elton"
},
{
"context": "e! db-spec [\"INSERT INTO TEST VALUES(2, 'Elton', 'John')\"])\n (is (= 2 (count (jdbc/query db-spec [\"SE",
"end": 4410,
"score": 0.9998634457588196,
"start": 4406,
"tag": "NAME",
"value": "John"
},
{
"context": "b-spec [\"SELECT * FROM FTL_SEARCH_DATA('LAST_NAME:John', 0, 0)\"]))))\n (jdbc/execute! db-spec [\"CALL F",
"end": 4595,
"score": 0.9997393488883972,
"start": 4591,
"tag": "NAME",
"value": "John"
}
] |
test/clj/cwiki/test/models/h2_upgrade.clj
|
clartaq/cwiki
| 3 |
;;;;
;;;; This file provides a test to assure that the upgrade of the H2 database
;;;; from version 1.4.197 to 1.4.199, along with the concomitant upgrade of
;;;; Lucene from version 3.6.2 to 5.5.5, works correctly.
;;;;
(ns cwiki.test.models.h2-upgrade
(:require [clojure.java.io :as io]
[clojure.java.jdbc :as jdbc]
[clojure.test :refer :all])
(:import (java.io File)))
(defn remove-from-end
"Remove any instance of 'end' from the end of string s
and return the result."
[s end]
(if (.endsWith s end)
(.substring s 0 (- (count s)
(count end)))
s))
(defn get-test-db-file-name []
(str (-> (File. ".")
.getAbsolutePath
(remove-from-end "."))
"test/data/db/h2_update_test.db"))
(defn get-test-db-spec []
{:classname "org.h2.Driver"
:subprotocol "h2:file"
:subname (get-test-db-file-name)
:make-pool? true})
;-------------------------------------------------------------------------------
; A few useful file utilities to set up / take down the database.
;-------------------------------------------------------------------------------
(defn get-parent
"Return the parent directory of the file."
[file-name-and-path]
(File. (.getParent ^File (File. ^String file-name-and-path))))
(defn make-parents
"Create all of the parent directories of the file."
[file-name-and-path]
(when-let [parent (get-parent file-name-and-path)]
(.mkdirs parent)))
(defn delete-files-recursively
"Delete the given file. If the file is a directory, all files in the
directory and all subdirectories are also removed. Raises an exception
on failure. Otherwise, returns nil."
[file-name-and-path]
(letfn [(delete-function [file-or-dir-name]
(when (.isDirectory file-or-dir-name)
(doseq [child-file-or-dir (.listFiles file-or-dir-name)]
(delete-function child-file-or-dir)))
(io/delete-file file-or-dir-name))]
(delete-function (io/file file-name-and-path))))
(defn delete-parent
"Delete the parent directory of the file, including all other children
that may exist"
[file-name-and-path]
(when-let [parent (get-parent file-name-and-path)]
(when (and (.isDirectory parent)
(.exists parent))
(delete-files-recursively parent))))
;-------------------------------------------------------------------------------
; The test.
;-------------------------------------------------------------------------------
(deftest hello-ftl-test
(testing "The simple 'Hello World' Lucene full text search demo from the H2 documentation."
;; Delete any pre-existing versions of the test database files and
;; directories. Then make sure the needed parent directories are present.
(delete-parent (get-test-db-file-name))
(make-parents (get-test-db-file-name))
(let [db-spec (get-test-db-spec)]
(jdbc/execute! db-spec ["CREATE ALIAS IF NOT EXISTS FTL_INIT FOR \"org.h2.fulltext.FullTextLucene.init\";"])
(jdbc/execute! db-spec ["CALL FTL_INIT();"])
(jdbc/execute! db-spec ["CREATE TABLE TEST(ID INT PRIMARY KEY, NAME VARCHAR);"])
(jdbc/execute! db-spec ["INSERT INTO TEST VALUES(1, 'Hello World');"])
(jdbc/execute! db-spec ["CALL FTL_CREATE_INDEX('PUBLIC', 'TEST', NULL);"])
(is (= 1 (count (jdbc/query db-spec ["SELECT * FROM FTL_SEARCH('Hello', 0, 0);"]))))
(jdbc/execute! db-spec ["CALL FTL_DROP_ALL()"]))))
(deftest ftl-setup-test
(testing "The ability to setup and use full text search with the H2 database 1.4.198 and later")
;; Delete any pre-existing versions of the test database files and
;; directories. Then make sure the needed parent directories are present.
(delete-parent (get-test-db-file-name))
(make-parents (get-test-db-file-name))
(let [db-spec (get-test-db-spec)]
(jdbc/execute! db-spec ["CREATE ALIAS IF NOT EXISTS FTL_INIT FOR \"org.h2.fulltext.FullTextLucene.init\""])
(jdbc/execute! db-spec ["CALL FTL_INIT()"])
(jdbc/execute! db-spec ["DROP TABLE IF EXISTS TEST"])
(jdbc/execute! db-spec ["CREATE TABLE TEST(ID INT PRIMARY KEY, FIRST_NAME VARCHAR, LAST_NAME VARCHAR)"])
(jdbc/execute! db-spec ["CALL FTL_CREATE_INDEX('PUBLIC', 'TEST', NULL)"])
(jdbc/execute! db-spec ["INSERT INTO TEST VALUES(1, 'John', 'Wayne')"])
(jdbc/execute! db-spec ["INSERT INTO TEST VALUES(2, 'Elton', 'John')"])
(is (= 2 (count (jdbc/query db-spec ["SELECT * FROM FTL_SEARCH_DATA('John', 0, 0)"]))))
(is (= 1 (count (jdbc/query db-spec ["SELECT * FROM FTL_SEARCH_DATA('LAST_NAME:John', 0, 0)"]))))
(jdbc/execute! db-spec ["CALL FTL_DROP_ALL()"])))
|
81519
|
;;;;
;;;; This file provides a test to assure that the upgrade of the H2 database
;;;; from version 1.4.197 to 1.4.199, along with the concomitant upgrade of
;;;; Lucene from version 3.6.2 to 5.5.5, works correctly.
;;;;
(ns cwiki.test.models.h2-upgrade
(:require [clojure.java.io :as io]
[clojure.java.jdbc :as jdbc]
[clojure.test :refer :all])
(:import (java.io File)))
(defn remove-from-end
"Remove any instance of 'end' from the end of string s
and return the result."
[s end]
(if (.endsWith s end)
(.substring s 0 (- (count s)
(count end)))
s))
(defn get-test-db-file-name []
(str (-> (File. ".")
.getAbsolutePath
(remove-from-end "."))
"test/data/db/h2_update_test.db"))
(defn get-test-db-spec []
{:classname "org.h2.Driver"
:subprotocol "h2:file"
:subname (get-test-db-file-name)
:make-pool? true})
;-------------------------------------------------------------------------------
; A few useful file utilities to set up / take down the database.
;-------------------------------------------------------------------------------
(defn get-parent
"Return the parent directory of the file."
[file-name-and-path]
(File. (.getParent ^File (File. ^String file-name-and-path))))
(defn make-parents
"Create all of the parent directories of the file."
[file-name-and-path]
(when-let [parent (get-parent file-name-and-path)]
(.mkdirs parent)))
(defn delete-files-recursively
"Delete the given file. If the file is a directory, all files in the
directory and all subdirectories are also removed. Raises an exception
on failure. Otherwise, returns nil."
[file-name-and-path]
(letfn [(delete-function [file-or-dir-name]
(when (.isDirectory file-or-dir-name)
(doseq [child-file-or-dir (.listFiles file-or-dir-name)]
(delete-function child-file-or-dir)))
(io/delete-file file-or-dir-name))]
(delete-function (io/file file-name-and-path))))
(defn delete-parent
"Delete the parent directory of the file, including all other children
that may exist"
[file-name-and-path]
(when-let [parent (get-parent file-name-and-path)]
(when (and (.isDirectory parent)
(.exists parent))
(delete-files-recursively parent))))
;-------------------------------------------------------------------------------
; The test.
;-------------------------------------------------------------------------------
(deftest hello-ftl-test
(testing "The simple 'Hello World' Lucene full text search demo from the H2 documentation."
;; Delete any pre-existing versions of the test database files and
;; directories. Then make sure the needed parent directories are present.
(delete-parent (get-test-db-file-name))
(make-parents (get-test-db-file-name))
(let [db-spec (get-test-db-spec)]
(jdbc/execute! db-spec ["CREATE ALIAS IF NOT EXISTS FTL_INIT FOR \"org.h2.fulltext.FullTextLucene.init\";"])
(jdbc/execute! db-spec ["CALL FTL_INIT();"])
(jdbc/execute! db-spec ["CREATE TABLE TEST(ID INT PRIMARY KEY, NAME VARCHAR);"])
(jdbc/execute! db-spec ["INSERT INTO TEST VALUES(1, 'Hello World');"])
(jdbc/execute! db-spec ["CALL FTL_CREATE_INDEX('PUBLIC', 'TEST', NULL);"])
(is (= 1 (count (jdbc/query db-spec ["SELECT * FROM FTL_SEARCH('Hello', 0, 0);"]))))
(jdbc/execute! db-spec ["CALL FTL_DROP_ALL()"]))))
(deftest ftl-setup-test
(testing "The ability to setup and use full text search with the H2 database 1.4.198 and later")
;; Delete any pre-existing versions of the test database files and
;; directories. Then make sure the needed parent directories are present.
(delete-parent (get-test-db-file-name))
(make-parents (get-test-db-file-name))
(let [db-spec (get-test-db-spec)]
(jdbc/execute! db-spec ["CREATE ALIAS IF NOT EXISTS FTL_INIT FOR \"org.h2.fulltext.FullTextLucene.init\""])
(jdbc/execute! db-spec ["CALL FTL_INIT()"])
(jdbc/execute! db-spec ["DROP TABLE IF EXISTS TEST"])
(jdbc/execute! db-spec ["CREATE TABLE TEST(ID INT PRIMARY KEY, FIRST_NAME VARCHAR, LAST_NAME VARCHAR)"])
(jdbc/execute! db-spec ["CALL FTL_CREATE_INDEX('PUBLIC', 'TEST', NULL)"])
(jdbc/execute! db-spec ["INSERT INTO TEST VALUES(1, '<NAME>', '<NAME>')"])
(jdbc/execute! db-spec ["INSERT INTO TEST VALUES(2, '<NAME>', '<NAME>')"])
(is (= 2 (count (jdbc/query db-spec ["SELECT * FROM FTL_SEARCH_DATA('John', 0, 0)"]))))
(is (= 1 (count (jdbc/query db-spec ["SELECT * FROM FTL_SEARCH_DATA('LAST_NAME:<NAME>', 0, 0)"]))))
(jdbc/execute! db-spec ["CALL FTL_DROP_ALL()"])))
| true |
;;;;
;;;; This file provides a test to assure that the upgrade of the H2 database
;;;; from version 1.4.197 to 1.4.199, along with the concomitant upgrade of
;;;; Lucene from version 3.6.2 to 5.5.5, works correctly.
;;;;
(ns cwiki.test.models.h2-upgrade
(:require [clojure.java.io :as io]
[clojure.java.jdbc :as jdbc]
[clojure.test :refer :all])
(:import (java.io File)))
(defn remove-from-end
"Remove any instance of 'end' from the end of string s
and return the result."
[s end]
(if (.endsWith s end)
(.substring s 0 (- (count s)
(count end)))
s))
(defn get-test-db-file-name []
(str (-> (File. ".")
.getAbsolutePath
(remove-from-end "."))
"test/data/db/h2_update_test.db"))
(defn get-test-db-spec []
{:classname "org.h2.Driver"
:subprotocol "h2:file"
:subname (get-test-db-file-name)
:make-pool? true})
;-------------------------------------------------------------------------------
; A few useful file utilities to set up / take down the database.
;-------------------------------------------------------------------------------
(defn get-parent
"Return the parent directory of the file."
[file-name-and-path]
(File. (.getParent ^File (File. ^String file-name-and-path))))
(defn make-parents
"Create all of the parent directories of the file."
[file-name-and-path]
(when-let [parent (get-parent file-name-and-path)]
(.mkdirs parent)))
(defn delete-files-recursively
"Delete the given file. If the file is a directory, all files in the
directory and all subdirectories are also removed. Raises an exception
on failure. Otherwise, returns nil."
[file-name-and-path]
(letfn [(delete-function [file-or-dir-name]
(when (.isDirectory file-or-dir-name)
(doseq [child-file-or-dir (.listFiles file-or-dir-name)]
(delete-function child-file-or-dir)))
(io/delete-file file-or-dir-name))]
(delete-function (io/file file-name-and-path))))
(defn delete-parent
"Delete the parent directory of the file, including all other children
that may exist"
[file-name-and-path]
(when-let [parent (get-parent file-name-and-path)]
(when (and (.isDirectory parent)
(.exists parent))
(delete-files-recursively parent))))
;-------------------------------------------------------------------------------
; The test.
;-------------------------------------------------------------------------------
(deftest hello-ftl-test
(testing "The simple 'Hello World' Lucene full text search demo from the H2 documentation."
;; Delete any pre-existing versions of the test database files and
;; directories. Then make sure the needed parent directories are present.
(delete-parent (get-test-db-file-name))
(make-parents (get-test-db-file-name))
(let [db-spec (get-test-db-spec)]
(jdbc/execute! db-spec ["CREATE ALIAS IF NOT EXISTS FTL_INIT FOR \"org.h2.fulltext.FullTextLucene.init\";"])
(jdbc/execute! db-spec ["CALL FTL_INIT();"])
(jdbc/execute! db-spec ["CREATE TABLE TEST(ID INT PRIMARY KEY, NAME VARCHAR);"])
(jdbc/execute! db-spec ["INSERT INTO TEST VALUES(1, 'Hello World');"])
(jdbc/execute! db-spec ["CALL FTL_CREATE_INDEX('PUBLIC', 'TEST', NULL);"])
(is (= 1 (count (jdbc/query db-spec ["SELECT * FROM FTL_SEARCH('Hello', 0, 0);"]))))
(jdbc/execute! db-spec ["CALL FTL_DROP_ALL()"]))))
(deftest ftl-setup-test
(testing "The ability to setup and use full text search with the H2 database 1.4.198 and later")
;; Delete any pre-existing versions of the test database files and
;; directories. Then make sure the needed parent directories are present.
(delete-parent (get-test-db-file-name))
(make-parents (get-test-db-file-name))
(let [db-spec (get-test-db-spec)]
(jdbc/execute! db-spec ["CREATE ALIAS IF NOT EXISTS FTL_INIT FOR \"org.h2.fulltext.FullTextLucene.init\""])
(jdbc/execute! db-spec ["CALL FTL_INIT()"])
(jdbc/execute! db-spec ["DROP TABLE IF EXISTS TEST"])
(jdbc/execute! db-spec ["CREATE TABLE TEST(ID INT PRIMARY KEY, FIRST_NAME VARCHAR, LAST_NAME VARCHAR)"])
(jdbc/execute! db-spec ["CALL FTL_CREATE_INDEX('PUBLIC', 'TEST', NULL)"])
(jdbc/execute! db-spec ["INSERT INTO TEST VALUES(1, 'PI:NAME:<NAME>END_PI', 'PI:NAME:<NAME>END_PI')"])
(jdbc/execute! db-spec ["INSERT INTO TEST VALUES(2, 'PI:NAME:<NAME>END_PI', 'PI:NAME:<NAME>END_PI')"])
(is (= 2 (count (jdbc/query db-spec ["SELECT * FROM FTL_SEARCH_DATA('John', 0, 0)"]))))
(is (= 1 (count (jdbc/query db-spec ["SELECT * FROM FTL_SEARCH_DATA('LAST_NAME:PI:NAME:<NAME>END_PI', 0, 0)"]))))
(jdbc/execute! db-spec ["CALL FTL_DROP_ALL()"])))
|
[
{
"context": ":> typography {:component \"div\"}\n [:div \"Hello, World Traveller!\"]]\n [:div \"Ready to conquer your jetlag the ne",
"end": 2075,
"score": 0.8709908723831177,
"start": 2060,
"tag": "NAME",
"value": "World Traveller"
}
] |
src/main/jetlag/views.cljs
|
olieidel/jetlag
| 3 |
(ns jetlag.views
(:require [cljs-time.core :as cljs-time]
[clojure.string :as str]
[jetlag.events :as events]
[jetlag.subs :as subs]
[re-frame.core :as rf :refer [dispatch subscribe]]
[reagent.core :as r]
;; material-ui, `:default` syntax is shadow-cljs specific
["@material-ui/core/AppBar" :default app-bar]
["@material-ui/core/Button" :default button]
["@material-ui/core/Card" :default card]
["@material-ui/core/CardContent" :default card-content]
["@material-ui/core/CardActions" :default card-actions]
["@material-ui/core/Checkbox" :default checkbox]
["@material-ui/core/Chip" :default chip]
["@material-ui/core/FormControl" :default form-control]
["@material-ui/core/FormControlLabel" :default form-control-label]
["@material-ui/core/Grid" :default grid]
["@material-ui/core/Input" :default input]
["@material-ui/core/InputLabel" :default input-label]
["@material-ui/core/MenuItem" :default menu-item]
["@material-ui/core/Select" :default select]
["@material-ui/core/TextField" :default text-field]
["@material-ui/core/Toolbar" :default toolbar]
["@material-ui/core/Typography" :default typography]
;; icons of material-ui
["@material-ui/icons/Alarm" :default alarm-icon]
["@material-ui/core/Paper" :default paper]
["@material-ui/icons/Place" :default place-icon]
["@material-ui/icons/WbSunny" :default sunny-icon]))
(defn- root-container [& children]
(into
[:<>
[:> app-bar {:position "static"}
[:> toolbar
[:> typography {:variant "h6" :color "inherit"} "Jetlag Ninja"]]]]
children))
(defn- header []
[:<>
[:> app-bar {:position "static"}
[:> toolbar
[:> typography {:variant "h6" :color "inherit"} "Jetlag Ninja"]]]
[:> typography {:component "div"}
[:div "Hello, World Traveller!"]]
[:div "Ready to conquer your jetlag the next time you travel?"]])
(defn- target-value [event]
(.. event -target -value))
(defn- parse-time-str [time-str]
(let [[hour minute] (map js/parseInt (str/split time-str #":"))]
{:hour hour
:minute minute}))
(defn- date-time->time-str [date-time]
(letfn [(pad-zero [s] (cond->> s (< s 10) (str "0")))]
(str
(pad-zero (cljs-time/hour date-time))
":"
(pad-zero (cljs-time/minute date-time)))))
(defn- form []
(let [bed-time-str (subscribe [::subs/bed-time-str])
melatonin-dose-mg (subscribe [::subs/melatonin-dose-mg])
sleep-duration-hours (subscribe [::subs/sleep-duration-hours])
time-zone-delta (subscribe [::subs/time-zone-delta])
use-light-box? (subscribe [::subs/use-light-box?])]
(fn []
[:> paper {:style {:margin-top "8px"}}
[:> grid {:container true
:spacing 16}
[:> grid {:alignItems "center"
:container true
:direction "row"
:display "flex"
:justify "center"
:xs 2}
[:> place-icon {:style {:font-size 24}}]]
[:> grid {:item true
:xs 10}
[:> form-control {:style {:width "100%"}}
[:> input-label {:htmlFor "time-zone-delta-helper"}
"Time Zone of Destination"]
(into
[:> select {:input (r/as-element [:> input {:name "time-zone-delta"
:id "time-zone-delta-helper"}])
:on-change #(dispatch [::events/set-time-zone-delta
(js/parseInt (target-value %))])
:value @time-zone-delta}
(mapcat (fn [i]
[^{:key (- i)}
[:> menu-item {:value (- i)}
(str i " hour" (if (> i 1) "s") " behind")]
^{:key i}
[:> menu-item {:value i}
(str i " hour" (if (> i 1) "s") " ahead")]])
(range 1 24))])]]
[:> grid {:alignItems "center"
:container true
:direction "row"
:display "flex"
:justify "center"
:xs 2}
[:> alarm-icon {:style {:font-size 24}}]]
[:> grid {:item true
:xs 5}
[:> text-field {:InputLabelProps #js {:shrink true}
:inputProps #js {:step 600}
:label "Bed Time"
:on-change #(dispatch [::events/set-bed-time
(parse-time-str (target-value %))])
:style {:width "100%"}
:type "time"
:value @bed-time-str}]]
[:> grid {:item true
:xs 5}
[:> form-control {:style {:width "100%"}}
[:> input-label {:htmlFor "sleep-duration-helper"} "Sleep Duration"]
(into
[:> select {:input (r/as-element [:> input {:name "sleep-duration"
:id "sleep-duration-helper"}])
:on-change #(dispatch [::events/set-sleep-duration
(target-value %)])
:value @sleep-duration-hours}
(for [i (range 4 10.5 0.5)]
^{:key i}
[:> menu-item {:value i}
(str i " hour" (if (> i 1) "s"))])])]]
[:> grid {:alignItems "center"
:container true
:direction "row"
:display "flex"
:justify "center"
:xs 2}
[:> sunny-icon {:style {:font-size 24}}]]
[:> grid {:item true
:xs 5}
[:> form-control {:style {:width "100%"}}
[:> input-label {:htmlFor "melatonin-dose"} "Melatonin Dose"]
[:> select {:input (r/as-element [:> input {:name "melatonin-dose"
:id "melatonin-dose-helper"}])
:on-change #(dispatch [::events/set-melatonin-dose-mg
(target-value %)])
:value @melatonin-dose-mg}
[:> menu-item {:value 0} "I won't take Melatonin"]
[:> menu-item {:value 0.5} "0.5mg"]
[:> menu-item {:value 3.0} "3.0mg"]]]]
[:> grid {:item true
:xs 5}
[:> form-control-label
{:control (r/as-element [:> checkbox {:checked @use-light-box?
:color "primary"
:on-change
#(dispatch [::events/use-light-box?
(.. % -target -checked)]) }])
:label "Use a light box"
:style {:width "100%"}}]]]])))
(defn- inverse-hint []
(let [consider-inverse-schedule? (subscribe [::subs/consider-inverse-schedule?])]
(fn []
(when @consider-inverse-schedule?
[:> card {:style {:margin-top "12px"}}
[:> card-content
[:> typography {:component "p"}
"Consider adapting \"the other way around the world\" -
you'll save time!"]]
[:> card-actions
[:> button {:color "secondary"
:on-click #(dispatch [::events/invert-time-zone-delta])
:size "small"}
"Good idea! Let's do it!"]]]))))
(defn- plan []
(let [schedule (subscribe [::subs/schedule])]
(fn []
(when @schedule
[:> grid {:container true
:spacing 16
:style {:margin-top "12px"}}
(for [{:keys [bed-time day t-min use-light-box-at
use-melatonin-at wake-time]} @schedule
:let
[extra-item-count (cond-> 0
use-light-box-at inc
use-melatonin-at inc)
small-width (case extra-item-count
0 6
1 4
2 3)]]
^{:key day}
[:> grid {:item true
:lg 3
:md 4
:sm 6
:xs 12}
[:> card {:style {:width "100%"}}
[:> card-content
[:> chip {:color "primary"
:label (str "Day " day)}]
[:> grid {:container true}
[:> grid {:item true
:sm small-width
:xs 6}
[:> grid {:container true}
[:> grid {:item true
:xs 12}
[:> typography {:component "h2"
:variant "headline"}
(date-time->time-str bed-time)]]
[:> grid {:item true
:xs 12}
[:> typography {:color "textSecondary"}
"Bed Time"]]]]
[:> grid {:item true
:sm small-width
:xs 6}
[:> grid {:container true}
[:> grid {:item true
:xs 12}
[:> typography {:component "h2"
:variant "headline"}
(date-time->time-str wake-time)]]
[:> grid {:item true
:xs 12}
[:> typography {:color "textSecondary"}
"Wake Time"]]]]
(when use-melatonin-at
[:> grid {:item true
:sm small-width
:xs 6}
[:> grid {:container true}
[:> grid {:item true
:xs 12}
[:> typography {:component "h2"
:variant "headline"}
(date-time->time-str use-melatonin-at)]]
[:> grid {:item true
:xs 12}
[:> typography {:color "textSecondary"}
"Take Melatonin"]]]])
(when use-light-box-at
[:> grid {:item true
:sm small-width
:xs 6}
[:> grid {:container true}
[:> grid {:item true
:xs 12}
[:> typography {:component "h2"
:variant "headline"}
(date-time->time-str use-light-box-at)]]
[:> grid {:item true
:xs 12}
[:> typography {:color "textSecondary"}
"Use Light Box"]]]])]]]])]))))
(defn main []
[root-container
[form]
[inverse-hint]
[plan]])
|
3010
|
(ns jetlag.views
(:require [cljs-time.core :as cljs-time]
[clojure.string :as str]
[jetlag.events :as events]
[jetlag.subs :as subs]
[re-frame.core :as rf :refer [dispatch subscribe]]
[reagent.core :as r]
;; material-ui, `:default` syntax is shadow-cljs specific
["@material-ui/core/AppBar" :default app-bar]
["@material-ui/core/Button" :default button]
["@material-ui/core/Card" :default card]
["@material-ui/core/CardContent" :default card-content]
["@material-ui/core/CardActions" :default card-actions]
["@material-ui/core/Checkbox" :default checkbox]
["@material-ui/core/Chip" :default chip]
["@material-ui/core/FormControl" :default form-control]
["@material-ui/core/FormControlLabel" :default form-control-label]
["@material-ui/core/Grid" :default grid]
["@material-ui/core/Input" :default input]
["@material-ui/core/InputLabel" :default input-label]
["@material-ui/core/MenuItem" :default menu-item]
["@material-ui/core/Select" :default select]
["@material-ui/core/TextField" :default text-field]
["@material-ui/core/Toolbar" :default toolbar]
["@material-ui/core/Typography" :default typography]
;; icons of material-ui
["@material-ui/icons/Alarm" :default alarm-icon]
["@material-ui/core/Paper" :default paper]
["@material-ui/icons/Place" :default place-icon]
["@material-ui/icons/WbSunny" :default sunny-icon]))
(defn- root-container [& children]
(into
[:<>
[:> app-bar {:position "static"}
[:> toolbar
[:> typography {:variant "h6" :color "inherit"} "Jetlag Ninja"]]]]
children))
(defn- header []
[:<>
[:> app-bar {:position "static"}
[:> toolbar
[:> typography {:variant "h6" :color "inherit"} "Jetlag Ninja"]]]
[:> typography {:component "div"}
[:div "Hello, <NAME>!"]]
[:div "Ready to conquer your jetlag the next time you travel?"]])
(defn- target-value [event]
(.. event -target -value))
(defn- parse-time-str [time-str]
(let [[hour minute] (map js/parseInt (str/split time-str #":"))]
{:hour hour
:minute minute}))
(defn- date-time->time-str [date-time]
(letfn [(pad-zero [s] (cond->> s (< s 10) (str "0")))]
(str
(pad-zero (cljs-time/hour date-time))
":"
(pad-zero (cljs-time/minute date-time)))))
(defn- form []
(let [bed-time-str (subscribe [::subs/bed-time-str])
melatonin-dose-mg (subscribe [::subs/melatonin-dose-mg])
sleep-duration-hours (subscribe [::subs/sleep-duration-hours])
time-zone-delta (subscribe [::subs/time-zone-delta])
use-light-box? (subscribe [::subs/use-light-box?])]
(fn []
[:> paper {:style {:margin-top "8px"}}
[:> grid {:container true
:spacing 16}
[:> grid {:alignItems "center"
:container true
:direction "row"
:display "flex"
:justify "center"
:xs 2}
[:> place-icon {:style {:font-size 24}}]]
[:> grid {:item true
:xs 10}
[:> form-control {:style {:width "100%"}}
[:> input-label {:htmlFor "time-zone-delta-helper"}
"Time Zone of Destination"]
(into
[:> select {:input (r/as-element [:> input {:name "time-zone-delta"
:id "time-zone-delta-helper"}])
:on-change #(dispatch [::events/set-time-zone-delta
(js/parseInt (target-value %))])
:value @time-zone-delta}
(mapcat (fn [i]
[^{:key (- i)}
[:> menu-item {:value (- i)}
(str i " hour" (if (> i 1) "s") " behind")]
^{:key i}
[:> menu-item {:value i}
(str i " hour" (if (> i 1) "s") " ahead")]])
(range 1 24))])]]
[:> grid {:alignItems "center"
:container true
:direction "row"
:display "flex"
:justify "center"
:xs 2}
[:> alarm-icon {:style {:font-size 24}}]]
[:> grid {:item true
:xs 5}
[:> text-field {:InputLabelProps #js {:shrink true}
:inputProps #js {:step 600}
:label "Bed Time"
:on-change #(dispatch [::events/set-bed-time
(parse-time-str (target-value %))])
:style {:width "100%"}
:type "time"
:value @bed-time-str}]]
[:> grid {:item true
:xs 5}
[:> form-control {:style {:width "100%"}}
[:> input-label {:htmlFor "sleep-duration-helper"} "Sleep Duration"]
(into
[:> select {:input (r/as-element [:> input {:name "sleep-duration"
:id "sleep-duration-helper"}])
:on-change #(dispatch [::events/set-sleep-duration
(target-value %)])
:value @sleep-duration-hours}
(for [i (range 4 10.5 0.5)]
^{:key i}
[:> menu-item {:value i}
(str i " hour" (if (> i 1) "s"))])])]]
[:> grid {:alignItems "center"
:container true
:direction "row"
:display "flex"
:justify "center"
:xs 2}
[:> sunny-icon {:style {:font-size 24}}]]
[:> grid {:item true
:xs 5}
[:> form-control {:style {:width "100%"}}
[:> input-label {:htmlFor "melatonin-dose"} "Melatonin Dose"]
[:> select {:input (r/as-element [:> input {:name "melatonin-dose"
:id "melatonin-dose-helper"}])
:on-change #(dispatch [::events/set-melatonin-dose-mg
(target-value %)])
:value @melatonin-dose-mg}
[:> menu-item {:value 0} "I won't take Melatonin"]
[:> menu-item {:value 0.5} "0.5mg"]
[:> menu-item {:value 3.0} "3.0mg"]]]]
[:> grid {:item true
:xs 5}
[:> form-control-label
{:control (r/as-element [:> checkbox {:checked @use-light-box?
:color "primary"
:on-change
#(dispatch [::events/use-light-box?
(.. % -target -checked)]) }])
:label "Use a light box"
:style {:width "100%"}}]]]])))
(defn- inverse-hint []
(let [consider-inverse-schedule? (subscribe [::subs/consider-inverse-schedule?])]
(fn []
(when @consider-inverse-schedule?
[:> card {:style {:margin-top "12px"}}
[:> card-content
[:> typography {:component "p"}
"Consider adapting \"the other way around the world\" -
you'll save time!"]]
[:> card-actions
[:> button {:color "secondary"
:on-click #(dispatch [::events/invert-time-zone-delta])
:size "small"}
"Good idea! Let's do it!"]]]))))
(defn- plan []
(let [schedule (subscribe [::subs/schedule])]
(fn []
(when @schedule
[:> grid {:container true
:spacing 16
:style {:margin-top "12px"}}
(for [{:keys [bed-time day t-min use-light-box-at
use-melatonin-at wake-time]} @schedule
:let
[extra-item-count (cond-> 0
use-light-box-at inc
use-melatonin-at inc)
small-width (case extra-item-count
0 6
1 4
2 3)]]
^{:key day}
[:> grid {:item true
:lg 3
:md 4
:sm 6
:xs 12}
[:> card {:style {:width "100%"}}
[:> card-content
[:> chip {:color "primary"
:label (str "Day " day)}]
[:> grid {:container true}
[:> grid {:item true
:sm small-width
:xs 6}
[:> grid {:container true}
[:> grid {:item true
:xs 12}
[:> typography {:component "h2"
:variant "headline"}
(date-time->time-str bed-time)]]
[:> grid {:item true
:xs 12}
[:> typography {:color "textSecondary"}
"Bed Time"]]]]
[:> grid {:item true
:sm small-width
:xs 6}
[:> grid {:container true}
[:> grid {:item true
:xs 12}
[:> typography {:component "h2"
:variant "headline"}
(date-time->time-str wake-time)]]
[:> grid {:item true
:xs 12}
[:> typography {:color "textSecondary"}
"Wake Time"]]]]
(when use-melatonin-at
[:> grid {:item true
:sm small-width
:xs 6}
[:> grid {:container true}
[:> grid {:item true
:xs 12}
[:> typography {:component "h2"
:variant "headline"}
(date-time->time-str use-melatonin-at)]]
[:> grid {:item true
:xs 12}
[:> typography {:color "textSecondary"}
"Take Melatonin"]]]])
(when use-light-box-at
[:> grid {:item true
:sm small-width
:xs 6}
[:> grid {:container true}
[:> grid {:item true
:xs 12}
[:> typography {:component "h2"
:variant "headline"}
(date-time->time-str use-light-box-at)]]
[:> grid {:item true
:xs 12}
[:> typography {:color "textSecondary"}
"Use Light Box"]]]])]]]])]))))
(defn main []
[root-container
[form]
[inverse-hint]
[plan]])
| true |
(ns jetlag.views
(:require [cljs-time.core :as cljs-time]
[clojure.string :as str]
[jetlag.events :as events]
[jetlag.subs :as subs]
[re-frame.core :as rf :refer [dispatch subscribe]]
[reagent.core :as r]
;; material-ui, `:default` syntax is shadow-cljs specific
["@material-ui/core/AppBar" :default app-bar]
["@material-ui/core/Button" :default button]
["@material-ui/core/Card" :default card]
["@material-ui/core/CardContent" :default card-content]
["@material-ui/core/CardActions" :default card-actions]
["@material-ui/core/Checkbox" :default checkbox]
["@material-ui/core/Chip" :default chip]
["@material-ui/core/FormControl" :default form-control]
["@material-ui/core/FormControlLabel" :default form-control-label]
["@material-ui/core/Grid" :default grid]
["@material-ui/core/Input" :default input]
["@material-ui/core/InputLabel" :default input-label]
["@material-ui/core/MenuItem" :default menu-item]
["@material-ui/core/Select" :default select]
["@material-ui/core/TextField" :default text-field]
["@material-ui/core/Toolbar" :default toolbar]
["@material-ui/core/Typography" :default typography]
;; icons of material-ui
["@material-ui/icons/Alarm" :default alarm-icon]
["@material-ui/core/Paper" :default paper]
["@material-ui/icons/Place" :default place-icon]
["@material-ui/icons/WbSunny" :default sunny-icon]))
(defn- root-container [& children]
(into
[:<>
[:> app-bar {:position "static"}
[:> toolbar
[:> typography {:variant "h6" :color "inherit"} "Jetlag Ninja"]]]]
children))
(defn- header []
[:<>
[:> app-bar {:position "static"}
[:> toolbar
[:> typography {:variant "h6" :color "inherit"} "Jetlag Ninja"]]]
[:> typography {:component "div"}
[:div "Hello, PI:NAME:<NAME>END_PI!"]]
[:div "Ready to conquer your jetlag the next time you travel?"]])
(defn- target-value [event]
(.. event -target -value))
(defn- parse-time-str [time-str]
(let [[hour minute] (map js/parseInt (str/split time-str #":"))]
{:hour hour
:minute minute}))
(defn- date-time->time-str [date-time]
(letfn [(pad-zero [s] (cond->> s (< s 10) (str "0")))]
(str
(pad-zero (cljs-time/hour date-time))
":"
(pad-zero (cljs-time/minute date-time)))))
(defn- form []
(let [bed-time-str (subscribe [::subs/bed-time-str])
melatonin-dose-mg (subscribe [::subs/melatonin-dose-mg])
sleep-duration-hours (subscribe [::subs/sleep-duration-hours])
time-zone-delta (subscribe [::subs/time-zone-delta])
use-light-box? (subscribe [::subs/use-light-box?])]
(fn []
[:> paper {:style {:margin-top "8px"}}
[:> grid {:container true
:spacing 16}
[:> grid {:alignItems "center"
:container true
:direction "row"
:display "flex"
:justify "center"
:xs 2}
[:> place-icon {:style {:font-size 24}}]]
[:> grid {:item true
:xs 10}
[:> form-control {:style {:width "100%"}}
[:> input-label {:htmlFor "time-zone-delta-helper"}
"Time Zone of Destination"]
(into
[:> select {:input (r/as-element [:> input {:name "time-zone-delta"
:id "time-zone-delta-helper"}])
:on-change #(dispatch [::events/set-time-zone-delta
(js/parseInt (target-value %))])
:value @time-zone-delta}
(mapcat (fn [i]
[^{:key (- i)}
[:> menu-item {:value (- i)}
(str i " hour" (if (> i 1) "s") " behind")]
^{:key i}
[:> menu-item {:value i}
(str i " hour" (if (> i 1) "s") " ahead")]])
(range 1 24))])]]
[:> grid {:alignItems "center"
:container true
:direction "row"
:display "flex"
:justify "center"
:xs 2}
[:> alarm-icon {:style {:font-size 24}}]]
[:> grid {:item true
:xs 5}
[:> text-field {:InputLabelProps #js {:shrink true}
:inputProps #js {:step 600}
:label "Bed Time"
:on-change #(dispatch [::events/set-bed-time
(parse-time-str (target-value %))])
:style {:width "100%"}
:type "time"
:value @bed-time-str}]]
[:> grid {:item true
:xs 5}
[:> form-control {:style {:width "100%"}}
[:> input-label {:htmlFor "sleep-duration-helper"} "Sleep Duration"]
(into
[:> select {:input (r/as-element [:> input {:name "sleep-duration"
:id "sleep-duration-helper"}])
:on-change #(dispatch [::events/set-sleep-duration
(target-value %)])
:value @sleep-duration-hours}
(for [i (range 4 10.5 0.5)]
^{:key i}
[:> menu-item {:value i}
(str i " hour" (if (> i 1) "s"))])])]]
[:> grid {:alignItems "center"
:container true
:direction "row"
:display "flex"
:justify "center"
:xs 2}
[:> sunny-icon {:style {:font-size 24}}]]
[:> grid {:item true
:xs 5}
[:> form-control {:style {:width "100%"}}
[:> input-label {:htmlFor "melatonin-dose"} "Melatonin Dose"]
[:> select {:input (r/as-element [:> input {:name "melatonin-dose"
:id "melatonin-dose-helper"}])
:on-change #(dispatch [::events/set-melatonin-dose-mg
(target-value %)])
:value @melatonin-dose-mg}
[:> menu-item {:value 0} "I won't take Melatonin"]
[:> menu-item {:value 0.5} "0.5mg"]
[:> menu-item {:value 3.0} "3.0mg"]]]]
[:> grid {:item true
:xs 5}
[:> form-control-label
{:control (r/as-element [:> checkbox {:checked @use-light-box?
:color "primary"
:on-change
#(dispatch [::events/use-light-box?
(.. % -target -checked)]) }])
:label "Use a light box"
:style {:width "100%"}}]]]])))
(defn- inverse-hint []
(let [consider-inverse-schedule? (subscribe [::subs/consider-inverse-schedule?])]
(fn []
(when @consider-inverse-schedule?
[:> card {:style {:margin-top "12px"}}
[:> card-content
[:> typography {:component "p"}
"Consider adapting \"the other way around the world\" -
you'll save time!"]]
[:> card-actions
[:> button {:color "secondary"
:on-click #(dispatch [::events/invert-time-zone-delta])
:size "small"}
"Good idea! Let's do it!"]]]))))
(defn- plan []
(let [schedule (subscribe [::subs/schedule])]
(fn []
(when @schedule
[:> grid {:container true
:spacing 16
:style {:margin-top "12px"}}
(for [{:keys [bed-time day t-min use-light-box-at
use-melatonin-at wake-time]} @schedule
:let
[extra-item-count (cond-> 0
use-light-box-at inc
use-melatonin-at inc)
small-width (case extra-item-count
0 6
1 4
2 3)]]
^{:key day}
[:> grid {:item true
:lg 3
:md 4
:sm 6
:xs 12}
[:> card {:style {:width "100%"}}
[:> card-content
[:> chip {:color "primary"
:label (str "Day " day)}]
[:> grid {:container true}
[:> grid {:item true
:sm small-width
:xs 6}
[:> grid {:container true}
[:> grid {:item true
:xs 12}
[:> typography {:component "h2"
:variant "headline"}
(date-time->time-str bed-time)]]
[:> grid {:item true
:xs 12}
[:> typography {:color "textSecondary"}
"Bed Time"]]]]
[:> grid {:item true
:sm small-width
:xs 6}
[:> grid {:container true}
[:> grid {:item true
:xs 12}
[:> typography {:component "h2"
:variant "headline"}
(date-time->time-str wake-time)]]
[:> grid {:item true
:xs 12}
[:> typography {:color "textSecondary"}
"Wake Time"]]]]
(when use-melatonin-at
[:> grid {:item true
:sm small-width
:xs 6}
[:> grid {:container true}
[:> grid {:item true
:xs 12}
[:> typography {:component "h2"
:variant "headline"}
(date-time->time-str use-melatonin-at)]]
[:> grid {:item true
:xs 12}
[:> typography {:color "textSecondary"}
"Take Melatonin"]]]])
(when use-light-box-at
[:> grid {:item true
:sm small-width
:xs 6}
[:> grid {:container true}
[:> grid {:item true
:xs 12}
[:> typography {:component "h2"
:variant "headline"}
(date-time->time-str use-light-box-at)]]
[:> grid {:item true
:xs 12}
[:> typography {:color "textSecondary"}
"Use Light Box"]]]])]]]])]))))
(defn main []
[root-container
[form]
[inverse-hint]
[plan]])
|
[
{
"context": "(ns ^{:author \"Adam Berger\"} ulvm.project\n \"Project definition\"\n (:require",
"end": 26,
"score": 0.9998581409454346,
"start": 15,
"tag": "NAME",
"value": "Adam Berger"
}
] |
src/ulvm/project.clj
|
abrgr/ulvm
| 0 |
(ns ^{:author "Adam Berger"} ulvm.project
"Project definition"
(:require [clojure.spec :as s]
[clojure.zip :as z]
[ulvm.core :as ucore]
[ulvm.spec-utils :as su]
[ulvm.func-utils :as futil]
[ulvm.env-keypaths :as k]
[cats.monad.either :as e]
[cats.core :as m])
(:refer-clojure :rename {get core-get
set core-set}))
(declare get-runnable-env-rep
block-with-results
get-prj-ent
get-or-make
get
set
get-env
make-renv
deref-runnable-env)
(s/def ::entities
(s/keys
:opt [::ucore/flow
::ucore/scope
::ucore/mod-combinator
::ucore/runnable-env-loader
::ucore/runnable-env
::ucore/runner]))
(defprotocol REnvLoader
(-get-runnable-env-rep [renv-loader prj desc]
"Retrieves a rep for a runnable environment given the descriptor pointing to it"))
(defn get-runnable-env-rep
"Retrieves a representation of a runnable environment given a descriptor pointing to it"
[renv-loader prj desc]
(-get-runnable-env-rep renv-loader prj desc))
(s/fdef get-runnable-env-rep
:args (s/cat :renv-loader #(satisfies? REnvLoader %)
:prj ::project
:desc map?)
:ret (su/either-of? su/any ::ucore/runnable-env))
(defprotocol ModCombinator
(-block-with-results
[this prj config invocations body]
"Generates an AST for a scope in which the results of
the invocations are available and in which body
is included (body uses the results).")
(-get-mod-combinator-config
[this prj config]
"Returns the config for this combinator."))
(defn block-with-results
"Generates an AST for a scope in which the results of
the invocations are available and in which body
is included (body uses the results)."
[this prj config invocations body]
(-block-with-results this prj config invocations body))
(defn get-mod-combinator-config
"Returns the config for this combinator."
[this prj config]
(-get-mod-combinator-config this prj config))
(s/def ::mod ::ucore/module)
(s/def ::scope ::ucore/name)
(s/def ::inv map?) ; TODO: this map is the result of conforming a uprj/flow-invocation
(s/def ::mod-name symbol?)
(s/def ::result-names
(s/map-of keyword? symbol?))
(s/def ::arg-names
(s/map-of keyword? symbol?))
(s/def ::enhanced-invocation
(s/keys :req-un [::scope
::mod
::inv
::result-names
::arg-names
::mod-name]))
(s/fdef block-with-results
:args (s/cat :combinator #(satisfies? ModCombinator %)
:prj ::project
:config map?
:invocations (s/spec
(s/+ ::enhanced-invocation))
:body coll?)
:ret e/either?)
(s/fdef get-mod-combinator-config
:args (s/cat :combinator #(satisfies? ModCombinator %)
:prj ::project
:config map?)
:ret e/either?)
(s/def ::mod-combinators
(s/map-of
keyword?
(su/either-of? su/any
#(satisfies? ModCombinator %))))
(s/def ::renv-loaders
(s/map-of
keyword?
(su/either-of? su/any
#(satisfies? REnvLoader %))))
(s/def ::env map?)
(s/def ::project
(s/keys
:req-un [::env
::entities
::mod-combinators
::renv-loaders
::renvs]))
(s/def ::prj ::project)
(s/def ::el (su/either-of?
su/any
(or #(satisfies? ModCombinator %)
#(satisfies? REnvLoader %))))
(defprotocol ArtifactLoader
(-get-artifact [artifact-loader prj desc]
"Retrieves an artifact given the descriptor pointing to it"))
(defn get-artifact
"Retrieves an artifact given the descriptor pointing to it"
[artifact-loader prj desc]
(-get-artifact artifact-loader prj desc))
(s/fdef get-artifact
:args (s/cat :artifact-loader #(satisfies? ArtifactLoader %)
:prj ::project
:desc map?)
:ret ::project)
(defmulti make-mod-combinator
"Make an instance of a module combinator, given the corresponding entity"
(fn make-mod-combinator-dispatcher [prj name entity] name))
(s/fdef make-mod-combinator
:args (s/cat :prj ::project
:name keyword?
:entity (s/nilable ::ucore/mod-combinator))
:ret ::project)
(defmulti make-renv-loader
"Make an instance of a runnable env loader, given the corresponding entity"
(fn make-renv-loader-dispatcher [prj name entity] name))
(s/fdef make-renv-loader
:args (s/cat :prj ::project
:loader-name keyword?
:loader-entity (s/nilable ::ucore/runnable-env-loader))
:ret ::project)
(defmulti run
"Invoke a runner"
(fn run-dispatcher
[prj ctx runner]
(::ucore/builtin-runner-name runner)))
(defn set
"Set a project element"
[prj type name item]
(assoc-in prj [type name] item))
(defn- entity-type-from-prj-type
[prj-type]
(prj-type {:mod-combinators ::ucore/mod-combinators
:renv-loaders ::ucore/runnable-env-loaders}))
(defn- maker-from-prj-type
[prj-type]
(prj-type {:mod-combinators make-mod-combinator
:renv-loaders make-renv-loader
:renvs make-renv}))
(defn get-prj-ent
([prj ent-key]
(get-in prj [:entities ent-key]))
([prj ent-key name]
(get-in prj [:entities ent-key name])))
(defn get-or-make
"Get or make a project element"
[prj type id entity]
(let [orig (get-in prj [type id])]
(cond
(some? orig) {:prj prj, :el orig}
:else (futil/mlet e/context
[make (maker-from-prj-type type)
ent entity
new-prj (make prj id ent)]
{:prj new-prj
:el (get-in new-prj [type id])}))))
(s/fdef get-or-make
:args (s/cat :prj ::project
:type #{:env
:entities
:mod-combinators
:renv-loaders
:renvs}
:id su/any
:entity (s/nilable
(s/or :mc ::ucore/mod-combinator
:rel ::ucore/runnable-env-loader
:renv ::ucore/runnable-env)))
:ret (s/keys :req-un [::prj ::el]))
(defn get
"Get or create a project element"
[prj type id]
(futil/mlet e/context
[ent-key (entity-type-from-prj-type type)
ent (get-prj-ent prj ent-key id)]
(get-or-make prj type id ent)))
(s/fdef get
:args (s/cat :prj ::project
:type #{:env
:entities
:mod-combinators
:renv-loaders
:renvs}
:name keyword?)
:ret (s/keys :req-un [::prj ::el]))
(defn- first-not-identical
[sentinel not-found l]
(if (empty? l)
not-found
(if (identical? sentinel (first l))
(recur sentinel not-found (rest l))
(first l))))
(defn get-ctx-env
"Get an environment value, by checking every key in
the prj environment in the ordered collection of keys:
(first ctxs) + key-path, ..., (last ctxs) + key-path,
key-path"
([prj ctxs key-path]
(get-ctx-env prj ctxs key-path nil))
([prj ctxs key-path not-found]
(let [sentinel (Object.)]
; our contexts (ending in a root context)
(->> (concat ctxs [[]])
; our full key-paths (including context)
(map #(concat % key-path))
; our env values (eithers) for each full key-path
(map #(get-env prj % sentinel))
; an either of a list of values (instead of list of eithers)
(reduce
(fn [acc item]
(m/mlet [a acc
i item]
(e/right (conj a i))))
(e/right []))
; either the first non-sentinel or not-found
(m/fmap (partial first-not-identical sentinel not-found))))))
(s/fdef get-ctx-env
:args (s/cat :prj ::project
:ctx (s/coll-of sequential?)
:key-path sequential?
:not-found (s/? su/any))
:ret (su/either-of? su/any su/any))
(defn get-env
"Get an environment value"
([prj key-path]
(get-env prj key-path nil))
([prj key-path not-found]
(futil/get-in-either prj (cons :env key-path) not-found)))
(s/fdef get-env
:args (s/cat :prj ::project
:key-path sequential?
:not-found (s/? su/any))
:ret (su/either-of? su/any su/any))
(defn set-env
"Set an environment value"
[prj key-path value]
(assoc-in prj (cons :env key-path) value))
(s/fdef set-env
:args (s/cat :prj ::project
:key-path sequential?
:value su/any)
:ret ::project)
(defn- any-zip
"Zipper for arbitrary builtin data structures"
[root]
(z/zipper
coll?
(fn [x]
(cond
(map? x) (seq x)
(set? x) (seq x)
:else x))
(fn [x children]
(cond
(map? x) (into {} (map #(into [] %) children))
(set? x) (into #{} children)
(vector? x) (into [] children)
:else children))
root))
(defn- invocation-of
"Predicate returning whether x is a form
representing an invocation of the function
identified by symbol s."
[x s]
(and (seq? x)
(= (first x) s)))
(defn replace-in-tree
[f next]
(loop [loc (any-zip f)]
(if (z/end? loc)
(e/right (z/root loc))
(let [n (next (z/node loc))]
(cond
(contains? n :return)
(:return n)
(contains? n :replace-with)
(recur (z/replace loc (:replace-with n)))
:else (recur (z/next loc)))))))
(defn selective-eval
"Given a form that contains sub-forms like
(ulvm.core/eval (...)),
returns a form with all eval invocations
replaced with their values"
[f]
(replace-in-tree
f
#(if (invocation-of % 'ulvm.core/eval)
{:replace-with (eval (second %))})))
(s/fdef selective-eval
:args (s/cat :form su/any)
:ret (su/either-of? su/any su/any))
(defn- resolve-env-ref
[prj ctxs node]
(let [val (get-ctx-env prj ctxs (rest node))]
(if (e/right? val)
(m/extract val)
val)))
(defn resolve-env-refs
"Given a form that contains sub-forms like
(ulvm.core/from-env [:my-env-key]),
returns a form with all from-env invocations
replaced with their values"
[prj ctxs f]
(replace-in-tree
f
#(if (invocation-of % 'ulvm.core/from-env)
(let [val (resolve-env-ref prj ctxs %)]
(if (e/left? val)
{:return val}
{:replace-with val})))))
(s/fdef resolve-env-refs
:args (s/cat :prj ::project
:ctx (s/coll-of sequential?)
:form su/any)
:ret (su/either-of? su/any su/any))
(defn apply-bindings
"Given a form that contains sub-forms that are
symbol keys in the bindings map, replaces the
references with their values"
[bindings f]
(replace-in-tree
f
#(if (and (symbol? %) (contains? bindings %))
{:replace-with (core-get bindings %)})))
(s/fdef apply-bindings
:args (s/cat :bindings map?
:form su/any)
:ret (su/either-of? su/any su/any))
(defn eval-in-ctx
"Resolves environment references and evaluates
configuration in the provided context"
([prj ctxs bindings cfg]
(futil/mlet e/context
[bound (apply-bindings bindings cfg)
de-refed (resolve-env-refs prj ctxs bound)
evaled (selective-eval de-refed)]
(e/right evaled)))
([prj ctxs cfg]
(eval-in-ctx prj ctxs {} cfg)))
(defn- get-rel-name
"Runnable env loader name from runnable env ref"
[re-ref]
(or (::ucore/builtin-runnable-env-loader-name re-ref)
(::ucore/runnable-env-loader-name re-ref)))
(defn- make-renv
"Make a runnable-env (get a runnable env ref)"
[proj renv-id entity]
(let [re-ref (::ucore/runnable-env-ref entity)
re-desc (::ucore/runnable-env-descriptor re-ref)
rel-name (get-rel-name re-ref)
{prj :prj, rel-either :el} (get proj :renv-loaders rel-name)]
(set
prj
:renvs
renv-id
(m/mlet [renv-loader rel-either]
(get-runnable-env-rep renv-loader prj re-desc)))))
(s/fdef make-renv
:args (s/cat :proj ::project
:renv-id ::ucore/runnable-env-ref
:entity (s/keys :req [::ucore/runnable-env-ref]))
:ret (s/keys :req-un [::prj ::el]))
(defn deref-runnable-env
"Retrieve a runnable env from an entity that contains a runnable-env-ref."
[prj entity]
(let [re-ref (::ucore/runnable-env-ref entity)
{re-prj :prj, renv-map :el} (get-or-make prj :renvs re-ref entity)
renv-from-renv-map (comp first vals ::ucore/runnable-envs)
renv (m/fmap renv-from-renv-map renv-map)]
{:prj re-prj
:el renv}))
(s/fdef deref-runnable-env
:args (s/cat :proj ::project
:entity (s/keys :req [::ucore/runnable-env-ref]))
:ret (s/keys :req-un [::prj
::el]))
(defn canonical-flow
[flow-ent]
(with-meta (s/conform ::ucore/flow flow-ent) (meta flow-ent)))
(defn init
"Initial project"
[entities env]
{:entities entities
:mod-combinators {}
:renv-loaders {}
:renvs {}
:env env})
|
99791
|
(ns ^{:author "<NAME>"} ulvm.project
"Project definition"
(:require [clojure.spec :as s]
[clojure.zip :as z]
[ulvm.core :as ucore]
[ulvm.spec-utils :as su]
[ulvm.func-utils :as futil]
[ulvm.env-keypaths :as k]
[cats.monad.either :as e]
[cats.core :as m])
(:refer-clojure :rename {get core-get
set core-set}))
(declare get-runnable-env-rep
block-with-results
get-prj-ent
get-or-make
get
set
get-env
make-renv
deref-runnable-env)
(s/def ::entities
(s/keys
:opt [::ucore/flow
::ucore/scope
::ucore/mod-combinator
::ucore/runnable-env-loader
::ucore/runnable-env
::ucore/runner]))
(defprotocol REnvLoader
(-get-runnable-env-rep [renv-loader prj desc]
"Retrieves a rep for a runnable environment given the descriptor pointing to it"))
(defn get-runnable-env-rep
"Retrieves a representation of a runnable environment given a descriptor pointing to it"
[renv-loader prj desc]
(-get-runnable-env-rep renv-loader prj desc))
(s/fdef get-runnable-env-rep
:args (s/cat :renv-loader #(satisfies? REnvLoader %)
:prj ::project
:desc map?)
:ret (su/either-of? su/any ::ucore/runnable-env))
(defprotocol ModCombinator
(-block-with-results
[this prj config invocations body]
"Generates an AST for a scope in which the results of
the invocations are available and in which body
is included (body uses the results).")
(-get-mod-combinator-config
[this prj config]
"Returns the config for this combinator."))
(defn block-with-results
"Generates an AST for a scope in which the results of
the invocations are available and in which body
is included (body uses the results)."
[this prj config invocations body]
(-block-with-results this prj config invocations body))
(defn get-mod-combinator-config
"Returns the config for this combinator."
[this prj config]
(-get-mod-combinator-config this prj config))
(s/def ::mod ::ucore/module)
(s/def ::scope ::ucore/name)
(s/def ::inv map?) ; TODO: this map is the result of conforming a uprj/flow-invocation
(s/def ::mod-name symbol?)
(s/def ::result-names
(s/map-of keyword? symbol?))
(s/def ::arg-names
(s/map-of keyword? symbol?))
(s/def ::enhanced-invocation
(s/keys :req-un [::scope
::mod
::inv
::result-names
::arg-names
::mod-name]))
(s/fdef block-with-results
:args (s/cat :combinator #(satisfies? ModCombinator %)
:prj ::project
:config map?
:invocations (s/spec
(s/+ ::enhanced-invocation))
:body coll?)
:ret e/either?)
(s/fdef get-mod-combinator-config
:args (s/cat :combinator #(satisfies? ModCombinator %)
:prj ::project
:config map?)
:ret e/either?)
(s/def ::mod-combinators
(s/map-of
keyword?
(su/either-of? su/any
#(satisfies? ModCombinator %))))
(s/def ::renv-loaders
(s/map-of
keyword?
(su/either-of? su/any
#(satisfies? REnvLoader %))))
(s/def ::env map?)
(s/def ::project
(s/keys
:req-un [::env
::entities
::mod-combinators
::renv-loaders
::renvs]))
(s/def ::prj ::project)
(s/def ::el (su/either-of?
su/any
(or #(satisfies? ModCombinator %)
#(satisfies? REnvLoader %))))
(defprotocol ArtifactLoader
(-get-artifact [artifact-loader prj desc]
"Retrieves an artifact given the descriptor pointing to it"))
(defn get-artifact
"Retrieves an artifact given the descriptor pointing to it"
[artifact-loader prj desc]
(-get-artifact artifact-loader prj desc))
(s/fdef get-artifact
:args (s/cat :artifact-loader #(satisfies? ArtifactLoader %)
:prj ::project
:desc map?)
:ret ::project)
(defmulti make-mod-combinator
"Make an instance of a module combinator, given the corresponding entity"
(fn make-mod-combinator-dispatcher [prj name entity] name))
(s/fdef make-mod-combinator
:args (s/cat :prj ::project
:name keyword?
:entity (s/nilable ::ucore/mod-combinator))
:ret ::project)
(defmulti make-renv-loader
"Make an instance of a runnable env loader, given the corresponding entity"
(fn make-renv-loader-dispatcher [prj name entity] name))
(s/fdef make-renv-loader
:args (s/cat :prj ::project
:loader-name keyword?
:loader-entity (s/nilable ::ucore/runnable-env-loader))
:ret ::project)
(defmulti run
"Invoke a runner"
(fn run-dispatcher
[prj ctx runner]
(::ucore/builtin-runner-name runner)))
(defn set
"Set a project element"
[prj type name item]
(assoc-in prj [type name] item))
(defn- entity-type-from-prj-type
[prj-type]
(prj-type {:mod-combinators ::ucore/mod-combinators
:renv-loaders ::ucore/runnable-env-loaders}))
(defn- maker-from-prj-type
[prj-type]
(prj-type {:mod-combinators make-mod-combinator
:renv-loaders make-renv-loader
:renvs make-renv}))
(defn get-prj-ent
([prj ent-key]
(get-in prj [:entities ent-key]))
([prj ent-key name]
(get-in prj [:entities ent-key name])))
(defn get-or-make
"Get or make a project element"
[prj type id entity]
(let [orig (get-in prj [type id])]
(cond
(some? orig) {:prj prj, :el orig}
:else (futil/mlet e/context
[make (maker-from-prj-type type)
ent entity
new-prj (make prj id ent)]
{:prj new-prj
:el (get-in new-prj [type id])}))))
(s/fdef get-or-make
:args (s/cat :prj ::project
:type #{:env
:entities
:mod-combinators
:renv-loaders
:renvs}
:id su/any
:entity (s/nilable
(s/or :mc ::ucore/mod-combinator
:rel ::ucore/runnable-env-loader
:renv ::ucore/runnable-env)))
:ret (s/keys :req-un [::prj ::el]))
(defn get
"Get or create a project element"
[prj type id]
(futil/mlet e/context
[ent-key (entity-type-from-prj-type type)
ent (get-prj-ent prj ent-key id)]
(get-or-make prj type id ent)))
(s/fdef get
:args (s/cat :prj ::project
:type #{:env
:entities
:mod-combinators
:renv-loaders
:renvs}
:name keyword?)
:ret (s/keys :req-un [::prj ::el]))
(defn- first-not-identical
[sentinel not-found l]
(if (empty? l)
not-found
(if (identical? sentinel (first l))
(recur sentinel not-found (rest l))
(first l))))
(defn get-ctx-env
"Get an environment value, by checking every key in
the prj environment in the ordered collection of keys:
(first ctxs) + key-path, ..., (last ctxs) + key-path,
key-path"
([prj ctxs key-path]
(get-ctx-env prj ctxs key-path nil))
([prj ctxs key-path not-found]
(let [sentinel (Object.)]
; our contexts (ending in a root context)
(->> (concat ctxs [[]])
; our full key-paths (including context)
(map #(concat % key-path))
; our env values (eithers) for each full key-path
(map #(get-env prj % sentinel))
; an either of a list of values (instead of list of eithers)
(reduce
(fn [acc item]
(m/mlet [a acc
i item]
(e/right (conj a i))))
(e/right []))
; either the first non-sentinel or not-found
(m/fmap (partial first-not-identical sentinel not-found))))))
(s/fdef get-ctx-env
:args (s/cat :prj ::project
:ctx (s/coll-of sequential?)
:key-path sequential?
:not-found (s/? su/any))
:ret (su/either-of? su/any su/any))
(defn get-env
"Get an environment value"
([prj key-path]
(get-env prj key-path nil))
([prj key-path not-found]
(futil/get-in-either prj (cons :env key-path) not-found)))
(s/fdef get-env
:args (s/cat :prj ::project
:key-path sequential?
:not-found (s/? su/any))
:ret (su/either-of? su/any su/any))
(defn set-env
"Set an environment value"
[prj key-path value]
(assoc-in prj (cons :env key-path) value))
(s/fdef set-env
:args (s/cat :prj ::project
:key-path sequential?
:value su/any)
:ret ::project)
(defn- any-zip
"Zipper for arbitrary builtin data structures"
[root]
(z/zipper
coll?
(fn [x]
(cond
(map? x) (seq x)
(set? x) (seq x)
:else x))
(fn [x children]
(cond
(map? x) (into {} (map #(into [] %) children))
(set? x) (into #{} children)
(vector? x) (into [] children)
:else children))
root))
(defn- invocation-of
"Predicate returning whether x is a form
representing an invocation of the function
identified by symbol s."
[x s]
(and (seq? x)
(= (first x) s)))
(defn replace-in-tree
[f next]
(loop [loc (any-zip f)]
(if (z/end? loc)
(e/right (z/root loc))
(let [n (next (z/node loc))]
(cond
(contains? n :return)
(:return n)
(contains? n :replace-with)
(recur (z/replace loc (:replace-with n)))
:else (recur (z/next loc)))))))
(defn selective-eval
"Given a form that contains sub-forms like
(ulvm.core/eval (...)),
returns a form with all eval invocations
replaced with their values"
[f]
(replace-in-tree
f
#(if (invocation-of % 'ulvm.core/eval)
{:replace-with (eval (second %))})))
(s/fdef selective-eval
:args (s/cat :form su/any)
:ret (su/either-of? su/any su/any))
(defn- resolve-env-ref
[prj ctxs node]
(let [val (get-ctx-env prj ctxs (rest node))]
(if (e/right? val)
(m/extract val)
val)))
(defn resolve-env-refs
"Given a form that contains sub-forms like
(ulvm.core/from-env [:my-env-key]),
returns a form with all from-env invocations
replaced with their values"
[prj ctxs f]
(replace-in-tree
f
#(if (invocation-of % 'ulvm.core/from-env)
(let [val (resolve-env-ref prj ctxs %)]
(if (e/left? val)
{:return val}
{:replace-with val})))))
(s/fdef resolve-env-refs
:args (s/cat :prj ::project
:ctx (s/coll-of sequential?)
:form su/any)
:ret (su/either-of? su/any su/any))
(defn apply-bindings
"Given a form that contains sub-forms that are
symbol keys in the bindings map, replaces the
references with their values"
[bindings f]
(replace-in-tree
f
#(if (and (symbol? %) (contains? bindings %))
{:replace-with (core-get bindings %)})))
(s/fdef apply-bindings
:args (s/cat :bindings map?
:form su/any)
:ret (su/either-of? su/any su/any))
(defn eval-in-ctx
"Resolves environment references and evaluates
configuration in the provided context"
([prj ctxs bindings cfg]
(futil/mlet e/context
[bound (apply-bindings bindings cfg)
de-refed (resolve-env-refs prj ctxs bound)
evaled (selective-eval de-refed)]
(e/right evaled)))
([prj ctxs cfg]
(eval-in-ctx prj ctxs {} cfg)))
(defn- get-rel-name
"Runnable env loader name from runnable env ref"
[re-ref]
(or (::ucore/builtin-runnable-env-loader-name re-ref)
(::ucore/runnable-env-loader-name re-ref)))
(defn- make-renv
"Make a runnable-env (get a runnable env ref)"
[proj renv-id entity]
(let [re-ref (::ucore/runnable-env-ref entity)
re-desc (::ucore/runnable-env-descriptor re-ref)
rel-name (get-rel-name re-ref)
{prj :prj, rel-either :el} (get proj :renv-loaders rel-name)]
(set
prj
:renvs
renv-id
(m/mlet [renv-loader rel-either]
(get-runnable-env-rep renv-loader prj re-desc)))))
(s/fdef make-renv
:args (s/cat :proj ::project
:renv-id ::ucore/runnable-env-ref
:entity (s/keys :req [::ucore/runnable-env-ref]))
:ret (s/keys :req-un [::prj ::el]))
(defn deref-runnable-env
"Retrieve a runnable env from an entity that contains a runnable-env-ref."
[prj entity]
(let [re-ref (::ucore/runnable-env-ref entity)
{re-prj :prj, renv-map :el} (get-or-make prj :renvs re-ref entity)
renv-from-renv-map (comp first vals ::ucore/runnable-envs)
renv (m/fmap renv-from-renv-map renv-map)]
{:prj re-prj
:el renv}))
(s/fdef deref-runnable-env
:args (s/cat :proj ::project
:entity (s/keys :req [::ucore/runnable-env-ref]))
:ret (s/keys :req-un [::prj
::el]))
(defn canonical-flow
[flow-ent]
(with-meta (s/conform ::ucore/flow flow-ent) (meta flow-ent)))
(defn init
"Initial project"
[entities env]
{:entities entities
:mod-combinators {}
:renv-loaders {}
:renvs {}
:env env})
| true |
(ns ^{:author "PI:NAME:<NAME>END_PI"} ulvm.project
"Project definition"
(:require [clojure.spec :as s]
[clojure.zip :as z]
[ulvm.core :as ucore]
[ulvm.spec-utils :as su]
[ulvm.func-utils :as futil]
[ulvm.env-keypaths :as k]
[cats.monad.either :as e]
[cats.core :as m])
(:refer-clojure :rename {get core-get
set core-set}))
(declare get-runnable-env-rep
block-with-results
get-prj-ent
get-or-make
get
set
get-env
make-renv
deref-runnable-env)
(s/def ::entities
(s/keys
:opt [::ucore/flow
::ucore/scope
::ucore/mod-combinator
::ucore/runnable-env-loader
::ucore/runnable-env
::ucore/runner]))
(defprotocol REnvLoader
(-get-runnable-env-rep [renv-loader prj desc]
"Retrieves a rep for a runnable environment given the descriptor pointing to it"))
(defn get-runnable-env-rep
"Retrieves a representation of a runnable environment given a descriptor pointing to it"
[renv-loader prj desc]
(-get-runnable-env-rep renv-loader prj desc))
(s/fdef get-runnable-env-rep
:args (s/cat :renv-loader #(satisfies? REnvLoader %)
:prj ::project
:desc map?)
:ret (su/either-of? su/any ::ucore/runnable-env))
(defprotocol ModCombinator
(-block-with-results
[this prj config invocations body]
"Generates an AST for a scope in which the results of
the invocations are available and in which body
is included (body uses the results).")
(-get-mod-combinator-config
[this prj config]
"Returns the config for this combinator."))
(defn block-with-results
"Generates an AST for a scope in which the results of
the invocations are available and in which body
is included (body uses the results)."
[this prj config invocations body]
(-block-with-results this prj config invocations body))
(defn get-mod-combinator-config
"Returns the config for this combinator."
[this prj config]
(-get-mod-combinator-config this prj config))
(s/def ::mod ::ucore/module)
(s/def ::scope ::ucore/name)
(s/def ::inv map?) ; TODO: this map is the result of conforming a uprj/flow-invocation
(s/def ::mod-name symbol?)
(s/def ::result-names
(s/map-of keyword? symbol?))
(s/def ::arg-names
(s/map-of keyword? symbol?))
(s/def ::enhanced-invocation
(s/keys :req-un [::scope
::mod
::inv
::result-names
::arg-names
::mod-name]))
(s/fdef block-with-results
:args (s/cat :combinator #(satisfies? ModCombinator %)
:prj ::project
:config map?
:invocations (s/spec
(s/+ ::enhanced-invocation))
:body coll?)
:ret e/either?)
(s/fdef get-mod-combinator-config
:args (s/cat :combinator #(satisfies? ModCombinator %)
:prj ::project
:config map?)
:ret e/either?)
(s/def ::mod-combinators
(s/map-of
keyword?
(su/either-of? su/any
#(satisfies? ModCombinator %))))
(s/def ::renv-loaders
(s/map-of
keyword?
(su/either-of? su/any
#(satisfies? REnvLoader %))))
(s/def ::env map?)
(s/def ::project
(s/keys
:req-un [::env
::entities
::mod-combinators
::renv-loaders
::renvs]))
(s/def ::prj ::project)
(s/def ::el (su/either-of?
su/any
(or #(satisfies? ModCombinator %)
#(satisfies? REnvLoader %))))
(defprotocol ArtifactLoader
(-get-artifact [artifact-loader prj desc]
"Retrieves an artifact given the descriptor pointing to it"))
(defn get-artifact
"Retrieves an artifact given the descriptor pointing to it"
[artifact-loader prj desc]
(-get-artifact artifact-loader prj desc))
(s/fdef get-artifact
:args (s/cat :artifact-loader #(satisfies? ArtifactLoader %)
:prj ::project
:desc map?)
:ret ::project)
(defmulti make-mod-combinator
"Make an instance of a module combinator, given the corresponding entity"
(fn make-mod-combinator-dispatcher [prj name entity] name))
(s/fdef make-mod-combinator
:args (s/cat :prj ::project
:name keyword?
:entity (s/nilable ::ucore/mod-combinator))
:ret ::project)
(defmulti make-renv-loader
"Make an instance of a runnable env loader, given the corresponding entity"
(fn make-renv-loader-dispatcher [prj name entity] name))
(s/fdef make-renv-loader
:args (s/cat :prj ::project
:loader-name keyword?
:loader-entity (s/nilable ::ucore/runnable-env-loader))
:ret ::project)
(defmulti run
"Invoke a runner"
(fn run-dispatcher
[prj ctx runner]
(::ucore/builtin-runner-name runner)))
(defn set
"Set a project element"
[prj type name item]
(assoc-in prj [type name] item))
(defn- entity-type-from-prj-type
[prj-type]
(prj-type {:mod-combinators ::ucore/mod-combinators
:renv-loaders ::ucore/runnable-env-loaders}))
(defn- maker-from-prj-type
[prj-type]
(prj-type {:mod-combinators make-mod-combinator
:renv-loaders make-renv-loader
:renvs make-renv}))
(defn get-prj-ent
([prj ent-key]
(get-in prj [:entities ent-key]))
([prj ent-key name]
(get-in prj [:entities ent-key name])))
(defn get-or-make
"Get or make a project element"
[prj type id entity]
(let [orig (get-in prj [type id])]
(cond
(some? orig) {:prj prj, :el orig}
:else (futil/mlet e/context
[make (maker-from-prj-type type)
ent entity
new-prj (make prj id ent)]
{:prj new-prj
:el (get-in new-prj [type id])}))))
(s/fdef get-or-make
:args (s/cat :prj ::project
:type #{:env
:entities
:mod-combinators
:renv-loaders
:renvs}
:id su/any
:entity (s/nilable
(s/or :mc ::ucore/mod-combinator
:rel ::ucore/runnable-env-loader
:renv ::ucore/runnable-env)))
:ret (s/keys :req-un [::prj ::el]))
(defn get
"Get or create a project element"
[prj type id]
(futil/mlet e/context
[ent-key (entity-type-from-prj-type type)
ent (get-prj-ent prj ent-key id)]
(get-or-make prj type id ent)))
(s/fdef get
:args (s/cat :prj ::project
:type #{:env
:entities
:mod-combinators
:renv-loaders
:renvs}
:name keyword?)
:ret (s/keys :req-un [::prj ::el]))
(defn- first-not-identical
[sentinel not-found l]
(if (empty? l)
not-found
(if (identical? sentinel (first l))
(recur sentinel not-found (rest l))
(first l))))
(defn get-ctx-env
"Get an environment value, by checking every key in
the prj environment in the ordered collection of keys:
(first ctxs) + key-path, ..., (last ctxs) + key-path,
key-path"
([prj ctxs key-path]
(get-ctx-env prj ctxs key-path nil))
([prj ctxs key-path not-found]
(let [sentinel (Object.)]
; our contexts (ending in a root context)
(->> (concat ctxs [[]])
; our full key-paths (including context)
(map #(concat % key-path))
; our env values (eithers) for each full key-path
(map #(get-env prj % sentinel))
; an either of a list of values (instead of list of eithers)
(reduce
(fn [acc item]
(m/mlet [a acc
i item]
(e/right (conj a i))))
(e/right []))
; either the first non-sentinel or not-found
(m/fmap (partial first-not-identical sentinel not-found))))))
(s/fdef get-ctx-env
:args (s/cat :prj ::project
:ctx (s/coll-of sequential?)
:key-path sequential?
:not-found (s/? su/any))
:ret (su/either-of? su/any su/any))
(defn get-env
"Get an environment value"
([prj key-path]
(get-env prj key-path nil))
([prj key-path not-found]
(futil/get-in-either prj (cons :env key-path) not-found)))
(s/fdef get-env
:args (s/cat :prj ::project
:key-path sequential?
:not-found (s/? su/any))
:ret (su/either-of? su/any su/any))
(defn set-env
"Set an environment value"
[prj key-path value]
(assoc-in prj (cons :env key-path) value))
(s/fdef set-env
:args (s/cat :prj ::project
:key-path sequential?
:value su/any)
:ret ::project)
(defn- any-zip
"Zipper for arbitrary builtin data structures"
[root]
(z/zipper
coll?
(fn [x]
(cond
(map? x) (seq x)
(set? x) (seq x)
:else x))
(fn [x children]
(cond
(map? x) (into {} (map #(into [] %) children))
(set? x) (into #{} children)
(vector? x) (into [] children)
:else children))
root))
(defn- invocation-of
"Predicate returning whether x is a form
representing an invocation of the function
identified by symbol s."
[x s]
(and (seq? x)
(= (first x) s)))
(defn replace-in-tree
[f next]
(loop [loc (any-zip f)]
(if (z/end? loc)
(e/right (z/root loc))
(let [n (next (z/node loc))]
(cond
(contains? n :return)
(:return n)
(contains? n :replace-with)
(recur (z/replace loc (:replace-with n)))
:else (recur (z/next loc)))))))
(defn selective-eval
"Given a form that contains sub-forms like
(ulvm.core/eval (...)),
returns a form with all eval invocations
replaced with their values"
[f]
(replace-in-tree
f
#(if (invocation-of % 'ulvm.core/eval)
{:replace-with (eval (second %))})))
(s/fdef selective-eval
:args (s/cat :form su/any)
:ret (su/either-of? su/any su/any))
(defn- resolve-env-ref
[prj ctxs node]
(let [val (get-ctx-env prj ctxs (rest node))]
(if (e/right? val)
(m/extract val)
val)))
(defn resolve-env-refs
"Given a form that contains sub-forms like
(ulvm.core/from-env [:my-env-key]),
returns a form with all from-env invocations
replaced with their values"
[prj ctxs f]
(replace-in-tree
f
#(if (invocation-of % 'ulvm.core/from-env)
(let [val (resolve-env-ref prj ctxs %)]
(if (e/left? val)
{:return val}
{:replace-with val})))))
(s/fdef resolve-env-refs
:args (s/cat :prj ::project
:ctx (s/coll-of sequential?)
:form su/any)
:ret (su/either-of? su/any su/any))
(defn apply-bindings
"Given a form that contains sub-forms that are
symbol keys in the bindings map, replaces the
references with their values"
[bindings f]
(replace-in-tree
f
#(if (and (symbol? %) (contains? bindings %))
{:replace-with (core-get bindings %)})))
(s/fdef apply-bindings
:args (s/cat :bindings map?
:form su/any)
:ret (su/either-of? su/any su/any))
(defn eval-in-ctx
"Resolves environment references and evaluates
configuration in the provided context"
([prj ctxs bindings cfg]
(futil/mlet e/context
[bound (apply-bindings bindings cfg)
de-refed (resolve-env-refs prj ctxs bound)
evaled (selective-eval de-refed)]
(e/right evaled)))
([prj ctxs cfg]
(eval-in-ctx prj ctxs {} cfg)))
(defn- get-rel-name
"Runnable env loader name from runnable env ref"
[re-ref]
(or (::ucore/builtin-runnable-env-loader-name re-ref)
(::ucore/runnable-env-loader-name re-ref)))
(defn- make-renv
"Make a runnable-env (get a runnable env ref)"
[proj renv-id entity]
(let [re-ref (::ucore/runnable-env-ref entity)
re-desc (::ucore/runnable-env-descriptor re-ref)
rel-name (get-rel-name re-ref)
{prj :prj, rel-either :el} (get proj :renv-loaders rel-name)]
(set
prj
:renvs
renv-id
(m/mlet [renv-loader rel-either]
(get-runnable-env-rep renv-loader prj re-desc)))))
(s/fdef make-renv
:args (s/cat :proj ::project
:renv-id ::ucore/runnable-env-ref
:entity (s/keys :req [::ucore/runnable-env-ref]))
:ret (s/keys :req-un [::prj ::el]))
(defn deref-runnable-env
"Retrieve a runnable env from an entity that contains a runnable-env-ref."
[prj entity]
(let [re-ref (::ucore/runnable-env-ref entity)
{re-prj :prj, renv-map :el} (get-or-make prj :renvs re-ref entity)
renv-from-renv-map (comp first vals ::ucore/runnable-envs)
renv (m/fmap renv-from-renv-map renv-map)]
{:prj re-prj
:el renv}))
(s/fdef deref-runnable-env
:args (s/cat :proj ::project
:entity (s/keys :req [::ucore/runnable-env-ref]))
:ret (s/keys :req-un [::prj
::el]))
(defn canonical-flow
[flow-ent]
(with-meta (s/conform ::ucore/flow flow-ent) (meta flow-ent)))
(defn init
"Initial project"
[entities env]
{:entities entities
:mod-combinators {}
:renv-loaders {}
:renvs {}
:env env})
|
[
{
"context": " (rand-int 100000)\n :name name\n :age age}\n (fix/as referenc",
"end": 1116,
"score": 0.850059986114502,
"start": 1112,
"tag": "NAME",
"value": "name"
}
] |
test/fixpoint/datasource/elastic_test.clj
|
stylefruits/fixpoint
| 24 |
(ns ^:elastic fixpoint.datasource.elastic-test
(:require [clojure.test :refer :all]
[qbits.spandex :as s]
[fixpoint.datasource.elastic :as elastic]
[fixpoint.core :as fix]))
;; ## Test Datasource
(def test-es
(elastic/make-datasource
:es
(or (System/getenv "FIXPOINT_ELASTIC_HOST")
"http://docker:9200")))
;; ## Fixtures
(def ^:private +indices+
(->> [{:elastic/index :people
:elastic/mapping
{:person
{:properties
{:id {:type :long}
:name {:type :string}
:age {:type :long}}}}}
{:elastic/index :posts
:elastic/mapping
{:post
{:properties
{:id {:type :long}
:text {:type :string}
:author-id {:type :string, :index :not_analyzed}}}}}
{:elastic/index :facets
:elastic/mapping false}]
(map #(fix/on-datasource % :es))))
(defn- person
[reference name age]
(-> {:elastic/index :people
:elastic/type :person
:id (rand-int 100000)
:name name
:age age}
(fix/as reference)
(fix/on-datasource :es)))
(defn- post
[reference person-reference text]
(-> {:elastic/index :posts
:elastic/type :post
:id (rand-int 100000)
:text text
:author-id person-reference}
(fix/as reference)
(fix/on-datasource :es)))
(def +fixtures+
[(person :person/me "me" 27)
(person :person/you "you" 29)
(post :post/happy :person/me "Awesome.")
(post :post/meh :person/you "Meh.")
(post :post/question [:post/happy :author-id] "Do you really think so?")])
(use-fixtures
:once
(fix/use-datasources test-es)
(fix/use-data [+indices+ +fixtures+]))
;; ## Tests
(deftest t-elastic
(testing "insertion data."
(let [person (is (fix/property :person/me))
post (is (fix/property :post/happy))]
(is (integer? (:id person)))
(is (integer? (:id post)))))
(testing "references."
(are [post person] (= (fix/id person) (fix/property post :author-id))
:post/happy :person/me
:post/meh :person/you
:post/question :person/me))
(testing "datasource access."
(let [es (fix/raw-datasource :es)
index-name (is (elastic/index :es :people))
url (str "/" index-name "/person/_search")
response (->> {:url url
:method :post
:body {:query {:match_all {}}}}
(s/request es))
ids (->> (get-in response [:body :hits :hits])
(map :_id)
(set))]
(is (= (set (fix/properties [:person/me :person/you] :elastic/id))
ids))))
(testing "index declaration only."
(let [index-name (is (elastic/index :es :facets))
url (str "/" index-name "/_mapping")
es (fix/raw-datasource :es)
response (->> {:url url
:method :get
:exception-handler (comp ex-data s/decode-exception)}
(s/request es))]
(is (= 404 (:status response))))))
|
35409
|
(ns ^:elastic fixpoint.datasource.elastic-test
(:require [clojure.test :refer :all]
[qbits.spandex :as s]
[fixpoint.datasource.elastic :as elastic]
[fixpoint.core :as fix]))
;; ## Test Datasource
(def test-es
(elastic/make-datasource
:es
(or (System/getenv "FIXPOINT_ELASTIC_HOST")
"http://docker:9200")))
;; ## Fixtures
(def ^:private +indices+
(->> [{:elastic/index :people
:elastic/mapping
{:person
{:properties
{:id {:type :long}
:name {:type :string}
:age {:type :long}}}}}
{:elastic/index :posts
:elastic/mapping
{:post
{:properties
{:id {:type :long}
:text {:type :string}
:author-id {:type :string, :index :not_analyzed}}}}}
{:elastic/index :facets
:elastic/mapping false}]
(map #(fix/on-datasource % :es))))
(defn- person
[reference name age]
(-> {:elastic/index :people
:elastic/type :person
:id (rand-int 100000)
:name <NAME>
:age age}
(fix/as reference)
(fix/on-datasource :es)))
(defn- post
[reference person-reference text]
(-> {:elastic/index :posts
:elastic/type :post
:id (rand-int 100000)
:text text
:author-id person-reference}
(fix/as reference)
(fix/on-datasource :es)))
(def +fixtures+
[(person :person/me "me" 27)
(person :person/you "you" 29)
(post :post/happy :person/me "Awesome.")
(post :post/meh :person/you "Meh.")
(post :post/question [:post/happy :author-id] "Do you really think so?")])
(use-fixtures
:once
(fix/use-datasources test-es)
(fix/use-data [+indices+ +fixtures+]))
;; ## Tests
(deftest t-elastic
(testing "insertion data."
(let [person (is (fix/property :person/me))
post (is (fix/property :post/happy))]
(is (integer? (:id person)))
(is (integer? (:id post)))))
(testing "references."
(are [post person] (= (fix/id person) (fix/property post :author-id))
:post/happy :person/me
:post/meh :person/you
:post/question :person/me))
(testing "datasource access."
(let [es (fix/raw-datasource :es)
index-name (is (elastic/index :es :people))
url (str "/" index-name "/person/_search")
response (->> {:url url
:method :post
:body {:query {:match_all {}}}}
(s/request es))
ids (->> (get-in response [:body :hits :hits])
(map :_id)
(set))]
(is (= (set (fix/properties [:person/me :person/you] :elastic/id))
ids))))
(testing "index declaration only."
(let [index-name (is (elastic/index :es :facets))
url (str "/" index-name "/_mapping")
es (fix/raw-datasource :es)
response (->> {:url url
:method :get
:exception-handler (comp ex-data s/decode-exception)}
(s/request es))]
(is (= 404 (:status response))))))
| true |
(ns ^:elastic fixpoint.datasource.elastic-test
(:require [clojure.test :refer :all]
[qbits.spandex :as s]
[fixpoint.datasource.elastic :as elastic]
[fixpoint.core :as fix]))
;; ## Test Datasource
(def test-es
(elastic/make-datasource
:es
(or (System/getenv "FIXPOINT_ELASTIC_HOST")
"http://docker:9200")))
;; ## Fixtures
(def ^:private +indices+
(->> [{:elastic/index :people
:elastic/mapping
{:person
{:properties
{:id {:type :long}
:name {:type :string}
:age {:type :long}}}}}
{:elastic/index :posts
:elastic/mapping
{:post
{:properties
{:id {:type :long}
:text {:type :string}
:author-id {:type :string, :index :not_analyzed}}}}}
{:elastic/index :facets
:elastic/mapping false}]
(map #(fix/on-datasource % :es))))
(defn- person
[reference name age]
(-> {:elastic/index :people
:elastic/type :person
:id (rand-int 100000)
:name PI:NAME:<NAME>END_PI
:age age}
(fix/as reference)
(fix/on-datasource :es)))
(defn- post
[reference person-reference text]
(-> {:elastic/index :posts
:elastic/type :post
:id (rand-int 100000)
:text text
:author-id person-reference}
(fix/as reference)
(fix/on-datasource :es)))
(def +fixtures+
[(person :person/me "me" 27)
(person :person/you "you" 29)
(post :post/happy :person/me "Awesome.")
(post :post/meh :person/you "Meh.")
(post :post/question [:post/happy :author-id] "Do you really think so?")])
(use-fixtures
:once
(fix/use-datasources test-es)
(fix/use-data [+indices+ +fixtures+]))
;; ## Tests
(deftest t-elastic
(testing "insertion data."
(let [person (is (fix/property :person/me))
post (is (fix/property :post/happy))]
(is (integer? (:id person)))
(is (integer? (:id post)))))
(testing "references."
(are [post person] (= (fix/id person) (fix/property post :author-id))
:post/happy :person/me
:post/meh :person/you
:post/question :person/me))
(testing "datasource access."
(let [es (fix/raw-datasource :es)
index-name (is (elastic/index :es :people))
url (str "/" index-name "/person/_search")
response (->> {:url url
:method :post
:body {:query {:match_all {}}}}
(s/request es))
ids (->> (get-in response [:body :hits :hits])
(map :_id)
(set))]
(is (= (set (fix/properties [:person/me :person/you] :elastic/id))
ids))))
(testing "index declaration only."
(let [index-name (is (elastic/index :es :facets))
url (str "/" index-name "/_mapping")
es (fix/raw-datasource :es)
response (->> {:url url
:method :get
:exception-handler (comp ex-data s/decode-exception)}
(s/request es))]
(is (= 404 (:status response))))))
|
[
{
"context": "; Copyright (c) Rich Hickey. All rights reserved.\n; The use and distributio",
"end": 29,
"score": 0.9998732805252075,
"start": 18,
"tag": "NAME",
"value": "Rich Hickey"
},
{
"context": "tice, or any other, from this software.\n\n; Author: Frantisek Sodomka\n\n;;\n;; Test special forms, macros and metadata\n;",
"end": 491,
"score": 0.9998891353607178,
"start": 474,
"tag": "NAME",
"value": "Frantisek Sodomka"
}
] |
Source/clojure/test_clojure/special.clj
|
etherny/Arcadia
| 1,447 |
; Copyright (c) Rich Hickey. All rights reserved.
; The use and distribution terms for this software are covered by the
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
; which can be found in the file epl-v10.html at the root of this distribution.
; By using this software in any fashion, you are agreeing to be bound by
; the terms of this license.
; You must not remove this notice, or any other, from this software.
; Author: Frantisek Sodomka
;;
;; Test special forms, macros and metadata
;;
(ns clojure.test-clojure.special
(:use clojure.test)
(:require [clojure.test-helper :refer [should-not-reflect]]))
; http://clojure.org/special_forms
; let, letfn
; quote
; var
; fn
(deftest multiple-keys-in-destructuring
(let [foo (fn [& {:keys [x]}] x)
bar (fn [& options] (apply foo :x :b options))]
(is (= (bar) :b))
(is (= (bar :x :a) :a))))
(deftest empty-list-with-:as-destructuring
(let [{:as x} '()]
(is (= {} x))))
(deftest keywords-in-destructuring
(let [m {:a 1 :b 2}]
(let [{:keys [:a :b]} m]
(is (= [1 2] [a b])))
(let [{:keys [:a :b :c] :or {c 3}} m]
(is (= [1 2 3] [a b c])))))
(deftest namespaced-keywords-in-destructuring
(let [m {:a/b 1 :c/d 2}]
(let [{:keys [:a/b :c/d]} m]
(is (= [1 2] [b d])))
(let [{:keys [:a/b :c/d :e/f] :or {f 3}} m]
(is (= [1 2 3] [b d f])))))
(deftest namespaced-keys-in-destructuring
(let [m {:a/b 1 :c/d 2}]
(let [{:keys [a/b c/d]} m]
(is (= [1 2] [b d])))
(let [{:keys [a/b c/d e/f] :or {f 3}} m]
(is (= [1 2 3] [b d f])))))
(deftest namespaced-syms-in-destructuring
(let [{:syms [a/b c/d e/f] :or {f 3}} {'a/b 1 'c/d 2}]
(is (= [1 2 3] [b d f]))))
(deftest namespaced-keys-syntax
(let [{:a/keys [b c d] :or {d 3}} {:a/b 1 :a/c 2}]
(is (= [1 2 3] [b c d]))))
(deftest namespaced-syms-syntax
(let [{:a/syms [b c d] :or {d 3}} {'a/b 1 'a/c 2}]
(is (= [1 2 3] [b c d]))))
(deftest keywords-not-allowed-in-let-bindings
(is (thrown-with-msg? Exception #"did not conform to spec"
(eval '(let [:a 1] a))))
(is (thrown-with-msg? Exception #"did not conform to spec"
(eval '(let [:a/b 1] b))))
(is (thrown-with-msg? Exception #"did not conform to spec"
(eval '(let [[:a] [1]] a))))
(is (thrown-with-msg? Exception #"did not conform to spec"
(eval '(let [[:a/b] [1]] b)))))
(deftest namespaced-syms-only-allowed-in-map-destructuring
(is (thrown-with-msg? Exception #"did not conform to spec"
(eval '(let [a/x 1, [y] [1]] x))))
(is (thrown-with-msg? Exception #"did not conform to spec"
(eval '(let [[a/x] [1]] x)))))
(deftest or-doesnt-create-bindings
(is (thrown-with-msg? Exception #"Unable to resolve symbol: b"
(eval '(let [{:keys [a] :or {b 2}} {:a 1}] [a b])))))
(require '[clojure.string :as s])
(deftest resolve-keyword-ns-alias-in-destructuring
(let [{:keys [::s/x ::s/y ::s/z] :or {z 3}} {:clojure.string/x 1 :clojure.string/y 2}]
(is (= [1 2 3] [x y z]))))
(deftest quote-with-multiple-args
(let [ex (is (thrown? clojure.lang.Compiler+CompilerException ;;; Compiler$CompilerException
(eval '(quote 1 2 3))))]
(is (= '(quote 1 2 3)
(-> ex
(.InnerException) ;;; .getCause
(ex-data)
(:form))))))
(deftest typehints-retained-destructuring
(should-not-reflect
(defn foo
[{:keys [^String s]}]
(.IndexOf s "boo")))) ;;; .indexOf
|
70588
|
; Copyright (c) <NAME>. All rights reserved.
; The use and distribution terms for this software are covered by the
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
; which can be found in the file epl-v10.html at the root of this distribution.
; By using this software in any fashion, you are agreeing to be bound by
; the terms of this license.
; You must not remove this notice, or any other, from this software.
; Author: <NAME>
;;
;; Test special forms, macros and metadata
;;
(ns clojure.test-clojure.special
(:use clojure.test)
(:require [clojure.test-helper :refer [should-not-reflect]]))
; http://clojure.org/special_forms
; let, letfn
; quote
; var
; fn
(deftest multiple-keys-in-destructuring
(let [foo (fn [& {:keys [x]}] x)
bar (fn [& options] (apply foo :x :b options))]
(is (= (bar) :b))
(is (= (bar :x :a) :a))))
(deftest empty-list-with-:as-destructuring
(let [{:as x} '()]
(is (= {} x))))
(deftest keywords-in-destructuring
(let [m {:a 1 :b 2}]
(let [{:keys [:a :b]} m]
(is (= [1 2] [a b])))
(let [{:keys [:a :b :c] :or {c 3}} m]
(is (= [1 2 3] [a b c])))))
(deftest namespaced-keywords-in-destructuring
(let [m {:a/b 1 :c/d 2}]
(let [{:keys [:a/b :c/d]} m]
(is (= [1 2] [b d])))
(let [{:keys [:a/b :c/d :e/f] :or {f 3}} m]
(is (= [1 2 3] [b d f])))))
(deftest namespaced-keys-in-destructuring
(let [m {:a/b 1 :c/d 2}]
(let [{:keys [a/b c/d]} m]
(is (= [1 2] [b d])))
(let [{:keys [a/b c/d e/f] :or {f 3}} m]
(is (= [1 2 3] [b d f])))))
(deftest namespaced-syms-in-destructuring
(let [{:syms [a/b c/d e/f] :or {f 3}} {'a/b 1 'c/d 2}]
(is (= [1 2 3] [b d f]))))
(deftest namespaced-keys-syntax
(let [{:a/keys [b c d] :or {d 3}} {:a/b 1 :a/c 2}]
(is (= [1 2 3] [b c d]))))
(deftest namespaced-syms-syntax
(let [{:a/syms [b c d] :or {d 3}} {'a/b 1 'a/c 2}]
(is (= [1 2 3] [b c d]))))
(deftest keywords-not-allowed-in-let-bindings
(is (thrown-with-msg? Exception #"did not conform to spec"
(eval '(let [:a 1] a))))
(is (thrown-with-msg? Exception #"did not conform to spec"
(eval '(let [:a/b 1] b))))
(is (thrown-with-msg? Exception #"did not conform to spec"
(eval '(let [[:a] [1]] a))))
(is (thrown-with-msg? Exception #"did not conform to spec"
(eval '(let [[:a/b] [1]] b)))))
(deftest namespaced-syms-only-allowed-in-map-destructuring
(is (thrown-with-msg? Exception #"did not conform to spec"
(eval '(let [a/x 1, [y] [1]] x))))
(is (thrown-with-msg? Exception #"did not conform to spec"
(eval '(let [[a/x] [1]] x)))))
(deftest or-doesnt-create-bindings
(is (thrown-with-msg? Exception #"Unable to resolve symbol: b"
(eval '(let [{:keys [a] :or {b 2}} {:a 1}] [a b])))))
(require '[clojure.string :as s])
(deftest resolve-keyword-ns-alias-in-destructuring
(let [{:keys [::s/x ::s/y ::s/z] :or {z 3}} {:clojure.string/x 1 :clojure.string/y 2}]
(is (= [1 2 3] [x y z]))))
(deftest quote-with-multiple-args
(let [ex (is (thrown? clojure.lang.Compiler+CompilerException ;;; Compiler$CompilerException
(eval '(quote 1 2 3))))]
(is (= '(quote 1 2 3)
(-> ex
(.InnerException) ;;; .getCause
(ex-data)
(:form))))))
(deftest typehints-retained-destructuring
(should-not-reflect
(defn foo
[{:keys [^String s]}]
(.IndexOf s "boo")))) ;;; .indexOf
| true |
; Copyright (c) PI:NAME:<NAME>END_PI. All rights reserved.
; The use and distribution terms for this software are covered by the
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
; which can be found in the file epl-v10.html at the root of this distribution.
; By using this software in any fashion, you are agreeing to be bound by
; the terms of this license.
; You must not remove this notice, or any other, from this software.
; Author: PI:NAME:<NAME>END_PI
;;
;; Test special forms, macros and metadata
;;
(ns clojure.test-clojure.special
(:use clojure.test)
(:require [clojure.test-helper :refer [should-not-reflect]]))
; http://clojure.org/special_forms
; let, letfn
; quote
; var
; fn
(deftest multiple-keys-in-destructuring
(let [foo (fn [& {:keys [x]}] x)
bar (fn [& options] (apply foo :x :b options))]
(is (= (bar) :b))
(is (= (bar :x :a) :a))))
(deftest empty-list-with-:as-destructuring
(let [{:as x} '()]
(is (= {} x))))
(deftest keywords-in-destructuring
(let [m {:a 1 :b 2}]
(let [{:keys [:a :b]} m]
(is (= [1 2] [a b])))
(let [{:keys [:a :b :c] :or {c 3}} m]
(is (= [1 2 3] [a b c])))))
(deftest namespaced-keywords-in-destructuring
(let [m {:a/b 1 :c/d 2}]
(let [{:keys [:a/b :c/d]} m]
(is (= [1 2] [b d])))
(let [{:keys [:a/b :c/d :e/f] :or {f 3}} m]
(is (= [1 2 3] [b d f])))))
(deftest namespaced-keys-in-destructuring
(let [m {:a/b 1 :c/d 2}]
(let [{:keys [a/b c/d]} m]
(is (= [1 2] [b d])))
(let [{:keys [a/b c/d e/f] :or {f 3}} m]
(is (= [1 2 3] [b d f])))))
(deftest namespaced-syms-in-destructuring
(let [{:syms [a/b c/d e/f] :or {f 3}} {'a/b 1 'c/d 2}]
(is (= [1 2 3] [b d f]))))
(deftest namespaced-keys-syntax
(let [{:a/keys [b c d] :or {d 3}} {:a/b 1 :a/c 2}]
(is (= [1 2 3] [b c d]))))
(deftest namespaced-syms-syntax
(let [{:a/syms [b c d] :or {d 3}} {'a/b 1 'a/c 2}]
(is (= [1 2 3] [b c d]))))
(deftest keywords-not-allowed-in-let-bindings
(is (thrown-with-msg? Exception #"did not conform to spec"
(eval '(let [:a 1] a))))
(is (thrown-with-msg? Exception #"did not conform to spec"
(eval '(let [:a/b 1] b))))
(is (thrown-with-msg? Exception #"did not conform to spec"
(eval '(let [[:a] [1]] a))))
(is (thrown-with-msg? Exception #"did not conform to spec"
(eval '(let [[:a/b] [1]] b)))))
(deftest namespaced-syms-only-allowed-in-map-destructuring
(is (thrown-with-msg? Exception #"did not conform to spec"
(eval '(let [a/x 1, [y] [1]] x))))
(is (thrown-with-msg? Exception #"did not conform to spec"
(eval '(let [[a/x] [1]] x)))))
(deftest or-doesnt-create-bindings
(is (thrown-with-msg? Exception #"Unable to resolve symbol: b"
(eval '(let [{:keys [a] :or {b 2}} {:a 1}] [a b])))))
(require '[clojure.string :as s])
(deftest resolve-keyword-ns-alias-in-destructuring
(let [{:keys [::s/x ::s/y ::s/z] :or {z 3}} {:clojure.string/x 1 :clojure.string/y 2}]
(is (= [1 2 3] [x y z]))))
(deftest quote-with-multiple-args
(let [ex (is (thrown? clojure.lang.Compiler+CompilerException ;;; Compiler$CompilerException
(eval '(quote 1 2 3))))]
(is (= '(quote 1 2 3)
(-> ex
(.InnerException) ;;; .getCause
(ex-data)
(:form))))))
(deftest typehints-retained-destructuring
(should-not-reflect
(defn foo
[{:keys [^String s]}]
(.IndexOf s "boo")))) ;;; .indexOf
|
[
{
"context": "UR9238\"\n params {:registration-email \"[email protected]\"\n :invite-id invite-id}\n ",
"end": 1396,
"score": 0.9998610615730286,
"start": 1375,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "-attr? [:.clj--registration-email__input] :value \"[email protected]\"))))\n\n(fact (th/test-translations \"index page\" i/",
"end": 2491,
"score": 0.999862790107727,
"start": 2470,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "}\n params {:sign-in-password \"some-input-to-not-be-retained\"}\n page (-> (th/create-reques",
"end": 4727,
"score": 0.999363362789154,
"start": 4698,
"tag": "PASSWORD",
"value": "some-input-to-not-be-retained"
},
{
"context": " params {:registration-password \"some-input-which-should-not-be-retained\"}\n page (-> (th/create-reque",
"end": 12745,
"score": 0.9979733228683472,
"start": 12706,
"tag": "PASSWORD",
"value": "some-input-which-should-not-be-retained"
}
] |
test/stonecutter/test/view/index.clj
|
d-cent/stonecutter
| 39 |
(ns stonecutter.test.view.index
(:require [midje.sweet :refer :all]
[net.cgrand.enlive-html :as html]
[stonecutter.routes :as r]
[stonecutter.test.view.test-helpers :as th]
[stonecutter.view.index :as i]))
(facts "about index page"
(let [page (-> (th/create-request) i/index)]
(fact "index page should return some html"
(html/select page [:form]) =not=> empty?)
(fact "work in progress should be removed from page"
page => th/work-in-progress-removed)
(fact "registration form posts to correct endpoint"
page => (th/has-form-action? [:.clj--register__form] (r/path :sign-in-or-register)))
(fact "sign in form posts to correct endpoint"
page => (th/has-form-action? [:.clj--sign-in__form] (r/path :sign-in-or-register)))
(fact "forgotten-password button should link to correct page"
page => (th/has-attr? [:.clj--forgot-password]
:href (r/path :show-forgotten-password-form)))
(fact "page has script link to javascript file"
(html/select page [[:script (html/attr= :src "js/main.js")]]) =not=> empty?)))
(facts "about invited user index page"
(let [invite-id "2984GHFUR9238"
params {:registration-email "[email protected]"
:invite-id invite-id}
page (-> (th/create-request {} {} params) i/accept-invite)]
(fact "accept invite page should return some html"
(html/select page [:form]) =not=> empty?)
(fact "work in progress should be removed from page"
page => th/work-in-progress-removed)
(fact "registration form posts to correct endpoint"
page => (th/has-form-action? [:.clj--register__form] (r/path :register-using-invitation :invite-id invite-id)))
(fact "there should be no sign in form"
page => (th/element-absent? [:.clj--sign-in__form]))
(fact "there should be no forgotten-password button"
page => (th/element-absent? [:.clj--forgot-password]))
(fact "page has script link to javascript file"
(html/select page [[:script (html/attr= :src "js/main.js")]]) =not=> empty?)
(fact "email is auto-filled in registration form"
page => (th/has-attr? [:.clj--registration-email__input] :value "[email protected]"))))
(fact (th/test-translations "index page" i/index))
(facts "sign-in error classes are not present when there are no errors"
(let [page (-> (th/create-request) i/index)]
(fact "no elements have class for styling errors"
page => (th/element-absent? [:.form-row--invalid]))
(fact "email validation element is removed"
page => (th/element-absent? [:.clj--sign-in-email__validation]))
(fact "password validation element is removed"
page => (th/element-absent? [:.clj--sign-in-password__validation]))
(fact "validation summary element is removed"
page => (th/element-absent? [:.clj--sign-in-validation-summary]))))
(facts "about displaying sign-in errors"
(tabular
(facts "email validations"
(let [errors {:sign-in-email ?error}
params {:sign-in-email "some-input-to-be-retained"}
page (-> (th/create-request {} errors params) i/index)]
(fact "the class for styling errors is added"
page => (th/element-exists? [[:.clj--sign-in-email :.form-row--invalid]]))
(fact "email validation element is present"
page => (th/element-exists? [:.clj--sign-in-email__validation]))
(fact "correct error message is displayed"
page => (th/has-attr? [:.clj--sign-in-email__validation]
:data-l8n (str "content:index/" ?translation-key)))
(fact "invalid value is preserved in input field"
page => (th/has-attr? [:.clj--sign-in-email__input] :value "some-input-to-be-retained"))
(fact "there are no missing translations"
(th/test-translations "index page" (constantly page)))))
?error ?translation-key
:invalid "sign-in-email-address-invalid-validation-message"
:too-long "sign-in-email-address-too-long-validation-message")
(tabular
(fact "when password is blank"
(let [errors {:sign-in-password ?error}
params {:sign-in-password "some-input-to-not-be-retained"}
page (-> (th/create-request {} errors params) i/index)]
(fact "the class for styling errors is added"
page => (th/element-exists? [[:.clj--sign-in-password :.form-row--invalid]]))
(fact "password validation element is present"
page => (th/element-exists? [:.clj--sign-in-password__validation]))
(fact "correct error message is displayed"
page => (th/has-attr? [:.clj--sign-in-password__validation]
:data-l8n (str "content:index/" ?translation-key)))
(fact "invalid value is not preserved"
(th/enlive-m->attr page [:.clj--sign-in-password__input] :value) => nil)
(fact "there are no missing translations"
(th/test-translations "index page" (constantly page)))))
?error ?translation-key
:blank "sign-in-password-blank-validation-message"
:too-short "sign-in-password-too-short-validation-message"
:too-long "sign-in-password-too-long-validation-message"))
(facts "about removing elements when there are no registration errors"
(let [page (-> (th/create-request)
i/index)]
(fact "validation summary is removed"
(html/select page [:.clj--registration-validation-summary]) => empty?)
(fact "no elements have class for styling and unhiding errors"
(html/select page [:.form-row--invalid]) => empty?)
(fact "first name validation element is not removed - it is hidden by not having the <form-row--invalid> in a parent"
(html/select page [:.clj--registration-first-name__validation]) =not=> empty?)
(fact "last name validation element is not removed - it is hidden by not having the <form-row--invalid> in a parent"
(html/select page [:.clj--registration-last-name__validation]) =not=> empty?)
(fact "email validation element is not removed - it is hidden by not having the <form-row--invalid> in a parent"
(html/select page [:.clj--registration-email__validation]) =not=> empty?)
(fact "password validation element is not removed - it is hidden by not having the <form-row--invalid> in a parent"
(html/select page [:.clj--registration-password__validation]) =not=> empty?)))
(fact "Bugfix: registration validation summary is removed when errors are not registration errors"
(let [errors {:not-a-registration-error :some-error}
page (-> (th/create-request {} errors) i/index)]
(html/select page [:.clj--registration-validation-summary]) => empty?))
(facts "about displaying registration errors"
(tabular
(facts "first name validations"
(let [errors {:registration-first-name ?error}
params {:registration-first-name "some-input-to-be-retained"}
page (-> (th/create-request {} errors params) i/index)
error-translation (str "content:index/" ?translation-key)]
(fact "validation summary includes the error message"
(html/select page [[:.clj--registration-validation-summary__item (html/attr= :data-l8n error-translation)]]) =not=> empty?)
(fact "the class for styling errors is added"
(html/select page [[:.clj--registration-first-name :.form-row--invalid]]) =not=> empty?)
(fact "email validation element is present"
(html/select page [:.clj--registration-first-name__validation]) =not=> empty?)
(fact "correct error message is displayed"
(html/select page [[:.clj--registration-first-name__validation (html/attr= :data-l8n error-translation)]]) =not=> empty?)
(fact "invalid value is preserved in input field"
page => (th/has-attr? [:.clj--registration-first-name__input] :value "some-input-to-be-retained"))
(fact "there are no missing translations"
(th/test-translations "index page" (constantly page)))))
?error ?translation-key
:blank "register-first-name-blank-validation-message"
:too-long "register-first-name-too-long-validation-message")
(tabular
(facts "last name validations"
(let [errors {:registration-last-name ?error}
params {:registration-last-name "some-input-to-be-retained"}
page (-> (th/create-request {} errors params) i/index)
error-translation (str "content:index/" ?translation-key)]
(fact "validation summary includes the error message"
(html/select page [[:.clj--registration-validation-summary__item (html/attr= :data-l8n error-translation)]]) =not=> empty?)
(fact "the class for styling errors is added"
(html/select page [[:.clj--registration-last-name :.form-row--invalid]]) =not=> empty?)
(fact "email validation element is present"
(html/select page [:.clj--registration-last-name__validation]) =not=> empty?)
(fact "correct error message is displayed"
(html/select page [[:.clj--registration-last-name__validation (html/attr= :data-l8n error-translation)]]) =not=> empty?)
(fact "invalid value is preserved in input field"
page => (th/has-attr? [:.clj--registration-last-name__input] :value "some-input-to-be-retained"))
(fact "there are no missing translations"
(th/test-translations "index page" (constantly page)))))
?error ?translation-key
:blank "register-last-name-blank-validation-message"
:too-long "register-last-name-too-long-validation-message")
(tabular
(facts "email validations"
(let [errors {:registration-email ?error}
params {:registration-email "some-input-to-be-retained"}
page (-> (th/create-request {} errors params) i/index)
error-translation (str "content:index/" ?translation-key)]
(fact "validation summary includes the error message"
(html/select page [[:.clj--registration-validation-summary__item (html/attr= :data-l8n error-translation)]]) =not=> empty?)
(fact "the class for styling errors is added"
(html/select page [[:.clj--registration-email :.form-row--invalid]]) =not=> empty?)
(fact "email validation element is present"
(html/select page [:.clj--registration-email__validation]) =not=> empty?)
(fact "correct error message is displayed"
(html/select page [[:.clj--registration-email__validation (html/attr= :data-l8n error-translation)]]) =not=> empty?)
(fact "invalid value is preserved in input field"
page => (th/has-attr? [:.clj--registration-email__input] :value "some-input-to-be-retained"))
(fact "there are no missing translations"
(th/test-translations "index page" (constantly page)))))
?error ?translation-key
:invalid "register-email-address-invalid-validation-message"
:duplicate "register-email-address-duplicate-validation-message"
:blank "register-email-address-blank-validation-message"
:too-long "register-email-address-too-long-validation-message")
(tabular
(facts "password validations"
(let [errors {:registration-password ?error}
params {:registration-password "some-input-which-should-not-be-retained"}
page (-> (th/create-request {} errors params) i/index)
error-translation (str "content:index/" ?translation-key)]
(fact "validation summary includes the error message"
(html/select page [[:.clj--registration-validation-summary__item (html/attr= :data-l8n error-translation)]]) =not=> empty?)
(fact "the class for styling errors is added"
(html/select page [[:.clj--registration-password :.form-row--invalid]]) =not=> empty?)
(fact "password validation element is present"
(html/select page [:.clj--registration-password__validation]) =not=> empty?)
(fact "correct error message is displayed"
(html/select page [[:.clj--registration-password__validation (html/attr= :data-l8n error-translation)]]) =not=> empty?)
(fact "the input is not preserved"
(th/enlive-m->attr page [:.clj--sign-in-password__input] :value) => nil)
(fact "there are no missing translations"
(th/test-translations "index page" (constantly page)))))
?error ?translation-key
:blank "register-password-blank-validation-message"
:too-short "register-password-too-short-validation-message"
:too-long "register-password-too-long-validation-message"))
|
69496
|
(ns stonecutter.test.view.index
(:require [midje.sweet :refer :all]
[net.cgrand.enlive-html :as html]
[stonecutter.routes :as r]
[stonecutter.test.view.test-helpers :as th]
[stonecutter.view.index :as i]))
(facts "about index page"
(let [page (-> (th/create-request) i/index)]
(fact "index page should return some html"
(html/select page [:form]) =not=> empty?)
(fact "work in progress should be removed from page"
page => th/work-in-progress-removed)
(fact "registration form posts to correct endpoint"
page => (th/has-form-action? [:.clj--register__form] (r/path :sign-in-or-register)))
(fact "sign in form posts to correct endpoint"
page => (th/has-form-action? [:.clj--sign-in__form] (r/path :sign-in-or-register)))
(fact "forgotten-password button should link to correct page"
page => (th/has-attr? [:.clj--forgot-password]
:href (r/path :show-forgotten-password-form)))
(fact "page has script link to javascript file"
(html/select page [[:script (html/attr= :src "js/main.js")]]) =not=> empty?)))
(facts "about invited user index page"
(let [invite-id "2984GHFUR9238"
params {:registration-email "<EMAIL>"
:invite-id invite-id}
page (-> (th/create-request {} {} params) i/accept-invite)]
(fact "accept invite page should return some html"
(html/select page [:form]) =not=> empty?)
(fact "work in progress should be removed from page"
page => th/work-in-progress-removed)
(fact "registration form posts to correct endpoint"
page => (th/has-form-action? [:.clj--register__form] (r/path :register-using-invitation :invite-id invite-id)))
(fact "there should be no sign in form"
page => (th/element-absent? [:.clj--sign-in__form]))
(fact "there should be no forgotten-password button"
page => (th/element-absent? [:.clj--forgot-password]))
(fact "page has script link to javascript file"
(html/select page [[:script (html/attr= :src "js/main.js")]]) =not=> empty?)
(fact "email is auto-filled in registration form"
page => (th/has-attr? [:.clj--registration-email__input] :value "<EMAIL>"))))
(fact (th/test-translations "index page" i/index))
(facts "sign-in error classes are not present when there are no errors"
(let [page (-> (th/create-request) i/index)]
(fact "no elements have class for styling errors"
page => (th/element-absent? [:.form-row--invalid]))
(fact "email validation element is removed"
page => (th/element-absent? [:.clj--sign-in-email__validation]))
(fact "password validation element is removed"
page => (th/element-absent? [:.clj--sign-in-password__validation]))
(fact "validation summary element is removed"
page => (th/element-absent? [:.clj--sign-in-validation-summary]))))
(facts "about displaying sign-in errors"
(tabular
(facts "email validations"
(let [errors {:sign-in-email ?error}
params {:sign-in-email "some-input-to-be-retained"}
page (-> (th/create-request {} errors params) i/index)]
(fact "the class for styling errors is added"
page => (th/element-exists? [[:.clj--sign-in-email :.form-row--invalid]]))
(fact "email validation element is present"
page => (th/element-exists? [:.clj--sign-in-email__validation]))
(fact "correct error message is displayed"
page => (th/has-attr? [:.clj--sign-in-email__validation]
:data-l8n (str "content:index/" ?translation-key)))
(fact "invalid value is preserved in input field"
page => (th/has-attr? [:.clj--sign-in-email__input] :value "some-input-to-be-retained"))
(fact "there are no missing translations"
(th/test-translations "index page" (constantly page)))))
?error ?translation-key
:invalid "sign-in-email-address-invalid-validation-message"
:too-long "sign-in-email-address-too-long-validation-message")
(tabular
(fact "when password is blank"
(let [errors {:sign-in-password ?error}
params {:sign-in-password "<PASSWORD>"}
page (-> (th/create-request {} errors params) i/index)]
(fact "the class for styling errors is added"
page => (th/element-exists? [[:.clj--sign-in-password :.form-row--invalid]]))
(fact "password validation element is present"
page => (th/element-exists? [:.clj--sign-in-password__validation]))
(fact "correct error message is displayed"
page => (th/has-attr? [:.clj--sign-in-password__validation]
:data-l8n (str "content:index/" ?translation-key)))
(fact "invalid value is not preserved"
(th/enlive-m->attr page [:.clj--sign-in-password__input] :value) => nil)
(fact "there are no missing translations"
(th/test-translations "index page" (constantly page)))))
?error ?translation-key
:blank "sign-in-password-blank-validation-message"
:too-short "sign-in-password-too-short-validation-message"
:too-long "sign-in-password-too-long-validation-message"))
(facts "about removing elements when there are no registration errors"
(let [page (-> (th/create-request)
i/index)]
(fact "validation summary is removed"
(html/select page [:.clj--registration-validation-summary]) => empty?)
(fact "no elements have class for styling and unhiding errors"
(html/select page [:.form-row--invalid]) => empty?)
(fact "first name validation element is not removed - it is hidden by not having the <form-row--invalid> in a parent"
(html/select page [:.clj--registration-first-name__validation]) =not=> empty?)
(fact "last name validation element is not removed - it is hidden by not having the <form-row--invalid> in a parent"
(html/select page [:.clj--registration-last-name__validation]) =not=> empty?)
(fact "email validation element is not removed - it is hidden by not having the <form-row--invalid> in a parent"
(html/select page [:.clj--registration-email__validation]) =not=> empty?)
(fact "password validation element is not removed - it is hidden by not having the <form-row--invalid> in a parent"
(html/select page [:.clj--registration-password__validation]) =not=> empty?)))
(fact "Bugfix: registration validation summary is removed when errors are not registration errors"
(let [errors {:not-a-registration-error :some-error}
page (-> (th/create-request {} errors) i/index)]
(html/select page [:.clj--registration-validation-summary]) => empty?))
(facts "about displaying registration errors"
(tabular
(facts "first name validations"
(let [errors {:registration-first-name ?error}
params {:registration-first-name "some-input-to-be-retained"}
page (-> (th/create-request {} errors params) i/index)
error-translation (str "content:index/" ?translation-key)]
(fact "validation summary includes the error message"
(html/select page [[:.clj--registration-validation-summary__item (html/attr= :data-l8n error-translation)]]) =not=> empty?)
(fact "the class for styling errors is added"
(html/select page [[:.clj--registration-first-name :.form-row--invalid]]) =not=> empty?)
(fact "email validation element is present"
(html/select page [:.clj--registration-first-name__validation]) =not=> empty?)
(fact "correct error message is displayed"
(html/select page [[:.clj--registration-first-name__validation (html/attr= :data-l8n error-translation)]]) =not=> empty?)
(fact "invalid value is preserved in input field"
page => (th/has-attr? [:.clj--registration-first-name__input] :value "some-input-to-be-retained"))
(fact "there are no missing translations"
(th/test-translations "index page" (constantly page)))))
?error ?translation-key
:blank "register-first-name-blank-validation-message"
:too-long "register-first-name-too-long-validation-message")
(tabular
(facts "last name validations"
(let [errors {:registration-last-name ?error}
params {:registration-last-name "some-input-to-be-retained"}
page (-> (th/create-request {} errors params) i/index)
error-translation (str "content:index/" ?translation-key)]
(fact "validation summary includes the error message"
(html/select page [[:.clj--registration-validation-summary__item (html/attr= :data-l8n error-translation)]]) =not=> empty?)
(fact "the class for styling errors is added"
(html/select page [[:.clj--registration-last-name :.form-row--invalid]]) =not=> empty?)
(fact "email validation element is present"
(html/select page [:.clj--registration-last-name__validation]) =not=> empty?)
(fact "correct error message is displayed"
(html/select page [[:.clj--registration-last-name__validation (html/attr= :data-l8n error-translation)]]) =not=> empty?)
(fact "invalid value is preserved in input field"
page => (th/has-attr? [:.clj--registration-last-name__input] :value "some-input-to-be-retained"))
(fact "there are no missing translations"
(th/test-translations "index page" (constantly page)))))
?error ?translation-key
:blank "register-last-name-blank-validation-message"
:too-long "register-last-name-too-long-validation-message")
(tabular
(facts "email validations"
(let [errors {:registration-email ?error}
params {:registration-email "some-input-to-be-retained"}
page (-> (th/create-request {} errors params) i/index)
error-translation (str "content:index/" ?translation-key)]
(fact "validation summary includes the error message"
(html/select page [[:.clj--registration-validation-summary__item (html/attr= :data-l8n error-translation)]]) =not=> empty?)
(fact "the class for styling errors is added"
(html/select page [[:.clj--registration-email :.form-row--invalid]]) =not=> empty?)
(fact "email validation element is present"
(html/select page [:.clj--registration-email__validation]) =not=> empty?)
(fact "correct error message is displayed"
(html/select page [[:.clj--registration-email__validation (html/attr= :data-l8n error-translation)]]) =not=> empty?)
(fact "invalid value is preserved in input field"
page => (th/has-attr? [:.clj--registration-email__input] :value "some-input-to-be-retained"))
(fact "there are no missing translations"
(th/test-translations "index page" (constantly page)))))
?error ?translation-key
:invalid "register-email-address-invalid-validation-message"
:duplicate "register-email-address-duplicate-validation-message"
:blank "register-email-address-blank-validation-message"
:too-long "register-email-address-too-long-validation-message")
(tabular
(facts "password validations"
(let [errors {:registration-password ?error}
params {:registration-password "<PASSWORD>"}
page (-> (th/create-request {} errors params) i/index)
error-translation (str "content:index/" ?translation-key)]
(fact "validation summary includes the error message"
(html/select page [[:.clj--registration-validation-summary__item (html/attr= :data-l8n error-translation)]]) =not=> empty?)
(fact "the class for styling errors is added"
(html/select page [[:.clj--registration-password :.form-row--invalid]]) =not=> empty?)
(fact "password validation element is present"
(html/select page [:.clj--registration-password__validation]) =not=> empty?)
(fact "correct error message is displayed"
(html/select page [[:.clj--registration-password__validation (html/attr= :data-l8n error-translation)]]) =not=> empty?)
(fact "the input is not preserved"
(th/enlive-m->attr page [:.clj--sign-in-password__input] :value) => nil)
(fact "there are no missing translations"
(th/test-translations "index page" (constantly page)))))
?error ?translation-key
:blank "register-password-blank-validation-message"
:too-short "register-password-too-short-validation-message"
:too-long "register-password-too-long-validation-message"))
| true |
(ns stonecutter.test.view.index
(:require [midje.sweet :refer :all]
[net.cgrand.enlive-html :as html]
[stonecutter.routes :as r]
[stonecutter.test.view.test-helpers :as th]
[stonecutter.view.index :as i]))
(facts "about index page"
(let [page (-> (th/create-request) i/index)]
(fact "index page should return some html"
(html/select page [:form]) =not=> empty?)
(fact "work in progress should be removed from page"
page => th/work-in-progress-removed)
(fact "registration form posts to correct endpoint"
page => (th/has-form-action? [:.clj--register__form] (r/path :sign-in-or-register)))
(fact "sign in form posts to correct endpoint"
page => (th/has-form-action? [:.clj--sign-in__form] (r/path :sign-in-or-register)))
(fact "forgotten-password button should link to correct page"
page => (th/has-attr? [:.clj--forgot-password]
:href (r/path :show-forgotten-password-form)))
(fact "page has script link to javascript file"
(html/select page [[:script (html/attr= :src "js/main.js")]]) =not=> empty?)))
(facts "about invited user index page"
(let [invite-id "2984GHFUR9238"
params {:registration-email "PI:EMAIL:<EMAIL>END_PI"
:invite-id invite-id}
page (-> (th/create-request {} {} params) i/accept-invite)]
(fact "accept invite page should return some html"
(html/select page [:form]) =not=> empty?)
(fact "work in progress should be removed from page"
page => th/work-in-progress-removed)
(fact "registration form posts to correct endpoint"
page => (th/has-form-action? [:.clj--register__form] (r/path :register-using-invitation :invite-id invite-id)))
(fact "there should be no sign in form"
page => (th/element-absent? [:.clj--sign-in__form]))
(fact "there should be no forgotten-password button"
page => (th/element-absent? [:.clj--forgot-password]))
(fact "page has script link to javascript file"
(html/select page [[:script (html/attr= :src "js/main.js")]]) =not=> empty?)
(fact "email is auto-filled in registration form"
page => (th/has-attr? [:.clj--registration-email__input] :value "PI:EMAIL:<EMAIL>END_PI"))))
(fact (th/test-translations "index page" i/index))
(facts "sign-in error classes are not present when there are no errors"
(let [page (-> (th/create-request) i/index)]
(fact "no elements have class for styling errors"
page => (th/element-absent? [:.form-row--invalid]))
(fact "email validation element is removed"
page => (th/element-absent? [:.clj--sign-in-email__validation]))
(fact "password validation element is removed"
page => (th/element-absent? [:.clj--sign-in-password__validation]))
(fact "validation summary element is removed"
page => (th/element-absent? [:.clj--sign-in-validation-summary]))))
(facts "about displaying sign-in errors"
(tabular
(facts "email validations"
(let [errors {:sign-in-email ?error}
params {:sign-in-email "some-input-to-be-retained"}
page (-> (th/create-request {} errors params) i/index)]
(fact "the class for styling errors is added"
page => (th/element-exists? [[:.clj--sign-in-email :.form-row--invalid]]))
(fact "email validation element is present"
page => (th/element-exists? [:.clj--sign-in-email__validation]))
(fact "correct error message is displayed"
page => (th/has-attr? [:.clj--sign-in-email__validation]
:data-l8n (str "content:index/" ?translation-key)))
(fact "invalid value is preserved in input field"
page => (th/has-attr? [:.clj--sign-in-email__input] :value "some-input-to-be-retained"))
(fact "there are no missing translations"
(th/test-translations "index page" (constantly page)))))
?error ?translation-key
:invalid "sign-in-email-address-invalid-validation-message"
:too-long "sign-in-email-address-too-long-validation-message")
(tabular
(fact "when password is blank"
(let [errors {:sign-in-password ?error}
params {:sign-in-password "PI:PASSWORD:<PASSWORD>END_PI"}
page (-> (th/create-request {} errors params) i/index)]
(fact "the class for styling errors is added"
page => (th/element-exists? [[:.clj--sign-in-password :.form-row--invalid]]))
(fact "password validation element is present"
page => (th/element-exists? [:.clj--sign-in-password__validation]))
(fact "correct error message is displayed"
page => (th/has-attr? [:.clj--sign-in-password__validation]
:data-l8n (str "content:index/" ?translation-key)))
(fact "invalid value is not preserved"
(th/enlive-m->attr page [:.clj--sign-in-password__input] :value) => nil)
(fact "there are no missing translations"
(th/test-translations "index page" (constantly page)))))
?error ?translation-key
:blank "sign-in-password-blank-validation-message"
:too-short "sign-in-password-too-short-validation-message"
:too-long "sign-in-password-too-long-validation-message"))
(facts "about removing elements when there are no registration errors"
(let [page (-> (th/create-request)
i/index)]
(fact "validation summary is removed"
(html/select page [:.clj--registration-validation-summary]) => empty?)
(fact "no elements have class for styling and unhiding errors"
(html/select page [:.form-row--invalid]) => empty?)
(fact "first name validation element is not removed - it is hidden by not having the <form-row--invalid> in a parent"
(html/select page [:.clj--registration-first-name__validation]) =not=> empty?)
(fact "last name validation element is not removed - it is hidden by not having the <form-row--invalid> in a parent"
(html/select page [:.clj--registration-last-name__validation]) =not=> empty?)
(fact "email validation element is not removed - it is hidden by not having the <form-row--invalid> in a parent"
(html/select page [:.clj--registration-email__validation]) =not=> empty?)
(fact "password validation element is not removed - it is hidden by not having the <form-row--invalid> in a parent"
(html/select page [:.clj--registration-password__validation]) =not=> empty?)))
(fact "Bugfix: registration validation summary is removed when errors are not registration errors"
(let [errors {:not-a-registration-error :some-error}
page (-> (th/create-request {} errors) i/index)]
(html/select page [:.clj--registration-validation-summary]) => empty?))
(facts "about displaying registration errors"
(tabular
(facts "first name validations"
(let [errors {:registration-first-name ?error}
params {:registration-first-name "some-input-to-be-retained"}
page (-> (th/create-request {} errors params) i/index)
error-translation (str "content:index/" ?translation-key)]
(fact "validation summary includes the error message"
(html/select page [[:.clj--registration-validation-summary__item (html/attr= :data-l8n error-translation)]]) =not=> empty?)
(fact "the class for styling errors is added"
(html/select page [[:.clj--registration-first-name :.form-row--invalid]]) =not=> empty?)
(fact "email validation element is present"
(html/select page [:.clj--registration-first-name__validation]) =not=> empty?)
(fact "correct error message is displayed"
(html/select page [[:.clj--registration-first-name__validation (html/attr= :data-l8n error-translation)]]) =not=> empty?)
(fact "invalid value is preserved in input field"
page => (th/has-attr? [:.clj--registration-first-name__input] :value "some-input-to-be-retained"))
(fact "there are no missing translations"
(th/test-translations "index page" (constantly page)))))
?error ?translation-key
:blank "register-first-name-blank-validation-message"
:too-long "register-first-name-too-long-validation-message")
(tabular
(facts "last name validations"
(let [errors {:registration-last-name ?error}
params {:registration-last-name "some-input-to-be-retained"}
page (-> (th/create-request {} errors params) i/index)
error-translation (str "content:index/" ?translation-key)]
(fact "validation summary includes the error message"
(html/select page [[:.clj--registration-validation-summary__item (html/attr= :data-l8n error-translation)]]) =not=> empty?)
(fact "the class for styling errors is added"
(html/select page [[:.clj--registration-last-name :.form-row--invalid]]) =not=> empty?)
(fact "email validation element is present"
(html/select page [:.clj--registration-last-name__validation]) =not=> empty?)
(fact "correct error message is displayed"
(html/select page [[:.clj--registration-last-name__validation (html/attr= :data-l8n error-translation)]]) =not=> empty?)
(fact "invalid value is preserved in input field"
page => (th/has-attr? [:.clj--registration-last-name__input] :value "some-input-to-be-retained"))
(fact "there are no missing translations"
(th/test-translations "index page" (constantly page)))))
?error ?translation-key
:blank "register-last-name-blank-validation-message"
:too-long "register-last-name-too-long-validation-message")
(tabular
(facts "email validations"
(let [errors {:registration-email ?error}
params {:registration-email "some-input-to-be-retained"}
page (-> (th/create-request {} errors params) i/index)
error-translation (str "content:index/" ?translation-key)]
(fact "validation summary includes the error message"
(html/select page [[:.clj--registration-validation-summary__item (html/attr= :data-l8n error-translation)]]) =not=> empty?)
(fact "the class for styling errors is added"
(html/select page [[:.clj--registration-email :.form-row--invalid]]) =not=> empty?)
(fact "email validation element is present"
(html/select page [:.clj--registration-email__validation]) =not=> empty?)
(fact "correct error message is displayed"
(html/select page [[:.clj--registration-email__validation (html/attr= :data-l8n error-translation)]]) =not=> empty?)
(fact "invalid value is preserved in input field"
page => (th/has-attr? [:.clj--registration-email__input] :value "some-input-to-be-retained"))
(fact "there are no missing translations"
(th/test-translations "index page" (constantly page)))))
?error ?translation-key
:invalid "register-email-address-invalid-validation-message"
:duplicate "register-email-address-duplicate-validation-message"
:blank "register-email-address-blank-validation-message"
:too-long "register-email-address-too-long-validation-message")
(tabular
(facts "password validations"
(let [errors {:registration-password ?error}
params {:registration-password "PI:PASSWORD:<PASSWORD>END_PI"}
page (-> (th/create-request {} errors params) i/index)
error-translation (str "content:index/" ?translation-key)]
(fact "validation summary includes the error message"
(html/select page [[:.clj--registration-validation-summary__item (html/attr= :data-l8n error-translation)]]) =not=> empty?)
(fact "the class for styling errors is added"
(html/select page [[:.clj--registration-password :.form-row--invalid]]) =not=> empty?)
(fact "password validation element is present"
(html/select page [:.clj--registration-password__validation]) =not=> empty?)
(fact "correct error message is displayed"
(html/select page [[:.clj--registration-password__validation (html/attr= :data-l8n error-translation)]]) =not=> empty?)
(fact "the input is not preserved"
(th/enlive-m->attr page [:.clj--sign-in-password__input] :value) => nil)
(fact "there are no missing translations"
(th/test-translations "index page" (constantly page)))))
?error ?translation-key
:blank "register-password-blank-validation-message"
:too-short "register-password-too-short-validation-message"
:too-long "register-password-too-long-validation-message"))
|
[
{
"context": " sign-up-validations\n {:email \\\"\\\" :password \\\"pass\\\"})\n ; => {:email #{\\\"is required\\\"}\n ; :pa",
"end": 1365,
"score": 0.9965409636497498,
"start": 1361,
"tag": "PASSWORD",
"value": "pass"
},
{
"context": " {:email #{\\\"is required\\\"}\n ; :password #{\\\"must conatin at least one capital letter\\\"\n ; ",
"end": 1434,
"score": 0.6198487281799316,
"start": 1426,
"tag": "PASSWORD",
"value": "must con"
},
{
"context": "re/validate\n sign-up-validations\n {:email \\\"[email protected]\\\" :password \\\"s3cRet\\\"})\n ; => {}\n ```\"\n [vali",
"end": 1605,
"score": 0.9999120831489563,
"start": 1591,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "ations\n {:email \\\"[email protected]\\\" :password \\\"s3cRet\\\"})\n ; => {}\n ```\"\n [validations data]\n (redu",
"end": 1626,
"score": 0.9917056560516357,
"start": 1620,
"tag": "PASSWORD",
"value": "s3cRet"
},
{
"context": "uired\\\"]\n (email-is-present-validation {:email \\\"[email protected]\\\"}) ; => nil\n ```\"\n [pred error-key error-msg]\n",
"end": 3311,
"score": 0.9914324879646301,
"start": 3297,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "uired\\\"]\n (email-is-present-validation {:email \\\"[email protected]\\\"}) ; => nil\n ```\"\n [pred error-key error-msg]\n",
"end": 4172,
"score": 0.9989991188049316,
"start": 4158,
"tag": "EMAIL",
"value": "[email protected]"
}
] |
src/heckle/core.cljc
|
nwallace/heckle
| 0 |
(ns heckle.core)
(defn validate
"Check the given validation functions against the given data and return a (possibly empty) collection of errors. Error messages are grouped by field.
Arguments:
- `validations` - a list of validation functions to be checked against the data. Each validation function should return a tuple of `[error-key error-msg]` if the validation failed or `nil` otherwise.
- `data` - the data you're trying to validate (typically a hash-map, though it could be anything else you want as long as the validation functions know how to handle it)
Return value:
Returns a hash-map of error messages grouped by their key. If all validations pass, it returns an empty hash-map. Otherwise, the hash-map will look something like this: `{key1 #{message1}, key2 #{message2 message3}}`
Example:
```
(def sign-up-validations
[(fn [data] (when (empty? (:email data)) [:email \"is required\"]))
(fn [data] (when-not (re-find #\"[a-z]\" (:password data)) [:password \"must contain at least one lowercase letter\"]))
(fn [data] (when-not (re-find #\"[A-Z]\" (:password data)) [:password \"must contain at least one capital letter\"]))
(fn [data] (when-not (re-find #\"\\d\" (:password data)) [:password \"must contain at least one number\"]))])
(heckle.core/validate
sign-up-validations
{:email \"\" :password \"pass\"})
; => {:email #{\"is required\"}
; :password #{\"must conatin at least one capital letter\"
; \"must contain at least one number\"}}
(heckle.core/validate
sign-up-validations
{:email \"[email protected]\" :password \"s3cRet\"})
; => {}
```"
[validations data]
(reduce (fn [errors validation]
(if-let [[error-key error-msg] (validation data)]
(update errors error-key (fnil conj #{}) error-msg)
errors))
{}
validations))
(defn group
"Group dependent validations together so that if one validation fails, the rest will be skipped
Arguments:
- `validations` - the list of validation functions
Return value:
A validation function that will run the given `validations` and short-circuit on the first error
Example:
```
(heckle.core/validate
[(group (heckle.core/make-claim (string? (:email %1)) :email \"is required\")
(heckle.core/make-claim (re-find #\".@.\" (:email %1)) :email \"is invalid\"))]
{:email nil})
; => {:email #{\"is required\"}}
```"
[& validations]
(fn [data]
(->> validations
(map #(%1 data))
(keep identity)
first)))
(defn make-claim
"A helper function to create a positive validation function.
Arguments:
- `pred` - a predicate function that should return a truthy value when there is no error
- `error-key` - will be returned as the first item in a tuple if the predicate check fails
- `error-msg` - will be returned as the second item in a tuple if the predicate check fails
Return value:
Returns a validation function that fails if the predicate check fails.
Example:
```
(def email-is-present-validation
(heckle.core/make-claim
#(seq (get %1 :email \"\"))
:email \"is required\"))
(email-is-present-validation {:email \"\"}) ; => [:email \"is required\"]
(email-is-present-validation {:email \"[email protected]\"}) ; => nil
```"
[pred error-key error-msg]
(fn [data]
(when-not (pred data)
[error-key error-msg])))
(defn make-denial
"A helper function to create a negative validation function.
Arguments:
- `pred` - a predicate function that should return a falsey value when there is no error
- `error-key` - will be returned as the first item in a tuple if the predicate check fails
- `error-msg` - will be returned as the second item in a tuple if the predicate check fails
Return value:
Returns a validation function that fails if the predicate check passes.
Example:
```
(def email-is-present-validation
(heckle.core/make-denial
#(empty? (get %1 :email \"\"))
:email \"is required\"))
(email-is-present-validation {:email \"\"}) ; => [:email \"is required\"]
(email-is-present-validation {:email \"[email protected]\"}) ; => nil
```"
[pred error-key error-msg]
(fn [data]
(when (pred data)
[error-key error-msg])))
|
86538
|
(ns heckle.core)
(defn validate
"Check the given validation functions against the given data and return a (possibly empty) collection of errors. Error messages are grouped by field.
Arguments:
- `validations` - a list of validation functions to be checked against the data. Each validation function should return a tuple of `[error-key error-msg]` if the validation failed or `nil` otherwise.
- `data` - the data you're trying to validate (typically a hash-map, though it could be anything else you want as long as the validation functions know how to handle it)
Return value:
Returns a hash-map of error messages grouped by their key. If all validations pass, it returns an empty hash-map. Otherwise, the hash-map will look something like this: `{key1 #{message1}, key2 #{message2 message3}}`
Example:
```
(def sign-up-validations
[(fn [data] (when (empty? (:email data)) [:email \"is required\"]))
(fn [data] (when-not (re-find #\"[a-z]\" (:password data)) [:password \"must contain at least one lowercase letter\"]))
(fn [data] (when-not (re-find #\"[A-Z]\" (:password data)) [:password \"must contain at least one capital letter\"]))
(fn [data] (when-not (re-find #\"\\d\" (:password data)) [:password \"must contain at least one number\"]))])
(heckle.core/validate
sign-up-validations
{:email \"\" :password \"<PASSWORD>\"})
; => {:email #{\"is required\"}
; :password #{\"<PASSWORD>atin at least one capital letter\"
; \"must contain at least one number\"}}
(heckle.core/validate
sign-up-validations
{:email \"<EMAIL>\" :password \"<PASSWORD>\"})
; => {}
```"
[validations data]
(reduce (fn [errors validation]
(if-let [[error-key error-msg] (validation data)]
(update errors error-key (fnil conj #{}) error-msg)
errors))
{}
validations))
(defn group
"Group dependent validations together so that if one validation fails, the rest will be skipped
Arguments:
- `validations` - the list of validation functions
Return value:
A validation function that will run the given `validations` and short-circuit on the first error
Example:
```
(heckle.core/validate
[(group (heckle.core/make-claim (string? (:email %1)) :email \"is required\")
(heckle.core/make-claim (re-find #\".@.\" (:email %1)) :email \"is invalid\"))]
{:email nil})
; => {:email #{\"is required\"}}
```"
[& validations]
(fn [data]
(->> validations
(map #(%1 data))
(keep identity)
first)))
(defn make-claim
"A helper function to create a positive validation function.
Arguments:
- `pred` - a predicate function that should return a truthy value when there is no error
- `error-key` - will be returned as the first item in a tuple if the predicate check fails
- `error-msg` - will be returned as the second item in a tuple if the predicate check fails
Return value:
Returns a validation function that fails if the predicate check fails.
Example:
```
(def email-is-present-validation
(heckle.core/make-claim
#(seq (get %1 :email \"\"))
:email \"is required\"))
(email-is-present-validation {:email \"\"}) ; => [:email \"is required\"]
(email-is-present-validation {:email \"<EMAIL>\"}) ; => nil
```"
[pred error-key error-msg]
(fn [data]
(when-not (pred data)
[error-key error-msg])))
(defn make-denial
"A helper function to create a negative validation function.
Arguments:
- `pred` - a predicate function that should return a falsey value when there is no error
- `error-key` - will be returned as the first item in a tuple if the predicate check fails
- `error-msg` - will be returned as the second item in a tuple if the predicate check fails
Return value:
Returns a validation function that fails if the predicate check passes.
Example:
```
(def email-is-present-validation
(heckle.core/make-denial
#(empty? (get %1 :email \"\"))
:email \"is required\"))
(email-is-present-validation {:email \"\"}) ; => [:email \"is required\"]
(email-is-present-validation {:email \"<EMAIL>\"}) ; => nil
```"
[pred error-key error-msg]
(fn [data]
(when (pred data)
[error-key error-msg])))
| true |
(ns heckle.core)
(defn validate
"Check the given validation functions against the given data and return a (possibly empty) collection of errors. Error messages are grouped by field.
Arguments:
- `validations` - a list of validation functions to be checked against the data. Each validation function should return a tuple of `[error-key error-msg]` if the validation failed or `nil` otherwise.
- `data` - the data you're trying to validate (typically a hash-map, though it could be anything else you want as long as the validation functions know how to handle it)
Return value:
Returns a hash-map of error messages grouped by their key. If all validations pass, it returns an empty hash-map. Otherwise, the hash-map will look something like this: `{key1 #{message1}, key2 #{message2 message3}}`
Example:
```
(def sign-up-validations
[(fn [data] (when (empty? (:email data)) [:email \"is required\"]))
(fn [data] (when-not (re-find #\"[a-z]\" (:password data)) [:password \"must contain at least one lowercase letter\"]))
(fn [data] (when-not (re-find #\"[A-Z]\" (:password data)) [:password \"must contain at least one capital letter\"]))
(fn [data] (when-not (re-find #\"\\d\" (:password data)) [:password \"must contain at least one number\"]))])
(heckle.core/validate
sign-up-validations
{:email \"\" :password \"PI:PASSWORD:<PASSWORD>END_PI\"})
; => {:email #{\"is required\"}
; :password #{\"PI:PASSWORD:<PASSWORD>END_PIatin at least one capital letter\"
; \"must contain at least one number\"}}
(heckle.core/validate
sign-up-validations
{:email \"PI:EMAIL:<EMAIL>END_PI\" :password \"PI:PASSWORD:<PASSWORD>END_PI\"})
; => {}
```"
[validations data]
(reduce (fn [errors validation]
(if-let [[error-key error-msg] (validation data)]
(update errors error-key (fnil conj #{}) error-msg)
errors))
{}
validations))
(defn group
"Group dependent validations together so that if one validation fails, the rest will be skipped
Arguments:
- `validations` - the list of validation functions
Return value:
A validation function that will run the given `validations` and short-circuit on the first error
Example:
```
(heckle.core/validate
[(group (heckle.core/make-claim (string? (:email %1)) :email \"is required\")
(heckle.core/make-claim (re-find #\".@.\" (:email %1)) :email \"is invalid\"))]
{:email nil})
; => {:email #{\"is required\"}}
```"
[& validations]
(fn [data]
(->> validations
(map #(%1 data))
(keep identity)
first)))
(defn make-claim
"A helper function to create a positive validation function.
Arguments:
- `pred` - a predicate function that should return a truthy value when there is no error
- `error-key` - will be returned as the first item in a tuple if the predicate check fails
- `error-msg` - will be returned as the second item in a tuple if the predicate check fails
Return value:
Returns a validation function that fails if the predicate check fails.
Example:
```
(def email-is-present-validation
(heckle.core/make-claim
#(seq (get %1 :email \"\"))
:email \"is required\"))
(email-is-present-validation {:email \"\"}) ; => [:email \"is required\"]
(email-is-present-validation {:email \"PI:EMAIL:<EMAIL>END_PI\"}) ; => nil
```"
[pred error-key error-msg]
(fn [data]
(when-not (pred data)
[error-key error-msg])))
(defn make-denial
"A helper function to create a negative validation function.
Arguments:
- `pred` - a predicate function that should return a falsey value when there is no error
- `error-key` - will be returned as the first item in a tuple if the predicate check fails
- `error-msg` - will be returned as the second item in a tuple if the predicate check fails
Return value:
Returns a validation function that fails if the predicate check passes.
Example:
```
(def email-is-present-validation
(heckle.core/make-denial
#(empty? (get %1 :email \"\"))
:email \"is required\"))
(email-is-present-validation {:email \"\"}) ; => [:email \"is required\"]
(email-is-present-validation {:email \"PI:EMAIL:<EMAIL>END_PI\"}) ; => nil
```"
[pred error-key error-msg]
(fn [data]
(when (pred data)
[error-key error-msg])))
|
[
{
"context": " :hostname \"localhost\"\n :username \"flugger\"\n :password \"flugger\"})\n\n(defn clean",
"end": 300,
"score": 0.9996245503425598,
"start": 293,
"tag": "USERNAME",
"value": "flugger"
},
{
"context": " :username \"flugger\"\n :password \"flugger\"})\n\n(defn clean-db []\n @(db/truncat-table! :mess",
"end": 334,
"score": 0.9991348385810852,
"start": 327,
"tag": "PASSWORD",
"value": "flugger"
}
] |
test/flugger/db/entity_test.clj
|
vstukanov/flugger
| 1 |
(ns flugger.db.entity-test
(:require [clojure.test :refer :all]
[flugger.db.client :as db]
[flugger.model.service :as service]
[honeysql.helpers :as q]))
(def test-db {:database "flugger-test"
:hostname "localhost"
:username "flugger"
:password "flugger"})
(defn clean-db []
@(db/truncat-table! :messages)
@(db/truncat-table! :channels)
@(db/truncat-table! :users)
@(db/truncat-table! :services))
;; TODO add database creation on demand.
(defn with-test-db [f]
(with-redefs [db/db (db/open! test-db)]
(clean-db)
(f)
(clean-db)
(db/close!)))
|
97334
|
(ns flugger.db.entity-test
(:require [clojure.test :refer :all]
[flugger.db.client :as db]
[flugger.model.service :as service]
[honeysql.helpers :as q]))
(def test-db {:database "flugger-test"
:hostname "localhost"
:username "flugger"
:password "<PASSWORD>"})
(defn clean-db []
@(db/truncat-table! :messages)
@(db/truncat-table! :channels)
@(db/truncat-table! :users)
@(db/truncat-table! :services))
;; TODO add database creation on demand.
(defn with-test-db [f]
(with-redefs [db/db (db/open! test-db)]
(clean-db)
(f)
(clean-db)
(db/close!)))
| true |
(ns flugger.db.entity-test
(:require [clojure.test :refer :all]
[flugger.db.client :as db]
[flugger.model.service :as service]
[honeysql.helpers :as q]))
(def test-db {:database "flugger-test"
:hostname "localhost"
:username "flugger"
:password "PI:PASSWORD:<PASSWORD>END_PI"})
(defn clean-db []
@(db/truncat-table! :messages)
@(db/truncat-table! :channels)
@(db/truncat-table! :users)
@(db/truncat-table! :services))
;; TODO add database creation on demand.
(defn with-test-db [f]
(with-redefs [db/db (db/open! test-db)]
(clean-db)
(f)
(clean-db)
(db/close!)))
|
[
{
"context": "xample.com\"\n :scrapernews.specs/author \"A. N. Other\"\n :scrapernews.specs/points 1\n ",
"end": 628,
"score": 0.9766660928726196,
"start": 617,
"tag": "NAME",
"value": "A. N. Other"
}
] |
test/scrapernews/specs_test.clj
|
neilwashere/scrapernews
| 0 |
(ns scrapernews.specs-test
(:require [scrapernews.specs :as sut]
[clojure.test :as t]
[clojure.spec :as s]))
;; TODO -These tests are fairly simplistic and could be make more robust
;; using generators from the `clojure.spec.gen' namespace. I've ommited this as
;; there is it requires adding sample generation for the URI, which looks a bit iffy.
;; however, beyond this excercise, that's what I'd do.
(t/deftest hacker-post
(let [sample-post
{:scrapernews.specs/title "A titles"
:scrapernews.specs/uri "http://example.com"
:scrapernews.specs/author "A. N. Other"
:scrapernews.specs/points 1
:scrapernews.specs/comments 1
:scrapernews.specs/rank 1}]
(t/testing "Valid post is valid"
(t/is (sut/valid? :scrapernews.specs/hacker-post sample-post)))
(t/testing "title must not be empty"
(let [bad-post (assoc sample-post :scrapernews.specs/title "")]
(t/is (not (sut/valid? :scrapernews.specs/title bad-post)))))
(t/testing "title must not be larger that 256 chars"
(let [bad-post (assoc sample-post :scrapernews.specs/title (clojure.string/join (repeat 257 "x")))]
(t/is (not (sut/valid? :scrapernews.specs/title bad-post)))))
(t/testing "author must not be larger that 256 chars"
(let [bad-post (assoc sample-post :scrapernews.specs/author (clojure.string/join (repeat 257 "x")))]
(t/is (not (sut/valid? :scrapernews.specs/author bad-post)))))
(t/testing "author must not be empty"
(let [bad-post (assoc sample-post :scrapernews.specs/author "")]
(t/is (not (sut/valid? :scrapernews.specs/author bad-post)))))
(t/testing "rank must be postive int"
(let [bad-post (assoc sample-post :scrapernews.specs/rank -1)]
(t/is (not (sut/valid? :scrapernews.specs/title bad-post)))))
(t/testing "comments must be postive int"
(let [bad-post (assoc sample-post :scrapernews.specs/comments -1)]
(t/is (not (sut/valid? :scrapernews.specs/comments bad-post)))))
(t/testing "points must be postive int"
(let [bad-post (assoc sample-post :scrapernews.specs/points -1)]
(t/is (not (sut/valid? :scrapernews.specs/points bad-post)))))
(t/testing "uri must valid"
(let [bad-post (assoc sample-post :scrapernews.specs/uri "")]
(t/is (not (sut/valid? :scrapernews.specs/uri bad-post)))))))
|
88973
|
(ns scrapernews.specs-test
(:require [scrapernews.specs :as sut]
[clojure.test :as t]
[clojure.spec :as s]))
;; TODO -These tests are fairly simplistic and could be make more robust
;; using generators from the `clojure.spec.gen' namespace. I've ommited this as
;; there is it requires adding sample generation for the URI, which looks a bit iffy.
;; however, beyond this excercise, that's what I'd do.
(t/deftest hacker-post
(let [sample-post
{:scrapernews.specs/title "A titles"
:scrapernews.specs/uri "http://example.com"
:scrapernews.specs/author "<NAME>"
:scrapernews.specs/points 1
:scrapernews.specs/comments 1
:scrapernews.specs/rank 1}]
(t/testing "Valid post is valid"
(t/is (sut/valid? :scrapernews.specs/hacker-post sample-post)))
(t/testing "title must not be empty"
(let [bad-post (assoc sample-post :scrapernews.specs/title "")]
(t/is (not (sut/valid? :scrapernews.specs/title bad-post)))))
(t/testing "title must not be larger that 256 chars"
(let [bad-post (assoc sample-post :scrapernews.specs/title (clojure.string/join (repeat 257 "x")))]
(t/is (not (sut/valid? :scrapernews.specs/title bad-post)))))
(t/testing "author must not be larger that 256 chars"
(let [bad-post (assoc sample-post :scrapernews.specs/author (clojure.string/join (repeat 257 "x")))]
(t/is (not (sut/valid? :scrapernews.specs/author bad-post)))))
(t/testing "author must not be empty"
(let [bad-post (assoc sample-post :scrapernews.specs/author "")]
(t/is (not (sut/valid? :scrapernews.specs/author bad-post)))))
(t/testing "rank must be postive int"
(let [bad-post (assoc sample-post :scrapernews.specs/rank -1)]
(t/is (not (sut/valid? :scrapernews.specs/title bad-post)))))
(t/testing "comments must be postive int"
(let [bad-post (assoc sample-post :scrapernews.specs/comments -1)]
(t/is (not (sut/valid? :scrapernews.specs/comments bad-post)))))
(t/testing "points must be postive int"
(let [bad-post (assoc sample-post :scrapernews.specs/points -1)]
(t/is (not (sut/valid? :scrapernews.specs/points bad-post)))))
(t/testing "uri must valid"
(let [bad-post (assoc sample-post :scrapernews.specs/uri "")]
(t/is (not (sut/valid? :scrapernews.specs/uri bad-post)))))))
| true |
(ns scrapernews.specs-test
(:require [scrapernews.specs :as sut]
[clojure.test :as t]
[clojure.spec :as s]))
;; TODO -These tests are fairly simplistic and could be make more robust
;; using generators from the `clojure.spec.gen' namespace. I've ommited this as
;; there is it requires adding sample generation for the URI, which looks a bit iffy.
;; however, beyond this excercise, that's what I'd do.
(t/deftest hacker-post
(let [sample-post
{:scrapernews.specs/title "A titles"
:scrapernews.specs/uri "http://example.com"
:scrapernews.specs/author "PI:NAME:<NAME>END_PI"
:scrapernews.specs/points 1
:scrapernews.specs/comments 1
:scrapernews.specs/rank 1}]
(t/testing "Valid post is valid"
(t/is (sut/valid? :scrapernews.specs/hacker-post sample-post)))
(t/testing "title must not be empty"
(let [bad-post (assoc sample-post :scrapernews.specs/title "")]
(t/is (not (sut/valid? :scrapernews.specs/title bad-post)))))
(t/testing "title must not be larger that 256 chars"
(let [bad-post (assoc sample-post :scrapernews.specs/title (clojure.string/join (repeat 257 "x")))]
(t/is (not (sut/valid? :scrapernews.specs/title bad-post)))))
(t/testing "author must not be larger that 256 chars"
(let [bad-post (assoc sample-post :scrapernews.specs/author (clojure.string/join (repeat 257 "x")))]
(t/is (not (sut/valid? :scrapernews.specs/author bad-post)))))
(t/testing "author must not be empty"
(let [bad-post (assoc sample-post :scrapernews.specs/author "")]
(t/is (not (sut/valid? :scrapernews.specs/author bad-post)))))
(t/testing "rank must be postive int"
(let [bad-post (assoc sample-post :scrapernews.specs/rank -1)]
(t/is (not (sut/valid? :scrapernews.specs/title bad-post)))))
(t/testing "comments must be postive int"
(let [bad-post (assoc sample-post :scrapernews.specs/comments -1)]
(t/is (not (sut/valid? :scrapernews.specs/comments bad-post)))))
(t/testing "points must be postive int"
(let [bad-post (assoc sample-post :scrapernews.specs/points -1)]
(t/is (not (sut/valid? :scrapernews.specs/points bad-post)))))
(t/testing "uri must valid"
(let [bad-post (assoc sample-post :scrapernews.specs/uri "")]
(t/is (not (sut/valid? :scrapernews.specs/uri bad-post)))))))
|
[
{
"context": ";; Copyright 2014-2020 King\n;; Copyright 2009-2014 Ragnar Svensson, Christian Murray\n;; Licensed under the Defold Li",
"end": 111,
"score": 0.9998144507408142,
"start": 96,
"tag": "NAME",
"value": "Ragnar Svensson"
},
{
"context": "-2020 King\n;; Copyright 2009-2014 Ragnar Svensson, Christian Murray\n;; Licensed under the Defold License version 1.0 ",
"end": 129,
"score": 0.9998213052749634,
"start": 113,
"tag": "NAME",
"value": "Christian Murray"
},
{
"context": " #{:passthrough}}\n [first-name-cell :name \"Sam\"] {first-name-cell #{:_declared-pro",
"end": 7411,
"score": 0.9996416568756104,
"start": 7408,
"tag": "NAME",
"value": "Sam"
}
] |
editor/test/internal/transaction_test.clj
|
cmarincia/defold
| 0 |
;; Copyright 2020-2022 The Defold Foundation
;; Copyright 2014-2020 King
;; Copyright 2009-2014 Ragnar Svensson, Christian Murray
;; Licensed under the Defold License version 1.0 (the "License"); you may not use
;; this file except in compliance with the License.
;;
;; You may obtain a copy of the License, together with FAQs at
;; https://www.defold.com/license
;;
;; Unless required by applicable law or agreed to in writing, software distributed
;; under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
;; CONDITIONS OF ANY KIND, either express or implied. See the License for the
;; specific language governing permissions and limitations under the License.
(ns internal.transaction-test
(:require [clojure.test :refer :all]
[dynamo.graph :as g]
[internal.transaction :as it]
[support.test-support :as ts]))
(g/defnk upcase-a [a] (.toUpperCase a))
(g/defnode Resource
(input a g/Str)
(output b g/Keyword (g/fnk [] :ok))
(output c g/Str upcase-a)
(property d g/Str (default ""))
(property marker g/Int))
(g/defnode Downstream
(input consumer g/Keyword)
(input array-consumer g/Keyword :array))
(defn safe+ [x y] (int (or (and x (+ x y)) y)))
(deftest low-level-transactions
(testing "one node"
(ts/with-clean-system
(let [tx-result (g/transact (g/make-node world Resource :d "known value"))]
(is (= :ok (:status tx-result))))))
(testing "two connected nodes"
(ts/with-clean-system
(let [[id1 id2] (ts/tx-nodes (g/make-node world Resource)
(g/make-node world Downstream))
after (:basis (g/transact (it/connect id1 :b id2 :consumer)))]
(is (= [id1 :b] (first (g/sources after id2 :consumer))))
(is (= [id2 :consumer] (first (g/targets after id1 :b)))))))
(testing "connections have cardinality"
(ts/with-clean-system
(let [[id1 id2] (ts/tx-nodes (g/make-node world Resource)
(g/make-node world Downstream))]
(g/transact (g/connect id1 :b id2 :array-consumer))
(g/transact (g/connect id1 :b id2 :array-consumer))
(is (= 2 (count (g/sources-of id2 :array-consumer))))
(is (= 2 (count (g/inputs id2)))))))
(testing "disconnect disconnects all matching"
(ts/with-clean-system
(let [[id1 id2] (ts/tx-nodes (g/make-node world Resource)
(g/make-node world Downstream))]
(g/transact (g/connect id1 :b id2 :array-consumer))
(g/transact (g/connect id1 :b id2 :array-consumer))
(g/transact (g/disconnect id1 :b id2 :array-consumer))
(is (= 0 (count (g/sources-of id2 :array-consumer))))
(is (= 0 (count (g/inputs id2)))))))
(testing "disconnect two singly-connected nodes"
(ts/with-clean-system
(let [[id1 id2] (ts/tx-nodes (g/make-node world Resource)
(g/make-node world Downstream))
tx-result (g/transact (it/connect id1 :b id2 :consumer))
tx-result (g/transact (it/disconnect id1 :b id2 :consumer))
after (:basis tx-result)]
(is (= :ok (:status tx-result)))
(is (= [] (g/sources after id2 :consumer)))
(is (= [] (g/targets after id1 :b))))))
(testing "simple update"
(ts/with-clean-system
(let [[resource] (ts/tx-nodes (g/make-node world Resource :marker (int 0)))
tx-result (g/transact (it/update-property resource :marker safe+ [42]))]
(is (= :ok (:status tx-result)))
(is (= 42 (g/node-value resource :marker))))))
(testing "node deletion"
(ts/with-clean-system
(let [[resource1 resource2] (ts/tx-nodes (g/make-node world Resource)
(g/make-node world Downstream))]
(g/transact (it/connect resource1 :b resource2 :consumer))
(let [tx-result (g/transact (it/delete-node resource2))
after (:basis tx-result)]
(is (nil? (g/node-by-id after resource2)))
(is (empty? (g/targets after resource1 :b)))
(is (contains? (:nodes-deleted tx-result) resource2))
(is (empty? (:nodes-added tx-result)))))))
(testing "node deletion in same transaction"
(ts/with-clean-system
(let [tx-result (g/transact
(g/make-nodes world
[resource Resource]
(g/delete-node resource)))
[node] (g/tx-nodes-added tx-result)]
(is (= :ok (:status tx-result)))
(is (nil? node))))))
(g/defnode NamedThing
(property name g/Str))
(g/deftype Date java.util.Date)
(g/defnode Person
(property date-of-birth Date)
(input first-name g/Str)
(input surname g/Str)
(output friendly-name g/Str (g/fnk [first-name] first-name))
(output full-name g/Str (g/fnk [first-name surname] (str first-name " " surname)))
(output age Date (g/fnk [date-of-birth] date-of-birth)))
(g/defnode Receiver
(input generic-input g/Any)
(property touched g/Bool (default false))
(output passthrough g/Any (g/fnk [generic-input] generic-input)))
(g/defnode FocalNode
(input aggregator g/Any :array)
(output aggregated [g/Any] (g/fnk [aggregator] aggregator)))
(defn- build-network
[world]
(let [nodes {:person (g/make-node world Person)
:first-name-cell (g/make-node world NamedThing)
:last-name-cell (g/make-node world NamedThing)
:greeter (g/make-node world Receiver)
:formal-greeter (g/make-node world Receiver)
:calculator (g/make-node world Receiver)
:multi-node-target (g/make-node world FocalNode)}
nodes (zipmap (keys nodes) (apply ts/tx-nodes (vals nodes)))]
(g/transact
(for [[from from-l to to-l]
[[:first-name-cell :name :person :first-name]
[:last-name-cell :name :person :surname]
[:person :friendly-name :greeter :generic-input]
[:person :full-name :formal-greeter :generic-input]
[:person :age :calculator :generic-input]
[:person :full-name :multi-node-target :aggregator]
[:formal-greeter :passthrough :multi-node-target :aggregator]]]
(g/connect (from nodes) from-l (to nodes) to-l)))
nodes))
(defmacro affected-by [& forms]
`(let [tx-result# (g/transact ~@forms)]
(set (:outputs-modified tx-result#))))
(defn pairwise [m]
(for [[k vs] m
v vs]
[k v]))
(deftest precise-invalidation
(ts/with-clean-system
(let [{:keys [calculator person first-name-cell greeter formal-greeter multi-node-target]} (build-network world)]
(are [update expected] (= (into #{} (pairwise expected)) (affected-by (apply g/set-property update)))
[calculator :touched true] {calculator #{:_declared-properties :_properties :touched}}
[person :date-of-birth (java.util.Date.)] {person #{:_declared-properties :_properties :age :date-of-birth}
calculator #{:passthrough}}
[first-name-cell :name "Sam"] {first-name-cell #{:_declared-properties :_properties :name}
person #{:full-name :friendly-name}
greeter #{:passthrough}
formal-greeter #{:passthrough}
multi-node-target #{:aggregated}}))))
(deftest blanket-invalidation
(ts/with-clean-system
(let [{:keys [calculator person first-name-cell greeter formal-greeter multi-node-target]} (build-network world)
tx-result (g/transact (g/invalidate person))
outputs-modified (:outputs-modified tx-result)]
(doseq [output [:_node-id :_properties :friendly-name :full-name :date-of-birth :age]]
(is (some #{[person output]} outputs-modified))))))
(g/defnode CachedOutputInvalidation
(property a-property g/Str (default "a-string"))
(output ordinary g/Str :cached (g/fnk [a-property] a-property))
(output self-dependent g/Str :cached (g/fnk [ordinary] ordinary)))
(deftest invalidated-properties-noted-by-transaction
(ts/with-clean-system
(let [tx-result (g/transact (g/make-node world CachedOutputInvalidation))
real-id (first (g/tx-nodes-added tx-result))
outputs-modified (:outputs-modified tx-result)]
(is (some #{real-id} (map first outputs-modified)))
(is (= #{:_declared-properties :_properties :_overridden-properties :_node-id :_output-jammers :self-dependent :a-property :ordinary} (into #{} (map second outputs-modified))))
(let [tx-data [(it/update-property real-id :a-property (constantly "new-value") [])]
tx-result (g/transact tx-data)
outputs-modified (:outputs-modified tx-result)]
(is (some #{real-id} (map first outputs-modified)))
(is (= #{:_declared-properties :_properties :a-property :ordinary :self-dependent} (into #{} (map second outputs-modified))))))))
(g/defnode CachedValueNode
(output cached-output g/Str :cached (g/fnk [] "an-output-value")))
(defn cache-peek
[node-id output]
(get (g/cache) [node-id output]))
;; TODO - move this to an integration test group
(deftest values-of-a-deleted-node-are-removed-from-cache
(ts/with-clean-system
(let [[node-id] (ts/tx-nodes (g/make-node world CachedValueNode))]
(is (= "an-output-value" (g/node-value node-id :cached-output)))
(let [cached-value (cache-peek node-id :cached-output)]
(is (= "an-output-value" cached-value))
(g/transact (g/delete-node node-id))
(is (nil? (cache-peek node-id :cached-output)))))))
(g/defnode Container
(input nodes g/Any :array :cascade-delete))
(deftest double-deletion-is-safe
(testing "delete scope first"
(ts/with-clean-system
(let [[outer inner] (ts/tx-nodes (g/make-node world Container) (g/make-node world Resource))]
(g/transact (g/connect inner :_node-id outer :nodes))
(is (= :ok (:status (g/transact
(concat
(g/delete-node outer)
(g/delete-node inner)))))))))
(testing "delete inner node first"
(ts/with-clean-system
(let [[outer inner] (ts/tx-nodes (g/make-node world Container) (g/make-node world Resource))]
(g/transact (g/connect inner :_node-id outer :nodes))
(is (= :ok (:status (g/transact
(concat
(g/delete-node inner)
(g/delete-node outer))))))))))
(defn- exists? [node-id] (not (nil? (g/node-by-id (g/now) node-id))))
(g/defnode CascadingContainer
(property a-property g/Str (default ""))
(input attachments g/Any :cascade-delete :array))
(deftest cascading-delete
(testing "delete container, one cascade connected by one output"
(ts/with-clean-system
(let [[container resource] (ts/tx-nodes (g/make-node world CascadingContainer) (g/make-node world Resource))]
(g/transact
(g/connect resource :b container :attachments))
(is (= :ok (:status (g/transact (g/delete-node container)))))
(is (not (exists? container)))
(is (not (exists? resource))))))
(testing "delete container, one cascade connected by multiple outputs"
(ts/with-clean-system
(let [[container resource] (ts/tx-nodes (g/make-node world CascadingContainer) (g/make-node world Resource))]
(g/transact
[(g/connect resource :b container :attachments)
(g/connect resource :c container :attachments)])
(is (= :ok (:status (g/transact (g/delete-node container)))))
(is (not (exists? container)))
(is (not (exists? resource))))))
(testing "delete container, one cascade connected by a property"
(ts/with-clean-system
(let [[container resource] (ts/tx-nodes (g/make-node world CascadingContainer) (g/make-node world Resource))]
(g/transact
(g/connect resource :d container :attachments))
(is (= :ok (:status (g/transact (g/delete-node container)))))
(is (not (exists? container)))
(is (not (exists? resource))))))
(testing "delete container, two cascades"
(ts/with-clean-system
(let [[container resource1 resource2] (ts/tx-nodes (g/make-node world CascadingContainer)
(g/make-node world Resource)
(g/make-node world Resource))]
(g/transact
[(g/connect resource1 :d container :attachments)
(g/connect resource2 :d container :attachments)])
(is (= :ok (:status (g/transact (g/delete-node container)))))
(is (not (exists? container)))
(is (not (exists? resource1)))
(is (not (exists? resource2))))))
(testing "delete container, daisy chain of deletes"
(ts/with-clean-system
(let [[container middle1 middle2 resource] (ts/tx-nodes (g/make-node world CascadingContainer)
(g/make-node world CascadingContainer)
(g/make-node world CascadingContainer)
(g/make-node world Resource))]
(g/transact
[(g/connect resource :d middle2 :attachments)
(g/connect middle2 :a-property middle1 :attachments)
(g/connect middle1 :a-property container :attachments)])
(is (= :ok (:status (g/transact (g/delete-node container)))))
(is (not (exists? container)))
(is (not (exists? middle1)))
(is (not (exists? middle2)))
(is (not (exists? resource)))))))
(g/defnode PropSource
(output label g/Keyword (g/fnk [] :label)))
(g/defnode PropTarget
(property target g/Keyword
(value (g/fnk [label] (println :target :value-fn label) label))
(set (fn [evaluation-context self _ new-value]
(when-let [src (g/node-value self :source-id evaluation-context)]
(println :target :connecting src new-value :to self :label)
(g/connect src new-value self :label)))))
(property second g/Keyword
(set (fn [evaluation-context self old-value new-value]
(println :second :new-value new-value)
(when-let [t (g/node-value self :target evaluation-context)]
(println :second :t t)
(g/set-property self :second t)))))
(property third g/Keyword
(set (fn [evaluation-context self old-value new-value]
(when-let [t (g/node-value self :implicit-target evaluation-context)]
(g/set-property self :third t)))))
(input source-id g/NodeID)
(input label g/Keyword)
(output implicit-target g/Keyword (g/fnk [target] target)))
;;; RAGNAR - the order of initialization on properties is not
;;; guaranteed. This test needs some rewrites.
#_(deftest property-dependencies
(ts/with-clean-system
(let [[source target] (ts/tx-nodes (g/make-nodes world [source PropSource
target [PropTarget :target :label :second :ignored :third :ignored]]
(g/connect source :_node-id target :source-id)))]
(is (= :label (g/node-value target :target)))
(is (= :label (g/node-value target :second)))
(is (= :label (g/node-value target :third))))))
(g/defnode MultiInput
(input in g/Keyword :array))
(deftest node-deletion-pull-input
(ts/with-clean-system
(let [view-graph (g/make-graph! :volatility 1)
[src-node] (g/tx-nodes-added
(g/transact
(g/make-nodes world
[resource Resource])))
[tgt-node] (g/tx-nodes-added
(g/transact
(g/make-nodes view-graph
[view MultiInput]
(g/connect src-node :b view :in))))]
(is (= [:ok] (g/node-value tgt-node :in)))
(g/delete-node! src-node)
(is (= [] (g/node-value tgt-node :in))))))
|
124229
|
;; Copyright 2020-2022 The Defold Foundation
;; Copyright 2014-2020 King
;; Copyright 2009-2014 <NAME>, <NAME>
;; Licensed under the Defold License version 1.0 (the "License"); you may not use
;; this file except in compliance with the License.
;;
;; You may obtain a copy of the License, together with FAQs at
;; https://www.defold.com/license
;;
;; Unless required by applicable law or agreed to in writing, software distributed
;; under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
;; CONDITIONS OF ANY KIND, either express or implied. See the License for the
;; specific language governing permissions and limitations under the License.
(ns internal.transaction-test
(:require [clojure.test :refer :all]
[dynamo.graph :as g]
[internal.transaction :as it]
[support.test-support :as ts]))
(g/defnk upcase-a [a] (.toUpperCase a))
(g/defnode Resource
(input a g/Str)
(output b g/Keyword (g/fnk [] :ok))
(output c g/Str upcase-a)
(property d g/Str (default ""))
(property marker g/Int))
(g/defnode Downstream
(input consumer g/Keyword)
(input array-consumer g/Keyword :array))
(defn safe+ [x y] (int (or (and x (+ x y)) y)))
(deftest low-level-transactions
(testing "one node"
(ts/with-clean-system
(let [tx-result (g/transact (g/make-node world Resource :d "known value"))]
(is (= :ok (:status tx-result))))))
(testing "two connected nodes"
(ts/with-clean-system
(let [[id1 id2] (ts/tx-nodes (g/make-node world Resource)
(g/make-node world Downstream))
after (:basis (g/transact (it/connect id1 :b id2 :consumer)))]
(is (= [id1 :b] (first (g/sources after id2 :consumer))))
(is (= [id2 :consumer] (first (g/targets after id1 :b)))))))
(testing "connections have cardinality"
(ts/with-clean-system
(let [[id1 id2] (ts/tx-nodes (g/make-node world Resource)
(g/make-node world Downstream))]
(g/transact (g/connect id1 :b id2 :array-consumer))
(g/transact (g/connect id1 :b id2 :array-consumer))
(is (= 2 (count (g/sources-of id2 :array-consumer))))
(is (= 2 (count (g/inputs id2)))))))
(testing "disconnect disconnects all matching"
(ts/with-clean-system
(let [[id1 id2] (ts/tx-nodes (g/make-node world Resource)
(g/make-node world Downstream))]
(g/transact (g/connect id1 :b id2 :array-consumer))
(g/transact (g/connect id1 :b id2 :array-consumer))
(g/transact (g/disconnect id1 :b id2 :array-consumer))
(is (= 0 (count (g/sources-of id2 :array-consumer))))
(is (= 0 (count (g/inputs id2)))))))
(testing "disconnect two singly-connected nodes"
(ts/with-clean-system
(let [[id1 id2] (ts/tx-nodes (g/make-node world Resource)
(g/make-node world Downstream))
tx-result (g/transact (it/connect id1 :b id2 :consumer))
tx-result (g/transact (it/disconnect id1 :b id2 :consumer))
after (:basis tx-result)]
(is (= :ok (:status tx-result)))
(is (= [] (g/sources after id2 :consumer)))
(is (= [] (g/targets after id1 :b))))))
(testing "simple update"
(ts/with-clean-system
(let [[resource] (ts/tx-nodes (g/make-node world Resource :marker (int 0)))
tx-result (g/transact (it/update-property resource :marker safe+ [42]))]
(is (= :ok (:status tx-result)))
(is (= 42 (g/node-value resource :marker))))))
(testing "node deletion"
(ts/with-clean-system
(let [[resource1 resource2] (ts/tx-nodes (g/make-node world Resource)
(g/make-node world Downstream))]
(g/transact (it/connect resource1 :b resource2 :consumer))
(let [tx-result (g/transact (it/delete-node resource2))
after (:basis tx-result)]
(is (nil? (g/node-by-id after resource2)))
(is (empty? (g/targets after resource1 :b)))
(is (contains? (:nodes-deleted tx-result) resource2))
(is (empty? (:nodes-added tx-result)))))))
(testing "node deletion in same transaction"
(ts/with-clean-system
(let [tx-result (g/transact
(g/make-nodes world
[resource Resource]
(g/delete-node resource)))
[node] (g/tx-nodes-added tx-result)]
(is (= :ok (:status tx-result)))
(is (nil? node))))))
(g/defnode NamedThing
(property name g/Str))
(g/deftype Date java.util.Date)
(g/defnode Person
(property date-of-birth Date)
(input first-name g/Str)
(input surname g/Str)
(output friendly-name g/Str (g/fnk [first-name] first-name))
(output full-name g/Str (g/fnk [first-name surname] (str first-name " " surname)))
(output age Date (g/fnk [date-of-birth] date-of-birth)))
(g/defnode Receiver
(input generic-input g/Any)
(property touched g/Bool (default false))
(output passthrough g/Any (g/fnk [generic-input] generic-input)))
(g/defnode FocalNode
(input aggregator g/Any :array)
(output aggregated [g/Any] (g/fnk [aggregator] aggregator)))
(defn- build-network
[world]
(let [nodes {:person (g/make-node world Person)
:first-name-cell (g/make-node world NamedThing)
:last-name-cell (g/make-node world NamedThing)
:greeter (g/make-node world Receiver)
:formal-greeter (g/make-node world Receiver)
:calculator (g/make-node world Receiver)
:multi-node-target (g/make-node world FocalNode)}
nodes (zipmap (keys nodes) (apply ts/tx-nodes (vals nodes)))]
(g/transact
(for [[from from-l to to-l]
[[:first-name-cell :name :person :first-name]
[:last-name-cell :name :person :surname]
[:person :friendly-name :greeter :generic-input]
[:person :full-name :formal-greeter :generic-input]
[:person :age :calculator :generic-input]
[:person :full-name :multi-node-target :aggregator]
[:formal-greeter :passthrough :multi-node-target :aggregator]]]
(g/connect (from nodes) from-l (to nodes) to-l)))
nodes))
(defmacro affected-by [& forms]
`(let [tx-result# (g/transact ~@forms)]
(set (:outputs-modified tx-result#))))
(defn pairwise [m]
(for [[k vs] m
v vs]
[k v]))
(deftest precise-invalidation
(ts/with-clean-system
(let [{:keys [calculator person first-name-cell greeter formal-greeter multi-node-target]} (build-network world)]
(are [update expected] (= (into #{} (pairwise expected)) (affected-by (apply g/set-property update)))
[calculator :touched true] {calculator #{:_declared-properties :_properties :touched}}
[person :date-of-birth (java.util.Date.)] {person #{:_declared-properties :_properties :age :date-of-birth}
calculator #{:passthrough}}
[first-name-cell :name "<NAME>"] {first-name-cell #{:_declared-properties :_properties :name}
person #{:full-name :friendly-name}
greeter #{:passthrough}
formal-greeter #{:passthrough}
multi-node-target #{:aggregated}}))))
(deftest blanket-invalidation
(ts/with-clean-system
(let [{:keys [calculator person first-name-cell greeter formal-greeter multi-node-target]} (build-network world)
tx-result (g/transact (g/invalidate person))
outputs-modified (:outputs-modified tx-result)]
(doseq [output [:_node-id :_properties :friendly-name :full-name :date-of-birth :age]]
(is (some #{[person output]} outputs-modified))))))
(g/defnode CachedOutputInvalidation
(property a-property g/Str (default "a-string"))
(output ordinary g/Str :cached (g/fnk [a-property] a-property))
(output self-dependent g/Str :cached (g/fnk [ordinary] ordinary)))
(deftest invalidated-properties-noted-by-transaction
(ts/with-clean-system
(let [tx-result (g/transact (g/make-node world CachedOutputInvalidation))
real-id (first (g/tx-nodes-added tx-result))
outputs-modified (:outputs-modified tx-result)]
(is (some #{real-id} (map first outputs-modified)))
(is (= #{:_declared-properties :_properties :_overridden-properties :_node-id :_output-jammers :self-dependent :a-property :ordinary} (into #{} (map second outputs-modified))))
(let [tx-data [(it/update-property real-id :a-property (constantly "new-value") [])]
tx-result (g/transact tx-data)
outputs-modified (:outputs-modified tx-result)]
(is (some #{real-id} (map first outputs-modified)))
(is (= #{:_declared-properties :_properties :a-property :ordinary :self-dependent} (into #{} (map second outputs-modified))))))))
(g/defnode CachedValueNode
(output cached-output g/Str :cached (g/fnk [] "an-output-value")))
(defn cache-peek
[node-id output]
(get (g/cache) [node-id output]))
;; TODO - move this to an integration test group
(deftest values-of-a-deleted-node-are-removed-from-cache
(ts/with-clean-system
(let [[node-id] (ts/tx-nodes (g/make-node world CachedValueNode))]
(is (= "an-output-value" (g/node-value node-id :cached-output)))
(let [cached-value (cache-peek node-id :cached-output)]
(is (= "an-output-value" cached-value))
(g/transact (g/delete-node node-id))
(is (nil? (cache-peek node-id :cached-output)))))))
(g/defnode Container
(input nodes g/Any :array :cascade-delete))
(deftest double-deletion-is-safe
(testing "delete scope first"
(ts/with-clean-system
(let [[outer inner] (ts/tx-nodes (g/make-node world Container) (g/make-node world Resource))]
(g/transact (g/connect inner :_node-id outer :nodes))
(is (= :ok (:status (g/transact
(concat
(g/delete-node outer)
(g/delete-node inner)))))))))
(testing "delete inner node first"
(ts/with-clean-system
(let [[outer inner] (ts/tx-nodes (g/make-node world Container) (g/make-node world Resource))]
(g/transact (g/connect inner :_node-id outer :nodes))
(is (= :ok (:status (g/transact
(concat
(g/delete-node inner)
(g/delete-node outer))))))))))
(defn- exists? [node-id] (not (nil? (g/node-by-id (g/now) node-id))))
(g/defnode CascadingContainer
(property a-property g/Str (default ""))
(input attachments g/Any :cascade-delete :array))
(deftest cascading-delete
(testing "delete container, one cascade connected by one output"
(ts/with-clean-system
(let [[container resource] (ts/tx-nodes (g/make-node world CascadingContainer) (g/make-node world Resource))]
(g/transact
(g/connect resource :b container :attachments))
(is (= :ok (:status (g/transact (g/delete-node container)))))
(is (not (exists? container)))
(is (not (exists? resource))))))
(testing "delete container, one cascade connected by multiple outputs"
(ts/with-clean-system
(let [[container resource] (ts/tx-nodes (g/make-node world CascadingContainer) (g/make-node world Resource))]
(g/transact
[(g/connect resource :b container :attachments)
(g/connect resource :c container :attachments)])
(is (= :ok (:status (g/transact (g/delete-node container)))))
(is (not (exists? container)))
(is (not (exists? resource))))))
(testing "delete container, one cascade connected by a property"
(ts/with-clean-system
(let [[container resource] (ts/tx-nodes (g/make-node world CascadingContainer) (g/make-node world Resource))]
(g/transact
(g/connect resource :d container :attachments))
(is (= :ok (:status (g/transact (g/delete-node container)))))
(is (not (exists? container)))
(is (not (exists? resource))))))
(testing "delete container, two cascades"
(ts/with-clean-system
(let [[container resource1 resource2] (ts/tx-nodes (g/make-node world CascadingContainer)
(g/make-node world Resource)
(g/make-node world Resource))]
(g/transact
[(g/connect resource1 :d container :attachments)
(g/connect resource2 :d container :attachments)])
(is (= :ok (:status (g/transact (g/delete-node container)))))
(is (not (exists? container)))
(is (not (exists? resource1)))
(is (not (exists? resource2))))))
(testing "delete container, daisy chain of deletes"
(ts/with-clean-system
(let [[container middle1 middle2 resource] (ts/tx-nodes (g/make-node world CascadingContainer)
(g/make-node world CascadingContainer)
(g/make-node world CascadingContainer)
(g/make-node world Resource))]
(g/transact
[(g/connect resource :d middle2 :attachments)
(g/connect middle2 :a-property middle1 :attachments)
(g/connect middle1 :a-property container :attachments)])
(is (= :ok (:status (g/transact (g/delete-node container)))))
(is (not (exists? container)))
(is (not (exists? middle1)))
(is (not (exists? middle2)))
(is (not (exists? resource)))))))
(g/defnode PropSource
(output label g/Keyword (g/fnk [] :label)))
(g/defnode PropTarget
(property target g/Keyword
(value (g/fnk [label] (println :target :value-fn label) label))
(set (fn [evaluation-context self _ new-value]
(when-let [src (g/node-value self :source-id evaluation-context)]
(println :target :connecting src new-value :to self :label)
(g/connect src new-value self :label)))))
(property second g/Keyword
(set (fn [evaluation-context self old-value new-value]
(println :second :new-value new-value)
(when-let [t (g/node-value self :target evaluation-context)]
(println :second :t t)
(g/set-property self :second t)))))
(property third g/Keyword
(set (fn [evaluation-context self old-value new-value]
(when-let [t (g/node-value self :implicit-target evaluation-context)]
(g/set-property self :third t)))))
(input source-id g/NodeID)
(input label g/Keyword)
(output implicit-target g/Keyword (g/fnk [target] target)))
;;; RAGNAR - the order of initialization on properties is not
;;; guaranteed. This test needs some rewrites.
#_(deftest property-dependencies
(ts/with-clean-system
(let [[source target] (ts/tx-nodes (g/make-nodes world [source PropSource
target [PropTarget :target :label :second :ignored :third :ignored]]
(g/connect source :_node-id target :source-id)))]
(is (= :label (g/node-value target :target)))
(is (= :label (g/node-value target :second)))
(is (= :label (g/node-value target :third))))))
(g/defnode MultiInput
(input in g/Keyword :array))
(deftest node-deletion-pull-input
(ts/with-clean-system
(let [view-graph (g/make-graph! :volatility 1)
[src-node] (g/tx-nodes-added
(g/transact
(g/make-nodes world
[resource Resource])))
[tgt-node] (g/tx-nodes-added
(g/transact
(g/make-nodes view-graph
[view MultiInput]
(g/connect src-node :b view :in))))]
(is (= [:ok] (g/node-value tgt-node :in)))
(g/delete-node! src-node)
(is (= [] (g/node-value tgt-node :in))))))
| true |
;; Copyright 2020-2022 The Defold Foundation
;; Copyright 2014-2020 King
;; Copyright 2009-2014 PI:NAME:<NAME>END_PI, PI:NAME:<NAME>END_PI
;; Licensed under the Defold License version 1.0 (the "License"); you may not use
;; this file except in compliance with the License.
;;
;; You may obtain a copy of the License, together with FAQs at
;; https://www.defold.com/license
;;
;; Unless required by applicable law or agreed to in writing, software distributed
;; under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
;; CONDITIONS OF ANY KIND, either express or implied. See the License for the
;; specific language governing permissions and limitations under the License.
(ns internal.transaction-test
(:require [clojure.test :refer :all]
[dynamo.graph :as g]
[internal.transaction :as it]
[support.test-support :as ts]))
(g/defnk upcase-a [a] (.toUpperCase a))
(g/defnode Resource
(input a g/Str)
(output b g/Keyword (g/fnk [] :ok))
(output c g/Str upcase-a)
(property d g/Str (default ""))
(property marker g/Int))
(g/defnode Downstream
(input consumer g/Keyword)
(input array-consumer g/Keyword :array))
(defn safe+ [x y] (int (or (and x (+ x y)) y)))
(deftest low-level-transactions
(testing "one node"
(ts/with-clean-system
(let [tx-result (g/transact (g/make-node world Resource :d "known value"))]
(is (= :ok (:status tx-result))))))
(testing "two connected nodes"
(ts/with-clean-system
(let [[id1 id2] (ts/tx-nodes (g/make-node world Resource)
(g/make-node world Downstream))
after (:basis (g/transact (it/connect id1 :b id2 :consumer)))]
(is (= [id1 :b] (first (g/sources after id2 :consumer))))
(is (= [id2 :consumer] (first (g/targets after id1 :b)))))))
(testing "connections have cardinality"
(ts/with-clean-system
(let [[id1 id2] (ts/tx-nodes (g/make-node world Resource)
(g/make-node world Downstream))]
(g/transact (g/connect id1 :b id2 :array-consumer))
(g/transact (g/connect id1 :b id2 :array-consumer))
(is (= 2 (count (g/sources-of id2 :array-consumer))))
(is (= 2 (count (g/inputs id2)))))))
(testing "disconnect disconnects all matching"
(ts/with-clean-system
(let [[id1 id2] (ts/tx-nodes (g/make-node world Resource)
(g/make-node world Downstream))]
(g/transact (g/connect id1 :b id2 :array-consumer))
(g/transact (g/connect id1 :b id2 :array-consumer))
(g/transact (g/disconnect id1 :b id2 :array-consumer))
(is (= 0 (count (g/sources-of id2 :array-consumer))))
(is (= 0 (count (g/inputs id2)))))))
(testing "disconnect two singly-connected nodes"
(ts/with-clean-system
(let [[id1 id2] (ts/tx-nodes (g/make-node world Resource)
(g/make-node world Downstream))
tx-result (g/transact (it/connect id1 :b id2 :consumer))
tx-result (g/transact (it/disconnect id1 :b id2 :consumer))
after (:basis tx-result)]
(is (= :ok (:status tx-result)))
(is (= [] (g/sources after id2 :consumer)))
(is (= [] (g/targets after id1 :b))))))
(testing "simple update"
(ts/with-clean-system
(let [[resource] (ts/tx-nodes (g/make-node world Resource :marker (int 0)))
tx-result (g/transact (it/update-property resource :marker safe+ [42]))]
(is (= :ok (:status tx-result)))
(is (= 42 (g/node-value resource :marker))))))
(testing "node deletion"
(ts/with-clean-system
(let [[resource1 resource2] (ts/tx-nodes (g/make-node world Resource)
(g/make-node world Downstream))]
(g/transact (it/connect resource1 :b resource2 :consumer))
(let [tx-result (g/transact (it/delete-node resource2))
after (:basis tx-result)]
(is (nil? (g/node-by-id after resource2)))
(is (empty? (g/targets after resource1 :b)))
(is (contains? (:nodes-deleted tx-result) resource2))
(is (empty? (:nodes-added tx-result)))))))
(testing "node deletion in same transaction"
(ts/with-clean-system
(let [tx-result (g/transact
(g/make-nodes world
[resource Resource]
(g/delete-node resource)))
[node] (g/tx-nodes-added tx-result)]
(is (= :ok (:status tx-result)))
(is (nil? node))))))
(g/defnode NamedThing
(property name g/Str))
(g/deftype Date java.util.Date)
(g/defnode Person
(property date-of-birth Date)
(input first-name g/Str)
(input surname g/Str)
(output friendly-name g/Str (g/fnk [first-name] first-name))
(output full-name g/Str (g/fnk [first-name surname] (str first-name " " surname)))
(output age Date (g/fnk [date-of-birth] date-of-birth)))
(g/defnode Receiver
(input generic-input g/Any)
(property touched g/Bool (default false))
(output passthrough g/Any (g/fnk [generic-input] generic-input)))
(g/defnode FocalNode
(input aggregator g/Any :array)
(output aggregated [g/Any] (g/fnk [aggregator] aggregator)))
(defn- build-network
[world]
(let [nodes {:person (g/make-node world Person)
:first-name-cell (g/make-node world NamedThing)
:last-name-cell (g/make-node world NamedThing)
:greeter (g/make-node world Receiver)
:formal-greeter (g/make-node world Receiver)
:calculator (g/make-node world Receiver)
:multi-node-target (g/make-node world FocalNode)}
nodes (zipmap (keys nodes) (apply ts/tx-nodes (vals nodes)))]
(g/transact
(for [[from from-l to to-l]
[[:first-name-cell :name :person :first-name]
[:last-name-cell :name :person :surname]
[:person :friendly-name :greeter :generic-input]
[:person :full-name :formal-greeter :generic-input]
[:person :age :calculator :generic-input]
[:person :full-name :multi-node-target :aggregator]
[:formal-greeter :passthrough :multi-node-target :aggregator]]]
(g/connect (from nodes) from-l (to nodes) to-l)))
nodes))
(defmacro affected-by [& forms]
`(let [tx-result# (g/transact ~@forms)]
(set (:outputs-modified tx-result#))))
(defn pairwise [m]
(for [[k vs] m
v vs]
[k v]))
(deftest precise-invalidation
(ts/with-clean-system
(let [{:keys [calculator person first-name-cell greeter formal-greeter multi-node-target]} (build-network world)]
(are [update expected] (= (into #{} (pairwise expected)) (affected-by (apply g/set-property update)))
[calculator :touched true] {calculator #{:_declared-properties :_properties :touched}}
[person :date-of-birth (java.util.Date.)] {person #{:_declared-properties :_properties :age :date-of-birth}
calculator #{:passthrough}}
[first-name-cell :name "PI:NAME:<NAME>END_PI"] {first-name-cell #{:_declared-properties :_properties :name}
person #{:full-name :friendly-name}
greeter #{:passthrough}
formal-greeter #{:passthrough}
multi-node-target #{:aggregated}}))))
(deftest blanket-invalidation
(ts/with-clean-system
(let [{:keys [calculator person first-name-cell greeter formal-greeter multi-node-target]} (build-network world)
tx-result (g/transact (g/invalidate person))
outputs-modified (:outputs-modified tx-result)]
(doseq [output [:_node-id :_properties :friendly-name :full-name :date-of-birth :age]]
(is (some #{[person output]} outputs-modified))))))
(g/defnode CachedOutputInvalidation
(property a-property g/Str (default "a-string"))
(output ordinary g/Str :cached (g/fnk [a-property] a-property))
(output self-dependent g/Str :cached (g/fnk [ordinary] ordinary)))
(deftest invalidated-properties-noted-by-transaction
(ts/with-clean-system
(let [tx-result (g/transact (g/make-node world CachedOutputInvalidation))
real-id (first (g/tx-nodes-added tx-result))
outputs-modified (:outputs-modified tx-result)]
(is (some #{real-id} (map first outputs-modified)))
(is (= #{:_declared-properties :_properties :_overridden-properties :_node-id :_output-jammers :self-dependent :a-property :ordinary} (into #{} (map second outputs-modified))))
(let [tx-data [(it/update-property real-id :a-property (constantly "new-value") [])]
tx-result (g/transact tx-data)
outputs-modified (:outputs-modified tx-result)]
(is (some #{real-id} (map first outputs-modified)))
(is (= #{:_declared-properties :_properties :a-property :ordinary :self-dependent} (into #{} (map second outputs-modified))))))))
(g/defnode CachedValueNode
(output cached-output g/Str :cached (g/fnk [] "an-output-value")))
(defn cache-peek
[node-id output]
(get (g/cache) [node-id output]))
;; TODO - move this to an integration test group
(deftest values-of-a-deleted-node-are-removed-from-cache
(ts/with-clean-system
(let [[node-id] (ts/tx-nodes (g/make-node world CachedValueNode))]
(is (= "an-output-value" (g/node-value node-id :cached-output)))
(let [cached-value (cache-peek node-id :cached-output)]
(is (= "an-output-value" cached-value))
(g/transact (g/delete-node node-id))
(is (nil? (cache-peek node-id :cached-output)))))))
(g/defnode Container
(input nodes g/Any :array :cascade-delete))
(deftest double-deletion-is-safe
(testing "delete scope first"
(ts/with-clean-system
(let [[outer inner] (ts/tx-nodes (g/make-node world Container) (g/make-node world Resource))]
(g/transact (g/connect inner :_node-id outer :nodes))
(is (= :ok (:status (g/transact
(concat
(g/delete-node outer)
(g/delete-node inner)))))))))
(testing "delete inner node first"
(ts/with-clean-system
(let [[outer inner] (ts/tx-nodes (g/make-node world Container) (g/make-node world Resource))]
(g/transact (g/connect inner :_node-id outer :nodes))
(is (= :ok (:status (g/transact
(concat
(g/delete-node inner)
(g/delete-node outer))))))))))
(defn- exists? [node-id] (not (nil? (g/node-by-id (g/now) node-id))))
(g/defnode CascadingContainer
(property a-property g/Str (default ""))
(input attachments g/Any :cascade-delete :array))
(deftest cascading-delete
(testing "delete container, one cascade connected by one output"
(ts/with-clean-system
(let [[container resource] (ts/tx-nodes (g/make-node world CascadingContainer) (g/make-node world Resource))]
(g/transact
(g/connect resource :b container :attachments))
(is (= :ok (:status (g/transact (g/delete-node container)))))
(is (not (exists? container)))
(is (not (exists? resource))))))
(testing "delete container, one cascade connected by multiple outputs"
(ts/with-clean-system
(let [[container resource] (ts/tx-nodes (g/make-node world CascadingContainer) (g/make-node world Resource))]
(g/transact
[(g/connect resource :b container :attachments)
(g/connect resource :c container :attachments)])
(is (= :ok (:status (g/transact (g/delete-node container)))))
(is (not (exists? container)))
(is (not (exists? resource))))))
(testing "delete container, one cascade connected by a property"
(ts/with-clean-system
(let [[container resource] (ts/tx-nodes (g/make-node world CascadingContainer) (g/make-node world Resource))]
(g/transact
(g/connect resource :d container :attachments))
(is (= :ok (:status (g/transact (g/delete-node container)))))
(is (not (exists? container)))
(is (not (exists? resource))))))
(testing "delete container, two cascades"
(ts/with-clean-system
(let [[container resource1 resource2] (ts/tx-nodes (g/make-node world CascadingContainer)
(g/make-node world Resource)
(g/make-node world Resource))]
(g/transact
[(g/connect resource1 :d container :attachments)
(g/connect resource2 :d container :attachments)])
(is (= :ok (:status (g/transact (g/delete-node container)))))
(is (not (exists? container)))
(is (not (exists? resource1)))
(is (not (exists? resource2))))))
(testing "delete container, daisy chain of deletes"
(ts/with-clean-system
(let [[container middle1 middle2 resource] (ts/tx-nodes (g/make-node world CascadingContainer)
(g/make-node world CascadingContainer)
(g/make-node world CascadingContainer)
(g/make-node world Resource))]
(g/transact
[(g/connect resource :d middle2 :attachments)
(g/connect middle2 :a-property middle1 :attachments)
(g/connect middle1 :a-property container :attachments)])
(is (= :ok (:status (g/transact (g/delete-node container)))))
(is (not (exists? container)))
(is (not (exists? middle1)))
(is (not (exists? middle2)))
(is (not (exists? resource)))))))
(g/defnode PropSource
(output label g/Keyword (g/fnk [] :label)))
(g/defnode PropTarget
(property target g/Keyword
(value (g/fnk [label] (println :target :value-fn label) label))
(set (fn [evaluation-context self _ new-value]
(when-let [src (g/node-value self :source-id evaluation-context)]
(println :target :connecting src new-value :to self :label)
(g/connect src new-value self :label)))))
(property second g/Keyword
(set (fn [evaluation-context self old-value new-value]
(println :second :new-value new-value)
(when-let [t (g/node-value self :target evaluation-context)]
(println :second :t t)
(g/set-property self :second t)))))
(property third g/Keyword
(set (fn [evaluation-context self old-value new-value]
(when-let [t (g/node-value self :implicit-target evaluation-context)]
(g/set-property self :third t)))))
(input source-id g/NodeID)
(input label g/Keyword)
(output implicit-target g/Keyword (g/fnk [target] target)))
;;; RAGNAR - the order of initialization on properties is not
;;; guaranteed. This test needs some rewrites.
#_(deftest property-dependencies
(ts/with-clean-system
(let [[source target] (ts/tx-nodes (g/make-nodes world [source PropSource
target [PropTarget :target :label :second :ignored :third :ignored]]
(g/connect source :_node-id target :source-id)))]
(is (= :label (g/node-value target :target)))
(is (= :label (g/node-value target :second)))
(is (= :label (g/node-value target :third))))))
(g/defnode MultiInput
(input in g/Keyword :array))
(deftest node-deletion-pull-input
(ts/with-clean-system
(let [view-graph (g/make-graph! :volatility 1)
[src-node] (g/tx-nodes-added
(g/transact
(g/make-nodes world
[resource Resource])))
[tgt-node] (g/tx-nodes-added
(g/transact
(g/make-nodes view-graph
[view MultiInput]
(g/connect src-node :b view :in))))]
(is (= [:ok] (g/node-value tgt-node :in)))
(g/delete-node! src-node)
(is (= [] (g/node-value tgt-node :in))))))
|
[
{
"context": "-repl []\n (main\n {:username \"u\"\n :password \"p\"\n :strat-id :za-rookie\n :balance false}))\n\n",
"end": 529,
"score": 0.9995297193527222,
"start": 528,
"tag": "PASSWORD",
"value": "p"
}
] |
src/invstr/core.clj
|
SneakyPeet/invstr
| 0 |
(ns invstr.core
(:gen-class)
(:require [invstr.strategies :as strategies]
[invstr.balance :as balance]))
(defn main [{:keys [username password strat-id balance] :as opts}]
(prn "== fetch strats")
(let [strategy (strategies/process-latest opts)]
(strategies/print-result strategy)
(when balance
(do
(prn "== balancing")
(let [result (balance/balance strategy)]
(balance/print-balance-result result))))))
(defn main-repl []
(main
{:username "u"
:password "p"
:strat-id :za-rookie
:balance false}))
;(main-repl)
(defn -main [& args]
(->> args
(partition 2)
(map (fn [[k v]] [(keyword k) v]))
(into {})
(#(update % :strat-id keyword))
(#(update % :balance (fn [x] (Boolean/valueOf x))))
main))
|
115149
|
(ns invstr.core
(:gen-class)
(:require [invstr.strategies :as strategies]
[invstr.balance :as balance]))
(defn main [{:keys [username password strat-id balance] :as opts}]
(prn "== fetch strats")
(let [strategy (strategies/process-latest opts)]
(strategies/print-result strategy)
(when balance
(do
(prn "== balancing")
(let [result (balance/balance strategy)]
(balance/print-balance-result result))))))
(defn main-repl []
(main
{:username "u"
:password "<PASSWORD>"
:strat-id :za-rookie
:balance false}))
;(main-repl)
(defn -main [& args]
(->> args
(partition 2)
(map (fn [[k v]] [(keyword k) v]))
(into {})
(#(update % :strat-id keyword))
(#(update % :balance (fn [x] (Boolean/valueOf x))))
main))
| true |
(ns invstr.core
(:gen-class)
(:require [invstr.strategies :as strategies]
[invstr.balance :as balance]))
(defn main [{:keys [username password strat-id balance] :as opts}]
(prn "== fetch strats")
(let [strategy (strategies/process-latest opts)]
(strategies/print-result strategy)
(when balance
(do
(prn "== balancing")
(let [result (balance/balance strategy)]
(balance/print-balance-result result))))))
(defn main-repl []
(main
{:username "u"
:password "PI:PASSWORD:<PASSWORD>END_PI"
:strat-id :za-rookie
:balance false}))
;(main-repl)
(defn -main [& args]
(->> args
(partition 2)
(map (fn [[k v]] [(keyword k) v]))
(into {})
(#(update % :strat-id keyword))
(#(update % :balance (fn [x] (Boolean/valueOf x))))
main))
|
[
{
"context": ";; The MIT License (MIT)\n\n;; Copyright (c) 2016 Stuart Sierra as part of the MapGraph\n;; project (https://githu",
"end": 61,
"score": 0.9998106360435486,
"start": 48,
"tag": "NAME",
"value": "Stuart Sierra"
},
{
"context": "rt of the MapGraph\n;; project (https://github.com/stuartsierra/mapgraph)\n\n;; Copyright (c) 2017 Vimsical\n\n;; Per",
"end": 129,
"score": 0.9997391104698181,
"start": 117,
"tag": "USERNAME",
"value": "stuartsierra"
},
{
"context": " (sg/add {:user/id 1\n :user/name \"Alice\"\n :user/friends #{{:user/id 2\n ",
"end": 1487,
"score": 0.9998652935028076,
"start": 1482,
"tag": "NAME",
"value": "Alice"
},
{
"context": "/id 2\n :user/name \"Bob\"\n :user/friends #{",
"end": 1579,
"score": 0.9998679757118225,
"start": 1576,
"tag": "NAME",
"value": "Bob"
},
{
"context": " :user/name \"David\"}\n ",
"end": 1707,
"score": 0.9998647570610046,
"start": 1702,
"tag": "NAME",
"value": "David"
},
{
"context": " :user/name \"Emily\"}}}\n {:user/id 3\n ",
"end": 1836,
"score": 0.9997202157974243,
"start": 1831,
"tag": "NAME",
"value": "Emily"
},
{
"context": "/id 3\n :user/name \"Claire\"\n :user/friends #{",
"end": 1934,
"score": 0.999687910079956,
"start": 1928,
"tag": "NAME",
"value": "Claire"
},
{
"context": " {:user/id 4\n :user/name \"Frank\"\n :user/friends #{{:user/id 1}}})\n ",
"end": 2059,
"score": 0.9956113696098328,
"start": 2054,
"tag": "NAME",
"value": "Frank"
},
{
"context": " (sg/add {:user/id 1\n :user/name \"Alice\"\n :user/addresses {\"home\" {:address",
"end": 2476,
"score": 0.9695558547973633,
"start": 2471,
"tag": "NAME",
"value": "Alice"
},
{
"context": ")\n\n(def sample-host\n {;; identifier\n :host/ip \"10.10.1.1\"\n\n ;; scalar value\n :host/name \"web1\"\n\n ;; ",
"end": 2801,
"score": 0.9994161128997803,
"start": 2792,
"tag": "IP_ADDRESS",
"value": "10.10.1.1"
},
{
"context": "; single entity value\n :host/gateway {:host/ip \"10.10.10.1\"}\n\n ;; collection of entities (list, vector, se",
"end": 3099,
"score": 0.9978840947151184,
"start": 3089,
"tag": "IP_ADDRESS",
"value": "10.10.10.1"
},
{
"context": "s (list, vector, set)\n :host/peers #{{:host/ip \"10.10.1.2\", :host/name \"web2\"}\n {:host/ip \"",
"end": 3189,
"score": 0.9994152784347534,
"start": 3180,
"tag": "IP_ADDRESS",
"value": "10.10.1.2"
},
{
"context": "\", :host/name \"web2\"}\n {:host/ip \"10.10.1.3\"}}\n\n ;; map of non-entity keys to entities\n :",
"end": 3248,
"score": 0.9993945360183716,
"start": 3239,
"tag": "IP_ADDRESS",
"value": "10.10.1.3"
},
{
"context": "ities\n :host/connections {\"database\" {:host/ip \"10.10.1.4\", :host/name \"db\"}\n [\"cache\"",
"end": 3347,
"score": 0.9995286464691162,
"start": 3338,
"tag": "IP_ADDRESS",
"value": "10.10.1.4"
},
{
"context": " [\"cache\" \"level2\"] {:host/ip \"10.10.1.5\", :host/name \"cache\"}}})\n\n(def hosts\n (-> (sg/ne",
"end": 3428,
"score": 0.9994490146636963,
"start": 3419,
"tag": "IP_ADDRESS",
"value": "10.10.1.5"
}
] |
test/vimsical/subgraph/examples.cljc
|
p-himik/subgraph
| 60 |
;; The MIT License (MIT)
;; Copyright (c) 2016 Stuart Sierra as part of the MapGraph
;; project (https://github.com/stuartsierra/mapgraph)
;; Copyright (c) 2017 Vimsical
;; Permission is hereby granted, free of charge, to any person
;; obtaining a copy of this software and associated documentation
;; files (the "Software"), to deal in the Software without
;; restriction, including without limitation the rights to use, copy,
;; modify, merge, publish, distribute, sublicense, and/or sell copies
;; of the Software, and to permit persons to whom the Software is
;; furnished to do so, subject to the following conditions:
;; The above copyright notice and this permission notice shall be
;; included in all copies or substantial portions of the Software.
;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
;; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
;; NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
;; BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
;; ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
;; CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
;; SOFTWARE.
(ns vimsical.subgraph.examples
"Sample data for documentation and tests."
(:require [vimsical.subgraph :as sg]))
(def friends
(-> (sg/new-db)
(sg/add-id-attr :user/id)
(sg/add {:user/id 1
:user/name "Alice"
:user/friends #{{:user/id 2
:user/name "Bob"
:user/friends #{{:user/id 4
:user/name "David"}
{:user/id 5
:user/name "Emily"}}}
{:user/id 3
:user/name "Claire"
:user/friends #{{:user/id 1}}}}}
{:user/id 4
:user/name "Frank"
:user/friends #{{:user/id 1}}})
(assoc :link/user [:user/id 3])
(assoc :link/users [[:user/id 2] [:user/id 3]])))
(def friends-no-cycles
(-> friends
(update [:user/id 3] dissoc :user/friends)
(update [:user/id 4] dissoc :user/friends)))
(def addresses
(-> (sg/new-db)
(sg/add-id-attr :user/id :address/id)
(sg/add {:user/id 1
:user/name "Alice"
:user/addresses {"home" {:address/id 1
:address/street "123 Home Lane"}
"work" {:address/id 2
:address/street "456 Corporate Street"}}})))
(def sample-host
{;; identifier
:host/ip "10.10.1.1"
;; scalar value
:host/name "web1"
;; collections (list, vector, set, map) with no nested entities
:host/aliases ["host1" "www"]
:host/rules {"input" {"block" "*", "allow" 80}
"output" {"allow" 80}}
;; single entity value
:host/gateway {:host/ip "10.10.10.1"}
;; collection of entities (list, vector, set)
:host/peers #{{:host/ip "10.10.1.2", :host/name "web2"}
{:host/ip "10.10.1.3"}}
;; map of non-entity keys to entities
:host/connections {"database" {:host/ip "10.10.1.4", :host/name "db"}
["cache" "level2"] {:host/ip "10.10.1.5", :host/name "cache"}}})
(def hosts
(-> (sg/new-db)
(sg/add-id-attr :host/ip)
(sg/add sample-host)))
|
72922
|
;; The MIT License (MIT)
;; Copyright (c) 2016 <NAME> as part of the MapGraph
;; project (https://github.com/stuartsierra/mapgraph)
;; Copyright (c) 2017 Vimsical
;; Permission is hereby granted, free of charge, to any person
;; obtaining a copy of this software and associated documentation
;; files (the "Software"), to deal in the Software without
;; restriction, including without limitation the rights to use, copy,
;; modify, merge, publish, distribute, sublicense, and/or sell copies
;; of the Software, and to permit persons to whom the Software is
;; furnished to do so, subject to the following conditions:
;; The above copyright notice and this permission notice shall be
;; included in all copies or substantial portions of the Software.
;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
;; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
;; NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
;; BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
;; ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
;; CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
;; SOFTWARE.
(ns vimsical.subgraph.examples
"Sample data for documentation and tests."
(:require [vimsical.subgraph :as sg]))
(def friends
(-> (sg/new-db)
(sg/add-id-attr :user/id)
(sg/add {:user/id 1
:user/name "<NAME>"
:user/friends #{{:user/id 2
:user/name "<NAME>"
:user/friends #{{:user/id 4
:user/name "<NAME>"}
{:user/id 5
:user/name "<NAME>"}}}
{:user/id 3
:user/name "<NAME>"
:user/friends #{{:user/id 1}}}}}
{:user/id 4
:user/name "<NAME>"
:user/friends #{{:user/id 1}}})
(assoc :link/user [:user/id 3])
(assoc :link/users [[:user/id 2] [:user/id 3]])))
(def friends-no-cycles
(-> friends
(update [:user/id 3] dissoc :user/friends)
(update [:user/id 4] dissoc :user/friends)))
(def addresses
(-> (sg/new-db)
(sg/add-id-attr :user/id :address/id)
(sg/add {:user/id 1
:user/name "<NAME>"
:user/addresses {"home" {:address/id 1
:address/street "123 Home Lane"}
"work" {:address/id 2
:address/street "456 Corporate Street"}}})))
(def sample-host
{;; identifier
:host/ip "10.10.1.1"
;; scalar value
:host/name "web1"
;; collections (list, vector, set, map) with no nested entities
:host/aliases ["host1" "www"]
:host/rules {"input" {"block" "*", "allow" 80}
"output" {"allow" 80}}
;; single entity value
:host/gateway {:host/ip "10.10.10.1"}
;; collection of entities (list, vector, set)
:host/peers #{{:host/ip "10.10.1.2", :host/name "web2"}
{:host/ip "10.10.1.3"}}
;; map of non-entity keys to entities
:host/connections {"database" {:host/ip "10.10.1.4", :host/name "db"}
["cache" "level2"] {:host/ip "10.10.1.5", :host/name "cache"}}})
(def hosts
(-> (sg/new-db)
(sg/add-id-attr :host/ip)
(sg/add sample-host)))
| true |
;; The MIT License (MIT)
;; Copyright (c) 2016 PI:NAME:<NAME>END_PI as part of the MapGraph
;; project (https://github.com/stuartsierra/mapgraph)
;; Copyright (c) 2017 Vimsical
;; Permission is hereby granted, free of charge, to any person
;; obtaining a copy of this software and associated documentation
;; files (the "Software"), to deal in the Software without
;; restriction, including without limitation the rights to use, copy,
;; modify, merge, publish, distribute, sublicense, and/or sell copies
;; of the Software, and to permit persons to whom the Software is
;; furnished to do so, subject to the following conditions:
;; The above copyright notice and this permission notice shall be
;; included in all copies or substantial portions of the Software.
;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
;; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
;; NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
;; BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
;; ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
;; CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
;; SOFTWARE.
(ns vimsical.subgraph.examples
"Sample data for documentation and tests."
(:require [vimsical.subgraph :as sg]))
(def friends
(-> (sg/new-db)
(sg/add-id-attr :user/id)
(sg/add {:user/id 1
:user/name "PI:NAME:<NAME>END_PI"
:user/friends #{{:user/id 2
:user/name "PI:NAME:<NAME>END_PI"
:user/friends #{{:user/id 4
:user/name "PI:NAME:<NAME>END_PI"}
{:user/id 5
:user/name "PI:NAME:<NAME>END_PI"}}}
{:user/id 3
:user/name "PI:NAME:<NAME>END_PI"
:user/friends #{{:user/id 1}}}}}
{:user/id 4
:user/name "PI:NAME:<NAME>END_PI"
:user/friends #{{:user/id 1}}})
(assoc :link/user [:user/id 3])
(assoc :link/users [[:user/id 2] [:user/id 3]])))
(def friends-no-cycles
(-> friends
(update [:user/id 3] dissoc :user/friends)
(update [:user/id 4] dissoc :user/friends)))
(def addresses
(-> (sg/new-db)
(sg/add-id-attr :user/id :address/id)
(sg/add {:user/id 1
:user/name "PI:NAME:<NAME>END_PI"
:user/addresses {"home" {:address/id 1
:address/street "123 Home Lane"}
"work" {:address/id 2
:address/street "456 Corporate Street"}}})))
(def sample-host
{;; identifier
:host/ip "10.10.1.1"
;; scalar value
:host/name "web1"
;; collections (list, vector, set, map) with no nested entities
:host/aliases ["host1" "www"]
:host/rules {"input" {"block" "*", "allow" 80}
"output" {"allow" 80}}
;; single entity value
:host/gateway {:host/ip "10.10.10.1"}
;; collection of entities (list, vector, set)
:host/peers #{{:host/ip "10.10.1.2", :host/name "web2"}
{:host/ip "10.10.1.3"}}
;; map of non-entity keys to entities
:host/connections {"database" {:host/ip "10.10.1.4", :host/name "db"}
["cache" "level2"] {:host/ip "10.10.1.5", :host/name "cache"}}})
(def hosts
(-> (sg/new-db)
(sg/add-id-attr :host/ip)
(sg/add sample-host)))
|
[
{
"context": "ое поселение\"\n\"Широковское сельское поселение\"\n\n\"Районы г. Перми\"\n\n\"Дзержинский\"\n\"Индустриальный\"\n\"Киро",
"end": 2021,
"score": 0.6276670694351196,
"start": 2018,
"tag": "NAME",
"value": "айо"
},
{
"context": "вердловский\"\n\n\"ЗАТО Звездный\"\n\"г. Березники\"\n\"г. Кудымкар\"\n\"г. Кунгур\"\n\"г. Пермь\"\n\"г. Соликамск\"\n\n\"г Оханск",
"end": 2187,
"score": 0.7643787264823914,
"start": 2180,
"tag": "NAME",
"value": "удымкар"
},
{
"context": "\"ЗАТО Звездный\"\n\"г. Березники\"\n\"г. Кудымкар\"\n\"г. Кунгур\"\n\"г. Пермь\"\n\"г. Соликамск\"\n\n\"г Оханск\"\n\"г Очер\"\n\"",
"end": 2199,
"score": 0.7646113038063049,
"start": 2194,
"tag": "NAME",
"value": "унгур"
},
{
"context": "дный\"\n\"г. Березники\"\n\"г. Кудымкар\"\n\"г. Кунгур\"\n\"г. Пермь\"\n\"г. Соликамск\"\n\n\"г Оханск\"\n\"г Очер\"\n\"г Усолье\"\n\"",
"end": 2210,
"score": 0.9234869480133057,
"start": 2205,
"tag": "NAME",
"value": "Пермь"
},
{
"context": "езники\"\n\"г. Кудымкар\"\n\"г. Кунгур\"\n\"г. Пермь\"\n\"г. Соликамск\"\n\n\"г Оханск\"\n\"г Очер\"\n\"г Усолье\"\n\"пгт Оверята\"\n",
"end": 2223,
"score": 0.7497274279594421,
"start": 2217,
"tag": "NAME",
"value": "оликам"
}
] |
src/clj/odpr/loader.clj
|
yakov-bakhmatov/odpr
| 1 |
(ns odpr.loader
(:require [clj-soap.core :as soap]
[clojure.xml :as xml]
[clojure.java.io :as io]
[clojure.data.csv :as csv]
[clojure.edn :as edn]
[clojure.string :as string]
[clj-time.core :as date-core]
[clj-time.format :as date-format]
[clj-time.coerce :as date-coerce])
(:import (java.io File)))
;уровень календаря
;1 - год
;2 - полугодие
;3 - квартал
;4 - месяц
;5 - день
(def ^:private CALENDAR-LEVEL-QUARTER 3)
(def ^:private CALENDAR-LEVEL-MONTH 4)
(def ^:private AREA
#{
"Александровский район"
"Бардымский район"
"Березовский район"
"Большесосновский район"
"Верещагинский район"
"Гайнский район"
"Горнозаводский район"
"Гремячинский район"
"Губахинский район"
"Добрянский район"
"Еловский район"
"Ильинский район"
"Карагайский район"
"Кизеловский район"
"Кишертский район"
"Косинский район"
"Кочевский район"
"Красновишерский район"
"Краснокамский район"
"Кудымкарский район"
"Куединский район"
"Кунгурский район"
"Лысьвенский район"
"Нытвенский район"
"Октябрьский район"
"Ординский район"
"Осинский район"
"Оханский район"
"Очерский район"
"Пермский район"
"Сивинский район"
"Соликамский район"
"Суксунский район"
"Уинский район"
"Усольский район"
"Чайковский район"
"Частинский район"
"Чердынский район"
"Чернушинский район"
"Чусовской район"
"Юрлинский район"
"Юсьвинский район"
"Верещагинское городское поселение"
"Горнозаводское городское поселение"
"Гремячинское сельское поселение"
"Ильинское сельское поселение"
"Красновишерское городское поселение"
"Лысьвенское городское поселение"
"Нытвенское городское поселение"
"Октябрьское городское поселение"
"Пашийское сельское поселение"
"Полазненское городское поселение"
"Сарановское сельское поселение"
"Северо-Углеуральское городское поселение"
"Суксунское городское поселение"
"Уральское городское поселение"
"Чайковское городское поселение"
"Чернушинское городское поселение"
"Чусовское городское поселение"
"Широковское сельское поселение"
"Районы г. Перми"
"Дзержинский"
"Индустриальный"
"Кировский"
"Ленинский"
"Мотовилихинский"
"Орджоникидзевский"
"Свердловский"
"ЗАТО Звездный"
"г. Березники"
"г. Кудымкар"
"г. Кунгур"
"г. Пермь"
"г. Соликамск"
"г Оханск"
"г Очер"
"г Усолье"
"пгт Оверята"
"Пермский край"
})
(defn- parse-int [s]
(Integer/parseInt s))
(defn- parse-double [s]
(Double/parseDouble (.replace s \, \.)))
(def ^:private date-formatter (date-format/formatter "dd.MM.yyyy"))
(defn- parse-date [s]
(date-format/parse date-formatter s))
(defn- get-year [date]
(date-core/year date))
(defn- load-factors-xml []
(let [client (soap/client-fn "http://opendata.permkrai.ru/LoadDataManager/api/DataPub.asmx?WSDL")]
(client :GetXMLFactors)))
(defmulti parse-factors-element (fn [elem] (:tag elem)))
(defmethod parse-factors-element :default [elem] [(:tag elem) nil])
(defmethod parse-factors-element :Factors [elem]
[:factors (mapv #(let [attrs (:attrs %)] {:id (parse-int (:factor_id attrs)) :name (:name attrs)}) (:content elem))])
(defmethod parse-factors-element :Cubes [elem]
[:cubes (mapv #(let [attrs (:attrs %)] {:id (parse-int (:dim_data_key attrs)) :name (:name attrs)}) (:content elem))])
(defmethod parse-factors-element :FactorCubePairs [elem]
[:pairs (mapv #(let [attrs (:attrs %)] {:factor-id (parse-int (:factor_id attrs)) :cube-id (parse-int (:dim_data_key attrs))}) (:content elem))])
(defn- parse-factors [s]
(let [file (File/createTempFile "factors" ".xml")]
(spit file s)
(let [data (xml/parse file)
x (mapv parse-factors-element (:content data))
result (into {} x)]
(when-not (.delete file)
(.deleteOnExit file))
result)))
(defn load-factors [out-file]
(let [factors (load-factors-xml)
parsed-factors (parse-factors factors)]
(spit out-file (pr-str parsed-factors))))
(defn- load-raw-file [out-dir factor cube]
(let [file-name (str out-dir "/" factor "-" cube ".csv")]
(when-not (.exists (io/as-file file-name))
(let [url (str "http://opendata.permkrai.ru/LoadDataManager/api/getcsv.ashx?factor=" factor "&cube=" cube)
data (slurp url :encoding "windows-1251")]
(spit file-name data)))))
(defn- load-raw-data [factors-file raw-data-dir]
(let [pairs (-> factors-file slurp edn/read-string :pairs)]
(doseq [p pairs]
(let [factor (:factor-id p)
cube (:cube-id p)]
(when (= cube 690360) ;загружаем только "куб" ОКАТО
(load-raw-file raw-data-dir factor cube)
(println "loaded" factor cube))))))
(defn- convert-row [row]
(let [calendar-level (parse-int (first row))
date (parse-date (second row))
value (parse-double (last row))
area (last (butlast row))
params [calendar-level area]]
{:calendar-level calendar-level
:params params
:area area
:date date
:value value}))
(defn- calendar-level-quarter-or-month [calendar-level]
(or (= calendar-level CALENDAR-LEVEL-QUARTER) (= calendar-level CALENDAR-LEVEL-MONTH)))
(defn- parse-raw-data [factor-id factor-name raw-data]
(let [data (csv/read-csv raw-data :separator \;)
rows (map convert-row (rest data))
rows (filter #(calendar-level-quarter-or-month (:calendar-level %)) rows)
groups (group-by :params rows)]
(for [[k v] groups]
{:factor-id factor-id
:calendar-level (:calendar-level (first v))
:name factor-name
:area (:area (first v))
:data (map (fn [x] {:date (:date x) :value (:value x)}) v)})))
(defn- filter-area [data]
(filter #(AREA (:area %)) data))
(defn- remove-doubles [data]
(->> data
(set)
(sort-by :date)
(into [])))
(defn- full? [calendar-level data]
(let [n (count data)]
(case calendar-level
2 (= n 2)
3 (= n 4)
4 (= n 12)
true)))
(defn- exclude-partial-periods [calendar-level data]
(if (or (= calendar-level 1) (= calendar-level 5))
data
(let [groups (group-by #(get-year (:date %)) data)
full (->> (vals groups) (filter #(full? calendar-level %)) (filter identity))
all (apply concat full)]
(into [] (sort-by :date all)))))
(defn- continuous? [years]
(= (+ (- (last years) (first years)) 1) (count years)))
(defn- exclude-not-continuous [data]
(if (empty? data)
data
(let [groups (group-by #(get-year (:date %)) data)
years (sort (keys groups))]
(if (continuous? years)
data
[]))))
(defn- normalize [data]
(let [values (mapv :value data)]
(if (apply <= values) ;неубывающая последовательность
(if (> (last values) (* (first values) 2)) ;последнее значение не менее чем в 2 раз больше первого
(loop [result []
data data
acc 0]
(if (empty? data)
result
(let [x (first data)
value (- (:value x) acc)]
(recur (conj result (assoc x :value value)) (rest data) (+ acc value)))))
data)
data)))
;уровень календаря
;1 - год
;2 - полугодие
;3 - квартал
;4 - месяц
;5 - день
(defn- normalize-values [calendar-level data]
(if (< calendar-level 3)
data
(let [groups (group-by #(get-year (:date %)) data)
normalized (map normalize (vals groups))
all (apply concat normalized)]
(into [] (sort-by :date all)))))
(defn- convert-date [data]
(mapv (fn [x] (assoc x :date (date-coerce/to-date (:date x)))) data))
(defn- prepare-data [data]
(for [x data]
(let [calendar-level (:calendar-level x)
series (->> (:data x)
remove-doubles
(exclude-partial-periods calendar-level)
exclude-not-continuous
(normalize-values calendar-level)
convert-date)]
(if (empty? series)
nil
(assoc x :data series)))))
(defn- prepare-one-file [pair raw-data-dir factors]
(let [factor-id (:factor-id pair)
cube-id (:cube-id pair)
file-name (str raw-data-dir "/" factor-id "-" cube-id ".csv")]
(when (.exists (io/as-file file-name))
(let [factor (get factors factor-id)
raw-data (slurp file-name)]
(->> raw-data
(parse-raw-data factor-id factor)
(filter-area)
(prepare-data)
(filter identity))))))
(defn- extract-area' [file]
(let [raw-data (slurp file)
data (csv/read-csv raw-data :separator \;)]
(->> data
(map #(last (butlast %)))
(set))))
(defn- extract-area [in-dir]
(let [files (->> in-dir (io/as-file) (.listFiles))
areas (mapcat extract-area' files)]
(->> areas
(set)
(into [])
(sort)
(string/join \newline)
(println))))
(defn- create-dir [name]
(let [f (io/as-file name)]
(when-not (.exists f)
(.mkdirs f))))
(defn load-data [data-dir raw-data-dir]
(create-dir data-dir)
(create-dir raw-data-dir)
(let [factors-file (str data-dir "/factors.edn")]
(load-factors factors-file)
(load-raw-data factors-file raw-data-dir)))
(defn prepare [data-dir raw-data-dir]
(let [factors-data (-> (str data-dir "/factors.edn") slurp edn/read-string)
pairs (:pairs factors-data)
factors (->> factors-data :factors (map (fn [f] [(:id f) (:name f)])) (into {}))
data (mapcat #(prepare-one-file % raw-data-dir factors) pairs)
data (map (fn [series id] (assoc series :id id)) data (iterate inc 1))]
(spit (str data-dir "/data.edn") (pr-str data))))
|
123897
|
(ns odpr.loader
(:require [clj-soap.core :as soap]
[clojure.xml :as xml]
[clojure.java.io :as io]
[clojure.data.csv :as csv]
[clojure.edn :as edn]
[clojure.string :as string]
[clj-time.core :as date-core]
[clj-time.format :as date-format]
[clj-time.coerce :as date-coerce])
(:import (java.io File)))
;уровень календаря
;1 - год
;2 - полугодие
;3 - квартал
;4 - месяц
;5 - день
(def ^:private CALENDAR-LEVEL-QUARTER 3)
(def ^:private CALENDAR-LEVEL-MONTH 4)
(def ^:private AREA
#{
"Александровский район"
"Бардымский район"
"Березовский район"
"Большесосновский район"
"Верещагинский район"
"Гайнский район"
"Горнозаводский район"
"Гремячинский район"
"Губахинский район"
"Добрянский район"
"Еловский район"
"Ильинский район"
"Карагайский район"
"Кизеловский район"
"Кишертский район"
"Косинский район"
"Кочевский район"
"Красновишерский район"
"Краснокамский район"
"Кудымкарский район"
"Куединский район"
"Кунгурский район"
"Лысьвенский район"
"Нытвенский район"
"Октябрьский район"
"Ординский район"
"Осинский район"
"Оханский район"
"Очерский район"
"Пермский район"
"Сивинский район"
"Соликамский район"
"Суксунский район"
"Уинский район"
"Усольский район"
"Чайковский район"
"Частинский район"
"Чердынский район"
"Чернушинский район"
"Чусовской район"
"Юрлинский район"
"Юсьвинский район"
"Верещагинское городское поселение"
"Горнозаводское городское поселение"
"Гремячинское сельское поселение"
"Ильинское сельское поселение"
"Красновишерское городское поселение"
"Лысьвенское городское поселение"
"Нытвенское городское поселение"
"Октябрьское городское поселение"
"Пашийское сельское поселение"
"Полазненское городское поселение"
"Сарановское сельское поселение"
"Северо-Углеуральское городское поселение"
"Суксунское городское поселение"
"Уральское городское поселение"
"Чайковское городское поселение"
"Чернушинское городское поселение"
"Чусовское городское поселение"
"Широковское сельское поселение"
"Р<NAME>ны г. Перми"
"Дзержинский"
"Индустриальный"
"Кировский"
"Ленинский"
"Мотовилихинский"
"Орджоникидзевский"
"Свердловский"
"ЗАТО Звездный"
"г. Березники"
"г. К<NAME>"
"г. К<NAME>"
"г. <NAME>"
"г. С<NAME>ск"
"г Оханск"
"г Очер"
"г Усолье"
"пгт Оверята"
"Пермский край"
})
(defn- parse-int [s]
(Integer/parseInt s))
(defn- parse-double [s]
(Double/parseDouble (.replace s \, \.)))
(def ^:private date-formatter (date-format/formatter "dd.MM.yyyy"))
(defn- parse-date [s]
(date-format/parse date-formatter s))
(defn- get-year [date]
(date-core/year date))
(defn- load-factors-xml []
(let [client (soap/client-fn "http://opendata.permkrai.ru/LoadDataManager/api/DataPub.asmx?WSDL")]
(client :GetXMLFactors)))
(defmulti parse-factors-element (fn [elem] (:tag elem)))
(defmethod parse-factors-element :default [elem] [(:tag elem) nil])
(defmethod parse-factors-element :Factors [elem]
[:factors (mapv #(let [attrs (:attrs %)] {:id (parse-int (:factor_id attrs)) :name (:name attrs)}) (:content elem))])
(defmethod parse-factors-element :Cubes [elem]
[:cubes (mapv #(let [attrs (:attrs %)] {:id (parse-int (:dim_data_key attrs)) :name (:name attrs)}) (:content elem))])
(defmethod parse-factors-element :FactorCubePairs [elem]
[:pairs (mapv #(let [attrs (:attrs %)] {:factor-id (parse-int (:factor_id attrs)) :cube-id (parse-int (:dim_data_key attrs))}) (:content elem))])
(defn- parse-factors [s]
(let [file (File/createTempFile "factors" ".xml")]
(spit file s)
(let [data (xml/parse file)
x (mapv parse-factors-element (:content data))
result (into {} x)]
(when-not (.delete file)
(.deleteOnExit file))
result)))
(defn load-factors [out-file]
(let [factors (load-factors-xml)
parsed-factors (parse-factors factors)]
(spit out-file (pr-str parsed-factors))))
(defn- load-raw-file [out-dir factor cube]
(let [file-name (str out-dir "/" factor "-" cube ".csv")]
(when-not (.exists (io/as-file file-name))
(let [url (str "http://opendata.permkrai.ru/LoadDataManager/api/getcsv.ashx?factor=" factor "&cube=" cube)
data (slurp url :encoding "windows-1251")]
(spit file-name data)))))
(defn- load-raw-data [factors-file raw-data-dir]
(let [pairs (-> factors-file slurp edn/read-string :pairs)]
(doseq [p pairs]
(let [factor (:factor-id p)
cube (:cube-id p)]
(when (= cube 690360) ;загружаем только "куб" ОКАТО
(load-raw-file raw-data-dir factor cube)
(println "loaded" factor cube))))))
(defn- convert-row [row]
(let [calendar-level (parse-int (first row))
date (parse-date (second row))
value (parse-double (last row))
area (last (butlast row))
params [calendar-level area]]
{:calendar-level calendar-level
:params params
:area area
:date date
:value value}))
(defn- calendar-level-quarter-or-month [calendar-level]
(or (= calendar-level CALENDAR-LEVEL-QUARTER) (= calendar-level CALENDAR-LEVEL-MONTH)))
(defn- parse-raw-data [factor-id factor-name raw-data]
(let [data (csv/read-csv raw-data :separator \;)
rows (map convert-row (rest data))
rows (filter #(calendar-level-quarter-or-month (:calendar-level %)) rows)
groups (group-by :params rows)]
(for [[k v] groups]
{:factor-id factor-id
:calendar-level (:calendar-level (first v))
:name factor-name
:area (:area (first v))
:data (map (fn [x] {:date (:date x) :value (:value x)}) v)})))
(defn- filter-area [data]
(filter #(AREA (:area %)) data))
(defn- remove-doubles [data]
(->> data
(set)
(sort-by :date)
(into [])))
(defn- full? [calendar-level data]
(let [n (count data)]
(case calendar-level
2 (= n 2)
3 (= n 4)
4 (= n 12)
true)))
(defn- exclude-partial-periods [calendar-level data]
(if (or (= calendar-level 1) (= calendar-level 5))
data
(let [groups (group-by #(get-year (:date %)) data)
full (->> (vals groups) (filter #(full? calendar-level %)) (filter identity))
all (apply concat full)]
(into [] (sort-by :date all)))))
(defn- continuous? [years]
(= (+ (- (last years) (first years)) 1) (count years)))
(defn- exclude-not-continuous [data]
(if (empty? data)
data
(let [groups (group-by #(get-year (:date %)) data)
years (sort (keys groups))]
(if (continuous? years)
data
[]))))
(defn- normalize [data]
(let [values (mapv :value data)]
(if (apply <= values) ;неубывающая последовательность
(if (> (last values) (* (first values) 2)) ;последнее значение не менее чем в 2 раз больше первого
(loop [result []
data data
acc 0]
(if (empty? data)
result
(let [x (first data)
value (- (:value x) acc)]
(recur (conj result (assoc x :value value)) (rest data) (+ acc value)))))
data)
data)))
;уровень календаря
;1 - год
;2 - полугодие
;3 - квартал
;4 - месяц
;5 - день
(defn- normalize-values [calendar-level data]
(if (< calendar-level 3)
data
(let [groups (group-by #(get-year (:date %)) data)
normalized (map normalize (vals groups))
all (apply concat normalized)]
(into [] (sort-by :date all)))))
(defn- convert-date [data]
(mapv (fn [x] (assoc x :date (date-coerce/to-date (:date x)))) data))
(defn- prepare-data [data]
(for [x data]
(let [calendar-level (:calendar-level x)
series (->> (:data x)
remove-doubles
(exclude-partial-periods calendar-level)
exclude-not-continuous
(normalize-values calendar-level)
convert-date)]
(if (empty? series)
nil
(assoc x :data series)))))
(defn- prepare-one-file [pair raw-data-dir factors]
(let [factor-id (:factor-id pair)
cube-id (:cube-id pair)
file-name (str raw-data-dir "/" factor-id "-" cube-id ".csv")]
(when (.exists (io/as-file file-name))
(let [factor (get factors factor-id)
raw-data (slurp file-name)]
(->> raw-data
(parse-raw-data factor-id factor)
(filter-area)
(prepare-data)
(filter identity))))))
(defn- extract-area' [file]
(let [raw-data (slurp file)
data (csv/read-csv raw-data :separator \;)]
(->> data
(map #(last (butlast %)))
(set))))
(defn- extract-area [in-dir]
(let [files (->> in-dir (io/as-file) (.listFiles))
areas (mapcat extract-area' files)]
(->> areas
(set)
(into [])
(sort)
(string/join \newline)
(println))))
(defn- create-dir [name]
(let [f (io/as-file name)]
(when-not (.exists f)
(.mkdirs f))))
(defn load-data [data-dir raw-data-dir]
(create-dir data-dir)
(create-dir raw-data-dir)
(let [factors-file (str data-dir "/factors.edn")]
(load-factors factors-file)
(load-raw-data factors-file raw-data-dir)))
(defn prepare [data-dir raw-data-dir]
(let [factors-data (-> (str data-dir "/factors.edn") slurp edn/read-string)
pairs (:pairs factors-data)
factors (->> factors-data :factors (map (fn [f] [(:id f) (:name f)])) (into {}))
data (mapcat #(prepare-one-file % raw-data-dir factors) pairs)
data (map (fn [series id] (assoc series :id id)) data (iterate inc 1))]
(spit (str data-dir "/data.edn") (pr-str data))))
| true |
(ns odpr.loader
(:require [clj-soap.core :as soap]
[clojure.xml :as xml]
[clojure.java.io :as io]
[clojure.data.csv :as csv]
[clojure.edn :as edn]
[clojure.string :as string]
[clj-time.core :as date-core]
[clj-time.format :as date-format]
[clj-time.coerce :as date-coerce])
(:import (java.io File)))
;уровень календаря
;1 - год
;2 - полугодие
;3 - квартал
;4 - месяц
;5 - день
(def ^:private CALENDAR-LEVEL-QUARTER 3)
(def ^:private CALENDAR-LEVEL-MONTH 4)
(def ^:private AREA
#{
"Александровский район"
"Бардымский район"
"Березовский район"
"Большесосновский район"
"Верещагинский район"
"Гайнский район"
"Горнозаводский район"
"Гремячинский район"
"Губахинский район"
"Добрянский район"
"Еловский район"
"Ильинский район"
"Карагайский район"
"Кизеловский район"
"Кишертский район"
"Косинский район"
"Кочевский район"
"Красновишерский район"
"Краснокамский район"
"Кудымкарский район"
"Куединский район"
"Кунгурский район"
"Лысьвенский район"
"Нытвенский район"
"Октябрьский район"
"Ординский район"
"Осинский район"
"Оханский район"
"Очерский район"
"Пермский район"
"Сивинский район"
"Соликамский район"
"Суксунский район"
"Уинский район"
"Усольский район"
"Чайковский район"
"Частинский район"
"Чердынский район"
"Чернушинский район"
"Чусовской район"
"Юрлинский район"
"Юсьвинский район"
"Верещагинское городское поселение"
"Горнозаводское городское поселение"
"Гремячинское сельское поселение"
"Ильинское сельское поселение"
"Красновишерское городское поселение"
"Лысьвенское городское поселение"
"Нытвенское городское поселение"
"Октябрьское городское поселение"
"Пашийское сельское поселение"
"Полазненское городское поселение"
"Сарановское сельское поселение"
"Северо-Углеуральское городское поселение"
"Суксунское городское поселение"
"Уральское городское поселение"
"Чайковское городское поселение"
"Чернушинское городское поселение"
"Чусовское городское поселение"
"Широковское сельское поселение"
"РPI:NAME:<NAME>END_PIны г. Перми"
"Дзержинский"
"Индустриальный"
"Кировский"
"Ленинский"
"Мотовилихинский"
"Орджоникидзевский"
"Свердловский"
"ЗАТО Звездный"
"г. Березники"
"г. КPI:NAME:<NAME>END_PI"
"г. КPI:NAME:<NAME>END_PI"
"г. PI:NAME:<NAME>END_PI"
"г. СPI:NAME:<NAME>END_PIск"
"г Оханск"
"г Очер"
"г Усолье"
"пгт Оверята"
"Пермский край"
})
(defn- parse-int [s]
(Integer/parseInt s))
(defn- parse-double [s]
(Double/parseDouble (.replace s \, \.)))
(def ^:private date-formatter (date-format/formatter "dd.MM.yyyy"))
(defn- parse-date [s]
(date-format/parse date-formatter s))
(defn- get-year [date]
(date-core/year date))
(defn- load-factors-xml []
(let [client (soap/client-fn "http://opendata.permkrai.ru/LoadDataManager/api/DataPub.asmx?WSDL")]
(client :GetXMLFactors)))
(defmulti parse-factors-element (fn [elem] (:tag elem)))
(defmethod parse-factors-element :default [elem] [(:tag elem) nil])
(defmethod parse-factors-element :Factors [elem]
[:factors (mapv #(let [attrs (:attrs %)] {:id (parse-int (:factor_id attrs)) :name (:name attrs)}) (:content elem))])
(defmethod parse-factors-element :Cubes [elem]
[:cubes (mapv #(let [attrs (:attrs %)] {:id (parse-int (:dim_data_key attrs)) :name (:name attrs)}) (:content elem))])
(defmethod parse-factors-element :FactorCubePairs [elem]
[:pairs (mapv #(let [attrs (:attrs %)] {:factor-id (parse-int (:factor_id attrs)) :cube-id (parse-int (:dim_data_key attrs))}) (:content elem))])
(defn- parse-factors [s]
(let [file (File/createTempFile "factors" ".xml")]
(spit file s)
(let [data (xml/parse file)
x (mapv parse-factors-element (:content data))
result (into {} x)]
(when-not (.delete file)
(.deleteOnExit file))
result)))
(defn load-factors [out-file]
(let [factors (load-factors-xml)
parsed-factors (parse-factors factors)]
(spit out-file (pr-str parsed-factors))))
(defn- load-raw-file [out-dir factor cube]
(let [file-name (str out-dir "/" factor "-" cube ".csv")]
(when-not (.exists (io/as-file file-name))
(let [url (str "http://opendata.permkrai.ru/LoadDataManager/api/getcsv.ashx?factor=" factor "&cube=" cube)
data (slurp url :encoding "windows-1251")]
(spit file-name data)))))
(defn- load-raw-data [factors-file raw-data-dir]
(let [pairs (-> factors-file slurp edn/read-string :pairs)]
(doseq [p pairs]
(let [factor (:factor-id p)
cube (:cube-id p)]
(when (= cube 690360) ;загружаем только "куб" ОКАТО
(load-raw-file raw-data-dir factor cube)
(println "loaded" factor cube))))))
(defn- convert-row [row]
(let [calendar-level (parse-int (first row))
date (parse-date (second row))
value (parse-double (last row))
area (last (butlast row))
params [calendar-level area]]
{:calendar-level calendar-level
:params params
:area area
:date date
:value value}))
(defn- calendar-level-quarter-or-month [calendar-level]
(or (= calendar-level CALENDAR-LEVEL-QUARTER) (= calendar-level CALENDAR-LEVEL-MONTH)))
(defn- parse-raw-data [factor-id factor-name raw-data]
(let [data (csv/read-csv raw-data :separator \;)
rows (map convert-row (rest data))
rows (filter #(calendar-level-quarter-or-month (:calendar-level %)) rows)
groups (group-by :params rows)]
(for [[k v] groups]
{:factor-id factor-id
:calendar-level (:calendar-level (first v))
:name factor-name
:area (:area (first v))
:data (map (fn [x] {:date (:date x) :value (:value x)}) v)})))
(defn- filter-area [data]
(filter #(AREA (:area %)) data))
(defn- remove-doubles [data]
(->> data
(set)
(sort-by :date)
(into [])))
(defn- full? [calendar-level data]
(let [n (count data)]
(case calendar-level
2 (= n 2)
3 (= n 4)
4 (= n 12)
true)))
(defn- exclude-partial-periods [calendar-level data]
(if (or (= calendar-level 1) (= calendar-level 5))
data
(let [groups (group-by #(get-year (:date %)) data)
full (->> (vals groups) (filter #(full? calendar-level %)) (filter identity))
all (apply concat full)]
(into [] (sort-by :date all)))))
(defn- continuous? [years]
(= (+ (- (last years) (first years)) 1) (count years)))
(defn- exclude-not-continuous [data]
(if (empty? data)
data
(let [groups (group-by #(get-year (:date %)) data)
years (sort (keys groups))]
(if (continuous? years)
data
[]))))
(defn- normalize [data]
(let [values (mapv :value data)]
(if (apply <= values) ;неубывающая последовательность
(if (> (last values) (* (first values) 2)) ;последнее значение не менее чем в 2 раз больше первого
(loop [result []
data data
acc 0]
(if (empty? data)
result
(let [x (first data)
value (- (:value x) acc)]
(recur (conj result (assoc x :value value)) (rest data) (+ acc value)))))
data)
data)))
;уровень календаря
;1 - год
;2 - полугодие
;3 - квартал
;4 - месяц
;5 - день
(defn- normalize-values [calendar-level data]
(if (< calendar-level 3)
data
(let [groups (group-by #(get-year (:date %)) data)
normalized (map normalize (vals groups))
all (apply concat normalized)]
(into [] (sort-by :date all)))))
(defn- convert-date [data]
(mapv (fn [x] (assoc x :date (date-coerce/to-date (:date x)))) data))
(defn- prepare-data [data]
(for [x data]
(let [calendar-level (:calendar-level x)
series (->> (:data x)
remove-doubles
(exclude-partial-periods calendar-level)
exclude-not-continuous
(normalize-values calendar-level)
convert-date)]
(if (empty? series)
nil
(assoc x :data series)))))
(defn- prepare-one-file [pair raw-data-dir factors]
(let [factor-id (:factor-id pair)
cube-id (:cube-id pair)
file-name (str raw-data-dir "/" factor-id "-" cube-id ".csv")]
(when (.exists (io/as-file file-name))
(let [factor (get factors factor-id)
raw-data (slurp file-name)]
(->> raw-data
(parse-raw-data factor-id factor)
(filter-area)
(prepare-data)
(filter identity))))))
(defn- extract-area' [file]
(let [raw-data (slurp file)
data (csv/read-csv raw-data :separator \;)]
(->> data
(map #(last (butlast %)))
(set))))
(defn- extract-area [in-dir]
(let [files (->> in-dir (io/as-file) (.listFiles))
areas (mapcat extract-area' files)]
(->> areas
(set)
(into [])
(sort)
(string/join \newline)
(println))))
(defn- create-dir [name]
(let [f (io/as-file name)]
(when-not (.exists f)
(.mkdirs f))))
(defn load-data [data-dir raw-data-dir]
(create-dir data-dir)
(create-dir raw-data-dir)
(let [factors-file (str data-dir "/factors.edn")]
(load-factors factors-file)
(load-raw-data factors-file raw-data-dir)))
(defn prepare [data-dir raw-data-dir]
(let [factors-data (-> (str data-dir "/factors.edn") slurp edn/read-string)
pairs (:pairs factors-data)
factors (->> factors-data :factors (map (fn [f] [(:id f) (:name f)])) (into {}))
data (mapcat #(prepare-one-file % raw-data-dir factors) pairs)
data (map (fn [series id] (assoc series :id id)) data (iterate inc 1))]
(spit (str data-dir "/data.edn") (pr-str data))))
|
[
{
"context": "e {:status \"planning\"\n :name \"Analyysikohde\"\n :owner \"unknown\"\n ",
"end": 26905,
"score": 0.6209647059440613,
"start": 26900,
"tag": "NAME",
"value": "Analy"
}
] |
webapp/src/cljs/lipas/ui/map/events.cljs
|
lipas-liikuntapaikat/lipas
| 49 |
(ns lipas.ui.map.events
(:require
["ol" :as ol]
[ajax.core :as ajax]
[cemerick.url :as url]
[clojure.set :as set]
[clojure.string :as string]
[goog.object :as gobj]
[goog.string :as gstring]
[goog.string.format]
[goog.string.path :as gpath]
[lipas.ui.map.utils :as map-utils]
[lipas.ui.utils :refer [==>] :as utils]
proj4
[re-frame.core :as re-frame]))
(defn wgs84->epsg3067 [wgs84-coords]
(let [proj (.get ol/proj "EPSG:3067")
[lon lat] (js->clj (ol/proj.fromLonLat (clj->js wgs84-coords) proj))]
{:lon lon :lat lat}))
(defn epsg3067->wgs84-fast [wgs84-coords]
(let [proj (.get ol/proj "EPSG:3067")]
(ol/proj.toLonLat wgs84-coords proj)))
(defn top-left [extent]
(epsg3067->wgs84-fast
#js[(aget extent 0) (aget extent 3)]))
(defn bottom-right [extent]
(epsg3067->wgs84-fast
#js[(aget extent 2) (aget extent 1)]))
(re-frame/reg-event-db
::toggle-drawer
(fn [db _]
(update-in db [:map :drawer-open?] not)))
;; Width and height are in meters when using EPSG:3067 projection
(re-frame/reg-event-fx
::set-view
(fn [{:keys [db]} [_ center lonlat zoom extent width height]]
(let [center {:lat (aget center 1) :lon (aget center 0)}
center-wgs84 {:lat (aget lonlat 1) :lon (aget lonlat 0)}]
{:db (-> db
(assoc-in [:map :center] center)
(assoc-in [:map :center-wgs84] center-wgs84)
(assoc-in [:map :zoom] zoom)
(assoc-in [:map :extent] extent)
(assoc-in [:map :top-left-wgs84] (top-left extent))
(assoc-in [:map :bottom-right-wgs84] (bottom-right extent))
(assoc-in [:map :width] width)
(assoc-in [:map :height] height))
:dispatch-n
[(when (and extent width) [:lipas.ui.search.events/submit-search])]})))
;; Map displaying events ;;
(re-frame/reg-event-db
::fit-to-current-vectors
(fn [db _]
(assoc-in db [:map :mode :fit-nonce] (gensym))))
(re-frame/reg-event-fx
::zoom-to-site
(fn [{:keys [db]} [_ lipas-id width]]
(let [latest (get-in db [:sports-sites lipas-id :latest])
rev (get-in db [:sports-sites lipas-id :history latest])
geom (-> rev :location :geometries :features first :geometry)
wgs-coords (case (:type geom)
"Point" (-> geom :coordinates)
"LineString" (-> geom :coordinates first)
"Polygon" (-> geom :coordinates first first))
center (wgs84->epsg3067 wgs-coords)
zoom 14]
{:db (-> db
(assoc-in [:map :zoom] zoom)
(assoc-in [:map :center] center))
:dispatch-n [(case width ("xs" "sm") [::toggle-drawer] nil)]})))
(re-frame/reg-event-fx
::zoom-to-users-position
(fn [_ _]
{:lipas.ui.effects/request-geolocation!
(fn [position]
(let [lon* (-> position .-coords .-longitude)
lat* (-> position .-coords .-latitude)
{:keys [lon lat]} (wgs84->epsg3067 [lon* lat*])]
(when (and lon lat)
(==> [::set-center lat lon])
(==> [::set-zoom 12]))))}))
(re-frame/reg-event-db
::set-center
(fn [db [_ lat lon]]
(assoc-in db [:map :center] {:lat lat :lon lon})))
(re-frame/reg-event-db
::set-zoom
(fn [db [_ zoom]]
(assoc-in db [:map :zoom] zoom)))
(re-frame/reg-event-db
::select-basemap
(fn [db [_ basemap]]
(assoc-in db [:map :basemap] basemap)))
(re-frame/reg-event-db
::toggle-overlay
(fn [db [_ k]]
(let [op (if (-> db :map :selected-overlays (contains? k))
disj
conj)]
(update-in db [:map :selected-overlays] op k))))
(re-frame/reg-event-db
::show-popup
(fn [db [_ feature]]
(assoc-in db [:map :popup] feature)))
(re-frame/reg-event-db
::show-sports-site*
(fn [db [_ lipas-id]]
(let [drawer-open? (or lipas-id (-> db :screen-size #{"sm" "xs"} boolean not))]
(-> db
(assoc-in [:map :mode :lipas-id] lipas-id)
(assoc-in [:map :drawer-open?] drawer-open?)))))
;; Geom editing events ;;
(defn- get-latest-rev [db lipas-id]
(or (get-in db [:sports-sites lipas-id :editing])
(let [latest (get-in db [:sports-sites lipas-id :latest])]
(get-in db [:sports-sites lipas-id :history latest]))))
(re-frame/reg-event-fx
::start-editing
(fn [{:keys [db]} [_ lipas-id sub-mode geom-type]]
(let [site (get-latest-rev db lipas-id)
geoms (utils/->feature site)]
{:db (update-in db [:map :mode] merge {:name :editing
:lipas-id lipas-id
:geoms geoms
:sub-mode sub-mode
:geom-type geom-type})
:dispatch-n [[::show-problems (map-utils/find-problems geoms)]]})))
(re-frame/reg-event-fx
::continue-editing
(fn [{:keys [db]} _]
(let [geoms (-> db :map :mode :geoms)]
{:db (update-in db [:map :mode] merge {:name :editing :sub-mode :editing})
:dispatch-n
[[::show-problems (map-utils/find-problems geoms)]]})))
(re-frame/reg-event-fx
::stop-editing
(fn [{:keys [db]} [_]]
{:db (assoc-in db [:map :mode :name] :default)
:dispatch [::clear-undo-redo]}))
(re-frame/reg-event-db
::start-adding-geom
(fn [db [_ geom-type]]
(-> db
(update-in [:map :mode] merge {:name :adding
:temp {}
:geom-type geom-type
:sub-mode :drawing}))))
(re-frame/reg-event-db
::start-deleting-geom
(fn [db [_ geom-type]]
(-> db
(update-in [:map :mode] merge {:name :adding
:geom-type geom-type
:sub-mode :deleting}))))
(re-frame/reg-event-db
::stop-deleting-geom
(fn [db [_ geom-type]]
(-> db
(update-in [:map :mode] merge {:name :adding
:geom-type geom-type
:sub-mode :editing}))))
(re-frame/reg-event-db
::start-splitting-geom
(fn [db [_ geom-type]]
(-> db
(update-in [:map :mode] merge {:name :adding
:geom-type geom-type
:sub-mode :splitting}))))
(re-frame/reg-event-db
::stop-splitting-geom
(fn [db [_ geom-type]]
(-> db
(update-in [:map :mode] merge {:name :adding
:geom-type geom-type
:sub-mode :editing}))))
(re-frame/reg-event-fx
::undo
(fn [{:keys [db]} [_ lipas-id]]
(let [path [:map :mode :geoms]
curr-geoms (get-in db path)
undo-stack (get-in db [:map :temp lipas-id :undo-stack])]
{:db (-> db
(assoc-in [:map :mode :sub-mode] :undo)
(assoc-in [:map :mode :undo-geoms] (peek undo-stack))
(update-in [:map :temp lipas-id :undo-stack] pop)
(update-in [:map :temp lipas-id :redo-stack] conj curr-geoms))})))
(re-frame/reg-event-fx
::redo
(fn [{:keys [db]} [_ lipas-id]]
(let [path [:map :mode :geoms]
curr-geoms (get-in db path)
redo-stack (get-in db [:map :temp lipas-id :redo-stack])]
{:db (-> db
(assoc-in [:map :mode :sub-mode] :undo)
(assoc-in [:map :mode :undo-geoms] (peek redo-stack))
(update-in [:map :temp lipas-id :redo-stack] pop)
(update-in [:map :temp lipas-id :undo-stack] conj curr-geoms))})))
;; Callback from OpenLayers
(re-frame/reg-event-fx
::undo-done
(fn [{:keys [db]} [_ lipas-id geoms]]
(let [path [:sports-sites lipas-id :editing :location :geometries]]
{:db (cond-> db
true (update-in [:map :mode] merge {:geoms geoms :sub-mode :editing})
lipas-id (assoc-in path geoms))
:dispatch-n [[::show-problems (map-utils/find-problems geoms)]]})))
(re-frame/reg-event-db
::clear-undo-redo
(fn [db _]
(assoc-in db [:map :temp] {})))
(re-frame/reg-event-fx
::update-geometries
(fn [{:keys [db]} [_ lipas-id geoms]]
(let [path [:sports-sites lipas-id :editing :location :geometries]
old-geoms (-> db :map :mode :geoms)
new-geoms (update geoms :features
(fn [fs] (map #(dissoc % :properties :id) fs)))]
{:db (-> db
(update-in [:map :temp lipas-id :undo-stack] conj old-geoms)
(assoc-in [:map :mode :geoms] geoms)
(assoc-in [:map :temp lipas-id :redo-stack] '())
(assoc-in path new-geoms))
:dispatch-n
[[::show-problems (map-utils/find-problems new-geoms)]]})))
(re-frame/reg-event-fx
::new-geom-drawn
(fn [{:keys [db]} [_ geoms]]
(let [curr-geoms (-> db :map :mode :geoms)]
{:db (cond-> db
curr-geoms (update-in [:map :temp "new" :undo-stack] conj curr-geoms)
true (assoc-in [:map :temp "new" :redo-stack] '())
true (update-in [:map :mode] merge {:name :adding
:geoms geoms
:sub-mode :editing}))
:dispatch-n [[::show-problems (map-utils/find-problems geoms)]]})))
(re-frame/reg-event-fx
::update-new-geom
(fn [{:keys [db]} [_ geoms]]
(let [curr-geoms (-> db :map :mode :geoms)]
{:db (-> db
(assoc-in [:map :mode :geoms] geoms)
(assoc-in [:map :temp "new" :redo-stack] '())
(update-in [:map :temp "new" :undo-stack] conj curr-geoms))
:dispatch-n [[::show-problems (map-utils/find-problems geoms)]]})))
(re-frame/reg-event-fx
::confirm-remove-segment
(fn [{:keys [db]} [_ callback]]
(let [tr (-> db :translator)
geom-type (-> db :map :mode :geom-type)]
{:dispatch
[:lipas.ui.events/confirm (tr :map/confirm-remove geom-type) callback]})))
(re-frame/reg-event-fx
::discard-drawing
(fn [{:keys [db]} _]
{:db (assoc-in db [:map :mode] {:name :default})
:dispatch [:lipas.ui.search.events/submit-search]}))
(re-frame/reg-event-fx
::finish-adding-geom
(fn [{:keys [db]} [_ geoms type-code]]
(let [geoms (update geoms :features
(fn [fs] (map #(dissoc % :properties :id) fs)))]
{:db (assoc-in db [:map :mode :sub-mode] :finished)
:dispatch-n [[:lipas.ui.sports-sites.events/init-new-site type-code geoms]]})))
(re-frame/reg-event-db
::open-more-tools-menu
(fn [db [_ el]]
(assoc-in db [:map :more-tools-menu :anchor] el)))
(re-frame/reg-event-db
::close-more-tools-menu
(fn [db _]
(assoc-in db [:map :more-tools-menu :anchor] nil)))
;;; Map events ;;;
(re-frame/reg-event-fx
::map-clicked
(fn [_]
{:dispatch [::hide-address]}))
(re-frame/reg-event-fx
::sports-site-selected
(fn [{:keys [db]} [_ _ lipas-id]]
(let [sub-mode (-> db :map :mode :sub-mode)]
(if (= sub-mode :analysis)
{:dispatch [:lipas.ui.analysis.events/show-analysis lipas-id]}
{:dispatch [::show-sports-site lipas-id]}))))
;;; Higher order events ;;;
(re-frame/reg-event-fx
::show-sports-site
(fn [_ [_ lipas-id]]
{:dispatch-n
(if lipas-id
(let [params {:lipas-id lipas-id}]
[[:lipas.ui.events/navigate :lipas.ui.routes.map/details-view params]
[:lipas.ui.accessibility.events/get-statements lipas-id]])
[[:lipas.ui.events/navigate :lipas.ui.routes.map/map]])}))
(re-frame/reg-event-fx
::edit-site
(fn [_ [_ lipas-id geom-type]]
{:dispatch-n
[[:lipas.ui.sports-sites.events/edit-site lipas-id]
;;[::zoom-to-site lipas-id]
[::clear-undo-redo]
[::start-editing lipas-id :editing geom-type]]}))
(defn- on-success-default [{:keys [lipas-id]}]
[[::stop-editing]
[:lipas.ui.search.events/submit-search]
[:lipas.ui.map.events/show-sports-site lipas-id]])
(defn- on-failure-default [{:keys [lipas-id]}]
[[:lipas.ui.map.events/show-sports-site lipas-id]])
(re-frame/reg-event-fx
::save-edits
(fn [_ [_ lipas-id]]
(let [on-success (partial on-success-default {:lipas-id lipas-id})
on-failure (partial on-failure-default {:lipas-id lipas-id})]
{:dispatch-n
;; We "unselect" sports-site while saving to make the
;; map "forget" and focus on updated entries once they're saved.
;; Some more elegant solution could be possibly implemented in
;; the future.
[[:lipas.ui.map.events/show-sports-site nil]
[:lipas.ui.sports-sites.events/save-edits lipas-id on-success on-failure]]})))
(re-frame/reg-event-fx
::discard-edits
(fn [{:keys [db]} [_ lipas-id]]
(let [tr (-> db :translator)]
{:dispatch
[:lipas.ui.events/confirm
(tr :confirm/discard-changes?)
(fn []
(==> [:lipas.ui.sports-sites.events/discard-edits lipas-id])
(==> [::stop-editing]))]})))
(re-frame/reg-event-fx
::delete-site
(fn [_]
{:dispatch-n
[[:lipas.ui.sports-sites.events/toggle-delete-dialog]]}))
(re-frame/reg-event-fx
::resurrect
(fn [{:keys [db]} [_ lipas-id]]
(let [tr (:translator db)]
{:dispatch
[:lipas.ui.events/confirm
(tr :confirm/resurrect?)
(fn []
(==> [:lipas.ui.sports-sites.events/resurrect
lipas-id
on-success-default on-failure-default]))]})))
(re-frame/reg-event-fx
::start-adding-new-site
(fn [{:keys [db]} [_ template]]
{:db (assoc-in db [:map :mode] {:name :default}) ;; cleanup
:dispatch-n [[:lipas.ui.search.events/set-results-view :list]
[:lipas.ui.sports-sites.events/start-adding-new-site template]]}))
(re-frame/reg-event-fx
::discard-new-site
(fn [{:keys [db]} _]
(let [tr (-> db :translator)]
{:dispatch
[:lipas.ui.events/confirm
(tr :confirm/discard-changes?)
(fn []
(==> [:lipas.ui.sports-sites.events/discard-new-site])
(==> [::discard-drawing]))]})))
(defn- on-success-new [{:keys [lipas-id]}]
[[:lipas.ui.sports-sites.events/discard-new-site]
[:lipas.ui.map.events/stop-editing]
[:lipas.ui.map.events/show-sports-site lipas-id]
[:lipas.ui.search.events/submit-search]
[:lipas.ui.login.events/refresh-login]])
(re-frame/reg-event-fx
::save-new-site
(fn [{:keys [db]} [_ data]]
(let [draft? false
type (get-in db [:sports-sites :types (-> data :type :type-code)])
data (-> data
(assoc :event-date (utils/timestamp))
(update :properties #(select-keys % (-> type :props keys))))]
{:dispatch
[:lipas.ui.sports-sites.events/commit-rev data draft? on-success-new]})))
;; Import geoms ;;
(re-frame/reg-event-db
::toggle-import-dialog
(fn [db _]
(update-in db [:map :import :dialog-open?] not)))
(re-frame/reg-event-db
::select-import-file-encoding
(fn [db [_ encoding]]
(assoc-in db [:map :import :selected-encoding] encoding)))
(defn geom-coll->features [geom-coll]
(->> geom-coll
:geometries
(map-indexed
(fn [idx g]
{:type "Feature"
:geometry g
:properties
{:id (gensym)
:name (str "geom-" (inc idx))}}))))
(defn normalize-geom-colls
"Handles a special case where geometries are contained in a
GeometryCollection. Normalizes geom coll into features with dummy
props."
[fcoll geom-type]
(->> fcoll
:features
(filter (comp #{"GeometryCollection"} :type :geometry))
(map :geometry)
(mapcat geom-coll->features)
(filter (comp #{geom-type} :type :geometry))
(utils/index-by (comp :id :properties))))
(re-frame/reg-event-db
::set-import-candidates
(fn [db [_ geoJSON geom-type]]
(let [fcoll (js->clj geoJSON :keywordize-keys true)
fs (->> fcoll
:features
(filter (comp #{geom-type} :type :geometry))
(reduce
(fn [res f]
(let [id (gensym)]
(assoc res id (assoc-in f [:properties :id] id))))
{})
(merge (normalize-geom-colls fcoll geom-type)))]
(-> db
(assoc-in [:map :import :data] fs)
(assoc-in [:map :import :batch-id] (gensym))))))
(defn parse-dom [text]
(let [parser (js/DOMParser.)]
(.parseFromString parser text "text/xml")))
(defn- text->geoJSON [{:keys [file ext enc cb]}]
(let [reader (js/FileReader.)
cb (fn [e]
(let [text (-> e .-target .-result)
parsed (condp = ext
"json" (js/JSON.parse text)
"kml" (-> text parse-dom js/toGeoJSON.kml)
"gpx" (-> text parse-dom js/toGeoJSON.gpx))]
(cb parsed)))]
(set! (.-onload reader) cb)
(.readAsText reader file enc)
{}))
(defmulti file->geoJSON :ext)
(defmethod file->geoJSON "zip" [{:keys [file enc cb]}]
(js/shp2geojson.loadshp #js{:url file :encoding enc} cb))
(defmethod file->geoJSON "gpx" [params] (text->geoJSON params))
(defmethod file->geoJSON "kml" [params] (text->geoJSON params))
(defmethod file->geoJSON "json" [params] (text->geoJSON params))
(defmethod file->geoJSON :default [params] {:unknown (:ext params)})
(defn parse-ext [file]
(-> file
(gobj/get "name" "")
gpath/extension
string/lower-case))
(re-frame/reg-event-fx
::load-geoms-from-file
(fn [{:keys [db]} [_ files geom-type]]
(let [file (aget files 0)
params {:enc (-> db :map :import :selected-encoding)
:file file
:ext (parse-ext file)
:cb (fn [data] (==> [::set-import-candidates data geom-type]))}]
(if-let [ext (:unknown (file->geoJSON params))]
{:dispatch-n [(let [tr (-> db :translator)]
[:lipas.ui.events/set-active-notification
{:message (tr :map.import/unknown-format ext)
:success? false}])]}
{}))))
(re-frame/reg-event-db
::select-import-items
(fn [db [_ ids]]
(assoc-in db [:map :import :selected-items] (set ids))))
(re-frame/reg-event-db
::toggle-replace-existing-selection
(fn [db _]
(update-in db [:map :import :replace-existing?] not)))
(re-frame/reg-event-fx
::import-selected-geoms
(fn [{:keys [db]} _]
(let [ids (-> db :map :import :selected-items)
replace? (-> db :map :import :replace-existing?)
data (select-keys (-> db :map :import :data) ids)
fcoll {:type "FeatureCollection"
:features (into [] cat
[(when-not replace?
(-> db :map :mode :geoms :features))
(->> data vals (map #(dissoc % :properties)))])}
fcoll (map-utils/strip-z fcoll)]
{:db (-> db
(assoc-in [:map :mode :geoms] fcoll)
(assoc-in [:map :mode :sub-mode] :importing))
:dispatch-n [[::toggle-import-dialog]
[::select-import-items #{}]]})))
(re-frame/reg-event-fx
::import-selected-geoms-to-new
(fn [{:keys [db]} _]
(let [ids (-> db :map :import :selected-items)
data (select-keys (-> db :map :import :data) ids)
fcoll (map-utils/strip-z
{:type "FeatureCollection"
:features (into [] (->> data vals (map #(dissoc % :properties))))})]
{:db (assoc-in db [:map :mode :geoms] fcoll)
:dispatch-n [[::new-geom-drawn fcoll]
[::toggle-import-dialog]
[::select-import-items #{}]]})))
(defn- add-gpx-props [{:keys [locale types cities site]} feature]
(let [city-code (-> site :location :city :city-code)
type-code (-> site :type :type-code)
props {:name (-> site :name)
:type (get-in types [type-code :name locale])
:city (get-in cities [city-code :name locale])}]
(assoc feature :properties props)))
(re-frame/reg-event-fx
::download-gpx
(fn [{:keys [db]} [_ lipas-id]]
(let [locale (-> db :translator (apply []))
latest (get-in db [:sports-sites lipas-id :latest])
site (get-in db [:sports-sites lipas-id :history latest])
data {:site site
:cities (-> db :cities)
:types (-> db :types)
:locale locale}
fname (gstring/urlEncode (str (:name site) ".gpx"))
xml-str (-> site :location :geometries
(update :features #(mapv (partial add-gpx-props data) %))
clj->js
(js/togpx #js{:creator "LIPAS"}))]
{:lipas.ui.effects/save-as! {:blob (js/Blob. #js[xml-str]) :filename fname}})))
;; Address search ;;
(re-frame/reg-event-db
::toggle-address-search-dialog
(fn [db _]
(-> db
(update-in [:map :address-search :dialog-open?] not)
(assoc-in [:map :address-search :keyword] "")
(assoc-in [:map :address-search :results] []))))
(re-frame/reg-event-db
::clear-address-search-results
(fn [db _]
(assoc-in db [:map :address-search :results] [])))
(re-frame/reg-event-fx
::update-address-search-keyword
(fn [{:keys [db]} [_ s]]
{:db (assoc-in db [:map :address-search :keyword] s)
:dispatch-n [[::search-address s]]}))
;; https://www.digitransit.fi/en/developers/apis/2-geocoding-api/autocomplete/
(re-frame/reg-event-fx
::search-address
(fn [{:keys [db]} [_ s]]
(let [base-url (-> db :map :address-search :base-url)]
(if (not-empty s)
{:http-xhrio
{:method :get
:uri (str base-url "/autocomplete?"
"sources=oa,osm"
"&text=" s)
:response-format (ajax/json-response-format {:keywords? true})
:on-success [::address-search-success]
:on-failure [::address-search-failure]}}
{:dispatch [::clear-address-search-results]}))))
(re-frame/reg-event-fx
::address-search-success
(fn [{:keys [db]} [_ resp]]
{:db (assoc-in db [:map :address-search :results] resp)}))
(re-frame/reg-event-fx
::address-search-failure
(fn [{:keys [db]} [_ error]]
(let [tr (:translator db)]
{:db (assoc-in db [:errors :address-search (utils/timestamp)] error)
:dispatch [:lipas.ui.events/set-active-notification
{:message (tr :notifications/get-failed)
:success? false}]})))
(re-frame/reg-event-fx
::show-address
(fn [{:keys [db]} [_ {:keys [label geometry]}]]
(let [{:keys [lon lat]} (-> geometry :coordinates wgs84->epsg3067)
feature {:type "Feature" :geometry geometry :properties {:name label}}]
{:db (assoc-in db [:map :mode :address] feature)
:dispatch-n
[[::set-center lat lon]
[::set-zoom 14]
[::toggle-address-search-dialog]]})))
(re-frame/reg-event-db
::hide-address
(fn [db _]
(assoc-in db [:map :mode :address] nil)))
(defn- problems->fcoll [tr {:keys [intersections kinks]}]
(let [kfs (-> kinks
:features
(->> (map #(assoc-in % [:properties :name] (tr :map/kink))))
not-empty)
ifs (-> intersections
:features
(->> (map #(assoc-in % [:properties :name] (tr :map/intersection))))
not-empty)]
{:type "FeatureCollection"
:features (into [] cat [kfs ifs])}))
(re-frame/reg-event-db
::show-problems
(fn [db [_ problems]]
(let [tr (-> db :translator)]
(assoc-in db [:map :mode :problems] {:data (problems->fcoll tr problems)
:show? true}))))
(defn- geom-type [fcoll]
(-> fcoll :features first :geometry :type))
(re-frame/reg-event-fx
::duplicate-sports-site
(fn [{:keys [db]} [_ lipas-id]]
(let [ts (get-in db [:sports-sites lipas-id :latest])
latest (get-in db [:sports-sites lipas-id :history ts])
geoms (get-in latest [:location :geometries])
geoms (if (= "Point" (geom-type geoms))
;; Shift point by ~11m so it doesn't overlap 1:1
;; with the original point.
(update-in geoms [:features 0 :geometry :coordinates 0] + 0.0001)
geoms)]
{:dispatch-n
[[:lipas.ui.map.events/show-sports-site nil]
[::start-adding-new-site]
[::new-geom-drawn geoms]
[:lipas.ui.sports-sites.events/duplicate latest]]})))
(re-frame/reg-event-fx
::set-overlay
(fn [{:keys [db]} [_ val layer]]
{:db (update-in db [:map :selected-overlays] (if val conj disj) layer)}))
;; Takes coll of pairs like [:analysis true] [:population false]
(re-frame/reg-event-fx
::set-overlays
(fn [{:keys [db]} [_ layers]]
(let [adds (->> layers (filter second) (map first))
removes (->> layers (filter (complement second)) (map first))]
{:db (update-in db [:map :selected-overlays]
(fn [current-layers]
(as-> (set current-layers) $
(apply conj $ adds)
(apply disj $ removes))))})))
(re-frame/reg-event-fx
::enable-overlays
(fn [{:keys [db]} [_ layers]]
{:db (update-in db [:map :selected-overlays] into layers)}))
(re-frame/reg-event-fx
::show-analysis*
(fn [{:keys [db]} _]
{:db (-> db
(assoc-in [:map :mode :name] :default)
(assoc-in [:map :mode :sub-mode] :analysis))
:dispatch-n
[[::enable-overlays [:vectors :schools :population :analysis]]
[:lipas.ui.search.events/set-status-filter ["planning"] :append]]}))
(re-frame/reg-event-fx
::show-analysis
(fn [{:keys [db]} [_ lipas-id]]
{:dispatch-n
[(when-not lipas-id
[::show-analysis*])
[:lipas.ui.analysis.events/show-analysis lipas-id]]}))
(re-frame/reg-event-fx
::hide-analysis
(fn [{:keys [db]} _]
{:db (-> db
(assoc-in [:map :mode :name] :default)
(update-in [:map :mode] dissoc :sub-mode))
:dispatch-n [[:lipas.ui.analysis.events/clear]
[::set-overlays [[:vectors true]
[:schools false]
[:population false]
[:analysis false]]]
[:lipas.ui.search.events/remove-status-filter "planning"]
[:lipas.ui.search.events/clear-filters]]}))
(re-frame/reg-event-fx
::add-analysis-target
(fn [{:keys [db]} _]
(let [template {:status "planning"
:name "Analyysikohde"
:owner "unknown"
:admin "unknown"
:location
{:address "Testikatu 123"
:postal-code "12345"}}]
{:dispatch-n
[[::start-adding-new-site template]]})))
|
122927
|
(ns lipas.ui.map.events
(:require
["ol" :as ol]
[ajax.core :as ajax]
[cemerick.url :as url]
[clojure.set :as set]
[clojure.string :as string]
[goog.object :as gobj]
[goog.string :as gstring]
[goog.string.format]
[goog.string.path :as gpath]
[lipas.ui.map.utils :as map-utils]
[lipas.ui.utils :refer [==>] :as utils]
proj4
[re-frame.core :as re-frame]))
(defn wgs84->epsg3067 [wgs84-coords]
(let [proj (.get ol/proj "EPSG:3067")
[lon lat] (js->clj (ol/proj.fromLonLat (clj->js wgs84-coords) proj))]
{:lon lon :lat lat}))
(defn epsg3067->wgs84-fast [wgs84-coords]
(let [proj (.get ol/proj "EPSG:3067")]
(ol/proj.toLonLat wgs84-coords proj)))
(defn top-left [extent]
(epsg3067->wgs84-fast
#js[(aget extent 0) (aget extent 3)]))
(defn bottom-right [extent]
(epsg3067->wgs84-fast
#js[(aget extent 2) (aget extent 1)]))
(re-frame/reg-event-db
::toggle-drawer
(fn [db _]
(update-in db [:map :drawer-open?] not)))
;; Width and height are in meters when using EPSG:3067 projection
(re-frame/reg-event-fx
::set-view
(fn [{:keys [db]} [_ center lonlat zoom extent width height]]
(let [center {:lat (aget center 1) :lon (aget center 0)}
center-wgs84 {:lat (aget lonlat 1) :lon (aget lonlat 0)}]
{:db (-> db
(assoc-in [:map :center] center)
(assoc-in [:map :center-wgs84] center-wgs84)
(assoc-in [:map :zoom] zoom)
(assoc-in [:map :extent] extent)
(assoc-in [:map :top-left-wgs84] (top-left extent))
(assoc-in [:map :bottom-right-wgs84] (bottom-right extent))
(assoc-in [:map :width] width)
(assoc-in [:map :height] height))
:dispatch-n
[(when (and extent width) [:lipas.ui.search.events/submit-search])]})))
;; Map displaying events ;;
(re-frame/reg-event-db
::fit-to-current-vectors
(fn [db _]
(assoc-in db [:map :mode :fit-nonce] (gensym))))
(re-frame/reg-event-fx
::zoom-to-site
(fn [{:keys [db]} [_ lipas-id width]]
(let [latest (get-in db [:sports-sites lipas-id :latest])
rev (get-in db [:sports-sites lipas-id :history latest])
geom (-> rev :location :geometries :features first :geometry)
wgs-coords (case (:type geom)
"Point" (-> geom :coordinates)
"LineString" (-> geom :coordinates first)
"Polygon" (-> geom :coordinates first first))
center (wgs84->epsg3067 wgs-coords)
zoom 14]
{:db (-> db
(assoc-in [:map :zoom] zoom)
(assoc-in [:map :center] center))
:dispatch-n [(case width ("xs" "sm") [::toggle-drawer] nil)]})))
(re-frame/reg-event-fx
::zoom-to-users-position
(fn [_ _]
{:lipas.ui.effects/request-geolocation!
(fn [position]
(let [lon* (-> position .-coords .-longitude)
lat* (-> position .-coords .-latitude)
{:keys [lon lat]} (wgs84->epsg3067 [lon* lat*])]
(when (and lon lat)
(==> [::set-center lat lon])
(==> [::set-zoom 12]))))}))
(re-frame/reg-event-db
::set-center
(fn [db [_ lat lon]]
(assoc-in db [:map :center] {:lat lat :lon lon})))
(re-frame/reg-event-db
::set-zoom
(fn [db [_ zoom]]
(assoc-in db [:map :zoom] zoom)))
(re-frame/reg-event-db
::select-basemap
(fn [db [_ basemap]]
(assoc-in db [:map :basemap] basemap)))
(re-frame/reg-event-db
::toggle-overlay
(fn [db [_ k]]
(let [op (if (-> db :map :selected-overlays (contains? k))
disj
conj)]
(update-in db [:map :selected-overlays] op k))))
(re-frame/reg-event-db
::show-popup
(fn [db [_ feature]]
(assoc-in db [:map :popup] feature)))
(re-frame/reg-event-db
::show-sports-site*
(fn [db [_ lipas-id]]
(let [drawer-open? (or lipas-id (-> db :screen-size #{"sm" "xs"} boolean not))]
(-> db
(assoc-in [:map :mode :lipas-id] lipas-id)
(assoc-in [:map :drawer-open?] drawer-open?)))))
;; Geom editing events ;;
(defn- get-latest-rev [db lipas-id]
(or (get-in db [:sports-sites lipas-id :editing])
(let [latest (get-in db [:sports-sites lipas-id :latest])]
(get-in db [:sports-sites lipas-id :history latest]))))
(re-frame/reg-event-fx
::start-editing
(fn [{:keys [db]} [_ lipas-id sub-mode geom-type]]
(let [site (get-latest-rev db lipas-id)
geoms (utils/->feature site)]
{:db (update-in db [:map :mode] merge {:name :editing
:lipas-id lipas-id
:geoms geoms
:sub-mode sub-mode
:geom-type geom-type})
:dispatch-n [[::show-problems (map-utils/find-problems geoms)]]})))
(re-frame/reg-event-fx
::continue-editing
(fn [{:keys [db]} _]
(let [geoms (-> db :map :mode :geoms)]
{:db (update-in db [:map :mode] merge {:name :editing :sub-mode :editing})
:dispatch-n
[[::show-problems (map-utils/find-problems geoms)]]})))
(re-frame/reg-event-fx
::stop-editing
(fn [{:keys [db]} [_]]
{:db (assoc-in db [:map :mode :name] :default)
:dispatch [::clear-undo-redo]}))
(re-frame/reg-event-db
::start-adding-geom
(fn [db [_ geom-type]]
(-> db
(update-in [:map :mode] merge {:name :adding
:temp {}
:geom-type geom-type
:sub-mode :drawing}))))
(re-frame/reg-event-db
::start-deleting-geom
(fn [db [_ geom-type]]
(-> db
(update-in [:map :mode] merge {:name :adding
:geom-type geom-type
:sub-mode :deleting}))))
(re-frame/reg-event-db
::stop-deleting-geom
(fn [db [_ geom-type]]
(-> db
(update-in [:map :mode] merge {:name :adding
:geom-type geom-type
:sub-mode :editing}))))
(re-frame/reg-event-db
::start-splitting-geom
(fn [db [_ geom-type]]
(-> db
(update-in [:map :mode] merge {:name :adding
:geom-type geom-type
:sub-mode :splitting}))))
(re-frame/reg-event-db
::stop-splitting-geom
(fn [db [_ geom-type]]
(-> db
(update-in [:map :mode] merge {:name :adding
:geom-type geom-type
:sub-mode :editing}))))
(re-frame/reg-event-fx
::undo
(fn [{:keys [db]} [_ lipas-id]]
(let [path [:map :mode :geoms]
curr-geoms (get-in db path)
undo-stack (get-in db [:map :temp lipas-id :undo-stack])]
{:db (-> db
(assoc-in [:map :mode :sub-mode] :undo)
(assoc-in [:map :mode :undo-geoms] (peek undo-stack))
(update-in [:map :temp lipas-id :undo-stack] pop)
(update-in [:map :temp lipas-id :redo-stack] conj curr-geoms))})))
(re-frame/reg-event-fx
::redo
(fn [{:keys [db]} [_ lipas-id]]
(let [path [:map :mode :geoms]
curr-geoms (get-in db path)
redo-stack (get-in db [:map :temp lipas-id :redo-stack])]
{:db (-> db
(assoc-in [:map :mode :sub-mode] :undo)
(assoc-in [:map :mode :undo-geoms] (peek redo-stack))
(update-in [:map :temp lipas-id :redo-stack] pop)
(update-in [:map :temp lipas-id :undo-stack] conj curr-geoms))})))
;; Callback from OpenLayers
(re-frame/reg-event-fx
::undo-done
(fn [{:keys [db]} [_ lipas-id geoms]]
(let [path [:sports-sites lipas-id :editing :location :geometries]]
{:db (cond-> db
true (update-in [:map :mode] merge {:geoms geoms :sub-mode :editing})
lipas-id (assoc-in path geoms))
:dispatch-n [[::show-problems (map-utils/find-problems geoms)]]})))
(re-frame/reg-event-db
::clear-undo-redo
(fn [db _]
(assoc-in db [:map :temp] {})))
(re-frame/reg-event-fx
::update-geometries
(fn [{:keys [db]} [_ lipas-id geoms]]
(let [path [:sports-sites lipas-id :editing :location :geometries]
old-geoms (-> db :map :mode :geoms)
new-geoms (update geoms :features
(fn [fs] (map #(dissoc % :properties :id) fs)))]
{:db (-> db
(update-in [:map :temp lipas-id :undo-stack] conj old-geoms)
(assoc-in [:map :mode :geoms] geoms)
(assoc-in [:map :temp lipas-id :redo-stack] '())
(assoc-in path new-geoms))
:dispatch-n
[[::show-problems (map-utils/find-problems new-geoms)]]})))
(re-frame/reg-event-fx
::new-geom-drawn
(fn [{:keys [db]} [_ geoms]]
(let [curr-geoms (-> db :map :mode :geoms)]
{:db (cond-> db
curr-geoms (update-in [:map :temp "new" :undo-stack] conj curr-geoms)
true (assoc-in [:map :temp "new" :redo-stack] '())
true (update-in [:map :mode] merge {:name :adding
:geoms geoms
:sub-mode :editing}))
:dispatch-n [[::show-problems (map-utils/find-problems geoms)]]})))
(re-frame/reg-event-fx
::update-new-geom
(fn [{:keys [db]} [_ geoms]]
(let [curr-geoms (-> db :map :mode :geoms)]
{:db (-> db
(assoc-in [:map :mode :geoms] geoms)
(assoc-in [:map :temp "new" :redo-stack] '())
(update-in [:map :temp "new" :undo-stack] conj curr-geoms))
:dispatch-n [[::show-problems (map-utils/find-problems geoms)]]})))
(re-frame/reg-event-fx
::confirm-remove-segment
(fn [{:keys [db]} [_ callback]]
(let [tr (-> db :translator)
geom-type (-> db :map :mode :geom-type)]
{:dispatch
[:lipas.ui.events/confirm (tr :map/confirm-remove geom-type) callback]})))
(re-frame/reg-event-fx
::discard-drawing
(fn [{:keys [db]} _]
{:db (assoc-in db [:map :mode] {:name :default})
:dispatch [:lipas.ui.search.events/submit-search]}))
(re-frame/reg-event-fx
::finish-adding-geom
(fn [{:keys [db]} [_ geoms type-code]]
(let [geoms (update geoms :features
(fn [fs] (map #(dissoc % :properties :id) fs)))]
{:db (assoc-in db [:map :mode :sub-mode] :finished)
:dispatch-n [[:lipas.ui.sports-sites.events/init-new-site type-code geoms]]})))
(re-frame/reg-event-db
::open-more-tools-menu
(fn [db [_ el]]
(assoc-in db [:map :more-tools-menu :anchor] el)))
(re-frame/reg-event-db
::close-more-tools-menu
(fn [db _]
(assoc-in db [:map :more-tools-menu :anchor] nil)))
;;; Map events ;;;
(re-frame/reg-event-fx
::map-clicked
(fn [_]
{:dispatch [::hide-address]}))
(re-frame/reg-event-fx
::sports-site-selected
(fn [{:keys [db]} [_ _ lipas-id]]
(let [sub-mode (-> db :map :mode :sub-mode)]
(if (= sub-mode :analysis)
{:dispatch [:lipas.ui.analysis.events/show-analysis lipas-id]}
{:dispatch [::show-sports-site lipas-id]}))))
;;; Higher order events ;;;
(re-frame/reg-event-fx
::show-sports-site
(fn [_ [_ lipas-id]]
{:dispatch-n
(if lipas-id
(let [params {:lipas-id lipas-id}]
[[:lipas.ui.events/navigate :lipas.ui.routes.map/details-view params]
[:lipas.ui.accessibility.events/get-statements lipas-id]])
[[:lipas.ui.events/navigate :lipas.ui.routes.map/map]])}))
(re-frame/reg-event-fx
::edit-site
(fn [_ [_ lipas-id geom-type]]
{:dispatch-n
[[:lipas.ui.sports-sites.events/edit-site lipas-id]
;;[::zoom-to-site lipas-id]
[::clear-undo-redo]
[::start-editing lipas-id :editing geom-type]]}))
(defn- on-success-default [{:keys [lipas-id]}]
[[::stop-editing]
[:lipas.ui.search.events/submit-search]
[:lipas.ui.map.events/show-sports-site lipas-id]])
(defn- on-failure-default [{:keys [lipas-id]}]
[[:lipas.ui.map.events/show-sports-site lipas-id]])
(re-frame/reg-event-fx
::save-edits
(fn [_ [_ lipas-id]]
(let [on-success (partial on-success-default {:lipas-id lipas-id})
on-failure (partial on-failure-default {:lipas-id lipas-id})]
{:dispatch-n
;; We "unselect" sports-site while saving to make the
;; map "forget" and focus on updated entries once they're saved.
;; Some more elegant solution could be possibly implemented in
;; the future.
[[:lipas.ui.map.events/show-sports-site nil]
[:lipas.ui.sports-sites.events/save-edits lipas-id on-success on-failure]]})))
(re-frame/reg-event-fx
::discard-edits
(fn [{:keys [db]} [_ lipas-id]]
(let [tr (-> db :translator)]
{:dispatch
[:lipas.ui.events/confirm
(tr :confirm/discard-changes?)
(fn []
(==> [:lipas.ui.sports-sites.events/discard-edits lipas-id])
(==> [::stop-editing]))]})))
(re-frame/reg-event-fx
::delete-site
(fn [_]
{:dispatch-n
[[:lipas.ui.sports-sites.events/toggle-delete-dialog]]}))
(re-frame/reg-event-fx
::resurrect
(fn [{:keys [db]} [_ lipas-id]]
(let [tr (:translator db)]
{:dispatch
[:lipas.ui.events/confirm
(tr :confirm/resurrect?)
(fn []
(==> [:lipas.ui.sports-sites.events/resurrect
lipas-id
on-success-default on-failure-default]))]})))
(re-frame/reg-event-fx
::start-adding-new-site
(fn [{:keys [db]} [_ template]]
{:db (assoc-in db [:map :mode] {:name :default}) ;; cleanup
:dispatch-n [[:lipas.ui.search.events/set-results-view :list]
[:lipas.ui.sports-sites.events/start-adding-new-site template]]}))
(re-frame/reg-event-fx
::discard-new-site
(fn [{:keys [db]} _]
(let [tr (-> db :translator)]
{:dispatch
[:lipas.ui.events/confirm
(tr :confirm/discard-changes?)
(fn []
(==> [:lipas.ui.sports-sites.events/discard-new-site])
(==> [::discard-drawing]))]})))
(defn- on-success-new [{:keys [lipas-id]}]
[[:lipas.ui.sports-sites.events/discard-new-site]
[:lipas.ui.map.events/stop-editing]
[:lipas.ui.map.events/show-sports-site lipas-id]
[:lipas.ui.search.events/submit-search]
[:lipas.ui.login.events/refresh-login]])
(re-frame/reg-event-fx
::save-new-site
(fn [{:keys [db]} [_ data]]
(let [draft? false
type (get-in db [:sports-sites :types (-> data :type :type-code)])
data (-> data
(assoc :event-date (utils/timestamp))
(update :properties #(select-keys % (-> type :props keys))))]
{:dispatch
[:lipas.ui.sports-sites.events/commit-rev data draft? on-success-new]})))
;; Import geoms ;;
(re-frame/reg-event-db
::toggle-import-dialog
(fn [db _]
(update-in db [:map :import :dialog-open?] not)))
(re-frame/reg-event-db
::select-import-file-encoding
(fn [db [_ encoding]]
(assoc-in db [:map :import :selected-encoding] encoding)))
(defn geom-coll->features [geom-coll]
(->> geom-coll
:geometries
(map-indexed
(fn [idx g]
{:type "Feature"
:geometry g
:properties
{:id (gensym)
:name (str "geom-" (inc idx))}}))))
(defn normalize-geom-colls
"Handles a special case where geometries are contained in a
GeometryCollection. Normalizes geom coll into features with dummy
props."
[fcoll geom-type]
(->> fcoll
:features
(filter (comp #{"GeometryCollection"} :type :geometry))
(map :geometry)
(mapcat geom-coll->features)
(filter (comp #{geom-type} :type :geometry))
(utils/index-by (comp :id :properties))))
(re-frame/reg-event-db
::set-import-candidates
(fn [db [_ geoJSON geom-type]]
(let [fcoll (js->clj geoJSON :keywordize-keys true)
fs (->> fcoll
:features
(filter (comp #{geom-type} :type :geometry))
(reduce
(fn [res f]
(let [id (gensym)]
(assoc res id (assoc-in f [:properties :id] id))))
{})
(merge (normalize-geom-colls fcoll geom-type)))]
(-> db
(assoc-in [:map :import :data] fs)
(assoc-in [:map :import :batch-id] (gensym))))))
(defn parse-dom [text]
(let [parser (js/DOMParser.)]
(.parseFromString parser text "text/xml")))
(defn- text->geoJSON [{:keys [file ext enc cb]}]
(let [reader (js/FileReader.)
cb (fn [e]
(let [text (-> e .-target .-result)
parsed (condp = ext
"json" (js/JSON.parse text)
"kml" (-> text parse-dom js/toGeoJSON.kml)
"gpx" (-> text parse-dom js/toGeoJSON.gpx))]
(cb parsed)))]
(set! (.-onload reader) cb)
(.readAsText reader file enc)
{}))
(defmulti file->geoJSON :ext)
(defmethod file->geoJSON "zip" [{:keys [file enc cb]}]
(js/shp2geojson.loadshp #js{:url file :encoding enc} cb))
(defmethod file->geoJSON "gpx" [params] (text->geoJSON params))
(defmethod file->geoJSON "kml" [params] (text->geoJSON params))
(defmethod file->geoJSON "json" [params] (text->geoJSON params))
(defmethod file->geoJSON :default [params] {:unknown (:ext params)})
(defn parse-ext [file]
(-> file
(gobj/get "name" "")
gpath/extension
string/lower-case))
(re-frame/reg-event-fx
::load-geoms-from-file
(fn [{:keys [db]} [_ files geom-type]]
(let [file (aget files 0)
params {:enc (-> db :map :import :selected-encoding)
:file file
:ext (parse-ext file)
:cb (fn [data] (==> [::set-import-candidates data geom-type]))}]
(if-let [ext (:unknown (file->geoJSON params))]
{:dispatch-n [(let [tr (-> db :translator)]
[:lipas.ui.events/set-active-notification
{:message (tr :map.import/unknown-format ext)
:success? false}])]}
{}))))
(re-frame/reg-event-db
::select-import-items
(fn [db [_ ids]]
(assoc-in db [:map :import :selected-items] (set ids))))
(re-frame/reg-event-db
::toggle-replace-existing-selection
(fn [db _]
(update-in db [:map :import :replace-existing?] not)))
(re-frame/reg-event-fx
::import-selected-geoms
(fn [{:keys [db]} _]
(let [ids (-> db :map :import :selected-items)
replace? (-> db :map :import :replace-existing?)
data (select-keys (-> db :map :import :data) ids)
fcoll {:type "FeatureCollection"
:features (into [] cat
[(when-not replace?
(-> db :map :mode :geoms :features))
(->> data vals (map #(dissoc % :properties)))])}
fcoll (map-utils/strip-z fcoll)]
{:db (-> db
(assoc-in [:map :mode :geoms] fcoll)
(assoc-in [:map :mode :sub-mode] :importing))
:dispatch-n [[::toggle-import-dialog]
[::select-import-items #{}]]})))
(re-frame/reg-event-fx
::import-selected-geoms-to-new
(fn [{:keys [db]} _]
(let [ids (-> db :map :import :selected-items)
data (select-keys (-> db :map :import :data) ids)
fcoll (map-utils/strip-z
{:type "FeatureCollection"
:features (into [] (->> data vals (map #(dissoc % :properties))))})]
{:db (assoc-in db [:map :mode :geoms] fcoll)
:dispatch-n [[::new-geom-drawn fcoll]
[::toggle-import-dialog]
[::select-import-items #{}]]})))
(defn- add-gpx-props [{:keys [locale types cities site]} feature]
(let [city-code (-> site :location :city :city-code)
type-code (-> site :type :type-code)
props {:name (-> site :name)
:type (get-in types [type-code :name locale])
:city (get-in cities [city-code :name locale])}]
(assoc feature :properties props)))
(re-frame/reg-event-fx
::download-gpx
(fn [{:keys [db]} [_ lipas-id]]
(let [locale (-> db :translator (apply []))
latest (get-in db [:sports-sites lipas-id :latest])
site (get-in db [:sports-sites lipas-id :history latest])
data {:site site
:cities (-> db :cities)
:types (-> db :types)
:locale locale}
fname (gstring/urlEncode (str (:name site) ".gpx"))
xml-str (-> site :location :geometries
(update :features #(mapv (partial add-gpx-props data) %))
clj->js
(js/togpx #js{:creator "LIPAS"}))]
{:lipas.ui.effects/save-as! {:blob (js/Blob. #js[xml-str]) :filename fname}})))
;; Address search ;;
(re-frame/reg-event-db
::toggle-address-search-dialog
(fn [db _]
(-> db
(update-in [:map :address-search :dialog-open?] not)
(assoc-in [:map :address-search :keyword] "")
(assoc-in [:map :address-search :results] []))))
(re-frame/reg-event-db
::clear-address-search-results
(fn [db _]
(assoc-in db [:map :address-search :results] [])))
(re-frame/reg-event-fx
::update-address-search-keyword
(fn [{:keys [db]} [_ s]]
{:db (assoc-in db [:map :address-search :keyword] s)
:dispatch-n [[::search-address s]]}))
;; https://www.digitransit.fi/en/developers/apis/2-geocoding-api/autocomplete/
(re-frame/reg-event-fx
::search-address
(fn [{:keys [db]} [_ s]]
(let [base-url (-> db :map :address-search :base-url)]
(if (not-empty s)
{:http-xhrio
{:method :get
:uri (str base-url "/autocomplete?"
"sources=oa,osm"
"&text=" s)
:response-format (ajax/json-response-format {:keywords? true})
:on-success [::address-search-success]
:on-failure [::address-search-failure]}}
{:dispatch [::clear-address-search-results]}))))
(re-frame/reg-event-fx
::address-search-success
(fn [{:keys [db]} [_ resp]]
{:db (assoc-in db [:map :address-search :results] resp)}))
(re-frame/reg-event-fx
::address-search-failure
(fn [{:keys [db]} [_ error]]
(let [tr (:translator db)]
{:db (assoc-in db [:errors :address-search (utils/timestamp)] error)
:dispatch [:lipas.ui.events/set-active-notification
{:message (tr :notifications/get-failed)
:success? false}]})))
(re-frame/reg-event-fx
::show-address
(fn [{:keys [db]} [_ {:keys [label geometry]}]]
(let [{:keys [lon lat]} (-> geometry :coordinates wgs84->epsg3067)
feature {:type "Feature" :geometry geometry :properties {:name label}}]
{:db (assoc-in db [:map :mode :address] feature)
:dispatch-n
[[::set-center lat lon]
[::set-zoom 14]
[::toggle-address-search-dialog]]})))
(re-frame/reg-event-db
::hide-address
(fn [db _]
(assoc-in db [:map :mode :address] nil)))
(defn- problems->fcoll [tr {:keys [intersections kinks]}]
(let [kfs (-> kinks
:features
(->> (map #(assoc-in % [:properties :name] (tr :map/kink))))
not-empty)
ifs (-> intersections
:features
(->> (map #(assoc-in % [:properties :name] (tr :map/intersection))))
not-empty)]
{:type "FeatureCollection"
:features (into [] cat [kfs ifs])}))
(re-frame/reg-event-db
::show-problems
(fn [db [_ problems]]
(let [tr (-> db :translator)]
(assoc-in db [:map :mode :problems] {:data (problems->fcoll tr problems)
:show? true}))))
(defn- geom-type [fcoll]
(-> fcoll :features first :geometry :type))
(re-frame/reg-event-fx
::duplicate-sports-site
(fn [{:keys [db]} [_ lipas-id]]
(let [ts (get-in db [:sports-sites lipas-id :latest])
latest (get-in db [:sports-sites lipas-id :history ts])
geoms (get-in latest [:location :geometries])
geoms (if (= "Point" (geom-type geoms))
;; Shift point by ~11m so it doesn't overlap 1:1
;; with the original point.
(update-in geoms [:features 0 :geometry :coordinates 0] + 0.0001)
geoms)]
{:dispatch-n
[[:lipas.ui.map.events/show-sports-site nil]
[::start-adding-new-site]
[::new-geom-drawn geoms]
[:lipas.ui.sports-sites.events/duplicate latest]]})))
(re-frame/reg-event-fx
::set-overlay
(fn [{:keys [db]} [_ val layer]]
{:db (update-in db [:map :selected-overlays] (if val conj disj) layer)}))
;; Takes coll of pairs like [:analysis true] [:population false]
(re-frame/reg-event-fx
::set-overlays
(fn [{:keys [db]} [_ layers]]
(let [adds (->> layers (filter second) (map first))
removes (->> layers (filter (complement second)) (map first))]
{:db (update-in db [:map :selected-overlays]
(fn [current-layers]
(as-> (set current-layers) $
(apply conj $ adds)
(apply disj $ removes))))})))
(re-frame/reg-event-fx
::enable-overlays
(fn [{:keys [db]} [_ layers]]
{:db (update-in db [:map :selected-overlays] into layers)}))
(re-frame/reg-event-fx
::show-analysis*
(fn [{:keys [db]} _]
{:db (-> db
(assoc-in [:map :mode :name] :default)
(assoc-in [:map :mode :sub-mode] :analysis))
:dispatch-n
[[::enable-overlays [:vectors :schools :population :analysis]]
[:lipas.ui.search.events/set-status-filter ["planning"] :append]]}))
(re-frame/reg-event-fx
::show-analysis
(fn [{:keys [db]} [_ lipas-id]]
{:dispatch-n
[(when-not lipas-id
[::show-analysis*])
[:lipas.ui.analysis.events/show-analysis lipas-id]]}))
(re-frame/reg-event-fx
::hide-analysis
(fn [{:keys [db]} _]
{:db (-> db
(assoc-in [:map :mode :name] :default)
(update-in [:map :mode] dissoc :sub-mode))
:dispatch-n [[:lipas.ui.analysis.events/clear]
[::set-overlays [[:vectors true]
[:schools false]
[:population false]
[:analysis false]]]
[:lipas.ui.search.events/remove-status-filter "planning"]
[:lipas.ui.search.events/clear-filters]]}))
(re-frame/reg-event-fx
::add-analysis-target
(fn [{:keys [db]} _]
(let [template {:status "planning"
:name "<NAME>ysikohde"
:owner "unknown"
:admin "unknown"
:location
{:address "Testikatu 123"
:postal-code "12345"}}]
{:dispatch-n
[[::start-adding-new-site template]]})))
| true |
(ns lipas.ui.map.events
(:require
["ol" :as ol]
[ajax.core :as ajax]
[cemerick.url :as url]
[clojure.set :as set]
[clojure.string :as string]
[goog.object :as gobj]
[goog.string :as gstring]
[goog.string.format]
[goog.string.path :as gpath]
[lipas.ui.map.utils :as map-utils]
[lipas.ui.utils :refer [==>] :as utils]
proj4
[re-frame.core :as re-frame]))
(defn wgs84->epsg3067 [wgs84-coords]
(let [proj (.get ol/proj "EPSG:3067")
[lon lat] (js->clj (ol/proj.fromLonLat (clj->js wgs84-coords) proj))]
{:lon lon :lat lat}))
(defn epsg3067->wgs84-fast [wgs84-coords]
(let [proj (.get ol/proj "EPSG:3067")]
(ol/proj.toLonLat wgs84-coords proj)))
(defn top-left [extent]
(epsg3067->wgs84-fast
#js[(aget extent 0) (aget extent 3)]))
(defn bottom-right [extent]
(epsg3067->wgs84-fast
#js[(aget extent 2) (aget extent 1)]))
(re-frame/reg-event-db
::toggle-drawer
(fn [db _]
(update-in db [:map :drawer-open?] not)))
;; Width and height are in meters when using EPSG:3067 projection
(re-frame/reg-event-fx
::set-view
(fn [{:keys [db]} [_ center lonlat zoom extent width height]]
(let [center {:lat (aget center 1) :lon (aget center 0)}
center-wgs84 {:lat (aget lonlat 1) :lon (aget lonlat 0)}]
{:db (-> db
(assoc-in [:map :center] center)
(assoc-in [:map :center-wgs84] center-wgs84)
(assoc-in [:map :zoom] zoom)
(assoc-in [:map :extent] extent)
(assoc-in [:map :top-left-wgs84] (top-left extent))
(assoc-in [:map :bottom-right-wgs84] (bottom-right extent))
(assoc-in [:map :width] width)
(assoc-in [:map :height] height))
:dispatch-n
[(when (and extent width) [:lipas.ui.search.events/submit-search])]})))
;; Map displaying events ;;
(re-frame/reg-event-db
::fit-to-current-vectors
(fn [db _]
(assoc-in db [:map :mode :fit-nonce] (gensym))))
(re-frame/reg-event-fx
::zoom-to-site
(fn [{:keys [db]} [_ lipas-id width]]
(let [latest (get-in db [:sports-sites lipas-id :latest])
rev (get-in db [:sports-sites lipas-id :history latest])
geom (-> rev :location :geometries :features first :geometry)
wgs-coords (case (:type geom)
"Point" (-> geom :coordinates)
"LineString" (-> geom :coordinates first)
"Polygon" (-> geom :coordinates first first))
center (wgs84->epsg3067 wgs-coords)
zoom 14]
{:db (-> db
(assoc-in [:map :zoom] zoom)
(assoc-in [:map :center] center))
:dispatch-n [(case width ("xs" "sm") [::toggle-drawer] nil)]})))
(re-frame/reg-event-fx
::zoom-to-users-position
(fn [_ _]
{:lipas.ui.effects/request-geolocation!
(fn [position]
(let [lon* (-> position .-coords .-longitude)
lat* (-> position .-coords .-latitude)
{:keys [lon lat]} (wgs84->epsg3067 [lon* lat*])]
(when (and lon lat)
(==> [::set-center lat lon])
(==> [::set-zoom 12]))))}))
(re-frame/reg-event-db
::set-center
(fn [db [_ lat lon]]
(assoc-in db [:map :center] {:lat lat :lon lon})))
(re-frame/reg-event-db
::set-zoom
(fn [db [_ zoom]]
(assoc-in db [:map :zoom] zoom)))
(re-frame/reg-event-db
::select-basemap
(fn [db [_ basemap]]
(assoc-in db [:map :basemap] basemap)))
(re-frame/reg-event-db
::toggle-overlay
(fn [db [_ k]]
(let [op (if (-> db :map :selected-overlays (contains? k))
disj
conj)]
(update-in db [:map :selected-overlays] op k))))
(re-frame/reg-event-db
::show-popup
(fn [db [_ feature]]
(assoc-in db [:map :popup] feature)))
(re-frame/reg-event-db
::show-sports-site*
(fn [db [_ lipas-id]]
(let [drawer-open? (or lipas-id (-> db :screen-size #{"sm" "xs"} boolean not))]
(-> db
(assoc-in [:map :mode :lipas-id] lipas-id)
(assoc-in [:map :drawer-open?] drawer-open?)))))
;; Geom editing events ;;
(defn- get-latest-rev [db lipas-id]
(or (get-in db [:sports-sites lipas-id :editing])
(let [latest (get-in db [:sports-sites lipas-id :latest])]
(get-in db [:sports-sites lipas-id :history latest]))))
(re-frame/reg-event-fx
::start-editing
(fn [{:keys [db]} [_ lipas-id sub-mode geom-type]]
(let [site (get-latest-rev db lipas-id)
geoms (utils/->feature site)]
{:db (update-in db [:map :mode] merge {:name :editing
:lipas-id lipas-id
:geoms geoms
:sub-mode sub-mode
:geom-type geom-type})
:dispatch-n [[::show-problems (map-utils/find-problems geoms)]]})))
(re-frame/reg-event-fx
::continue-editing
(fn [{:keys [db]} _]
(let [geoms (-> db :map :mode :geoms)]
{:db (update-in db [:map :mode] merge {:name :editing :sub-mode :editing})
:dispatch-n
[[::show-problems (map-utils/find-problems geoms)]]})))
(re-frame/reg-event-fx
::stop-editing
(fn [{:keys [db]} [_]]
{:db (assoc-in db [:map :mode :name] :default)
:dispatch [::clear-undo-redo]}))
(re-frame/reg-event-db
::start-adding-geom
(fn [db [_ geom-type]]
(-> db
(update-in [:map :mode] merge {:name :adding
:temp {}
:geom-type geom-type
:sub-mode :drawing}))))
(re-frame/reg-event-db
::start-deleting-geom
(fn [db [_ geom-type]]
(-> db
(update-in [:map :mode] merge {:name :adding
:geom-type geom-type
:sub-mode :deleting}))))
(re-frame/reg-event-db
::stop-deleting-geom
(fn [db [_ geom-type]]
(-> db
(update-in [:map :mode] merge {:name :adding
:geom-type geom-type
:sub-mode :editing}))))
(re-frame/reg-event-db
::start-splitting-geom
(fn [db [_ geom-type]]
(-> db
(update-in [:map :mode] merge {:name :adding
:geom-type geom-type
:sub-mode :splitting}))))
(re-frame/reg-event-db
::stop-splitting-geom
(fn [db [_ geom-type]]
(-> db
(update-in [:map :mode] merge {:name :adding
:geom-type geom-type
:sub-mode :editing}))))
(re-frame/reg-event-fx
::undo
(fn [{:keys [db]} [_ lipas-id]]
(let [path [:map :mode :geoms]
curr-geoms (get-in db path)
undo-stack (get-in db [:map :temp lipas-id :undo-stack])]
{:db (-> db
(assoc-in [:map :mode :sub-mode] :undo)
(assoc-in [:map :mode :undo-geoms] (peek undo-stack))
(update-in [:map :temp lipas-id :undo-stack] pop)
(update-in [:map :temp lipas-id :redo-stack] conj curr-geoms))})))
(re-frame/reg-event-fx
::redo
(fn [{:keys [db]} [_ lipas-id]]
(let [path [:map :mode :geoms]
curr-geoms (get-in db path)
redo-stack (get-in db [:map :temp lipas-id :redo-stack])]
{:db (-> db
(assoc-in [:map :mode :sub-mode] :undo)
(assoc-in [:map :mode :undo-geoms] (peek redo-stack))
(update-in [:map :temp lipas-id :redo-stack] pop)
(update-in [:map :temp lipas-id :undo-stack] conj curr-geoms))})))
;; Callback from OpenLayers
(re-frame/reg-event-fx
::undo-done
(fn [{:keys [db]} [_ lipas-id geoms]]
(let [path [:sports-sites lipas-id :editing :location :geometries]]
{:db (cond-> db
true (update-in [:map :mode] merge {:geoms geoms :sub-mode :editing})
lipas-id (assoc-in path geoms))
:dispatch-n [[::show-problems (map-utils/find-problems geoms)]]})))
(re-frame/reg-event-db
::clear-undo-redo
(fn [db _]
(assoc-in db [:map :temp] {})))
(re-frame/reg-event-fx
::update-geometries
(fn [{:keys [db]} [_ lipas-id geoms]]
(let [path [:sports-sites lipas-id :editing :location :geometries]
old-geoms (-> db :map :mode :geoms)
new-geoms (update geoms :features
(fn [fs] (map #(dissoc % :properties :id) fs)))]
{:db (-> db
(update-in [:map :temp lipas-id :undo-stack] conj old-geoms)
(assoc-in [:map :mode :geoms] geoms)
(assoc-in [:map :temp lipas-id :redo-stack] '())
(assoc-in path new-geoms))
:dispatch-n
[[::show-problems (map-utils/find-problems new-geoms)]]})))
(re-frame/reg-event-fx
::new-geom-drawn
(fn [{:keys [db]} [_ geoms]]
(let [curr-geoms (-> db :map :mode :geoms)]
{:db (cond-> db
curr-geoms (update-in [:map :temp "new" :undo-stack] conj curr-geoms)
true (assoc-in [:map :temp "new" :redo-stack] '())
true (update-in [:map :mode] merge {:name :adding
:geoms geoms
:sub-mode :editing}))
:dispatch-n [[::show-problems (map-utils/find-problems geoms)]]})))
(re-frame/reg-event-fx
::update-new-geom
(fn [{:keys [db]} [_ geoms]]
(let [curr-geoms (-> db :map :mode :geoms)]
{:db (-> db
(assoc-in [:map :mode :geoms] geoms)
(assoc-in [:map :temp "new" :redo-stack] '())
(update-in [:map :temp "new" :undo-stack] conj curr-geoms))
:dispatch-n [[::show-problems (map-utils/find-problems geoms)]]})))
(re-frame/reg-event-fx
::confirm-remove-segment
(fn [{:keys [db]} [_ callback]]
(let [tr (-> db :translator)
geom-type (-> db :map :mode :geom-type)]
{:dispatch
[:lipas.ui.events/confirm (tr :map/confirm-remove geom-type) callback]})))
(re-frame/reg-event-fx
::discard-drawing
(fn [{:keys [db]} _]
{:db (assoc-in db [:map :mode] {:name :default})
:dispatch [:lipas.ui.search.events/submit-search]}))
(re-frame/reg-event-fx
::finish-adding-geom
(fn [{:keys [db]} [_ geoms type-code]]
(let [geoms (update geoms :features
(fn [fs] (map #(dissoc % :properties :id) fs)))]
{:db (assoc-in db [:map :mode :sub-mode] :finished)
:dispatch-n [[:lipas.ui.sports-sites.events/init-new-site type-code geoms]]})))
(re-frame/reg-event-db
::open-more-tools-menu
(fn [db [_ el]]
(assoc-in db [:map :more-tools-menu :anchor] el)))
(re-frame/reg-event-db
::close-more-tools-menu
(fn [db _]
(assoc-in db [:map :more-tools-menu :anchor] nil)))
;;; Map events ;;;
(re-frame/reg-event-fx
::map-clicked
(fn [_]
{:dispatch [::hide-address]}))
(re-frame/reg-event-fx
::sports-site-selected
(fn [{:keys [db]} [_ _ lipas-id]]
(let [sub-mode (-> db :map :mode :sub-mode)]
(if (= sub-mode :analysis)
{:dispatch [:lipas.ui.analysis.events/show-analysis lipas-id]}
{:dispatch [::show-sports-site lipas-id]}))))
;;; Higher order events ;;;
(re-frame/reg-event-fx
::show-sports-site
(fn [_ [_ lipas-id]]
{:dispatch-n
(if lipas-id
(let [params {:lipas-id lipas-id}]
[[:lipas.ui.events/navigate :lipas.ui.routes.map/details-view params]
[:lipas.ui.accessibility.events/get-statements lipas-id]])
[[:lipas.ui.events/navigate :lipas.ui.routes.map/map]])}))
(re-frame/reg-event-fx
::edit-site
(fn [_ [_ lipas-id geom-type]]
{:dispatch-n
[[:lipas.ui.sports-sites.events/edit-site lipas-id]
;;[::zoom-to-site lipas-id]
[::clear-undo-redo]
[::start-editing lipas-id :editing geom-type]]}))
(defn- on-success-default [{:keys [lipas-id]}]
[[::stop-editing]
[:lipas.ui.search.events/submit-search]
[:lipas.ui.map.events/show-sports-site lipas-id]])
(defn- on-failure-default [{:keys [lipas-id]}]
[[:lipas.ui.map.events/show-sports-site lipas-id]])
(re-frame/reg-event-fx
::save-edits
(fn [_ [_ lipas-id]]
(let [on-success (partial on-success-default {:lipas-id lipas-id})
on-failure (partial on-failure-default {:lipas-id lipas-id})]
{:dispatch-n
;; We "unselect" sports-site while saving to make the
;; map "forget" and focus on updated entries once they're saved.
;; Some more elegant solution could be possibly implemented in
;; the future.
[[:lipas.ui.map.events/show-sports-site nil]
[:lipas.ui.sports-sites.events/save-edits lipas-id on-success on-failure]]})))
(re-frame/reg-event-fx
::discard-edits
(fn [{:keys [db]} [_ lipas-id]]
(let [tr (-> db :translator)]
{:dispatch
[:lipas.ui.events/confirm
(tr :confirm/discard-changes?)
(fn []
(==> [:lipas.ui.sports-sites.events/discard-edits lipas-id])
(==> [::stop-editing]))]})))
(re-frame/reg-event-fx
::delete-site
(fn [_]
{:dispatch-n
[[:lipas.ui.sports-sites.events/toggle-delete-dialog]]}))
(re-frame/reg-event-fx
::resurrect
(fn [{:keys [db]} [_ lipas-id]]
(let [tr (:translator db)]
{:dispatch
[:lipas.ui.events/confirm
(tr :confirm/resurrect?)
(fn []
(==> [:lipas.ui.sports-sites.events/resurrect
lipas-id
on-success-default on-failure-default]))]})))
(re-frame/reg-event-fx
::start-adding-new-site
(fn [{:keys [db]} [_ template]]
{:db (assoc-in db [:map :mode] {:name :default}) ;; cleanup
:dispatch-n [[:lipas.ui.search.events/set-results-view :list]
[:lipas.ui.sports-sites.events/start-adding-new-site template]]}))
(re-frame/reg-event-fx
::discard-new-site
(fn [{:keys [db]} _]
(let [tr (-> db :translator)]
{:dispatch
[:lipas.ui.events/confirm
(tr :confirm/discard-changes?)
(fn []
(==> [:lipas.ui.sports-sites.events/discard-new-site])
(==> [::discard-drawing]))]})))
(defn- on-success-new [{:keys [lipas-id]}]
[[:lipas.ui.sports-sites.events/discard-new-site]
[:lipas.ui.map.events/stop-editing]
[:lipas.ui.map.events/show-sports-site lipas-id]
[:lipas.ui.search.events/submit-search]
[:lipas.ui.login.events/refresh-login]])
(re-frame/reg-event-fx
::save-new-site
(fn [{:keys [db]} [_ data]]
(let [draft? false
type (get-in db [:sports-sites :types (-> data :type :type-code)])
data (-> data
(assoc :event-date (utils/timestamp))
(update :properties #(select-keys % (-> type :props keys))))]
{:dispatch
[:lipas.ui.sports-sites.events/commit-rev data draft? on-success-new]})))
;; Import geoms ;;
(re-frame/reg-event-db
::toggle-import-dialog
(fn [db _]
(update-in db [:map :import :dialog-open?] not)))
(re-frame/reg-event-db
::select-import-file-encoding
(fn [db [_ encoding]]
(assoc-in db [:map :import :selected-encoding] encoding)))
(defn geom-coll->features [geom-coll]
(->> geom-coll
:geometries
(map-indexed
(fn [idx g]
{:type "Feature"
:geometry g
:properties
{:id (gensym)
:name (str "geom-" (inc idx))}}))))
(defn normalize-geom-colls
"Handles a special case where geometries are contained in a
GeometryCollection. Normalizes geom coll into features with dummy
props."
[fcoll geom-type]
(->> fcoll
:features
(filter (comp #{"GeometryCollection"} :type :geometry))
(map :geometry)
(mapcat geom-coll->features)
(filter (comp #{geom-type} :type :geometry))
(utils/index-by (comp :id :properties))))
(re-frame/reg-event-db
::set-import-candidates
(fn [db [_ geoJSON geom-type]]
(let [fcoll (js->clj geoJSON :keywordize-keys true)
fs (->> fcoll
:features
(filter (comp #{geom-type} :type :geometry))
(reduce
(fn [res f]
(let [id (gensym)]
(assoc res id (assoc-in f [:properties :id] id))))
{})
(merge (normalize-geom-colls fcoll geom-type)))]
(-> db
(assoc-in [:map :import :data] fs)
(assoc-in [:map :import :batch-id] (gensym))))))
(defn parse-dom [text]
(let [parser (js/DOMParser.)]
(.parseFromString parser text "text/xml")))
(defn- text->geoJSON [{:keys [file ext enc cb]}]
(let [reader (js/FileReader.)
cb (fn [e]
(let [text (-> e .-target .-result)
parsed (condp = ext
"json" (js/JSON.parse text)
"kml" (-> text parse-dom js/toGeoJSON.kml)
"gpx" (-> text parse-dom js/toGeoJSON.gpx))]
(cb parsed)))]
(set! (.-onload reader) cb)
(.readAsText reader file enc)
{}))
(defmulti file->geoJSON :ext)
(defmethod file->geoJSON "zip" [{:keys [file enc cb]}]
(js/shp2geojson.loadshp #js{:url file :encoding enc} cb))
(defmethod file->geoJSON "gpx" [params] (text->geoJSON params))
(defmethod file->geoJSON "kml" [params] (text->geoJSON params))
(defmethod file->geoJSON "json" [params] (text->geoJSON params))
(defmethod file->geoJSON :default [params] {:unknown (:ext params)})
(defn parse-ext [file]
(-> file
(gobj/get "name" "")
gpath/extension
string/lower-case))
(re-frame/reg-event-fx
::load-geoms-from-file
(fn [{:keys [db]} [_ files geom-type]]
(let [file (aget files 0)
params {:enc (-> db :map :import :selected-encoding)
:file file
:ext (parse-ext file)
:cb (fn [data] (==> [::set-import-candidates data geom-type]))}]
(if-let [ext (:unknown (file->geoJSON params))]
{:dispatch-n [(let [tr (-> db :translator)]
[:lipas.ui.events/set-active-notification
{:message (tr :map.import/unknown-format ext)
:success? false}])]}
{}))))
(re-frame/reg-event-db
::select-import-items
(fn [db [_ ids]]
(assoc-in db [:map :import :selected-items] (set ids))))
(re-frame/reg-event-db
::toggle-replace-existing-selection
(fn [db _]
(update-in db [:map :import :replace-existing?] not)))
(re-frame/reg-event-fx
::import-selected-geoms
(fn [{:keys [db]} _]
(let [ids (-> db :map :import :selected-items)
replace? (-> db :map :import :replace-existing?)
data (select-keys (-> db :map :import :data) ids)
fcoll {:type "FeatureCollection"
:features (into [] cat
[(when-not replace?
(-> db :map :mode :geoms :features))
(->> data vals (map #(dissoc % :properties)))])}
fcoll (map-utils/strip-z fcoll)]
{:db (-> db
(assoc-in [:map :mode :geoms] fcoll)
(assoc-in [:map :mode :sub-mode] :importing))
:dispatch-n [[::toggle-import-dialog]
[::select-import-items #{}]]})))
(re-frame/reg-event-fx
::import-selected-geoms-to-new
(fn [{:keys [db]} _]
(let [ids (-> db :map :import :selected-items)
data (select-keys (-> db :map :import :data) ids)
fcoll (map-utils/strip-z
{:type "FeatureCollection"
:features (into [] (->> data vals (map #(dissoc % :properties))))})]
{:db (assoc-in db [:map :mode :geoms] fcoll)
:dispatch-n [[::new-geom-drawn fcoll]
[::toggle-import-dialog]
[::select-import-items #{}]]})))
(defn- add-gpx-props [{:keys [locale types cities site]} feature]
(let [city-code (-> site :location :city :city-code)
type-code (-> site :type :type-code)
props {:name (-> site :name)
:type (get-in types [type-code :name locale])
:city (get-in cities [city-code :name locale])}]
(assoc feature :properties props)))
(re-frame/reg-event-fx
::download-gpx
(fn [{:keys [db]} [_ lipas-id]]
(let [locale (-> db :translator (apply []))
latest (get-in db [:sports-sites lipas-id :latest])
site (get-in db [:sports-sites lipas-id :history latest])
data {:site site
:cities (-> db :cities)
:types (-> db :types)
:locale locale}
fname (gstring/urlEncode (str (:name site) ".gpx"))
xml-str (-> site :location :geometries
(update :features #(mapv (partial add-gpx-props data) %))
clj->js
(js/togpx #js{:creator "LIPAS"}))]
{:lipas.ui.effects/save-as! {:blob (js/Blob. #js[xml-str]) :filename fname}})))
;; Address search ;;
(re-frame/reg-event-db
::toggle-address-search-dialog
(fn [db _]
(-> db
(update-in [:map :address-search :dialog-open?] not)
(assoc-in [:map :address-search :keyword] "")
(assoc-in [:map :address-search :results] []))))
(re-frame/reg-event-db
::clear-address-search-results
(fn [db _]
(assoc-in db [:map :address-search :results] [])))
(re-frame/reg-event-fx
::update-address-search-keyword
(fn [{:keys [db]} [_ s]]
{:db (assoc-in db [:map :address-search :keyword] s)
:dispatch-n [[::search-address s]]}))
;; https://www.digitransit.fi/en/developers/apis/2-geocoding-api/autocomplete/
(re-frame/reg-event-fx
::search-address
(fn [{:keys [db]} [_ s]]
(let [base-url (-> db :map :address-search :base-url)]
(if (not-empty s)
{:http-xhrio
{:method :get
:uri (str base-url "/autocomplete?"
"sources=oa,osm"
"&text=" s)
:response-format (ajax/json-response-format {:keywords? true})
:on-success [::address-search-success]
:on-failure [::address-search-failure]}}
{:dispatch [::clear-address-search-results]}))))
(re-frame/reg-event-fx
::address-search-success
(fn [{:keys [db]} [_ resp]]
{:db (assoc-in db [:map :address-search :results] resp)}))
(re-frame/reg-event-fx
::address-search-failure
(fn [{:keys [db]} [_ error]]
(let [tr (:translator db)]
{:db (assoc-in db [:errors :address-search (utils/timestamp)] error)
:dispatch [:lipas.ui.events/set-active-notification
{:message (tr :notifications/get-failed)
:success? false}]})))
(re-frame/reg-event-fx
::show-address
(fn [{:keys [db]} [_ {:keys [label geometry]}]]
(let [{:keys [lon lat]} (-> geometry :coordinates wgs84->epsg3067)
feature {:type "Feature" :geometry geometry :properties {:name label}}]
{:db (assoc-in db [:map :mode :address] feature)
:dispatch-n
[[::set-center lat lon]
[::set-zoom 14]
[::toggle-address-search-dialog]]})))
(re-frame/reg-event-db
::hide-address
(fn [db _]
(assoc-in db [:map :mode :address] nil)))
(defn- problems->fcoll [tr {:keys [intersections kinks]}]
(let [kfs (-> kinks
:features
(->> (map #(assoc-in % [:properties :name] (tr :map/kink))))
not-empty)
ifs (-> intersections
:features
(->> (map #(assoc-in % [:properties :name] (tr :map/intersection))))
not-empty)]
{:type "FeatureCollection"
:features (into [] cat [kfs ifs])}))
(re-frame/reg-event-db
::show-problems
(fn [db [_ problems]]
(let [tr (-> db :translator)]
(assoc-in db [:map :mode :problems] {:data (problems->fcoll tr problems)
:show? true}))))
(defn- geom-type [fcoll]
(-> fcoll :features first :geometry :type))
(re-frame/reg-event-fx
::duplicate-sports-site
(fn [{:keys [db]} [_ lipas-id]]
(let [ts (get-in db [:sports-sites lipas-id :latest])
latest (get-in db [:sports-sites lipas-id :history ts])
geoms (get-in latest [:location :geometries])
geoms (if (= "Point" (geom-type geoms))
;; Shift point by ~11m so it doesn't overlap 1:1
;; with the original point.
(update-in geoms [:features 0 :geometry :coordinates 0] + 0.0001)
geoms)]
{:dispatch-n
[[:lipas.ui.map.events/show-sports-site nil]
[::start-adding-new-site]
[::new-geom-drawn geoms]
[:lipas.ui.sports-sites.events/duplicate latest]]})))
(re-frame/reg-event-fx
::set-overlay
(fn [{:keys [db]} [_ val layer]]
{:db (update-in db [:map :selected-overlays] (if val conj disj) layer)}))
;; Takes coll of pairs like [:analysis true] [:population false]
(re-frame/reg-event-fx
::set-overlays
(fn [{:keys [db]} [_ layers]]
(let [adds (->> layers (filter second) (map first))
removes (->> layers (filter (complement second)) (map first))]
{:db (update-in db [:map :selected-overlays]
(fn [current-layers]
(as-> (set current-layers) $
(apply conj $ adds)
(apply disj $ removes))))})))
(re-frame/reg-event-fx
::enable-overlays
(fn [{:keys [db]} [_ layers]]
{:db (update-in db [:map :selected-overlays] into layers)}))
(re-frame/reg-event-fx
::show-analysis*
(fn [{:keys [db]} _]
{:db (-> db
(assoc-in [:map :mode :name] :default)
(assoc-in [:map :mode :sub-mode] :analysis))
:dispatch-n
[[::enable-overlays [:vectors :schools :population :analysis]]
[:lipas.ui.search.events/set-status-filter ["planning"] :append]]}))
(re-frame/reg-event-fx
::show-analysis
(fn [{:keys [db]} [_ lipas-id]]
{:dispatch-n
[(when-not lipas-id
[::show-analysis*])
[:lipas.ui.analysis.events/show-analysis lipas-id]]}))
(re-frame/reg-event-fx
::hide-analysis
(fn [{:keys [db]} _]
{:db (-> db
(assoc-in [:map :mode :name] :default)
(update-in [:map :mode] dissoc :sub-mode))
:dispatch-n [[:lipas.ui.analysis.events/clear]
[::set-overlays [[:vectors true]
[:schools false]
[:population false]
[:analysis false]]]
[:lipas.ui.search.events/remove-status-filter "planning"]
[:lipas.ui.search.events/clear-filters]]}))
(re-frame/reg-event-fx
::add-analysis-target
(fn [{:keys [db]} _]
(let [template {:status "planning"
:name "PI:NAME:<NAME>END_PIysikohde"
:owner "unknown"
:admin "unknown"
:location
{:address "Testikatu 123"
:postal-code "12345"}}]
{:dispatch-n
[[::start-adding-new-site template]]})))
|
[
{
"context": "est should-find-team-with-min-goal-diff\n (is (= \"Aston_Villa\" (find-team-with-min-goal-diff)))\n)\n(deftest shou",
"end": 1362,
"score": 0.9957784414291382,
"start": 1351,
"tag": "NAME",
"value": "Aston_Villa"
}
] |
clojure/datamunging/datamunging0.clj
|
dkandalov/katas
| 7 |
(ns datamunging.datamunging0
(:use [clojure.string :only [split]]
clojure.test))
(defn read-file-lines [file-name] (vec (.split (slurp file-name) "\n")))
(defn as-int [s] (. Integer parseInt (.replace s "*" "")))
(defn split-each-line [lines] (map #(vec (.split (.trim %) "\\s+")) lines))
(defn find-row-with-min-diff [data-rows]
(apply min-key #(Math/abs (- (nth % 1) (nth % 2))) data-rows))
(defn find-day-with-min-temperature-spread []
(defn filter-non-data-lines [lines] (drop 8 (drop-last 2 lines)))
(defn parse-as-data [lines] (map #(vec [(nth % 0) (as-int (nth % 1)) (as-int (nth % 2))]) (split-each-line lines)))
(let [lines (read-file-lines "/Users/dima/IdeaProjects/katas/src/main/scala/ru/katas/n4/weather.dat")]
(first (find-row-with-min-diff (parse-as-data (filter-non-data-lines lines))))
)
)
(defn find-team-with-min-goal-diff []
(defn filter-non-data-lines [lines] (drop-last 1 (drop 5 (filter #(not (.contains % "---")) lines))))
(defn parse-as-data [lines]
(map #(vec [(nth % 1) (as-int (nth % 6)) (as-int (nth % 8))])(split-each-line lines)))
(let [lines (read-file-lines "/Users/dima/IdeaProjects/katas/src/main/scala/ru/katas/n4/football.dat")]
(first (find-row-with-min-diff (parse-as-data (filter-non-data-lines lines))))
)
)
(deftest should-find-team-with-min-goal-diff
(is (= "Aston_Villa" (find-team-with-min-goal-diff)))
)
(deftest should-find-day-with-min-temperature-spread
(is (= "14" (find-day-with-min-temperature-spread)))
)
(run-tests)
|
100330
|
(ns datamunging.datamunging0
(:use [clojure.string :only [split]]
clojure.test))
(defn read-file-lines [file-name] (vec (.split (slurp file-name) "\n")))
(defn as-int [s] (. Integer parseInt (.replace s "*" "")))
(defn split-each-line [lines] (map #(vec (.split (.trim %) "\\s+")) lines))
(defn find-row-with-min-diff [data-rows]
(apply min-key #(Math/abs (- (nth % 1) (nth % 2))) data-rows))
(defn find-day-with-min-temperature-spread []
(defn filter-non-data-lines [lines] (drop 8 (drop-last 2 lines)))
(defn parse-as-data [lines] (map #(vec [(nth % 0) (as-int (nth % 1)) (as-int (nth % 2))]) (split-each-line lines)))
(let [lines (read-file-lines "/Users/dima/IdeaProjects/katas/src/main/scala/ru/katas/n4/weather.dat")]
(first (find-row-with-min-diff (parse-as-data (filter-non-data-lines lines))))
)
)
(defn find-team-with-min-goal-diff []
(defn filter-non-data-lines [lines] (drop-last 1 (drop 5 (filter #(not (.contains % "---")) lines))))
(defn parse-as-data [lines]
(map #(vec [(nth % 1) (as-int (nth % 6)) (as-int (nth % 8))])(split-each-line lines)))
(let [lines (read-file-lines "/Users/dima/IdeaProjects/katas/src/main/scala/ru/katas/n4/football.dat")]
(first (find-row-with-min-diff (parse-as-data (filter-non-data-lines lines))))
)
)
(deftest should-find-team-with-min-goal-diff
(is (= "<NAME>" (find-team-with-min-goal-diff)))
)
(deftest should-find-day-with-min-temperature-spread
(is (= "14" (find-day-with-min-temperature-spread)))
)
(run-tests)
| true |
(ns datamunging.datamunging0
(:use [clojure.string :only [split]]
clojure.test))
(defn read-file-lines [file-name] (vec (.split (slurp file-name) "\n")))
(defn as-int [s] (. Integer parseInt (.replace s "*" "")))
(defn split-each-line [lines] (map #(vec (.split (.trim %) "\\s+")) lines))
(defn find-row-with-min-diff [data-rows]
(apply min-key #(Math/abs (- (nth % 1) (nth % 2))) data-rows))
(defn find-day-with-min-temperature-spread []
(defn filter-non-data-lines [lines] (drop 8 (drop-last 2 lines)))
(defn parse-as-data [lines] (map #(vec [(nth % 0) (as-int (nth % 1)) (as-int (nth % 2))]) (split-each-line lines)))
(let [lines (read-file-lines "/Users/dima/IdeaProjects/katas/src/main/scala/ru/katas/n4/weather.dat")]
(first (find-row-with-min-diff (parse-as-data (filter-non-data-lines lines))))
)
)
(defn find-team-with-min-goal-diff []
(defn filter-non-data-lines [lines] (drop-last 1 (drop 5 (filter #(not (.contains % "---")) lines))))
(defn parse-as-data [lines]
(map #(vec [(nth % 1) (as-int (nth % 6)) (as-int (nth % 8))])(split-each-line lines)))
(let [lines (read-file-lines "/Users/dima/IdeaProjects/katas/src/main/scala/ru/katas/n4/football.dat")]
(first (find-row-with-min-diff (parse-as-data (filter-non-data-lines lines))))
)
)
(deftest should-find-team-with-min-goal-diff
(is (= "PI:NAME:<NAME>END_PI" (find-team-with-min-goal-diff)))
)
(deftest should-find-day-with-min-temperature-spread
(is (= "14" (find-day-with-min-temperature-spread)))
)
(run-tests)
|
[
{
"context": "о точек\n (take (+ 1 max)))))\n\n;; Алгоритм антиалиасинга Ву\n(defmethod line-points :wu [{[x1 y",
"end": 1938,
"score": 0.5574211478233337,
"start": 1937,
"tag": "NAME",
"value": "а"
}
] |
src/cljc/labs_4_cource/first_order_lines.cljc
|
Rizhi-KotE/labs-4-course
| 1 |
(ns labs-4-cource.first-order-lines
#?(:clj (:gen-class))
(:require [labs-4-cource.math-helpers :refer [abs round round-vec sign]]))
(defn ->SimpleLine
[p1 p2]
{:pre [(not (nil? p1)) (not (nil? p2))]}
{:type :simple :p1 (round-vec p1) :p2 (round-vec p2)})
(defn ->BrezenhameLine
[p1 p2]
{:pre [(not (nil? p1)) (not (nil? p2))]}
{:type :be :p1 (round-vec p1) :p2 (round-vec p2)})
(defn ->SmoothLine
[p1 p2]
{:pre [(not (nil? p1)) (not (nil? p2))]}
{:type :wu :p1 (round-vec p1) :p2 (round-vec p2)})
(defn calc-steps [coordinate]
(mapv sign coordinate))
(defmulti line-points :type)
;; CDA algo
(defmethod line-points :simple [{:keys [p1 p2]}]
(let [[x1 y1] p1 ;; first point
[x2 y2] p2 ;; second point
length (max (Math/abs (- x2 x1)) (Math/abs (- y2 y1)))
dx (/ (- x2 x1) length) ;; step throw x-axis
dy (/ (- y2 y1) length) ;; step throw y-axis
]
(->> [x1 y1]
(iterate (fn [[x y]] [(+ x dx) (+ y dy)]))
(take (+ 1 length))
(map (fn [[x y]] [(round x) (round y)])))))
;; Алгоритм растеризации Брезенхема
(defmethod line-points :be [{[x1 y1 :as p1] :p1 p2 :p2}]
(let [proections (mapv - p2 p1) ;; проекции отрезков
[length-x length-y :as lengthes] (mapv abs proections) ;; длинны отрезков
[x-step y-step] (mapv sign proections) ;; диагональный шаг
[x-extra y-extra] (if (>= length-x length-y) [x-step 0] [0 y-step]) ;; основной шаг
[min max] (sort lengthes) ;; короткая/длинная проекции
e (- (* 2 min) max)] ;; ошибка
(->> [x1 y1 e] ;; первая точка
(iterate
(fn [[x y e]]
(if (<= e 0)
;; основной шаг
[(+ x-extra x) (+ y-extra y) (+ e (* 2 min))]
;; диагональный шаг
[(+ x-step x) (+ y-step y) (+ e (- (* 2 max)) (* 2 min))])))
;; количество точек
(take (+ 1 max)))))
;; Алгоритм антиалиасинга Ву
(defmethod line-points :wu [{[x1 y1 :as p1] :p1 [x2 y2 :as p2] :p2}]
(let [proections (mapv - p1 p2) ;; проекции отрезков
[length-x length-y :as lengthes] (mapv abs proections) ;; длинны отрезков
[x-step y-step] (mapv sign proections) ;; диагональный шаг
[x-smooth y-smooth] (if (>= length-x length-y) [0 y-step] [x-step 0]) ;; направления размытия
[min max] (sort lengthes) ;; короткая/длинная проекции
;; используется алгоритм Брезенхема
points (line-points (->BrezenhameLine p1 p2))]
(if (or (= x1 x2) (= y1 y2) (= length-x length-y))
;; Если отрезок горизонтальный/вертикальный/диагональный - не размазываем его
(->> points (map (fn [[x y]] [x y 1])))
(->> points
;; использует ошибку для вычисления прозрачности
;; e'=(e + 2*(max - min))/2*max
(map (fn [[x y e]] [x y (/ (+ e (* 2 (- max min))) (* 2 max))]))
;; генерируем пары точек
(map
(fn [[x y e]] [[x y e] [(+ x-smooth x) (+ y-smooth y) (- 1 e)]]))
;; собираем пары в плоский список
(mapcat identity)))))
|
86426
|
(ns labs-4-cource.first-order-lines
#?(:clj (:gen-class))
(:require [labs-4-cource.math-helpers :refer [abs round round-vec sign]]))
(defn ->SimpleLine
[p1 p2]
{:pre [(not (nil? p1)) (not (nil? p2))]}
{:type :simple :p1 (round-vec p1) :p2 (round-vec p2)})
(defn ->BrezenhameLine
[p1 p2]
{:pre [(not (nil? p1)) (not (nil? p2))]}
{:type :be :p1 (round-vec p1) :p2 (round-vec p2)})
(defn ->SmoothLine
[p1 p2]
{:pre [(not (nil? p1)) (not (nil? p2))]}
{:type :wu :p1 (round-vec p1) :p2 (round-vec p2)})
(defn calc-steps [coordinate]
(mapv sign coordinate))
(defmulti line-points :type)
;; CDA algo
(defmethod line-points :simple [{:keys [p1 p2]}]
(let [[x1 y1] p1 ;; first point
[x2 y2] p2 ;; second point
length (max (Math/abs (- x2 x1)) (Math/abs (- y2 y1)))
dx (/ (- x2 x1) length) ;; step throw x-axis
dy (/ (- y2 y1) length) ;; step throw y-axis
]
(->> [x1 y1]
(iterate (fn [[x y]] [(+ x dx) (+ y dy)]))
(take (+ 1 length))
(map (fn [[x y]] [(round x) (round y)])))))
;; Алгоритм растеризации Брезенхема
(defmethod line-points :be [{[x1 y1 :as p1] :p1 p2 :p2}]
(let [proections (mapv - p2 p1) ;; проекции отрезков
[length-x length-y :as lengthes] (mapv abs proections) ;; длинны отрезков
[x-step y-step] (mapv sign proections) ;; диагональный шаг
[x-extra y-extra] (if (>= length-x length-y) [x-step 0] [0 y-step]) ;; основной шаг
[min max] (sort lengthes) ;; короткая/длинная проекции
e (- (* 2 min) max)] ;; ошибка
(->> [x1 y1 e] ;; первая точка
(iterate
(fn [[x y e]]
(if (<= e 0)
;; основной шаг
[(+ x-extra x) (+ y-extra y) (+ e (* 2 min))]
;; диагональный шаг
[(+ x-step x) (+ y-step y) (+ e (- (* 2 max)) (* 2 min))])))
;; количество точек
(take (+ 1 max)))))
;; Алгоритм <NAME>нтиалиасинга Ву
(defmethod line-points :wu [{[x1 y1 :as p1] :p1 [x2 y2 :as p2] :p2}]
(let [proections (mapv - p1 p2) ;; проекции отрезков
[length-x length-y :as lengthes] (mapv abs proections) ;; длинны отрезков
[x-step y-step] (mapv sign proections) ;; диагональный шаг
[x-smooth y-smooth] (if (>= length-x length-y) [0 y-step] [x-step 0]) ;; направления размытия
[min max] (sort lengthes) ;; короткая/длинная проекции
;; используется алгоритм Брезенхема
points (line-points (->BrezenhameLine p1 p2))]
(if (or (= x1 x2) (= y1 y2) (= length-x length-y))
;; Если отрезок горизонтальный/вертикальный/диагональный - не размазываем его
(->> points (map (fn [[x y]] [x y 1])))
(->> points
;; использует ошибку для вычисления прозрачности
;; e'=(e + 2*(max - min))/2*max
(map (fn [[x y e]] [x y (/ (+ e (* 2 (- max min))) (* 2 max))]))
;; генерируем пары точек
(map
(fn [[x y e]] [[x y e] [(+ x-smooth x) (+ y-smooth y) (- 1 e)]]))
;; собираем пары в плоский список
(mapcat identity)))))
| true |
(ns labs-4-cource.first-order-lines
#?(:clj (:gen-class))
(:require [labs-4-cource.math-helpers :refer [abs round round-vec sign]]))
(defn ->SimpleLine
[p1 p2]
{:pre [(not (nil? p1)) (not (nil? p2))]}
{:type :simple :p1 (round-vec p1) :p2 (round-vec p2)})
(defn ->BrezenhameLine
[p1 p2]
{:pre [(not (nil? p1)) (not (nil? p2))]}
{:type :be :p1 (round-vec p1) :p2 (round-vec p2)})
(defn ->SmoothLine
[p1 p2]
{:pre [(not (nil? p1)) (not (nil? p2))]}
{:type :wu :p1 (round-vec p1) :p2 (round-vec p2)})
(defn calc-steps [coordinate]
(mapv sign coordinate))
(defmulti line-points :type)
;; CDA algo
(defmethod line-points :simple [{:keys [p1 p2]}]
(let [[x1 y1] p1 ;; first point
[x2 y2] p2 ;; second point
length (max (Math/abs (- x2 x1)) (Math/abs (- y2 y1)))
dx (/ (- x2 x1) length) ;; step throw x-axis
dy (/ (- y2 y1) length) ;; step throw y-axis
]
(->> [x1 y1]
(iterate (fn [[x y]] [(+ x dx) (+ y dy)]))
(take (+ 1 length))
(map (fn [[x y]] [(round x) (round y)])))))
;; Алгоритм растеризации Брезенхема
(defmethod line-points :be [{[x1 y1 :as p1] :p1 p2 :p2}]
(let [proections (mapv - p2 p1) ;; проекции отрезков
[length-x length-y :as lengthes] (mapv abs proections) ;; длинны отрезков
[x-step y-step] (mapv sign proections) ;; диагональный шаг
[x-extra y-extra] (if (>= length-x length-y) [x-step 0] [0 y-step]) ;; основной шаг
[min max] (sort lengthes) ;; короткая/длинная проекции
e (- (* 2 min) max)] ;; ошибка
(->> [x1 y1 e] ;; первая точка
(iterate
(fn [[x y e]]
(if (<= e 0)
;; основной шаг
[(+ x-extra x) (+ y-extra y) (+ e (* 2 min))]
;; диагональный шаг
[(+ x-step x) (+ y-step y) (+ e (- (* 2 max)) (* 2 min))])))
;; количество точек
(take (+ 1 max)))))
;; Алгоритм PI:NAME:<NAME>END_PIнтиалиасинга Ву
(defmethod line-points :wu [{[x1 y1 :as p1] :p1 [x2 y2 :as p2] :p2}]
(let [proections (mapv - p1 p2) ;; проекции отрезков
[length-x length-y :as lengthes] (mapv abs proections) ;; длинны отрезков
[x-step y-step] (mapv sign proections) ;; диагональный шаг
[x-smooth y-smooth] (if (>= length-x length-y) [0 y-step] [x-step 0]) ;; направления размытия
[min max] (sort lengthes) ;; короткая/длинная проекции
;; используется алгоритм Брезенхема
points (line-points (->BrezenhameLine p1 p2))]
(if (or (= x1 x2) (= y1 y2) (= length-x length-y))
;; Если отрезок горизонтальный/вертикальный/диагональный - не размазываем его
(->> points (map (fn [[x y]] [x y 1])))
(->> points
;; использует ошибку для вычисления прозрачности
;; e'=(e + 2*(max - min))/2*max
(map (fn [[x y e]] [x y (/ (+ e (* 2 (- max min))) (* 2 max))]))
;; генерируем пары точек
(map
(fn [[x y e]] [[x y e] [(+ x-smooth x) (+ y-smooth y) (- 1 e)]]))
;; собираем пары в плоский список
(mapcat identity)))))
|
[
{
"context": "e w)\n \n (time (append \"RICHO\" #_{:a 1 :b 2 :c \"Richo, capo\"}))\n\n (require '[clojure.core.async :as a :refer",
"end": 2194,
"score": 0.9945055246353149,
"start": 2183,
"tag": "NAME",
"value": "Richo, capo"
}
] |
middleware/server/src/middleware/utils/eventlog.clj
|
GIRA/UziScript
| 15 |
(ns middleware.utils.eventlog
(:require [clojure.java.io :as io]
[clojure.data.csv :as csv]
[clojure.string :as str]
[middleware.utils.config :as config]
[middleware.utils.core :refer [parse-int random-uuid]]))
(def pc-id (try
(slurp "pc.uuid")
(catch java.lang.Throwable _
(let [id (random-uuid)]
(try (spit "pc.uuid" id)
(catch java.lang.Throwable _))
(str id)))))
(def session-id (str (random-uuid)))
(def FILE_SIZE_LIMIT (* 100 1024 1024))
(def file-name (atom nil))
(defn today []
(java.time.LocalDate/now))
(defn now []
(str (java.time.Instant/now)))
(defn events-folder []
(io/file "events"))
(defn file-size [fname]
(.length (io/file "events" fname)))
(defn inc-counter [fname]
(let [[d c e] (str/split fname #"\.")]
(str d "." (inc (parse-int c)) "." e)))
(defn find-log-file
([] (swap! file-name find-log-file))
([name]
(if name
(if (< (file-size name) FILE_SIZE_LIMIT)
name
(inc-counter name))
(let [date (today)
pattern (re-pattern (str date "\\.\\d+\\.csv"))
last (some->> (events-folder)
(.list)
(filter #(re-find pattern %))
(sort-by #(parse-int (second (str/split % #"\."))))
(last))]
(if last
(inc-counter last)
(str date ".1.csv"))))))
(defn append [evt-type & [evt-data]]
(try
(when (config/get :eventlog? false)
(let [file (io/file "events" (find-log-file))
data [pc-id session-id (now) evt-type evt-data]]
; TODO(Richo): Optimization. Reuse the writer until file changes
(io/make-parents file)
(with-open [writer (io/writer file :append true)]
(csv/write-csv writer [data]))))
(catch java.lang.Throwable ex
(println "ERROR WHILE WRITING TO EVENT LOG ->" ex))))
(comment
(def w (io/writer "foo.txt" :append true))
(time (csv/write-csv w [[pc-id session-id (now) "RICHO" nil]]))
(.close w)
(time (append "RICHO" #_{:a 1 :b 2 :c "Richo, capo"}))
(require '[clojure.core.async :as a :refer [<! go]])
(def stop (atom false))
(go (loop [i 0]
(when-not @stop
(append "RICHO" i)
(when (= 0 (mod i 1000))
(<! (a/timeout 10)))
(recur (inc i))))
(println "BYE"))
(reset! stop true)
)
|
12140
|
(ns middleware.utils.eventlog
(:require [clojure.java.io :as io]
[clojure.data.csv :as csv]
[clojure.string :as str]
[middleware.utils.config :as config]
[middleware.utils.core :refer [parse-int random-uuid]]))
(def pc-id (try
(slurp "pc.uuid")
(catch java.lang.Throwable _
(let [id (random-uuid)]
(try (spit "pc.uuid" id)
(catch java.lang.Throwable _))
(str id)))))
(def session-id (str (random-uuid)))
(def FILE_SIZE_LIMIT (* 100 1024 1024))
(def file-name (atom nil))
(defn today []
(java.time.LocalDate/now))
(defn now []
(str (java.time.Instant/now)))
(defn events-folder []
(io/file "events"))
(defn file-size [fname]
(.length (io/file "events" fname)))
(defn inc-counter [fname]
(let [[d c e] (str/split fname #"\.")]
(str d "." (inc (parse-int c)) "." e)))
(defn find-log-file
([] (swap! file-name find-log-file))
([name]
(if name
(if (< (file-size name) FILE_SIZE_LIMIT)
name
(inc-counter name))
(let [date (today)
pattern (re-pattern (str date "\\.\\d+\\.csv"))
last (some->> (events-folder)
(.list)
(filter #(re-find pattern %))
(sort-by #(parse-int (second (str/split % #"\."))))
(last))]
(if last
(inc-counter last)
(str date ".1.csv"))))))
(defn append [evt-type & [evt-data]]
(try
(when (config/get :eventlog? false)
(let [file (io/file "events" (find-log-file))
data [pc-id session-id (now) evt-type evt-data]]
; TODO(Richo): Optimization. Reuse the writer until file changes
(io/make-parents file)
(with-open [writer (io/writer file :append true)]
(csv/write-csv writer [data]))))
(catch java.lang.Throwable ex
(println "ERROR WHILE WRITING TO EVENT LOG ->" ex))))
(comment
(def w (io/writer "foo.txt" :append true))
(time (csv/write-csv w [[pc-id session-id (now) "RICHO" nil]]))
(.close w)
(time (append "RICHO" #_{:a 1 :b 2 :c "<NAME>"}))
(require '[clojure.core.async :as a :refer [<! go]])
(def stop (atom false))
(go (loop [i 0]
(when-not @stop
(append "RICHO" i)
(when (= 0 (mod i 1000))
(<! (a/timeout 10)))
(recur (inc i))))
(println "BYE"))
(reset! stop true)
)
| true |
(ns middleware.utils.eventlog
(:require [clojure.java.io :as io]
[clojure.data.csv :as csv]
[clojure.string :as str]
[middleware.utils.config :as config]
[middleware.utils.core :refer [parse-int random-uuid]]))
(def pc-id (try
(slurp "pc.uuid")
(catch java.lang.Throwable _
(let [id (random-uuid)]
(try (spit "pc.uuid" id)
(catch java.lang.Throwable _))
(str id)))))
(def session-id (str (random-uuid)))
(def FILE_SIZE_LIMIT (* 100 1024 1024))
(def file-name (atom nil))
(defn today []
(java.time.LocalDate/now))
(defn now []
(str (java.time.Instant/now)))
(defn events-folder []
(io/file "events"))
(defn file-size [fname]
(.length (io/file "events" fname)))
(defn inc-counter [fname]
(let [[d c e] (str/split fname #"\.")]
(str d "." (inc (parse-int c)) "." e)))
(defn find-log-file
([] (swap! file-name find-log-file))
([name]
(if name
(if (< (file-size name) FILE_SIZE_LIMIT)
name
(inc-counter name))
(let [date (today)
pattern (re-pattern (str date "\\.\\d+\\.csv"))
last (some->> (events-folder)
(.list)
(filter #(re-find pattern %))
(sort-by #(parse-int (second (str/split % #"\."))))
(last))]
(if last
(inc-counter last)
(str date ".1.csv"))))))
(defn append [evt-type & [evt-data]]
(try
(when (config/get :eventlog? false)
(let [file (io/file "events" (find-log-file))
data [pc-id session-id (now) evt-type evt-data]]
; TODO(Richo): Optimization. Reuse the writer until file changes
(io/make-parents file)
(with-open [writer (io/writer file :append true)]
(csv/write-csv writer [data]))))
(catch java.lang.Throwable ex
(println "ERROR WHILE WRITING TO EVENT LOG ->" ex))))
(comment
(def w (io/writer "foo.txt" :append true))
(time (csv/write-csv w [[pc-id session-id (now) "RICHO" nil]]))
(.close w)
(time (append "RICHO" #_{:a 1 :b 2 :c "PI:NAME:<NAME>END_PI"}))
(require '[clojure.core.async :as a :refer [<! go]])
(def stop (atom false))
(go (loop [i 0]
(when-not @stop
(append "RICHO" i)
(when (= 0 (mod i 1000))
(<! (a/timeout 10)))
(recur (inc i))))
(println "BYE"))
(reset! stop true)
)
|
[
{
"context": ";; The MIT License (MIT)\n;;\n;; Copyright (c) 2016 Richard Hull\n;;\n;; Permission is hereby granted, free of charg",
"end": 62,
"score": 0.9997906684875488,
"start": 50,
"tag": "NAME",
"value": "Richard Hull"
}
] |
test/clustering/distance/spearman_test.clj
|
CharlesHD/clustering
| 17 |
;; The MIT License (MIT)
;;
;; Copyright (c) 2016 Richard Hull
;;
;; Permission is hereby granted, free of charge, to any person obtaining a copy
;; of this software and associated documentation files (the "Software"), to deal
;; in the Software without restriction, including without limitation the rights
;; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
;; copies of the Software, and to permit persons to whom the Software is
;; furnished to do so, subject to the following conditions:
;;
;; The above copyright notice and this permission notice shall be included in all
;; copies or substantial portions of the Software.
;;
;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
;; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
;; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
;; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
;; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
;; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
;; SOFTWARE.
(ns clustering.distance.spearman-test
(:require
[clojure.test :refer :all]
[clustering.distance.spearman :refer :all]
[clustering.distance.common :refer [transpose]]))
(def data-set
; IQ vs. Hours of TV per week
; data taken from: https://en.wikipedia.org/wiki/Spearman%27s_rank_correlation_coefficient#Example
[[106 7]
[86 0]
[100 27]
[101 50]
[99 28]
[103 29]
[97 20]
[113 12]
[112 6]
[110 17]])
(deftest check-correlation-coefficient
(is (zero? (correlation-coefficient nil nil)))
(is (= -29/165
(apply correlation-coefficient (transpose data-set)))))
|
20277
|
;; The MIT License (MIT)
;;
;; Copyright (c) 2016 <NAME>
;;
;; Permission is hereby granted, free of charge, to any person obtaining a copy
;; of this software and associated documentation files (the "Software"), to deal
;; in the Software without restriction, including without limitation the rights
;; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
;; copies of the Software, and to permit persons to whom the Software is
;; furnished to do so, subject to the following conditions:
;;
;; The above copyright notice and this permission notice shall be included in all
;; copies or substantial portions of the Software.
;;
;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
;; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
;; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
;; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
;; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
;; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
;; SOFTWARE.
(ns clustering.distance.spearman-test
(:require
[clojure.test :refer :all]
[clustering.distance.spearman :refer :all]
[clustering.distance.common :refer [transpose]]))
(def data-set
; IQ vs. Hours of TV per week
; data taken from: https://en.wikipedia.org/wiki/Spearman%27s_rank_correlation_coefficient#Example
[[106 7]
[86 0]
[100 27]
[101 50]
[99 28]
[103 29]
[97 20]
[113 12]
[112 6]
[110 17]])
(deftest check-correlation-coefficient
(is (zero? (correlation-coefficient nil nil)))
(is (= -29/165
(apply correlation-coefficient (transpose data-set)))))
| true |
;; The MIT License (MIT)
;;
;; Copyright (c) 2016 PI:NAME:<NAME>END_PI
;;
;; Permission is hereby granted, free of charge, to any person obtaining a copy
;; of this software and associated documentation files (the "Software"), to deal
;; in the Software without restriction, including without limitation the rights
;; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
;; copies of the Software, and to permit persons to whom the Software is
;; furnished to do so, subject to the following conditions:
;;
;; The above copyright notice and this permission notice shall be included in all
;; copies or substantial portions of the Software.
;;
;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
;; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
;; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
;; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
;; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
;; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
;; SOFTWARE.
(ns clustering.distance.spearman-test
(:require
[clojure.test :refer :all]
[clustering.distance.spearman :refer :all]
[clustering.distance.common :refer [transpose]]))
(def data-set
; IQ vs. Hours of TV per week
; data taken from: https://en.wikipedia.org/wiki/Spearman%27s_rank_correlation_coefficient#Example
[[106 7]
[86 0]
[100 27]
[101 50]
[99 28]
[103 29]
[97 20]
[113 12]
[112 6]
[110 17]])
(deftest check-correlation-coefficient
(is (zero? (correlation-coefficient nil nil)))
(is (= -29/165
(apply correlation-coefficient (transpose data-set)))))
|
[
{
"context": " conn \"Frida\")\n\n (gossip/send-all conn \"gossip\" \"Frida\" \"hi\")\n\n (add-player! app conn \"Thor\")\n\n (gossi",
"end": 1855,
"score": 0.9837164878845215,
"start": 1850,
"tag": "NAME",
"value": "Frida"
},
{
"context": " \"gossip\" \"Frida\" \"hi\")\n\n (add-player! app conn \"Thor\")\n\n (gossip/send-all conn \"gossip\" \"Thor\" \"hello",
"end": 1893,
"score": 0.9988750219345093,
"start": 1889,
"tag": "NAME",
"value": "Thor"
},
{
"context": "p conn \"Thor\")\n\n (gossip/send-all conn \"gossip\" \"Thor\" \"hello\")\n\n (gossip/send-to conn \"Frida\" \"GameNa",
"end": 1935,
"score": 0.9972364902496338,
"start": 1931,
"tag": "NAME",
"value": "Thor"
},
{
"context": "\"gossip\" \"Thor\" \"hello\")\n\n (gossip/send-to conn \"Frida\" \"GameName\" \"Thor\" \"hi, Thor\")\n\n (gossip/status ",
"end": 1976,
"score": 0.9186776280403137,
"start": 1971,
"tag": "NAME",
"value": "Frida"
},
{
"context": "llo\")\n\n (gossip/send-to conn \"Frida\" \"GameName\" \"Thor\" \"hi, Thor\")\n\n (gossip/status conn nil)\n\n (remo",
"end": 1994,
"score": 0.9991747140884399,
"start": 1990,
"tag": "NAME",
"value": "Thor"
},
{
"context": "gossip/send-to conn \"Frida\" \"GameName\" \"Thor\" \"hi, Thor\")\n\n (gossip/status conn nil)\n\n (remove-player! ",
"end": 2005,
"score": 0.9932109117507935,
"start": 2001,
"tag": "NAME",
"value": "Thor"
},
{
"context": "sip/status conn nil)\n\n (remove-player! app conn \"Frida\")\n\n (remove-player! app conn \"Thor\")\n\n (gossip/",
"end": 2070,
"score": 0.9989622235298157,
"start": 2065,
"tag": "NAME",
"value": "Frida"
},
{
"context": "r! app conn \"Frida\")\n\n (remove-player! app conn \"Thor\")\n\n (gossip/close conn)\n\n )\n\n\n",
"end": 2106,
"score": 0.9983394742012024,
"start": 2102,
"tag": "NAME",
"value": "Thor"
}
] |
src/cljgossip/testapp.clj
|
kbsant/cljgossip-testapp
| 0 |
;; This app is a test repl session, for now.
;; To use it, load this name space in the repl and evaluate each expression as needed.
(ns cljgossip.testapp
(:require
[cljgossip.core :as gossip]
[cljgossip.wsclient :as client]
[cljgossip.handlers :as handlers]))
;; The test application state contains a set of players.
(def app
(atom
{:game {:players #{}}
:env {}}))
;; Callback function to return the set of players logged in.
(defn list-players-fn [app]
(fn []
(get-in @app [:game :players])))
;; Given a reference to the application state, return
;; a map of handlers for gossip events.
(defn gossip-handlers [app]
{:cljgossip/on-heartbeat
(partial handlers/default-on-heartbeat (list-players-fn app))})
;; Add a player and sign into gossip.
(defn add-player! [app conn player-name]
(gossip/sign-in conn player-name)
(swap! app update-in [:game :players] conj player-name))
;; Remove a player from the app and sign out of gossip.
(defn remove-player! [app conn player-name]
(gossip/sign-out conn player-name)
(swap! app update-in [:game :players] disj player-name))
;; The comment block below contains a sample repl session.
;; After logging in at the application layer, players sign in
;; and send messages.
;; Note: gossip is half-duplex, meaning messages from players
;; are not broadcasted to the sending game (except for tells,
;; where the target player is explicitly set). An application needs
;; to broadcast messages locally by itself -- for simplicity,
;; the logic to broadcast messages locally is not included
;; as it is not part of the gossip protocol.
(comment
;; TODO: swap! config into env before logging in
(def conn (gossip/login (:env @app) client/ws-connect (gossip-handlers app)))
(add-player! app conn "Frida")
(gossip/send-all conn "gossip" "Frida" "hi")
(add-player! app conn "Thor")
(gossip/send-all conn "gossip" "Thor" "hello")
(gossip/send-to conn "Frida" "GameName" "Thor" "hi, Thor")
(gossip/status conn nil)
(remove-player! app conn "Frida")
(remove-player! app conn "Thor")
(gossip/close conn)
)
|
2525
|
;; This app is a test repl session, for now.
;; To use it, load this name space in the repl and evaluate each expression as needed.
(ns cljgossip.testapp
(:require
[cljgossip.core :as gossip]
[cljgossip.wsclient :as client]
[cljgossip.handlers :as handlers]))
;; The test application state contains a set of players.
(def app
(atom
{:game {:players #{}}
:env {}}))
;; Callback function to return the set of players logged in.
(defn list-players-fn [app]
(fn []
(get-in @app [:game :players])))
;; Given a reference to the application state, return
;; a map of handlers for gossip events.
(defn gossip-handlers [app]
{:cljgossip/on-heartbeat
(partial handlers/default-on-heartbeat (list-players-fn app))})
;; Add a player and sign into gossip.
(defn add-player! [app conn player-name]
(gossip/sign-in conn player-name)
(swap! app update-in [:game :players] conj player-name))
;; Remove a player from the app and sign out of gossip.
(defn remove-player! [app conn player-name]
(gossip/sign-out conn player-name)
(swap! app update-in [:game :players] disj player-name))
;; The comment block below contains a sample repl session.
;; After logging in at the application layer, players sign in
;; and send messages.
;; Note: gossip is half-duplex, meaning messages from players
;; are not broadcasted to the sending game (except for tells,
;; where the target player is explicitly set). An application needs
;; to broadcast messages locally by itself -- for simplicity,
;; the logic to broadcast messages locally is not included
;; as it is not part of the gossip protocol.
(comment
;; TODO: swap! config into env before logging in
(def conn (gossip/login (:env @app) client/ws-connect (gossip-handlers app)))
(add-player! app conn "Frida")
(gossip/send-all conn "gossip" "<NAME>" "hi")
(add-player! app conn "<NAME>")
(gossip/send-all conn "gossip" "<NAME>" "hello")
(gossip/send-to conn "<NAME>" "GameName" "<NAME>" "hi, <NAME>")
(gossip/status conn nil)
(remove-player! app conn "<NAME>")
(remove-player! app conn "<NAME>")
(gossip/close conn)
)
| true |
;; This app is a test repl session, for now.
;; To use it, load this name space in the repl and evaluate each expression as needed.
(ns cljgossip.testapp
(:require
[cljgossip.core :as gossip]
[cljgossip.wsclient :as client]
[cljgossip.handlers :as handlers]))
;; The test application state contains a set of players.
(def app
(atom
{:game {:players #{}}
:env {}}))
;; Callback function to return the set of players logged in.
(defn list-players-fn [app]
(fn []
(get-in @app [:game :players])))
;; Given a reference to the application state, return
;; a map of handlers for gossip events.
(defn gossip-handlers [app]
{:cljgossip/on-heartbeat
(partial handlers/default-on-heartbeat (list-players-fn app))})
;; Add a player and sign into gossip.
(defn add-player! [app conn player-name]
(gossip/sign-in conn player-name)
(swap! app update-in [:game :players] conj player-name))
;; Remove a player from the app and sign out of gossip.
(defn remove-player! [app conn player-name]
(gossip/sign-out conn player-name)
(swap! app update-in [:game :players] disj player-name))
;; The comment block below contains a sample repl session.
;; After logging in at the application layer, players sign in
;; and send messages.
;; Note: gossip is half-duplex, meaning messages from players
;; are not broadcasted to the sending game (except for tells,
;; where the target player is explicitly set). An application needs
;; to broadcast messages locally by itself -- for simplicity,
;; the logic to broadcast messages locally is not included
;; as it is not part of the gossip protocol.
(comment
;; TODO: swap! config into env before logging in
(def conn (gossip/login (:env @app) client/ws-connect (gossip-handlers app)))
(add-player! app conn "Frida")
(gossip/send-all conn "gossip" "PI:NAME:<NAME>END_PI" "hi")
(add-player! app conn "PI:NAME:<NAME>END_PI")
(gossip/send-all conn "gossip" "PI:NAME:<NAME>END_PI" "hello")
(gossip/send-to conn "PI:NAME:<NAME>END_PI" "GameName" "PI:NAME:<NAME>END_PI" "hi, PI:NAME:<NAME>END_PI")
(gossip/status conn nil)
(remove-player! app conn "PI:NAME:<NAME>END_PI")
(remove-player! app conn "PI:NAME:<NAME>END_PI")
(gossip/close conn)
)
|
[
{
"context": ";; The MIT License (MIT)\n;;\n;; Copyright (c) 2015 Richard Hull\n;;\n;; Permission is hereby granted, free of charg",
"end": 62,
"score": 0.9997519850730896,
"start": 50,
"tag": "NAME",
"value": "Richard Hull"
}
] |
test/wam/instruction_set_test.clj
|
rm-hull/wam
| 23 |
;; The MIT License (MIT)
;;
;; Copyright (c) 2015 Richard Hull
;;
;; Permission is hereby granted, free of charge, to any person obtaining a copy
;; of this software and associated documentation files (the "Software"), to deal
;; in the Software without restriction, including without limitation the rights
;; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
;; copies of the Software, and to permit persons to whom the Software is
;; furnished to do so, subject to the following conditions:
;;
;; The above copyright notice and this permission notice shall be included in all
;; copies or substantial portions of the Software.
;;
;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
;; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
;; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
;; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
;; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
;; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
;; SOFTWARE.
;; ℳ₀ machine instructions
(ns wam.instruction-set-test
(:require
[clojure.test :refer :all]
[wam.assert-helpers :refer :all]
[wam.anciliary :refer [resolve-struct]]
[wam.instruction-set :refer :all]
[wam.store :as s]))
(def ctx (s/make-context))
(deftest check-set-value
(testing "set-value"
(let [new-ctx (->
ctx
(s/set-register 'X3 27)
(set-value 'X3))]
(is (= (s/pointer new-ctx :h) (heap 1)))
(is (= (s/get-store new-ctx (heap 0)) 27)))))
(deftest check-set-variable
(testing "set-variable"
(let [new-ctx (->
ctx
(s/set-register 'X4 55)
(set-variable 'X4))]
(is (= (s/pointer new-ctx :h) (heap 1)))
(is (= (s/get-store new-ctx (heap 0)) ['REF (heap 0)]))
(is (= (s/get-register new-ctx 'X4) ['REF (heap 0)])))))
(deftest check-put-structure
(testing "put-structure"
(let [new-ctx (->
ctx
(put-structure 'f|n 'X3))]
(is (= (s/pointer new-ctx :h) (heap 2)))
(is (= (s/get-store new-ctx (heap 0)) ['STR (heap 1)]))
(is (= (s/get-store new-ctx (heap 1)) 'f|n))
(is (= (s/get-register new-ctx 'X3) ['STR (heap 1)])))))
(deftest check-get-structure
(testing "get-structure")
(let [ctx (->
ctx
(s/set-store (heap 0) ['REF (heap 3)])
(s/set-store (heap 1) ['STR (heap 2)])
(s/set-store (heap 2) 'f|0)
(s/set-store (heap 3) ['REF (heap 3)])
(assoc-in [:pointer :h] (heap 4))
(s/set-register 'X1 ['REF (heap 0)])
(s/set-register 'X2 ['REF (heap 1)])
(s/set-register 'X3 ['REF (heap 2)]))]
(testing "REF"
(let [new-ctx (get-structure ctx 'g|2 'X1)]
(is (= (s/pointer new-ctx :h) (heap 6)))
(is (= (:mode new-ctx) :write))
(is (false? (:fail new-ctx)))
(is (= (s/get-store new-ctx (heap 3)) ['STR (heap 5)]))
(is (= (s/get-store new-ctx (heap 4)) ['STR (heap 5)]))
(is (= (s/get-store new-ctx (heap 5)) 'g|2))))
(testing "STR (fail)"
(let [new-ctx (get-structure ctx 'g|2 'X2)]
(is (true? (:fail new-ctx)))))
(testing "STR (match)"
(let [new-ctx (get-structure ctx 'f|0 'X2)]
(is (= (s/pointer new-ctx :s) (heap 3)))
(is (= (:mode new-ctx) :read))
(is (false? (:fail new-ctx)))))
(testing "no match"
(let [new-ctx (get-structure ctx 'g|2 'X3)]
(is (true? (:fail new-ctx)))))))
(deftest check-unify-variable
(testing "unify-variable"
(testing "read-mode"
(let [new-ctx (->
ctx
(s/mode :read)
(s/set-store (heap 0) ['REF 3])
(unify-variable 'X1))]
(is (= (s/get-register new-ctx 'X1) ['REF 3]))
(is (= (s/pointer new-ctx :s) (heap 1)))))
(testing "write-mode"
(let [new-ctx (->
ctx
(s/mode :write)
(assoc-in [:pointer :h] (heap 2))
(assoc-in [:pointer :s] (heap 5))
(unify-variable 'X1))]
(is (= (s/get-store new-ctx (heap 2)) ['REF (heap 2)]))
(is (= (s/get-register new-ctx 'X1) ['REF (heap 2)]))
(is (= (s/pointer new-ctx :h) (heap 3)))
(is (= (s/pointer new-ctx :s) (heap 6)))))
(testing "unknown mode"
(is (thrown? IllegalArgumentException
(->
ctx
(assoc :mode :banana)
(unify-variable 'X5)))))))
(deftest check-unify-value
(testing "unify-value"
(testing "read-mode"
;; TODO
)
(testing "write-mode"
(let [new-ctx (->
ctx
(s/mode :write)
(assoc-in [:pointer :h] 9)
(assoc-in [:pointer :s] 3)
(s/set-register 'X2 ['STR 1])
(unify-value 'X2))]
(is (= (s/get-store new-ctx 9) ['STR 1]))
(is (= (s/pointer new-ctx :h) 10))
(is (= (s/pointer new-ctx :s) 4))))
(testing "unknown mode"
(is (thrown? IllegalArgumentException
(->
ctx
(assoc :mode :banana)
(unify-value 'X5)))))))
(deftest ex2.1
; Compiled code for L0 query ?-p(Z,h(Z,W),f(W)).
(is (tbl=
(->
ctx
(put-structure 'h|2, 'X3)
(set-variable 'X2)
(set-variable 'X5)
(put-structure 'f|1, 'X4)
(set-value 'X5)
(put-structure 'p|3, 'X1)
(set-value 'X2)
(set-value 'X3)
(set-value 'X4)
s/heap)
"+------+------------+
| key | value |
+------+------------+
| 1000 | [STR 1001] |
| 1001 | h|2 |
| 1002 | [REF 1002] |
| 1003 | [REF 1003] |
| 1004 | [STR 1005] |
| 1005 | f|1 |
| 1006 | [REF 1003] |
| 1007 | [STR 1008] |
| 1008 | p|3 |
| 1009 | [REF 1002] |
| 1010 | [STR 1001] |
| 1011 | [STR 1005] |
+------+------------+")))
(deftest check-put-variable
(testing "put-variable"
(let [new-ctx (-> ctx (put-variable 'X4 'A1))]
(is (= (s/pointer new-ctx :h) (heap 1)))
(is (= (s/get-store new-ctx (heap 0)) ['REF (heap 0)]))
(is (= (s/get-register new-ctx 'X4) ['REF (heap 0)]))
(is (= (s/get-register new-ctx 'A1) ['REF (heap 0)])))))
(deftest check-put-value
(testing "put-value"
(let [new-ctx (->
ctx
(s/set-register 'X4 32)
(put-value 'X4 'A1))]
(is (= (s/get-register new-ctx 'A1) 32)))))
(deftest check-get-variable
(testing "get-variable"
(let [new-ctx (->
ctx
(s/set-register 'A1 99)
(get-variable 'X4 'A1))]
(is (= (s/get-register new-ctx 'X4) 99)))))
(deftest check-get-value
(testing "get-value"
(let [new-ctx (->
ctx
(s/set-register 'A1 99)
(get-value 'X1 'A1))]
(is (false? (:fail new-ctx 'X4))))))
(deftest check-call
(testing "call"
(testing "non-existent program"
(let [ctx (->
(s/make-context)
(call 'p|5))]
(is (true? (:fail ctx)))
(is (= (s/pointer ctx :p) 0))))
(testing "simple proceed"
(let [ctx (->
(s/make-context)
(s/load 'h|2 [[proceed]])
(call 'h|2))]
(is (false? (:fail ctx)))
(is (= (s/pointer ctx :p) 1))))))
(deftest ex2.6
(is (tbl=
(->
(s/make-context)
(put-variable 'X4, 'A1)
(put-structure 'h|2, 'A2)
(set-value 'X4)
(set-variable 'X5)
(put-structure 'f|1, 'A3)
(set-value 'X5)
s/heap)
"+------+------------+
| key | value |
+------+------------+
| 1000 | [REF 1000] |
| 1001 | [STR 1002] |
| 1002 | h|2 |
| 1003 | [REF 1000] |
| 1004 | [REF 1004] |
| 1005 | [STR 1006] |
| 1006 | f|1 |
| 1007 | [REF 1004] |
+------+------------+")))
(deftest ex2.7
(let [p|3 (list
[get-structure 'f|1, 'A1]
[unify-variable 'X4]
[get-structure 'h|2, 'A2]
[unify-variable 'X5]
[unify-variable 'X6]
[get-value 'X5, 'A3]
[get-structure 'f|1, 'X6]
[unify-variable 'X7]
[get-structure 'a|0, 'X7]
[proceed])
ctx (->
(s/make-context)
(put-variable 'X4, 'A1)
(put-structure 'h|2, 'A2)
(set-value 'X4)
(set-variable 'X5)
(put-structure 'f|1, 'A3)
(set-value 'X5)
(s/load 'p|3 p|3)
(call 'p|3))
W (resolve-struct ctx (s/register-address 'X4))
X (resolve-struct ctx (s/register-address 'X4))
Y (resolve-struct ctx (s/register-address 'A3))
Z (resolve-struct ctx (s/register-address 'A1))]
(s/diag ctx)
(println "W =" W)
(println "X =" X)
(println "Y =" Y)
(println "Z =" Z)))
; Heap Registers Variables
; -------------------------------------------------
; ┌─────┬──────────┐ ┌─────┬──────────┐ ┌───────┐
; │ key │ value │ │ key │ value │ │ value │
; ├─────┼──────────┤ ├─────┼──────────┤ ├───────┤
; │ 0 ╎ [STR 9] │ │ X1 ╎ [REF 0] │ └───────┘
; │ 1 ╎ [STR 2] │ │ X2 ╎ [STR 2] │
; │ 2 ╎ h|2 │ │ X3 ╎ [STR 6] │
; │ 3 ╎ [REF 0] │ │ X4 ╎ [REF 10] │
; │ 4 ╎ [STR 12] │ │ X5 ╎ [REF 0] │
; │ 5 ╎ [STR 6] │ │ X6 ╎ [REF 4] │
; │ 6 ╎ f|1 │ │ X7 ╎ [REF 13] │
; │ 7 ╎ [REF 4] │ └─────┴──────────┘
; │ 8 ╎ [STR 9] │
; │ 9 ╎ f|1 │
; │ 10 ╎ [REF 4] │
; │ 11 ╎ [STR 12] │
; │ 12 ╎ f|1 │
; │ 13 ╎ [STR 15] │
; │ 14 ╎ [STR 15] │
; │ 15 ╎ a|0 │
; └─────┴──────────┘
|
5908
|
;; The MIT License (MIT)
;;
;; Copyright (c) 2015 <NAME>
;;
;; Permission is hereby granted, free of charge, to any person obtaining a copy
;; of this software and associated documentation files (the "Software"), to deal
;; in the Software without restriction, including without limitation the rights
;; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
;; copies of the Software, and to permit persons to whom the Software is
;; furnished to do so, subject to the following conditions:
;;
;; The above copyright notice and this permission notice shall be included in all
;; copies or substantial portions of the Software.
;;
;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
;; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
;; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
;; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
;; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
;; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
;; SOFTWARE.
;; ℳ₀ machine instructions
(ns wam.instruction-set-test
(:require
[clojure.test :refer :all]
[wam.assert-helpers :refer :all]
[wam.anciliary :refer [resolve-struct]]
[wam.instruction-set :refer :all]
[wam.store :as s]))
(def ctx (s/make-context))
(deftest check-set-value
(testing "set-value"
(let [new-ctx (->
ctx
(s/set-register 'X3 27)
(set-value 'X3))]
(is (= (s/pointer new-ctx :h) (heap 1)))
(is (= (s/get-store new-ctx (heap 0)) 27)))))
(deftest check-set-variable
(testing "set-variable"
(let [new-ctx (->
ctx
(s/set-register 'X4 55)
(set-variable 'X4))]
(is (= (s/pointer new-ctx :h) (heap 1)))
(is (= (s/get-store new-ctx (heap 0)) ['REF (heap 0)]))
(is (= (s/get-register new-ctx 'X4) ['REF (heap 0)])))))
(deftest check-put-structure
(testing "put-structure"
(let [new-ctx (->
ctx
(put-structure 'f|n 'X3))]
(is (= (s/pointer new-ctx :h) (heap 2)))
(is (= (s/get-store new-ctx (heap 0)) ['STR (heap 1)]))
(is (= (s/get-store new-ctx (heap 1)) 'f|n))
(is (= (s/get-register new-ctx 'X3) ['STR (heap 1)])))))
(deftest check-get-structure
(testing "get-structure")
(let [ctx (->
ctx
(s/set-store (heap 0) ['REF (heap 3)])
(s/set-store (heap 1) ['STR (heap 2)])
(s/set-store (heap 2) 'f|0)
(s/set-store (heap 3) ['REF (heap 3)])
(assoc-in [:pointer :h] (heap 4))
(s/set-register 'X1 ['REF (heap 0)])
(s/set-register 'X2 ['REF (heap 1)])
(s/set-register 'X3 ['REF (heap 2)]))]
(testing "REF"
(let [new-ctx (get-structure ctx 'g|2 'X1)]
(is (= (s/pointer new-ctx :h) (heap 6)))
(is (= (:mode new-ctx) :write))
(is (false? (:fail new-ctx)))
(is (= (s/get-store new-ctx (heap 3)) ['STR (heap 5)]))
(is (= (s/get-store new-ctx (heap 4)) ['STR (heap 5)]))
(is (= (s/get-store new-ctx (heap 5)) 'g|2))))
(testing "STR (fail)"
(let [new-ctx (get-structure ctx 'g|2 'X2)]
(is (true? (:fail new-ctx)))))
(testing "STR (match)"
(let [new-ctx (get-structure ctx 'f|0 'X2)]
(is (= (s/pointer new-ctx :s) (heap 3)))
(is (= (:mode new-ctx) :read))
(is (false? (:fail new-ctx)))))
(testing "no match"
(let [new-ctx (get-structure ctx 'g|2 'X3)]
(is (true? (:fail new-ctx)))))))
(deftest check-unify-variable
(testing "unify-variable"
(testing "read-mode"
(let [new-ctx (->
ctx
(s/mode :read)
(s/set-store (heap 0) ['REF 3])
(unify-variable 'X1))]
(is (= (s/get-register new-ctx 'X1) ['REF 3]))
(is (= (s/pointer new-ctx :s) (heap 1)))))
(testing "write-mode"
(let [new-ctx (->
ctx
(s/mode :write)
(assoc-in [:pointer :h] (heap 2))
(assoc-in [:pointer :s] (heap 5))
(unify-variable 'X1))]
(is (= (s/get-store new-ctx (heap 2)) ['REF (heap 2)]))
(is (= (s/get-register new-ctx 'X1) ['REF (heap 2)]))
(is (= (s/pointer new-ctx :h) (heap 3)))
(is (= (s/pointer new-ctx :s) (heap 6)))))
(testing "unknown mode"
(is (thrown? IllegalArgumentException
(->
ctx
(assoc :mode :banana)
(unify-variable 'X5)))))))
(deftest check-unify-value
(testing "unify-value"
(testing "read-mode"
;; TODO
)
(testing "write-mode"
(let [new-ctx (->
ctx
(s/mode :write)
(assoc-in [:pointer :h] 9)
(assoc-in [:pointer :s] 3)
(s/set-register 'X2 ['STR 1])
(unify-value 'X2))]
(is (= (s/get-store new-ctx 9) ['STR 1]))
(is (= (s/pointer new-ctx :h) 10))
(is (= (s/pointer new-ctx :s) 4))))
(testing "unknown mode"
(is (thrown? IllegalArgumentException
(->
ctx
(assoc :mode :banana)
(unify-value 'X5)))))))
(deftest ex2.1
; Compiled code for L0 query ?-p(Z,h(Z,W),f(W)).
(is (tbl=
(->
ctx
(put-structure 'h|2, 'X3)
(set-variable 'X2)
(set-variable 'X5)
(put-structure 'f|1, 'X4)
(set-value 'X5)
(put-structure 'p|3, 'X1)
(set-value 'X2)
(set-value 'X3)
(set-value 'X4)
s/heap)
"+------+------------+
| key | value |
+------+------------+
| 1000 | [STR 1001] |
| 1001 | h|2 |
| 1002 | [REF 1002] |
| 1003 | [REF 1003] |
| 1004 | [STR 1005] |
| 1005 | f|1 |
| 1006 | [REF 1003] |
| 1007 | [STR 1008] |
| 1008 | p|3 |
| 1009 | [REF 1002] |
| 1010 | [STR 1001] |
| 1011 | [STR 1005] |
+------+------------+")))
(deftest check-put-variable
(testing "put-variable"
(let [new-ctx (-> ctx (put-variable 'X4 'A1))]
(is (= (s/pointer new-ctx :h) (heap 1)))
(is (= (s/get-store new-ctx (heap 0)) ['REF (heap 0)]))
(is (= (s/get-register new-ctx 'X4) ['REF (heap 0)]))
(is (= (s/get-register new-ctx 'A1) ['REF (heap 0)])))))
(deftest check-put-value
(testing "put-value"
(let [new-ctx (->
ctx
(s/set-register 'X4 32)
(put-value 'X4 'A1))]
(is (= (s/get-register new-ctx 'A1) 32)))))
(deftest check-get-variable
(testing "get-variable"
(let [new-ctx (->
ctx
(s/set-register 'A1 99)
(get-variable 'X4 'A1))]
(is (= (s/get-register new-ctx 'X4) 99)))))
(deftest check-get-value
(testing "get-value"
(let [new-ctx (->
ctx
(s/set-register 'A1 99)
(get-value 'X1 'A1))]
(is (false? (:fail new-ctx 'X4))))))
(deftest check-call
(testing "call"
(testing "non-existent program"
(let [ctx (->
(s/make-context)
(call 'p|5))]
(is (true? (:fail ctx)))
(is (= (s/pointer ctx :p) 0))))
(testing "simple proceed"
(let [ctx (->
(s/make-context)
(s/load 'h|2 [[proceed]])
(call 'h|2))]
(is (false? (:fail ctx)))
(is (= (s/pointer ctx :p) 1))))))
(deftest ex2.6
(is (tbl=
(->
(s/make-context)
(put-variable 'X4, 'A1)
(put-structure 'h|2, 'A2)
(set-value 'X4)
(set-variable 'X5)
(put-structure 'f|1, 'A3)
(set-value 'X5)
s/heap)
"+------+------------+
| key | value |
+------+------------+
| 1000 | [REF 1000] |
| 1001 | [STR 1002] |
| 1002 | h|2 |
| 1003 | [REF 1000] |
| 1004 | [REF 1004] |
| 1005 | [STR 1006] |
| 1006 | f|1 |
| 1007 | [REF 1004] |
+------+------------+")))
(deftest ex2.7
(let [p|3 (list
[get-structure 'f|1, 'A1]
[unify-variable 'X4]
[get-structure 'h|2, 'A2]
[unify-variable 'X5]
[unify-variable 'X6]
[get-value 'X5, 'A3]
[get-structure 'f|1, 'X6]
[unify-variable 'X7]
[get-structure 'a|0, 'X7]
[proceed])
ctx (->
(s/make-context)
(put-variable 'X4, 'A1)
(put-structure 'h|2, 'A2)
(set-value 'X4)
(set-variable 'X5)
(put-structure 'f|1, 'A3)
(set-value 'X5)
(s/load 'p|3 p|3)
(call 'p|3))
W (resolve-struct ctx (s/register-address 'X4))
X (resolve-struct ctx (s/register-address 'X4))
Y (resolve-struct ctx (s/register-address 'A3))
Z (resolve-struct ctx (s/register-address 'A1))]
(s/diag ctx)
(println "W =" W)
(println "X =" X)
(println "Y =" Y)
(println "Z =" Z)))
; Heap Registers Variables
; -------------------------------------------------
; ┌─────┬──────────┐ ┌─────┬──────────┐ ┌───────┐
; │ key │ value │ │ key │ value │ │ value │
; ├─────┼──────────┤ ├─────┼──────────┤ ├───────┤
; │ 0 ╎ [STR 9] │ │ X1 ╎ [REF 0] │ └───────┘
; │ 1 ╎ [STR 2] │ │ X2 ╎ [STR 2] │
; │ 2 ╎ h|2 │ │ X3 ╎ [STR 6] │
; │ 3 ╎ [REF 0] │ │ X4 ╎ [REF 10] │
; │ 4 ╎ [STR 12] │ │ X5 ╎ [REF 0] │
; │ 5 ╎ [STR 6] │ │ X6 ╎ [REF 4] │
; │ 6 ╎ f|1 │ │ X7 ╎ [REF 13] │
; │ 7 ╎ [REF 4] │ └─────┴──────────┘
; │ 8 ╎ [STR 9] │
; │ 9 ╎ f|1 │
; │ 10 ╎ [REF 4] │
; │ 11 ╎ [STR 12] │
; │ 12 ╎ f|1 │
; │ 13 ╎ [STR 15] │
; │ 14 ╎ [STR 15] │
; │ 15 ╎ a|0 │
; └─────┴──────────┘
| true |
;; The MIT License (MIT)
;;
;; Copyright (c) 2015 PI:NAME:<NAME>END_PI
;;
;; Permission is hereby granted, free of charge, to any person obtaining a copy
;; of this software and associated documentation files (the "Software"), to deal
;; in the Software without restriction, including without limitation the rights
;; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
;; copies of the Software, and to permit persons to whom the Software is
;; furnished to do so, subject to the following conditions:
;;
;; The above copyright notice and this permission notice shall be included in all
;; copies or substantial portions of the Software.
;;
;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
;; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
;; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
;; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
;; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
;; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
;; SOFTWARE.
;; ℳ₀ machine instructions
(ns wam.instruction-set-test
(:require
[clojure.test :refer :all]
[wam.assert-helpers :refer :all]
[wam.anciliary :refer [resolve-struct]]
[wam.instruction-set :refer :all]
[wam.store :as s]))
(def ctx (s/make-context))
(deftest check-set-value
(testing "set-value"
(let [new-ctx (->
ctx
(s/set-register 'X3 27)
(set-value 'X3))]
(is (= (s/pointer new-ctx :h) (heap 1)))
(is (= (s/get-store new-ctx (heap 0)) 27)))))
(deftest check-set-variable
(testing "set-variable"
(let [new-ctx (->
ctx
(s/set-register 'X4 55)
(set-variable 'X4))]
(is (= (s/pointer new-ctx :h) (heap 1)))
(is (= (s/get-store new-ctx (heap 0)) ['REF (heap 0)]))
(is (= (s/get-register new-ctx 'X4) ['REF (heap 0)])))))
(deftest check-put-structure
(testing "put-structure"
(let [new-ctx (->
ctx
(put-structure 'f|n 'X3))]
(is (= (s/pointer new-ctx :h) (heap 2)))
(is (= (s/get-store new-ctx (heap 0)) ['STR (heap 1)]))
(is (= (s/get-store new-ctx (heap 1)) 'f|n))
(is (= (s/get-register new-ctx 'X3) ['STR (heap 1)])))))
(deftest check-get-structure
(testing "get-structure")
(let [ctx (->
ctx
(s/set-store (heap 0) ['REF (heap 3)])
(s/set-store (heap 1) ['STR (heap 2)])
(s/set-store (heap 2) 'f|0)
(s/set-store (heap 3) ['REF (heap 3)])
(assoc-in [:pointer :h] (heap 4))
(s/set-register 'X1 ['REF (heap 0)])
(s/set-register 'X2 ['REF (heap 1)])
(s/set-register 'X3 ['REF (heap 2)]))]
(testing "REF"
(let [new-ctx (get-structure ctx 'g|2 'X1)]
(is (= (s/pointer new-ctx :h) (heap 6)))
(is (= (:mode new-ctx) :write))
(is (false? (:fail new-ctx)))
(is (= (s/get-store new-ctx (heap 3)) ['STR (heap 5)]))
(is (= (s/get-store new-ctx (heap 4)) ['STR (heap 5)]))
(is (= (s/get-store new-ctx (heap 5)) 'g|2))))
(testing "STR (fail)"
(let [new-ctx (get-structure ctx 'g|2 'X2)]
(is (true? (:fail new-ctx)))))
(testing "STR (match)"
(let [new-ctx (get-structure ctx 'f|0 'X2)]
(is (= (s/pointer new-ctx :s) (heap 3)))
(is (= (:mode new-ctx) :read))
(is (false? (:fail new-ctx)))))
(testing "no match"
(let [new-ctx (get-structure ctx 'g|2 'X3)]
(is (true? (:fail new-ctx)))))))
(deftest check-unify-variable
(testing "unify-variable"
(testing "read-mode"
(let [new-ctx (->
ctx
(s/mode :read)
(s/set-store (heap 0) ['REF 3])
(unify-variable 'X1))]
(is (= (s/get-register new-ctx 'X1) ['REF 3]))
(is (= (s/pointer new-ctx :s) (heap 1)))))
(testing "write-mode"
(let [new-ctx (->
ctx
(s/mode :write)
(assoc-in [:pointer :h] (heap 2))
(assoc-in [:pointer :s] (heap 5))
(unify-variable 'X1))]
(is (= (s/get-store new-ctx (heap 2)) ['REF (heap 2)]))
(is (= (s/get-register new-ctx 'X1) ['REF (heap 2)]))
(is (= (s/pointer new-ctx :h) (heap 3)))
(is (= (s/pointer new-ctx :s) (heap 6)))))
(testing "unknown mode"
(is (thrown? IllegalArgumentException
(->
ctx
(assoc :mode :banana)
(unify-variable 'X5)))))))
(deftest check-unify-value
(testing "unify-value"
(testing "read-mode"
;; TODO
)
(testing "write-mode"
(let [new-ctx (->
ctx
(s/mode :write)
(assoc-in [:pointer :h] 9)
(assoc-in [:pointer :s] 3)
(s/set-register 'X2 ['STR 1])
(unify-value 'X2))]
(is (= (s/get-store new-ctx 9) ['STR 1]))
(is (= (s/pointer new-ctx :h) 10))
(is (= (s/pointer new-ctx :s) 4))))
(testing "unknown mode"
(is (thrown? IllegalArgumentException
(->
ctx
(assoc :mode :banana)
(unify-value 'X5)))))))
(deftest ex2.1
; Compiled code for L0 query ?-p(Z,h(Z,W),f(W)).
(is (tbl=
(->
ctx
(put-structure 'h|2, 'X3)
(set-variable 'X2)
(set-variable 'X5)
(put-structure 'f|1, 'X4)
(set-value 'X5)
(put-structure 'p|3, 'X1)
(set-value 'X2)
(set-value 'X3)
(set-value 'X4)
s/heap)
"+------+------------+
| key | value |
+------+------------+
| 1000 | [STR 1001] |
| 1001 | h|2 |
| 1002 | [REF 1002] |
| 1003 | [REF 1003] |
| 1004 | [STR 1005] |
| 1005 | f|1 |
| 1006 | [REF 1003] |
| 1007 | [STR 1008] |
| 1008 | p|3 |
| 1009 | [REF 1002] |
| 1010 | [STR 1001] |
| 1011 | [STR 1005] |
+------+------------+")))
(deftest check-put-variable
(testing "put-variable"
(let [new-ctx (-> ctx (put-variable 'X4 'A1))]
(is (= (s/pointer new-ctx :h) (heap 1)))
(is (= (s/get-store new-ctx (heap 0)) ['REF (heap 0)]))
(is (= (s/get-register new-ctx 'X4) ['REF (heap 0)]))
(is (= (s/get-register new-ctx 'A1) ['REF (heap 0)])))))
(deftest check-put-value
(testing "put-value"
(let [new-ctx (->
ctx
(s/set-register 'X4 32)
(put-value 'X4 'A1))]
(is (= (s/get-register new-ctx 'A1) 32)))))
(deftest check-get-variable
(testing "get-variable"
(let [new-ctx (->
ctx
(s/set-register 'A1 99)
(get-variable 'X4 'A1))]
(is (= (s/get-register new-ctx 'X4) 99)))))
(deftest check-get-value
(testing "get-value"
(let [new-ctx (->
ctx
(s/set-register 'A1 99)
(get-value 'X1 'A1))]
(is (false? (:fail new-ctx 'X4))))))
(deftest check-call
(testing "call"
(testing "non-existent program"
(let [ctx (->
(s/make-context)
(call 'p|5))]
(is (true? (:fail ctx)))
(is (= (s/pointer ctx :p) 0))))
(testing "simple proceed"
(let [ctx (->
(s/make-context)
(s/load 'h|2 [[proceed]])
(call 'h|2))]
(is (false? (:fail ctx)))
(is (= (s/pointer ctx :p) 1))))))
(deftest ex2.6
(is (tbl=
(->
(s/make-context)
(put-variable 'X4, 'A1)
(put-structure 'h|2, 'A2)
(set-value 'X4)
(set-variable 'X5)
(put-structure 'f|1, 'A3)
(set-value 'X5)
s/heap)
"+------+------------+
| key | value |
+------+------------+
| 1000 | [REF 1000] |
| 1001 | [STR 1002] |
| 1002 | h|2 |
| 1003 | [REF 1000] |
| 1004 | [REF 1004] |
| 1005 | [STR 1006] |
| 1006 | f|1 |
| 1007 | [REF 1004] |
+------+------------+")))
(deftest ex2.7
(let [p|3 (list
[get-structure 'f|1, 'A1]
[unify-variable 'X4]
[get-structure 'h|2, 'A2]
[unify-variable 'X5]
[unify-variable 'X6]
[get-value 'X5, 'A3]
[get-structure 'f|1, 'X6]
[unify-variable 'X7]
[get-structure 'a|0, 'X7]
[proceed])
ctx (->
(s/make-context)
(put-variable 'X4, 'A1)
(put-structure 'h|2, 'A2)
(set-value 'X4)
(set-variable 'X5)
(put-structure 'f|1, 'A3)
(set-value 'X5)
(s/load 'p|3 p|3)
(call 'p|3))
W (resolve-struct ctx (s/register-address 'X4))
X (resolve-struct ctx (s/register-address 'X4))
Y (resolve-struct ctx (s/register-address 'A3))
Z (resolve-struct ctx (s/register-address 'A1))]
(s/diag ctx)
(println "W =" W)
(println "X =" X)
(println "Y =" Y)
(println "Z =" Z)))
; Heap Registers Variables
; -------------------------------------------------
; ┌─────┬──────────┐ ┌─────┬──────────┐ ┌───────┐
; │ key │ value │ │ key │ value │ │ value │
; ├─────┼──────────┤ ├─────┼──────────┤ ├───────┤
; │ 0 ╎ [STR 9] │ │ X1 ╎ [REF 0] │ └───────┘
; │ 1 ╎ [STR 2] │ │ X2 ╎ [STR 2] │
; │ 2 ╎ h|2 │ │ X3 ╎ [STR 6] │
; │ 3 ╎ [REF 0] │ │ X4 ╎ [REF 10] │
; │ 4 ╎ [STR 12] │ │ X5 ╎ [REF 0] │
; │ 5 ╎ [STR 6] │ │ X6 ╎ [REF 4] │
; │ 6 ╎ f|1 │ │ X7 ╎ [REF 13] │
; │ 7 ╎ [REF 4] │ └─────┴──────────┘
; │ 8 ╎ [STR 9] │
; │ 9 ╎ f|1 │
; │ 10 ╎ [REF 4] │
; │ 11 ╎ [STR 12] │
; │ 12 ╎ f|1 │
; │ 13 ╎ [STR 15] │
; │ 14 ╎ [STR 15] │
; │ 15 ╎ a|0 │
; └─────┴──────────┘
|
[
{
"context": "(comment \n re-core, Copyright 2012 Ronen Narkis, narkisr.com\n Licensed under the Apache License",
"end": 49,
"score": 0.9998825192451477,
"start": 37,
"tag": "NAME",
"value": "Ronen Narkis"
},
{
"context": "omment \n re-core, Copyright 2012 Ronen Narkis, narkisr.com\n Licensed under the Apache License,\n Version ",
"end": 62,
"score": 0.8312976360321045,
"start": 52,
"tag": "EMAIL",
"value": "arkisr.com"
}
] |
src/hooks/dnsmasq.clj
|
celestial-ops/core
| 1 |
(comment
re-core, Copyright 2012 Ronen Narkis, narkisr.com
Licensed under the Apache License,
Version 2.0 (the "License") you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.)
(ns hooks.dnsmasq
"DNS registration hook for static addresses using hosts file:
* expects an Ubuntu and dnsmasq on the other end.
* Uses an agent to make sure that only a single action will be performed concurrently. "
(:require
pallet.stevedore.bash
[re-core.persistency.systems :as s]
[re-core.common :refer (import-logging bash-)])
(:use
[clojure.core.strint :only (<<)]
[supernal.sshj :only (execute)]))
(import-logging)
(defn- ignore-code [s]
(with-meta s (merge (meta s) {:ignore-code true})))
; using an agent makes sure that only one action will take place at a time
(def hosts (agent "/etc/hosts"))
(def ^:dynamic sudo "sudo")
(defn restart [remote]
(execute (bash- (chain-and (~sudo "service" "dnsmasq" "stop") (~sudo "service" "dnsmasq" "start"))) remote))
(defn hostline [domain {:keys [ip hostname] :as machine}]
(<< "~{ip} ~{hostname} ~{hostname}.~(get machine :domain domain)"))
(defn add-host
"Will add host to hosts file only if missing,
note that we s/get-system since the provider might updated the system during create."
[hosts-file {:keys [dnsmasq user domain system-id] :as args}]
(try
(let [remote {:host dnsmasq :user user} line (hostline domain (:machine (s/get-system system-id)))
hosts-file' (str hosts-file) ]
(execute
(bash- (chain-or ("grep" "-q" (quoted ~line) ~hosts-file')
(pipe ("echo" ~line) (~sudo "tee" "-a" ~hosts-file' ">> /dev/null")))) remote)
(restart remote) hosts-file)
(catch Throwable t (error t) hosts-file)))
(defn remove-host
"Removes host,
here we use the original machine since the last step in destroy is clearing the system"
[hosts-file {:keys [dnsmasq user domain machine]}]
(try
(let [remote {:host dnsmasq :user user} line (hostline domain machine)
match (<< "\"\\|^~{line}\\$|d\"")]
(execute (bash- (~sudo "sed" "-ie" ~match ~(str hosts-file))) remote)
(restart remote) hosts-file)
(catch Throwable t (error t) hosts-file)
))
(def actions {:reload {:success add-host} :create {:success add-host}
:start {:success add-host} :stop {:success remove-host}
:destroy {:success remove-host :error remove-host}
:stage {:success add-host}
})
(defn update-dns [{:keys [event workflow] :as args}]
(try
(when (agent-error hosts) (restart-agent hosts "/etc/hosts"))
(send-off hosts (get-in actions [workflow event] (fn [hosts-file _] hosts-file)) args)
(catch Throwable t
(when (agent-error hosts)
(error "Agent has errors restarting during catch of:" t)
(restart-agent hosts "/etc/hosts")))))
|
5613
|
(comment
re-core, Copyright 2012 <NAME>, n<EMAIL>
Licensed under the Apache License,
Version 2.0 (the "License") you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.)
(ns hooks.dnsmasq
"DNS registration hook for static addresses using hosts file:
* expects an Ubuntu and dnsmasq on the other end.
* Uses an agent to make sure that only a single action will be performed concurrently. "
(:require
pallet.stevedore.bash
[re-core.persistency.systems :as s]
[re-core.common :refer (import-logging bash-)])
(:use
[clojure.core.strint :only (<<)]
[supernal.sshj :only (execute)]))
(import-logging)
(defn- ignore-code [s]
(with-meta s (merge (meta s) {:ignore-code true})))
; using an agent makes sure that only one action will take place at a time
(def hosts (agent "/etc/hosts"))
(def ^:dynamic sudo "sudo")
(defn restart [remote]
(execute (bash- (chain-and (~sudo "service" "dnsmasq" "stop") (~sudo "service" "dnsmasq" "start"))) remote))
(defn hostline [domain {:keys [ip hostname] :as machine}]
(<< "~{ip} ~{hostname} ~{hostname}.~(get machine :domain domain)"))
(defn add-host
"Will add host to hosts file only if missing,
note that we s/get-system since the provider might updated the system during create."
[hosts-file {:keys [dnsmasq user domain system-id] :as args}]
(try
(let [remote {:host dnsmasq :user user} line (hostline domain (:machine (s/get-system system-id)))
hosts-file' (str hosts-file) ]
(execute
(bash- (chain-or ("grep" "-q" (quoted ~line) ~hosts-file')
(pipe ("echo" ~line) (~sudo "tee" "-a" ~hosts-file' ">> /dev/null")))) remote)
(restart remote) hosts-file)
(catch Throwable t (error t) hosts-file)))
(defn remove-host
"Removes host,
here we use the original machine since the last step in destroy is clearing the system"
[hosts-file {:keys [dnsmasq user domain machine]}]
(try
(let [remote {:host dnsmasq :user user} line (hostline domain machine)
match (<< "\"\\|^~{line}\\$|d\"")]
(execute (bash- (~sudo "sed" "-ie" ~match ~(str hosts-file))) remote)
(restart remote) hosts-file)
(catch Throwable t (error t) hosts-file)
))
(def actions {:reload {:success add-host} :create {:success add-host}
:start {:success add-host} :stop {:success remove-host}
:destroy {:success remove-host :error remove-host}
:stage {:success add-host}
})
(defn update-dns [{:keys [event workflow] :as args}]
(try
(when (agent-error hosts) (restart-agent hosts "/etc/hosts"))
(send-off hosts (get-in actions [workflow event] (fn [hosts-file _] hosts-file)) args)
(catch Throwable t
(when (agent-error hosts)
(error "Agent has errors restarting during catch of:" t)
(restart-agent hosts "/etc/hosts")))))
| true |
(comment
re-core, Copyright 2012 PI:NAME:<NAME>END_PI, nPI:EMAIL:<EMAIL>END_PI
Licensed under the Apache License,
Version 2.0 (the "License") you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.)
(ns hooks.dnsmasq
"DNS registration hook for static addresses using hosts file:
* expects an Ubuntu and dnsmasq on the other end.
* Uses an agent to make sure that only a single action will be performed concurrently. "
(:require
pallet.stevedore.bash
[re-core.persistency.systems :as s]
[re-core.common :refer (import-logging bash-)])
(:use
[clojure.core.strint :only (<<)]
[supernal.sshj :only (execute)]))
(import-logging)
(defn- ignore-code [s]
(with-meta s (merge (meta s) {:ignore-code true})))
; using an agent makes sure that only one action will take place at a time
(def hosts (agent "/etc/hosts"))
(def ^:dynamic sudo "sudo")
(defn restart [remote]
(execute (bash- (chain-and (~sudo "service" "dnsmasq" "stop") (~sudo "service" "dnsmasq" "start"))) remote))
(defn hostline [domain {:keys [ip hostname] :as machine}]
(<< "~{ip} ~{hostname} ~{hostname}.~(get machine :domain domain)"))
(defn add-host
"Will add host to hosts file only if missing,
note that we s/get-system since the provider might updated the system during create."
[hosts-file {:keys [dnsmasq user domain system-id] :as args}]
(try
(let [remote {:host dnsmasq :user user} line (hostline domain (:machine (s/get-system system-id)))
hosts-file' (str hosts-file) ]
(execute
(bash- (chain-or ("grep" "-q" (quoted ~line) ~hosts-file')
(pipe ("echo" ~line) (~sudo "tee" "-a" ~hosts-file' ">> /dev/null")))) remote)
(restart remote) hosts-file)
(catch Throwable t (error t) hosts-file)))
(defn remove-host
"Removes host,
here we use the original machine since the last step in destroy is clearing the system"
[hosts-file {:keys [dnsmasq user domain machine]}]
(try
(let [remote {:host dnsmasq :user user} line (hostline domain machine)
match (<< "\"\\|^~{line}\\$|d\"")]
(execute (bash- (~sudo "sed" "-ie" ~match ~(str hosts-file))) remote)
(restart remote) hosts-file)
(catch Throwable t (error t) hosts-file)
))
(def actions {:reload {:success add-host} :create {:success add-host}
:start {:success add-host} :stop {:success remove-host}
:destroy {:success remove-host :error remove-host}
:stage {:success add-host}
})
(defn update-dns [{:keys [event workflow] :as args}]
(try
(when (agent-error hosts) (restart-agent hosts "/etc/hosts"))
(send-off hosts (get-in actions [workflow event] (fn [hosts-file _] hosts-file)) args)
(catch Throwable t
(when (agent-error hosts)
(error "Agent has errors restarting during catch of:" t)
(restart-agent hosts "/etc/hosts")))))
|
[
{
"context": "st\"})]\n (is (= {:success? true} (t/send-email \"[email protected]\" (content/trial-ending {})))\n \"should retu",
"end": 885,
"score": 0.9999262690544128,
"start": 869,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "led!\")\n (t/send-email \"[email protected]\" (content/trial-ended {}))))\n (try \n ",
"end": 1599,
"score": 0.9999273419380188,
"start": 1583,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "l-ended {}))))\n (try \n (t/send-email \"[email protected]\" (content/trial-ended {}))\n (catch Excepti",
"end": 1680,
"score": 0.9999275207519531,
"start": 1664,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "st \"host\"})]\n (is (= {:success? true} (t/fire \"[email protected]\" (content/trial-ending {})))\n \"should retu",
"end": 2339,
"score": 0.9999265670776367,
"start": 2323,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "(is (= {:error \"email dispatch failed!\"} (t/fire \"[email protected]\" (content/trial-ended {})))))))\n\n",
"end": 2987,
"score": 0.9999273419380188,
"start": 2971,
"tag": "EMAIL",
"value": "[email protected]"
}
] |
code/test/sixsq/nuvla/server/resources/email/sending_test.clj
|
nuvla/server
| 0 |
(ns sixsq.nuvla.server.resources.email.sending-test
(:require
[clojure.test :refer [deftest is testing]]
[postal.core :as postal]
[sixsq.nuvla.server.resources.common.crud :as crud]
[sixsq.nuvla.server.resources.email.content :as content]
[sixsq.nuvla.server.resources.email.sending :as t])
(:import (clojure.lang ExceptionInfo)))
(deftest send-email
(with-redefs [postal/send-message (fn [smtp data]
(testing "should call postal send-message"
(is (some? (:subject data)) "should have data with subject")
(is (some? (seq smtp)) "should have smtp"))
{:error :SUCCESS})
crud/retrieve-by-id-as-admin (fn [_] {:smtp-host "host"})]
(is (= {:success? true} (t/send-email "[email protected]" (content/trial-ending {})))
"should return success"))
(testing "should throw error if unable to send"
(with-redefs [postal/send-message (fn [smtp data]
(testing "should call postal send-message"
(is (some? (:subject data)) "should have data with subject")
(is (some? (seq smtp)) "should have smtp"))
{:error :ERROR})
crud/retrieve-by-id-as-admin (fn [_] {:smtp-host "host"})]
(is (thrown-with-msg? ExceptionInfo (re-pattern "email dispatch failed!")
(t/send-email "[email protected]" (content/trial-ended {}))))
(try
(t/send-email "[email protected]" (content/trial-ended {}))
(catch Exception ex
(let [{:keys [status]} (ex-data ex)]
(is (= 500 status))))))))
(deftest fire
(with-redefs [postal/send-message (fn [smtp data]
(testing "should call postal send-message"
(is (some? (:subject data)) "should have data with subject")
(is (some? (seq smtp)) "should have smtp"))
{:error :SUCCESS})
crud/retrieve-by-id-as-admin (fn [_] {:smtp-host "host"})]
(is (= {:success? true} (t/fire "[email protected]" (content/trial-ending {})))
"should return success"))
(testing "should return error if unable to send"
(with-redefs [postal/send-message (fn [smtp data]
(testing "should call postal send-message"
(is (some? (:subject data)) "should have data with subject")
(is (some? (seq smtp)) "should have smtp"))
{:error :ERROR})
crud/retrieve-by-id-as-admin (fn [_] {:smtp-host "host"})]
(is (= {:error "email dispatch failed!"} (t/fire "[email protected]" (content/trial-ended {})))))))
|
19903
|
(ns sixsq.nuvla.server.resources.email.sending-test
(:require
[clojure.test :refer [deftest is testing]]
[postal.core :as postal]
[sixsq.nuvla.server.resources.common.crud :as crud]
[sixsq.nuvla.server.resources.email.content :as content]
[sixsq.nuvla.server.resources.email.sending :as t])
(:import (clojure.lang ExceptionInfo)))
(deftest send-email
(with-redefs [postal/send-message (fn [smtp data]
(testing "should call postal send-message"
(is (some? (:subject data)) "should have data with subject")
(is (some? (seq smtp)) "should have smtp"))
{:error :SUCCESS})
crud/retrieve-by-id-as-admin (fn [_] {:smtp-host "host"})]
(is (= {:success? true} (t/send-email "<EMAIL>" (content/trial-ending {})))
"should return success"))
(testing "should throw error if unable to send"
(with-redefs [postal/send-message (fn [smtp data]
(testing "should call postal send-message"
(is (some? (:subject data)) "should have data with subject")
(is (some? (seq smtp)) "should have smtp"))
{:error :ERROR})
crud/retrieve-by-id-as-admin (fn [_] {:smtp-host "host"})]
(is (thrown-with-msg? ExceptionInfo (re-pattern "email dispatch failed!")
(t/send-email "<EMAIL>" (content/trial-ended {}))))
(try
(t/send-email "<EMAIL>" (content/trial-ended {}))
(catch Exception ex
(let [{:keys [status]} (ex-data ex)]
(is (= 500 status))))))))
(deftest fire
(with-redefs [postal/send-message (fn [smtp data]
(testing "should call postal send-message"
(is (some? (:subject data)) "should have data with subject")
(is (some? (seq smtp)) "should have smtp"))
{:error :SUCCESS})
crud/retrieve-by-id-as-admin (fn [_] {:smtp-host "host"})]
(is (= {:success? true} (t/fire "<EMAIL>" (content/trial-ending {})))
"should return success"))
(testing "should return error if unable to send"
(with-redefs [postal/send-message (fn [smtp data]
(testing "should call postal send-message"
(is (some? (:subject data)) "should have data with subject")
(is (some? (seq smtp)) "should have smtp"))
{:error :ERROR})
crud/retrieve-by-id-as-admin (fn [_] {:smtp-host "host"})]
(is (= {:error "email dispatch failed!"} (t/fire "<EMAIL>" (content/trial-ended {})))))))
| true |
(ns sixsq.nuvla.server.resources.email.sending-test
(:require
[clojure.test :refer [deftest is testing]]
[postal.core :as postal]
[sixsq.nuvla.server.resources.common.crud :as crud]
[sixsq.nuvla.server.resources.email.content :as content]
[sixsq.nuvla.server.resources.email.sending :as t])
(:import (clojure.lang ExceptionInfo)))
(deftest send-email
(with-redefs [postal/send-message (fn [smtp data]
(testing "should call postal send-message"
(is (some? (:subject data)) "should have data with subject")
(is (some? (seq smtp)) "should have smtp"))
{:error :SUCCESS})
crud/retrieve-by-id-as-admin (fn [_] {:smtp-host "host"})]
(is (= {:success? true} (t/send-email "PI:EMAIL:<EMAIL>END_PI" (content/trial-ending {})))
"should return success"))
(testing "should throw error if unable to send"
(with-redefs [postal/send-message (fn [smtp data]
(testing "should call postal send-message"
(is (some? (:subject data)) "should have data with subject")
(is (some? (seq smtp)) "should have smtp"))
{:error :ERROR})
crud/retrieve-by-id-as-admin (fn [_] {:smtp-host "host"})]
(is (thrown-with-msg? ExceptionInfo (re-pattern "email dispatch failed!")
(t/send-email "PI:EMAIL:<EMAIL>END_PI" (content/trial-ended {}))))
(try
(t/send-email "PI:EMAIL:<EMAIL>END_PI" (content/trial-ended {}))
(catch Exception ex
(let [{:keys [status]} (ex-data ex)]
(is (= 500 status))))))))
(deftest fire
(with-redefs [postal/send-message (fn [smtp data]
(testing "should call postal send-message"
(is (some? (:subject data)) "should have data with subject")
(is (some? (seq smtp)) "should have smtp"))
{:error :SUCCESS})
crud/retrieve-by-id-as-admin (fn [_] {:smtp-host "host"})]
(is (= {:success? true} (t/fire "PI:EMAIL:<EMAIL>END_PI" (content/trial-ending {})))
"should return success"))
(testing "should return error if unable to send"
(with-redefs [postal/send-message (fn [smtp data]
(testing "should call postal send-message"
(is (some? (:subject data)) "should have data with subject")
(is (some? (seq smtp)) "should have smtp"))
{:error :ERROR})
crud/retrieve-by-id-as-admin (fn [_] {:smtp-host "host"})]
(is (= {:error "email dispatch failed!"} (t/fire "PI:EMAIL:<EMAIL>END_PI" (content/trial-ended {})))))))
|
[
{
"context": "ctor]))\n\n;; Based on Blobscanner example sketch by Antonio Molinaro:\n;; https://github.com/robdanet/blobscanner/blob/",
"end": 329,
"score": 0.9998937845230103,
"start": 313,
"tag": "NAME",
"value": "Antonio Molinaro"
},
{
"context": "sketch by Antonio Molinaro:\n;; https://github.com/robdanet/blobscanner/blob/master/examples/blob_centroid/fi",
"end": 361,
"score": 0.9965724349021912,
"start": 353,
"tag": "USERNAME",
"value": "robdanet"
}
] |
BigGiantProjectWhichNeedsToBeDecomposed/src/videotest/blob/find_centroids_cvgray.clj
|
PasDeChocolat/QuilCV
| 3 |
(ns videotest.blob.find-centroids-cvgray
(:require
[quil.core :as q]
[quil.middleware :as m]
[videotest.blob.cv :as cv])
(:import
[org.opencv.core CvType Mat]
[org.opencv.imgproc Imgproc]
[java.nio ByteBuffer ByteOrder]
[blobscanner Detector]))
;; Based on Blobscanner example sketch by Antonio Molinaro:
;; https://github.com/robdanet/blobscanner/blob/master/examples/blob_centroid/findCentroids/findCentroids.pde
;;
;;
(def CAM-SIZE (cv/camera-frame-size))
(def WIDTH (int (:width CAM-SIZE)))
(def HEIGHT (int (:height CAM-SIZE)))
;; pixCnt1 is the number of bytes in the pixel buffer
;; pixCnt2 is the number of integers in the PImage pixels buffer
(def PIX-CNT1 (* WIDTH HEIGHT 4))
(def PIX-CNT2 (* WIDTH HEIGHT))
(def BW-THRESH 200) ; between 0-255 (gray -> BW cut-off)
(def this (atom nil))
;; bArray is the temporary byte array buffer for OpenCV cv::Mat.
;; iArray is the temporary integer array buffer for PImage pixels.
(defn setup []
(q/frame-rate 60)
{:b-array (byte-array PIX-CNT1)
:i-array (int-array PIX-CNT2)
:frame-mat (Mat. WIDTH HEIGHT CvType/CV_8UC3)
:output-mat (Mat. WIDTH HEIGHT CvType/CV_8UC4)
:gray-mat (Mat.)
:bw-mat (Mat.)
:camera (cv/camera 0)
:p-image (q/create-image WIDTH HEIGHT :rgb)
:detector (do
; Applet must exist before Detector can be created
(Thread/sleep 1000)
(Detector. @this 255))})
(defn gray-mat->bw-mat [gray-mat bw-mat]
(Imgproc/threshold gray-mat bw-mat BW-THRESH 255 Imgproc/THRESH_BINARY)
bw-mat)
(defn update-gray-mat
[{:keys [frame-mat gray-mat bw-mat] :as state}]
(if frame-mat
(let [gray-mat (cv/BGR->GrayMat! frame-mat gray-mat)]
(assoc-in state [:gray-mat] (gray-mat->bw-mat gray-mat bw-mat)))
state))
(defn update-gray-p-image
[{:keys [frame-mat gray-mat output-mat b-array i-array] :as state}]
(if frame-mat
(update-in state [:p-image] #(cv/gray-mat->p-img gray-mat output-mat b-array i-array %))
state))
(defn update-blobs [{:keys [detector p-image] :as state}]
(when p-image
(.imageFindBlobs detector p-image)
(.loadBlobsFeatures detector)
(.findCentroids detector))
state)
(defn update [state]
(-> state
(cv/update-frame)
(update-gray-mat)
(update-gray-p-image)
(update-blobs)))
(defn draw-centroid [detector n]
(q/ellipse (.getCentroidX detector n)
(.getCentroidY detector n)
40 40))
(defn draw-centroids [{:keys [detector]}]
(when (and detector
(< 0 (.getBlobsNumber detector)))
(q/push-style)
(q/no-stroke)
(q/fill 0 255 0 80)
(dorun
(map #(draw-centroid detector %)
(range 0 (.getBlobsNumber detector))))
(q/pop-style)))
(defn draw [state]
(let [{:keys [p-image]} state]
(q/background 0)
(q/push-matrix)
(q/translate WIDTH 0)
(q/scale -1 1)
(when p-image
(q/image p-image 0 0)
(draw-centroids state))
(q/pop-matrix)))
(defn on-close
([{:keys [camera]}]
(println "closing sketch and releasing camera...")
(when-not (nil? camera)
(.release camera))))
(q/defsketch videotest
:title "Video Test"
:size [WIDTH HEIGHT]
:setup setup
:update update
:draw draw
:on-close on-close
:middleware [m/fun-mode])
(reset! this videotest)
|
53156
|
(ns videotest.blob.find-centroids-cvgray
(:require
[quil.core :as q]
[quil.middleware :as m]
[videotest.blob.cv :as cv])
(:import
[org.opencv.core CvType Mat]
[org.opencv.imgproc Imgproc]
[java.nio ByteBuffer ByteOrder]
[blobscanner Detector]))
;; Based on Blobscanner example sketch by <NAME>:
;; https://github.com/robdanet/blobscanner/blob/master/examples/blob_centroid/findCentroids/findCentroids.pde
;;
;;
(def CAM-SIZE (cv/camera-frame-size))
(def WIDTH (int (:width CAM-SIZE)))
(def HEIGHT (int (:height CAM-SIZE)))
;; pixCnt1 is the number of bytes in the pixel buffer
;; pixCnt2 is the number of integers in the PImage pixels buffer
(def PIX-CNT1 (* WIDTH HEIGHT 4))
(def PIX-CNT2 (* WIDTH HEIGHT))
(def BW-THRESH 200) ; between 0-255 (gray -> BW cut-off)
(def this (atom nil))
;; bArray is the temporary byte array buffer for OpenCV cv::Mat.
;; iArray is the temporary integer array buffer for PImage pixels.
(defn setup []
(q/frame-rate 60)
{:b-array (byte-array PIX-CNT1)
:i-array (int-array PIX-CNT2)
:frame-mat (Mat. WIDTH HEIGHT CvType/CV_8UC3)
:output-mat (Mat. WIDTH HEIGHT CvType/CV_8UC4)
:gray-mat (Mat.)
:bw-mat (Mat.)
:camera (cv/camera 0)
:p-image (q/create-image WIDTH HEIGHT :rgb)
:detector (do
; Applet must exist before Detector can be created
(Thread/sleep 1000)
(Detector. @this 255))})
(defn gray-mat->bw-mat [gray-mat bw-mat]
(Imgproc/threshold gray-mat bw-mat BW-THRESH 255 Imgproc/THRESH_BINARY)
bw-mat)
(defn update-gray-mat
[{:keys [frame-mat gray-mat bw-mat] :as state}]
(if frame-mat
(let [gray-mat (cv/BGR->GrayMat! frame-mat gray-mat)]
(assoc-in state [:gray-mat] (gray-mat->bw-mat gray-mat bw-mat)))
state))
(defn update-gray-p-image
[{:keys [frame-mat gray-mat output-mat b-array i-array] :as state}]
(if frame-mat
(update-in state [:p-image] #(cv/gray-mat->p-img gray-mat output-mat b-array i-array %))
state))
(defn update-blobs [{:keys [detector p-image] :as state}]
(when p-image
(.imageFindBlobs detector p-image)
(.loadBlobsFeatures detector)
(.findCentroids detector))
state)
(defn update [state]
(-> state
(cv/update-frame)
(update-gray-mat)
(update-gray-p-image)
(update-blobs)))
(defn draw-centroid [detector n]
(q/ellipse (.getCentroidX detector n)
(.getCentroidY detector n)
40 40))
(defn draw-centroids [{:keys [detector]}]
(when (and detector
(< 0 (.getBlobsNumber detector)))
(q/push-style)
(q/no-stroke)
(q/fill 0 255 0 80)
(dorun
(map #(draw-centroid detector %)
(range 0 (.getBlobsNumber detector))))
(q/pop-style)))
(defn draw [state]
(let [{:keys [p-image]} state]
(q/background 0)
(q/push-matrix)
(q/translate WIDTH 0)
(q/scale -1 1)
(when p-image
(q/image p-image 0 0)
(draw-centroids state))
(q/pop-matrix)))
(defn on-close
([{:keys [camera]}]
(println "closing sketch and releasing camera...")
(when-not (nil? camera)
(.release camera))))
(q/defsketch videotest
:title "Video Test"
:size [WIDTH HEIGHT]
:setup setup
:update update
:draw draw
:on-close on-close
:middleware [m/fun-mode])
(reset! this videotest)
| true |
(ns videotest.blob.find-centroids-cvgray
(:require
[quil.core :as q]
[quil.middleware :as m]
[videotest.blob.cv :as cv])
(:import
[org.opencv.core CvType Mat]
[org.opencv.imgproc Imgproc]
[java.nio ByteBuffer ByteOrder]
[blobscanner Detector]))
;; Based on Blobscanner example sketch by PI:NAME:<NAME>END_PI:
;; https://github.com/robdanet/blobscanner/blob/master/examples/blob_centroid/findCentroids/findCentroids.pde
;;
;;
(def CAM-SIZE (cv/camera-frame-size))
(def WIDTH (int (:width CAM-SIZE)))
(def HEIGHT (int (:height CAM-SIZE)))
;; pixCnt1 is the number of bytes in the pixel buffer
;; pixCnt2 is the number of integers in the PImage pixels buffer
(def PIX-CNT1 (* WIDTH HEIGHT 4))
(def PIX-CNT2 (* WIDTH HEIGHT))
(def BW-THRESH 200) ; between 0-255 (gray -> BW cut-off)
(def this (atom nil))
;; bArray is the temporary byte array buffer for OpenCV cv::Mat.
;; iArray is the temporary integer array buffer for PImage pixels.
(defn setup []
(q/frame-rate 60)
{:b-array (byte-array PIX-CNT1)
:i-array (int-array PIX-CNT2)
:frame-mat (Mat. WIDTH HEIGHT CvType/CV_8UC3)
:output-mat (Mat. WIDTH HEIGHT CvType/CV_8UC4)
:gray-mat (Mat.)
:bw-mat (Mat.)
:camera (cv/camera 0)
:p-image (q/create-image WIDTH HEIGHT :rgb)
:detector (do
; Applet must exist before Detector can be created
(Thread/sleep 1000)
(Detector. @this 255))})
(defn gray-mat->bw-mat [gray-mat bw-mat]
(Imgproc/threshold gray-mat bw-mat BW-THRESH 255 Imgproc/THRESH_BINARY)
bw-mat)
(defn update-gray-mat
[{:keys [frame-mat gray-mat bw-mat] :as state}]
(if frame-mat
(let [gray-mat (cv/BGR->GrayMat! frame-mat gray-mat)]
(assoc-in state [:gray-mat] (gray-mat->bw-mat gray-mat bw-mat)))
state))
(defn update-gray-p-image
[{:keys [frame-mat gray-mat output-mat b-array i-array] :as state}]
(if frame-mat
(update-in state [:p-image] #(cv/gray-mat->p-img gray-mat output-mat b-array i-array %))
state))
(defn update-blobs [{:keys [detector p-image] :as state}]
(when p-image
(.imageFindBlobs detector p-image)
(.loadBlobsFeatures detector)
(.findCentroids detector))
state)
(defn update [state]
(-> state
(cv/update-frame)
(update-gray-mat)
(update-gray-p-image)
(update-blobs)))
(defn draw-centroid [detector n]
(q/ellipse (.getCentroidX detector n)
(.getCentroidY detector n)
40 40))
(defn draw-centroids [{:keys [detector]}]
(when (and detector
(< 0 (.getBlobsNumber detector)))
(q/push-style)
(q/no-stroke)
(q/fill 0 255 0 80)
(dorun
(map #(draw-centroid detector %)
(range 0 (.getBlobsNumber detector))))
(q/pop-style)))
(defn draw [state]
(let [{:keys [p-image]} state]
(q/background 0)
(q/push-matrix)
(q/translate WIDTH 0)
(q/scale -1 1)
(when p-image
(q/image p-image 0 0)
(draw-centroids state))
(q/pop-matrix)))
(defn on-close
([{:keys [camera]}]
(println "closing sketch and releasing camera...")
(when-not (nil? camera)
(.release camera))))
(q/defsketch videotest
:title "Video Test"
:size [WIDTH HEIGHT]
:setup setup
:update update
:draw draw
:on-close on-close
:middleware [m/fun-mode])
(reset! this videotest)
|
[
{
"context": " conn\n \"[email protected]\"\n \"Test1234\"))]\n\n [{::te",
"end": 659,
"score": 0.9998859167098999,
"start": 639,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": " \"[email protected]\"\n \"Test1234\"))]\n\n [{::test/passed? (anom/? fail-res)\n ",
"end": 693,
"score": 0.9974982142448425,
"start": 685,
"tag": "PASSWORD",
"value": "Test1234"
},
{
"context": " conn\n \"[email protected]\"\n \"Test1234\"))\n refr",
"end": 1058,
"score": 0.999895453453064,
"start": 1038,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": " \"[email protected]\"\n \"Test1234\"))\n refresh-res (<! (a/<refresh-auth\n ",
"end": 1092,
"score": 0.9958125948905945,
"start": 1084,
"tag": "PASSWORD",
"value": "Test1234"
}
] |
src/cljs/rx/box/auth_test.cljs
|
zk/rx-lib
| 0 |
(ns rx.box.auth-test
(:require [rx.kitchen-sink :as ks]
[rx.anom :as anom :refer-macros [<?]]
[rx.test :as test
:refer-macros [thrown]]
[rx.res :as res]
[rx.box.auth :as a]
[rx.box.test-helpers :as th]
[cljs.core.async :as async
:refer [<!]
:refer-macros [go]]))
(test/<deftest test-<auth-by-username-password [opts]
(let [conn (<? (th/<test-conn opts))
fail-res (<! (a/<auth-by-username-password conn nil nil))
auth-res (<! (a/<auth-by-username-password
conn
"[email protected]"
"Test1234"))]
[{::test/passed? (anom/? fail-res)
::test/explain-data fail-res}
{::test/explain-data auth-res
::test/passed? (not (anom/? auth-res))}]))
(test/<deftest test-<refresh [opts]
(let [conn (<? (th/<test-conn opts))
auth-res (<? (a/<auth-by-username-password
conn
"[email protected]"
"Test1234"))
refresh-res (<! (a/<refresh-auth
conn
auth-res))]
[{::test/explain-data refresh-res
::test/passed? (not (anom/? refresh-res))}]))
|
97702
|
(ns rx.box.auth-test
(:require [rx.kitchen-sink :as ks]
[rx.anom :as anom :refer-macros [<?]]
[rx.test :as test
:refer-macros [thrown]]
[rx.res :as res]
[rx.box.auth :as a]
[rx.box.test-helpers :as th]
[cljs.core.async :as async
:refer [<!]
:refer-macros [go]]))
(test/<deftest test-<auth-by-username-password [opts]
(let [conn (<? (th/<test-conn opts))
fail-res (<! (a/<auth-by-username-password conn nil nil))
auth-res (<! (a/<auth-by-username-password
conn
"<EMAIL>"
"<PASSWORD>"))]
[{::test/passed? (anom/? fail-res)
::test/explain-data fail-res}
{::test/explain-data auth-res
::test/passed? (not (anom/? auth-res))}]))
(test/<deftest test-<refresh [opts]
(let [conn (<? (th/<test-conn opts))
auth-res (<? (a/<auth-by-username-password
conn
"<EMAIL>"
"<PASSWORD>"))
refresh-res (<! (a/<refresh-auth
conn
auth-res))]
[{::test/explain-data refresh-res
::test/passed? (not (anom/? refresh-res))}]))
| true |
(ns rx.box.auth-test
(:require [rx.kitchen-sink :as ks]
[rx.anom :as anom :refer-macros [<?]]
[rx.test :as test
:refer-macros [thrown]]
[rx.res :as res]
[rx.box.auth :as a]
[rx.box.test-helpers :as th]
[cljs.core.async :as async
:refer [<!]
:refer-macros [go]]))
(test/<deftest test-<auth-by-username-password [opts]
(let [conn (<? (th/<test-conn opts))
fail-res (<! (a/<auth-by-username-password conn nil nil))
auth-res (<! (a/<auth-by-username-password
conn
"PI:EMAIL:<EMAIL>END_PI"
"PI:PASSWORD:<PASSWORD>END_PI"))]
[{::test/passed? (anom/? fail-res)
::test/explain-data fail-res}
{::test/explain-data auth-res
::test/passed? (not (anom/? auth-res))}]))
(test/<deftest test-<refresh [opts]
(let [conn (<? (th/<test-conn opts))
auth-res (<? (a/<auth-by-username-password
conn
"PI:EMAIL:<EMAIL>END_PI"
"PI:PASSWORD:<PASSWORD>END_PI"))
refresh-res (<! (a/<refresh-auth
conn
auth-res))]
[{::test/explain-data refresh-res
::test/passed? (not (anom/? refresh-res))}]))
|
[
{
"context": "il\n;;;; Purpose: Utility code.\n;;;; Written by: Ron Ferguson, Leidos\n;;;; Created: 2014-04-26\n;;;; Updated:",
"end": 87,
"score": 0.9998450875282288,
"start": 75,
"tag": "NAME",
"value": "Ron Ferguson"
}
] |
src/dray/util.clj
|
visthink/dray2
| 1 |
;;;; Name: dray.util
;;;; Purpose: Utility code.
;;;; Written by: Ron Ferguson, Leidos
;;;; Created: 2014-04-26
;;;; Updated: 2014-05-08
;;;;
(ns dray.util
"Utility routines used by DRAY. These routines are not part of the API, and may change, but
are documented here for reference."
(:import (java.io File)
(java.net URL)
(java.nio.file Path)
(java.lang String)
(java.rmi.dgc VMID))
(:require [clojure.java.io :refer [file as-url]]
[clojure.set :refer [intersection]]
[clojure.string :as s])
)
;;; DEFCONST -- DEFINING SINGLE OR MULTIPLE CONSTANT VALUES.
(defn- expand-defconst [[name val]]
`(def ~(with-meta name (assoc (meta name) :const true)) ~val))
(defn- expand-defconsts [name-value-pairs]
(map expand-defconst (partition 2 name-value-pairs)))
(defmacro defconst
"Define one or more constants, given as a list of name / value pairs."
[constant-name assigned-value & additional-pairs]
(cons 'do
(expand-defconsts `(~constant-name ~assigned-value ~@additional-pairs))))
(defn java-version "Current Java version as string." []
(java.lang.System/getProperty "java.version"))
;;; TESTING COMPARATORS
(defn expand-map-selector-fn [xvar args]
(let [make-key-selector-pair (fn [[k sel]] `(~k ((memfn ~sel) ~xvar)))]
`(hash-map ~@(mapcat make-key-selector-pair (partition 2 args)))))
(defmacro map-selector-fn
"Given an alternating list of keywords and Java methods, returns
a function that, when passed a Java object, returns a hashmap
of the keys and the results of the selectors on the given object.
Example: (map-selector-fn :name getName :parent getParent)."
[& key-selector-args]
(let [xvar `x#] ; hygenic
`(fn [~xvar] ~(expand-map-selector-fn xvar key-selector-args))))
(defn file-type?
"Returns true if a file has the given extension."
[a-file extension]
(.endsWith (.getName a-file) extension))
;;;; ERROR MESSAGES
(defmacro uerror
"User error message. Takes the arguments and passes then to `str` to create a general Exception with that message.
Depracated in favor of uerr."
[& msg-args]
`(throw (Exception. (str "- " ~@msg-args))))
(defmacro error-when
"If the given expression evaluates to true, signal a general error with the given arguments, which are
passed to `str`."
[cond-exp & msg-args]
`(when ~cond-exp (uerror ~@msg-args)))
(defmacro uerr
"Takes an optional Exception class, a format string, and a set of arguments. Will throw
the exception and print out the error message."
[& args]
(let [first-arg-string? (string? (first args))
e (if first-arg-string? java.lang.Exception (first args))
fmt (if first-arg-string? (first args) (second args))
fmt-args (if first-arg-string? (rest args) (nthrest args 2))]
`(throw (new ~e (format ~fmt ~@fmt-args)))))
;;; CAMELCASE CONVERSION
(defn hyphenate-camelcase [camelcase-string]
(s/lower-case (s/replace camelcase-string #"([a-z])([A-Z])" "$1-$2")))
(defn hyphenate-classname [class] (hyphenate-camelcase (.getSimpleName class)))
;;; KEYWORDS
(def de-keyword
"Remove colon from front of keyword, returning regular symbol."
(comp symbol name))
;;; CLASS NAMES
(defn namespace? "Is this a namespace?"
[x] (instance? clojure.lang.Namespace x))
(defn full-classname-for-symbol
"Given a single symbol representing a classname, attempt to find the full
classname reference in the given namespace. Uses the current namespace
(*ns*) if none is given. Can also accept a namespace instance instead
of a namespace name."
([class-symbol ns-symbol]
(let [the-ns (if (namespace? ns-symbol) ns-symbol (find-ns ns-symbol))
found-class (ns-resolve the-ns class-symbol)]
(when-not found-class (uerr "Could not find full classname for symbol %s." class-symbol))
(.getCanonicalName found-class)))
([class-symbol] (full-classname-for-symbol class-symbol *ns*)))
;;; RETRIEVING PRIVATE FUNCTIONS FOR TESTING
(defmacro private-function
"Retrieves the function from a namespace, even if it is internal. Nil if not
found. This function is useful for testing functions that are kept private
(e.g., an internal function that is important to test, but not part of the API."
[name ns]
`(let [name# '~name
ns# '~ns
result# (get (ns-interns (find-ns ns#)) name#)]
(or result# (uerr "Could not find private function %s in namespace %s." name# ns#))))
;;; CREATE A FUNCTION REPRESENTING A PROTECTED FIELD
(defn protected-field-fn
"Returns a function that get the value of a protected field."
[class fieldname]
(let [field
(try (.getDeclaredField class fieldname)
(catch Exception e (uerr "protected-field-fn - could not find field %s in %s: %s"
fieldname class e)))]
(.setAccessible field true)
#(.get field %)
))
#_(defn protected-method-fn
"Returns a funtion that calls a protected method for the given class."
[class methodname args]
(let [method
(try (.getDeclaredMethod class methodname)
(catch Exception e (uerr "protected-method-fn - could not find method %s in %s: %s"
methodname class e)))]
(.setAccessible method true)
method
))
;;; DELETE A DIRECTORY
(defn delete-directory
"Delete a directory, even if it contains files. Use with caution.
Verbose by default."
([dir verbose?]
(doseq [f (reverse (file-seq dir))] ;; Leaves first.
(if verbose? (print "Deleting " f "\n"))
(let [res
(try (.delete f)
(catch Exception e
(println (str "Could not delete " f " " (.getMessage e)))))]
(when-not res
(println "Could not delete directory " dir))
)))
([dir] (delete-directory dir true)))
;; PATHS
(defn path-elements "Names constituting the file's path, in order." [f]
(map str (iterator-seq (.iterator (.toPath f)))))
;; CACHE DIRECTORY
(defonce current-cache-dirs #_"Current set of cache directory files." (atom #{}))
(defn retrieve-current-cache-dirs []
; (println "Current cache dirs are " @current-cache-dirs)
@current-cache-dirs)
(defn delete-current-cache-dirs
"Delete all the cache directories created or referenced during this session thus far."
[]
; (println "Starting to delete cache dirs.")
(let [cache-dirs (retrieve-current-cache-dirs)]
; (println "Cache dirs are: " cache-dirs)
(doall (for [d cache-dirs]
(do
(println "Deleting cache directory: " d)
(delete-directory d)))))
true) ; Always returns true (for now).
(defn make-dirs "If directory f does not exist, create it. Returns f."
[f]
(when-not (.exists f) (.mkdirs f))
f)
(defn cache-directory
"The DRAY cache directory for a given file. Always called .dray-cache in the
same directory as the file itself. If cache directory does not exist, creates
it."
[f]
(let [cache-dir (file (str (.getParent f) "/.dray-cache"))]
(make-dirs cache-dir)
(swap! current-cache-dirs conj cache-dir) ;; Add to list of cache directories.
(.deleteOnExit cache-dir) ;; When JVM exits, remove dray-cache.
cache-dir))
(defn rootname
"Returns the name of the file without the containing directory or
the extension."
[file] (#(subs % 0 (- (count %) 4)) (.getName file)))
(defn cache-file-for
"Return a specific cache file for this PDF, using the prefix, root-name of the PDF, and the suffix."
[prefix suffix pdf]
(let [rootname (rootname pdf)]
(file (cache-directory pdf) (str prefix rootname suffix))))
(defn clear-dray-cache-for
"Remove all cache files for this PDF's cache (which includes the cache files for all sibling PDFs as well)."
[input-pdf]
(delete-directory (cache-directory input-pdf)))
(defn resolve-cache-file-for
"Given a PDF file and another path (as a file), merge the other path
with the cache directory for the given PDF file. Attempts to account
for overlapping path elements."
[pdf other-path]
(let [cache-dir (cache-directory pdf)
other-path-elements (path-elements other-path)
cache-dir-name? #(= ".dray-cache" %)]
(cond
(.startsWith (.getPath other-path) (.getPath cache-dir))
other-path
(some cache-dir-name? other-path-elements)
(apply file cache-dir (rest (drop-while (complement cache-dir-name?) other-path-elements)))
:else
(file cache-dir other-path))))
;;; TYPE COOERCION
(defn ->url
"Cooerce the argument, which must be a file or a string (assumed to be
a filename), to a URL."
[x]
(cond (instance? URL x) x
(instance? File x) (as-url x)
(instance? String x) (as-url (file x))
:else #_(uerror "Could not coorce " x " into a URL.") ; 2014-10-23
(uerr IllegalArgumentException "Could not coorce %s into a URL" x)
))
(defn ->filename
"Coorce the argument, assumed to be a file or a filename string, into a
filename string."
[x]
(cond (instance? String x) x
(instance? File x) (.getPath x)
:else #_(uerror "Could not coorce " x " into a filename string") ; 2014-10-23
(uerr IllegalArgumentException "Could not coerce %s into a filename string." x)))
(def ->file "Coorce argument into a file." file)
(defn file? "Is this a file?" [x] (instance? java.io.File x))
;;; CLASS HIERARCHIES
(defn ordered-ancestors
"Ordered list of class ancestors for this class, most specific first."
[c]
(let [sup (.getSuperclass c)]
(if (nil? sup) '() (cons sup (ordered-ancestors sup)))))
(defn common-ancestors [c1 c2]
(intersection (set (ordered-ancestors c1)) (set (ordered-ancestors c2))))
;;; SEQUENCE UTILITIES
(defn every-other [s] (if (empty? s) s (cons (first s) (every-other (nthrest s 2)))))
(defn pairwise-group-by [s test-fn]
{:pre [(coll? s)]}
(let [good-partition? (fn [[g]] (test-fn (first g) (second g))) ; Partition meets test?
partitions (partition-by (fn [[a b]] (test-fn a b)) (map vector s (rest s)))]
(map (fn [res] (cons (first (first res)) (map second res)))
(every-other
(if (good-partition? (first partitions)) partitions (rest partitions))))))
(defn pairwise-split-when
"Split the given collection at the point between the pair of items
that meet the given test. For example, given a test of =, for
(1 2 3 3 4) return [[1 2 3] (3 4)]."
[f coll]
(loop [head '[], tail coll]
(let [[a b & r] tail]
#_(println (format "head: %s tail: %s a: %s b: %s" head tail a b))
(cond
(nil? b) [(if a (conj head a) head) '[]]
(f a b) [(conj head a) (rest tail)]
:else (recur (conj head a) (rest tail))))))
(defn pairwise-partition-when
"Just like pairwise-split-when, but returns a partitioning instead of
a single split. For example, (pairwise-partition-when = '(1 2 2 3 4 4 5))
should return [[1 2] [2 3 4] [4 5]]."
[f coll]
(loop [so-far '[], remaining coll]
(let [[head tail] (pairwise-split-when f remaining)]
(cond
(empty? tail) (conj so-far head) ; done.
:else (recur (conj so-far head) tail)))))
(defn pairwise-replace
"Runs the given *test-fn* on adjacent pairs of items in sequence *s*. When the test is true,
replaces the pair of items with a new item created by passing those two items to *merge-fn*.
The replacement item will then be tested against the next item in the sequence, so that
multiple merges may take place.
Does not currently handle nil item values well.
Example: Replace pairs of equal numbers with their sum:
`(pairwise-replace '(1 2 2 3 4 5 5 10 11) = +)` ; Returns (1 4 3 4 20 11). Note that 5, 5 = 10 + 10 = 20.
"
[s test-fn merge-fn]
(loop [[a b & r :as all] s, res (list)]
#_(println (format "A: %s B: %s Res: %s" a b res))
(cond (empty? all) all
(empty? (rest all)) (reverse (cons a res))
(test-fn a b) (recur (cons (merge-fn a b) r) res)
:else (recur (cons b r) (cons a res)))))
(defn instances "Return all instances of a class from given collection." [c coll]
(filter #(instance? c %) coll))
(defn decode-url "Given a URL string, replace the encoded elements with the original
string elements -- e.g., %20 -> space."
[url-string]
(java.net.URLDecoder/decode url-string))
(defn meta-seq
"Create a meta-sequence by running the given function on all sequential pairs of the sequence."
[fn s]
(map fn s (rest s)))
|
40451
|
;;;; Name: dray.util
;;;; Purpose: Utility code.
;;;; Written by: <NAME>, Leidos
;;;; Created: 2014-04-26
;;;; Updated: 2014-05-08
;;;;
(ns dray.util
"Utility routines used by DRAY. These routines are not part of the API, and may change, but
are documented here for reference."
(:import (java.io File)
(java.net URL)
(java.nio.file Path)
(java.lang String)
(java.rmi.dgc VMID))
(:require [clojure.java.io :refer [file as-url]]
[clojure.set :refer [intersection]]
[clojure.string :as s])
)
;;; DEFCONST -- DEFINING SINGLE OR MULTIPLE CONSTANT VALUES.
(defn- expand-defconst [[name val]]
`(def ~(with-meta name (assoc (meta name) :const true)) ~val))
(defn- expand-defconsts [name-value-pairs]
(map expand-defconst (partition 2 name-value-pairs)))
(defmacro defconst
"Define one or more constants, given as a list of name / value pairs."
[constant-name assigned-value & additional-pairs]
(cons 'do
(expand-defconsts `(~constant-name ~assigned-value ~@additional-pairs))))
(defn java-version "Current Java version as string." []
(java.lang.System/getProperty "java.version"))
;;; TESTING COMPARATORS
(defn expand-map-selector-fn [xvar args]
(let [make-key-selector-pair (fn [[k sel]] `(~k ((memfn ~sel) ~xvar)))]
`(hash-map ~@(mapcat make-key-selector-pair (partition 2 args)))))
(defmacro map-selector-fn
"Given an alternating list of keywords and Java methods, returns
a function that, when passed a Java object, returns a hashmap
of the keys and the results of the selectors on the given object.
Example: (map-selector-fn :name getName :parent getParent)."
[& key-selector-args]
(let [xvar `x#] ; hygenic
`(fn [~xvar] ~(expand-map-selector-fn xvar key-selector-args))))
(defn file-type?
"Returns true if a file has the given extension."
[a-file extension]
(.endsWith (.getName a-file) extension))
;;;; ERROR MESSAGES
(defmacro uerror
"User error message. Takes the arguments and passes then to `str` to create a general Exception with that message.
Depracated in favor of uerr."
[& msg-args]
`(throw (Exception. (str "- " ~@msg-args))))
(defmacro error-when
"If the given expression evaluates to true, signal a general error with the given arguments, which are
passed to `str`."
[cond-exp & msg-args]
`(when ~cond-exp (uerror ~@msg-args)))
(defmacro uerr
"Takes an optional Exception class, a format string, and a set of arguments. Will throw
the exception and print out the error message."
[& args]
(let [first-arg-string? (string? (first args))
e (if first-arg-string? java.lang.Exception (first args))
fmt (if first-arg-string? (first args) (second args))
fmt-args (if first-arg-string? (rest args) (nthrest args 2))]
`(throw (new ~e (format ~fmt ~@fmt-args)))))
;;; CAMELCASE CONVERSION
(defn hyphenate-camelcase [camelcase-string]
(s/lower-case (s/replace camelcase-string #"([a-z])([A-Z])" "$1-$2")))
(defn hyphenate-classname [class] (hyphenate-camelcase (.getSimpleName class)))
;;; KEYWORDS
(def de-keyword
"Remove colon from front of keyword, returning regular symbol."
(comp symbol name))
;;; CLASS NAMES
(defn namespace? "Is this a namespace?"
[x] (instance? clojure.lang.Namespace x))
(defn full-classname-for-symbol
"Given a single symbol representing a classname, attempt to find the full
classname reference in the given namespace. Uses the current namespace
(*ns*) if none is given. Can also accept a namespace instance instead
of a namespace name."
([class-symbol ns-symbol]
(let [the-ns (if (namespace? ns-symbol) ns-symbol (find-ns ns-symbol))
found-class (ns-resolve the-ns class-symbol)]
(when-not found-class (uerr "Could not find full classname for symbol %s." class-symbol))
(.getCanonicalName found-class)))
([class-symbol] (full-classname-for-symbol class-symbol *ns*)))
;;; RETRIEVING PRIVATE FUNCTIONS FOR TESTING
(defmacro private-function
"Retrieves the function from a namespace, even if it is internal. Nil if not
found. This function is useful for testing functions that are kept private
(e.g., an internal function that is important to test, but not part of the API."
[name ns]
`(let [name# '~name
ns# '~ns
result# (get (ns-interns (find-ns ns#)) name#)]
(or result# (uerr "Could not find private function %s in namespace %s." name# ns#))))
;;; CREATE A FUNCTION REPRESENTING A PROTECTED FIELD
(defn protected-field-fn
"Returns a function that get the value of a protected field."
[class fieldname]
(let [field
(try (.getDeclaredField class fieldname)
(catch Exception e (uerr "protected-field-fn - could not find field %s in %s: %s"
fieldname class e)))]
(.setAccessible field true)
#(.get field %)
))
#_(defn protected-method-fn
"Returns a funtion that calls a protected method for the given class."
[class methodname args]
(let [method
(try (.getDeclaredMethod class methodname)
(catch Exception e (uerr "protected-method-fn - could not find method %s in %s: %s"
methodname class e)))]
(.setAccessible method true)
method
))
;;; DELETE A DIRECTORY
(defn delete-directory
"Delete a directory, even if it contains files. Use with caution.
Verbose by default."
([dir verbose?]
(doseq [f (reverse (file-seq dir))] ;; Leaves first.
(if verbose? (print "Deleting " f "\n"))
(let [res
(try (.delete f)
(catch Exception e
(println (str "Could not delete " f " " (.getMessage e)))))]
(when-not res
(println "Could not delete directory " dir))
)))
([dir] (delete-directory dir true)))
;; PATHS
(defn path-elements "Names constituting the file's path, in order." [f]
(map str (iterator-seq (.iterator (.toPath f)))))
;; CACHE DIRECTORY
(defonce current-cache-dirs #_"Current set of cache directory files." (atom #{}))
(defn retrieve-current-cache-dirs []
; (println "Current cache dirs are " @current-cache-dirs)
@current-cache-dirs)
(defn delete-current-cache-dirs
"Delete all the cache directories created or referenced during this session thus far."
[]
; (println "Starting to delete cache dirs.")
(let [cache-dirs (retrieve-current-cache-dirs)]
; (println "Cache dirs are: " cache-dirs)
(doall (for [d cache-dirs]
(do
(println "Deleting cache directory: " d)
(delete-directory d)))))
true) ; Always returns true (for now).
(defn make-dirs "If directory f does not exist, create it. Returns f."
[f]
(when-not (.exists f) (.mkdirs f))
f)
(defn cache-directory
"The DRAY cache directory for a given file. Always called .dray-cache in the
same directory as the file itself. If cache directory does not exist, creates
it."
[f]
(let [cache-dir (file (str (.getParent f) "/.dray-cache"))]
(make-dirs cache-dir)
(swap! current-cache-dirs conj cache-dir) ;; Add to list of cache directories.
(.deleteOnExit cache-dir) ;; When JVM exits, remove dray-cache.
cache-dir))
(defn rootname
"Returns the name of the file without the containing directory or
the extension."
[file] (#(subs % 0 (- (count %) 4)) (.getName file)))
(defn cache-file-for
"Return a specific cache file for this PDF, using the prefix, root-name of the PDF, and the suffix."
[prefix suffix pdf]
(let [rootname (rootname pdf)]
(file (cache-directory pdf) (str prefix rootname suffix))))
(defn clear-dray-cache-for
"Remove all cache files for this PDF's cache (which includes the cache files for all sibling PDFs as well)."
[input-pdf]
(delete-directory (cache-directory input-pdf)))
(defn resolve-cache-file-for
"Given a PDF file and another path (as a file), merge the other path
with the cache directory for the given PDF file. Attempts to account
for overlapping path elements."
[pdf other-path]
(let [cache-dir (cache-directory pdf)
other-path-elements (path-elements other-path)
cache-dir-name? #(= ".dray-cache" %)]
(cond
(.startsWith (.getPath other-path) (.getPath cache-dir))
other-path
(some cache-dir-name? other-path-elements)
(apply file cache-dir (rest (drop-while (complement cache-dir-name?) other-path-elements)))
:else
(file cache-dir other-path))))
;;; TYPE COOERCION
(defn ->url
"Cooerce the argument, which must be a file or a string (assumed to be
a filename), to a URL."
[x]
(cond (instance? URL x) x
(instance? File x) (as-url x)
(instance? String x) (as-url (file x))
:else #_(uerror "Could not coorce " x " into a URL.") ; 2014-10-23
(uerr IllegalArgumentException "Could not coorce %s into a URL" x)
))
(defn ->filename
"Coorce the argument, assumed to be a file or a filename string, into a
filename string."
[x]
(cond (instance? String x) x
(instance? File x) (.getPath x)
:else #_(uerror "Could not coorce " x " into a filename string") ; 2014-10-23
(uerr IllegalArgumentException "Could not coerce %s into a filename string." x)))
(def ->file "Coorce argument into a file." file)
(defn file? "Is this a file?" [x] (instance? java.io.File x))
;;; CLASS HIERARCHIES
(defn ordered-ancestors
"Ordered list of class ancestors for this class, most specific first."
[c]
(let [sup (.getSuperclass c)]
(if (nil? sup) '() (cons sup (ordered-ancestors sup)))))
(defn common-ancestors [c1 c2]
(intersection (set (ordered-ancestors c1)) (set (ordered-ancestors c2))))
;;; SEQUENCE UTILITIES
(defn every-other [s] (if (empty? s) s (cons (first s) (every-other (nthrest s 2)))))
(defn pairwise-group-by [s test-fn]
{:pre [(coll? s)]}
(let [good-partition? (fn [[g]] (test-fn (first g) (second g))) ; Partition meets test?
partitions (partition-by (fn [[a b]] (test-fn a b)) (map vector s (rest s)))]
(map (fn [res] (cons (first (first res)) (map second res)))
(every-other
(if (good-partition? (first partitions)) partitions (rest partitions))))))
(defn pairwise-split-when
"Split the given collection at the point between the pair of items
that meet the given test. For example, given a test of =, for
(1 2 3 3 4) return [[1 2 3] (3 4)]."
[f coll]
(loop [head '[], tail coll]
(let [[a b & r] tail]
#_(println (format "head: %s tail: %s a: %s b: %s" head tail a b))
(cond
(nil? b) [(if a (conj head a) head) '[]]
(f a b) [(conj head a) (rest tail)]
:else (recur (conj head a) (rest tail))))))
(defn pairwise-partition-when
"Just like pairwise-split-when, but returns a partitioning instead of
a single split. For example, (pairwise-partition-when = '(1 2 2 3 4 4 5))
should return [[1 2] [2 3 4] [4 5]]."
[f coll]
(loop [so-far '[], remaining coll]
(let [[head tail] (pairwise-split-when f remaining)]
(cond
(empty? tail) (conj so-far head) ; done.
:else (recur (conj so-far head) tail)))))
(defn pairwise-replace
"Runs the given *test-fn* on adjacent pairs of items in sequence *s*. When the test is true,
replaces the pair of items with a new item created by passing those two items to *merge-fn*.
The replacement item will then be tested against the next item in the sequence, so that
multiple merges may take place.
Does not currently handle nil item values well.
Example: Replace pairs of equal numbers with their sum:
`(pairwise-replace '(1 2 2 3 4 5 5 10 11) = +)` ; Returns (1 4 3 4 20 11). Note that 5, 5 = 10 + 10 = 20.
"
[s test-fn merge-fn]
(loop [[a b & r :as all] s, res (list)]
#_(println (format "A: %s B: %s Res: %s" a b res))
(cond (empty? all) all
(empty? (rest all)) (reverse (cons a res))
(test-fn a b) (recur (cons (merge-fn a b) r) res)
:else (recur (cons b r) (cons a res)))))
(defn instances "Return all instances of a class from given collection." [c coll]
(filter #(instance? c %) coll))
(defn decode-url "Given a URL string, replace the encoded elements with the original
string elements -- e.g., %20 -> space."
[url-string]
(java.net.URLDecoder/decode url-string))
(defn meta-seq
"Create a meta-sequence by running the given function on all sequential pairs of the sequence."
[fn s]
(map fn s (rest s)))
| true |
;;;; Name: dray.util
;;;; Purpose: Utility code.
;;;; Written by: PI:NAME:<NAME>END_PI, Leidos
;;;; Created: 2014-04-26
;;;; Updated: 2014-05-08
;;;;
(ns dray.util
"Utility routines used by DRAY. These routines are not part of the API, and may change, but
are documented here for reference."
(:import (java.io File)
(java.net URL)
(java.nio.file Path)
(java.lang String)
(java.rmi.dgc VMID))
(:require [clojure.java.io :refer [file as-url]]
[clojure.set :refer [intersection]]
[clojure.string :as s])
)
;;; DEFCONST -- DEFINING SINGLE OR MULTIPLE CONSTANT VALUES.
(defn- expand-defconst [[name val]]
`(def ~(with-meta name (assoc (meta name) :const true)) ~val))
(defn- expand-defconsts [name-value-pairs]
(map expand-defconst (partition 2 name-value-pairs)))
(defmacro defconst
"Define one or more constants, given as a list of name / value pairs."
[constant-name assigned-value & additional-pairs]
(cons 'do
(expand-defconsts `(~constant-name ~assigned-value ~@additional-pairs))))
(defn java-version "Current Java version as string." []
(java.lang.System/getProperty "java.version"))
;;; TESTING COMPARATORS
(defn expand-map-selector-fn [xvar args]
(let [make-key-selector-pair (fn [[k sel]] `(~k ((memfn ~sel) ~xvar)))]
`(hash-map ~@(mapcat make-key-selector-pair (partition 2 args)))))
(defmacro map-selector-fn
"Given an alternating list of keywords and Java methods, returns
a function that, when passed a Java object, returns a hashmap
of the keys and the results of the selectors on the given object.
Example: (map-selector-fn :name getName :parent getParent)."
[& key-selector-args]
(let [xvar `x#] ; hygenic
`(fn [~xvar] ~(expand-map-selector-fn xvar key-selector-args))))
(defn file-type?
"Returns true if a file has the given extension."
[a-file extension]
(.endsWith (.getName a-file) extension))
;;;; ERROR MESSAGES
(defmacro uerror
"User error message. Takes the arguments and passes then to `str` to create a general Exception with that message.
Depracated in favor of uerr."
[& msg-args]
`(throw (Exception. (str "- " ~@msg-args))))
(defmacro error-when
"If the given expression evaluates to true, signal a general error with the given arguments, which are
passed to `str`."
[cond-exp & msg-args]
`(when ~cond-exp (uerror ~@msg-args)))
(defmacro uerr
"Takes an optional Exception class, a format string, and a set of arguments. Will throw
the exception and print out the error message."
[& args]
(let [first-arg-string? (string? (first args))
e (if first-arg-string? java.lang.Exception (first args))
fmt (if first-arg-string? (first args) (second args))
fmt-args (if first-arg-string? (rest args) (nthrest args 2))]
`(throw (new ~e (format ~fmt ~@fmt-args)))))
;;; CAMELCASE CONVERSION
(defn hyphenate-camelcase [camelcase-string]
(s/lower-case (s/replace camelcase-string #"([a-z])([A-Z])" "$1-$2")))
(defn hyphenate-classname [class] (hyphenate-camelcase (.getSimpleName class)))
;;; KEYWORDS
(def de-keyword
"Remove colon from front of keyword, returning regular symbol."
(comp symbol name))
;;; CLASS NAMES
(defn namespace? "Is this a namespace?"
[x] (instance? clojure.lang.Namespace x))
(defn full-classname-for-symbol
"Given a single symbol representing a classname, attempt to find the full
classname reference in the given namespace. Uses the current namespace
(*ns*) if none is given. Can also accept a namespace instance instead
of a namespace name."
([class-symbol ns-symbol]
(let [the-ns (if (namespace? ns-symbol) ns-symbol (find-ns ns-symbol))
found-class (ns-resolve the-ns class-symbol)]
(when-not found-class (uerr "Could not find full classname for symbol %s." class-symbol))
(.getCanonicalName found-class)))
([class-symbol] (full-classname-for-symbol class-symbol *ns*)))
;;; RETRIEVING PRIVATE FUNCTIONS FOR TESTING
(defmacro private-function
"Retrieves the function from a namespace, even if it is internal. Nil if not
found. This function is useful for testing functions that are kept private
(e.g., an internal function that is important to test, but not part of the API."
[name ns]
`(let [name# '~name
ns# '~ns
result# (get (ns-interns (find-ns ns#)) name#)]
(or result# (uerr "Could not find private function %s in namespace %s." name# ns#))))
;;; CREATE A FUNCTION REPRESENTING A PROTECTED FIELD
(defn protected-field-fn
"Returns a function that get the value of a protected field."
[class fieldname]
(let [field
(try (.getDeclaredField class fieldname)
(catch Exception e (uerr "protected-field-fn - could not find field %s in %s: %s"
fieldname class e)))]
(.setAccessible field true)
#(.get field %)
))
#_(defn protected-method-fn
"Returns a funtion that calls a protected method for the given class."
[class methodname args]
(let [method
(try (.getDeclaredMethod class methodname)
(catch Exception e (uerr "protected-method-fn - could not find method %s in %s: %s"
methodname class e)))]
(.setAccessible method true)
method
))
;;; DELETE A DIRECTORY
(defn delete-directory
"Delete a directory, even if it contains files. Use with caution.
Verbose by default."
([dir verbose?]
(doseq [f (reverse (file-seq dir))] ;; Leaves first.
(if verbose? (print "Deleting " f "\n"))
(let [res
(try (.delete f)
(catch Exception e
(println (str "Could not delete " f " " (.getMessage e)))))]
(when-not res
(println "Could not delete directory " dir))
)))
([dir] (delete-directory dir true)))
;; PATHS
(defn path-elements "Names constituting the file's path, in order." [f]
(map str (iterator-seq (.iterator (.toPath f)))))
;; CACHE DIRECTORY
(defonce current-cache-dirs #_"Current set of cache directory files." (atom #{}))
(defn retrieve-current-cache-dirs []
; (println "Current cache dirs are " @current-cache-dirs)
@current-cache-dirs)
(defn delete-current-cache-dirs
"Delete all the cache directories created or referenced during this session thus far."
[]
; (println "Starting to delete cache dirs.")
(let [cache-dirs (retrieve-current-cache-dirs)]
; (println "Cache dirs are: " cache-dirs)
(doall (for [d cache-dirs]
(do
(println "Deleting cache directory: " d)
(delete-directory d)))))
true) ; Always returns true (for now).
(defn make-dirs "If directory f does not exist, create it. Returns f."
[f]
(when-not (.exists f) (.mkdirs f))
f)
(defn cache-directory
"The DRAY cache directory for a given file. Always called .dray-cache in the
same directory as the file itself. If cache directory does not exist, creates
it."
[f]
(let [cache-dir (file (str (.getParent f) "/.dray-cache"))]
(make-dirs cache-dir)
(swap! current-cache-dirs conj cache-dir) ;; Add to list of cache directories.
(.deleteOnExit cache-dir) ;; When JVM exits, remove dray-cache.
cache-dir))
(defn rootname
"Returns the name of the file without the containing directory or
the extension."
[file] (#(subs % 0 (- (count %) 4)) (.getName file)))
(defn cache-file-for
"Return a specific cache file for this PDF, using the prefix, root-name of the PDF, and the suffix."
[prefix suffix pdf]
(let [rootname (rootname pdf)]
(file (cache-directory pdf) (str prefix rootname suffix))))
(defn clear-dray-cache-for
"Remove all cache files for this PDF's cache (which includes the cache files for all sibling PDFs as well)."
[input-pdf]
(delete-directory (cache-directory input-pdf)))
(defn resolve-cache-file-for
"Given a PDF file and another path (as a file), merge the other path
with the cache directory for the given PDF file. Attempts to account
for overlapping path elements."
[pdf other-path]
(let [cache-dir (cache-directory pdf)
other-path-elements (path-elements other-path)
cache-dir-name? #(= ".dray-cache" %)]
(cond
(.startsWith (.getPath other-path) (.getPath cache-dir))
other-path
(some cache-dir-name? other-path-elements)
(apply file cache-dir (rest (drop-while (complement cache-dir-name?) other-path-elements)))
:else
(file cache-dir other-path))))
;;; TYPE COOERCION
(defn ->url
"Cooerce the argument, which must be a file or a string (assumed to be
a filename), to a URL."
[x]
(cond (instance? URL x) x
(instance? File x) (as-url x)
(instance? String x) (as-url (file x))
:else #_(uerror "Could not coorce " x " into a URL.") ; 2014-10-23
(uerr IllegalArgumentException "Could not coorce %s into a URL" x)
))
(defn ->filename
"Coorce the argument, assumed to be a file or a filename string, into a
filename string."
[x]
(cond (instance? String x) x
(instance? File x) (.getPath x)
:else #_(uerror "Could not coorce " x " into a filename string") ; 2014-10-23
(uerr IllegalArgumentException "Could not coerce %s into a filename string." x)))
(def ->file "Coorce argument into a file." file)
(defn file? "Is this a file?" [x] (instance? java.io.File x))
;;; CLASS HIERARCHIES
(defn ordered-ancestors
"Ordered list of class ancestors for this class, most specific first."
[c]
(let [sup (.getSuperclass c)]
(if (nil? sup) '() (cons sup (ordered-ancestors sup)))))
(defn common-ancestors [c1 c2]
(intersection (set (ordered-ancestors c1)) (set (ordered-ancestors c2))))
;;; SEQUENCE UTILITIES
(defn every-other [s] (if (empty? s) s (cons (first s) (every-other (nthrest s 2)))))
(defn pairwise-group-by [s test-fn]
{:pre [(coll? s)]}
(let [good-partition? (fn [[g]] (test-fn (first g) (second g))) ; Partition meets test?
partitions (partition-by (fn [[a b]] (test-fn a b)) (map vector s (rest s)))]
(map (fn [res] (cons (first (first res)) (map second res)))
(every-other
(if (good-partition? (first partitions)) partitions (rest partitions))))))
(defn pairwise-split-when
"Split the given collection at the point between the pair of items
that meet the given test. For example, given a test of =, for
(1 2 3 3 4) return [[1 2 3] (3 4)]."
[f coll]
(loop [head '[], tail coll]
(let [[a b & r] tail]
#_(println (format "head: %s tail: %s a: %s b: %s" head tail a b))
(cond
(nil? b) [(if a (conj head a) head) '[]]
(f a b) [(conj head a) (rest tail)]
:else (recur (conj head a) (rest tail))))))
(defn pairwise-partition-when
"Just like pairwise-split-when, but returns a partitioning instead of
a single split. For example, (pairwise-partition-when = '(1 2 2 3 4 4 5))
should return [[1 2] [2 3 4] [4 5]]."
[f coll]
(loop [so-far '[], remaining coll]
(let [[head tail] (pairwise-split-when f remaining)]
(cond
(empty? tail) (conj so-far head) ; done.
:else (recur (conj so-far head) tail)))))
(defn pairwise-replace
"Runs the given *test-fn* on adjacent pairs of items in sequence *s*. When the test is true,
replaces the pair of items with a new item created by passing those two items to *merge-fn*.
The replacement item will then be tested against the next item in the sequence, so that
multiple merges may take place.
Does not currently handle nil item values well.
Example: Replace pairs of equal numbers with their sum:
`(pairwise-replace '(1 2 2 3 4 5 5 10 11) = +)` ; Returns (1 4 3 4 20 11). Note that 5, 5 = 10 + 10 = 20.
"
[s test-fn merge-fn]
(loop [[a b & r :as all] s, res (list)]
#_(println (format "A: %s B: %s Res: %s" a b res))
(cond (empty? all) all
(empty? (rest all)) (reverse (cons a res))
(test-fn a b) (recur (cons (merge-fn a b) r) res)
:else (recur (cons b r) (cons a res)))))
(defn instances "Return all instances of a class from given collection." [c coll]
(filter #(instance? c %) coll))
(defn decode-url "Given a URL string, replace the encoded elements with the original
string elements -- e.g., %20 -> space."
[url-string]
(java.net.URLDecoder/decode url-string))
(defn meta-seq
"Create a meta-sequence by running the given function on all sequential pairs of the sequence."
[fn s]
(map fn s (rest s)))
|
[
{
"context": "9.5-pre10\"]\n [com.oracle/ojdbc7 \"12.1.0.1\"]\n [org.postgresql/postgresql \"9.",
"end": 1033,
"score": 0.6921600103378296,
"start": 1026,
"tag": "IP_ADDRESS",
"value": "2.1.0.1"
}
] |
project.clj
|
ithaka/artstor-group-service-os
| 0 |
(defproject artstor-group-service "0.0.7-SNAPSHOT"
:description "AIW Group Service"
:url "http://www.artstor.org/"
:license {:name "MIT License"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/data.json "0.2.6"]
[org.clojure/data.codec "0.1.0"]
[org.clojure/core.cache "0.6.5"]
[org.clojure/test.check "0.9.0"]
[org.clojure/tools.logging "0.3.1"]
[org.sharetribe/aws-sig4 "0.1.2"]
[com.amazonaws/aws-java-sdk-core "1.11.98"]
[clj-sequoia "3.0.3"]
[ring "1.6.2"]
[ring/ring-json "0.4.0"]
[ring/ring-mock "0.3.0"]
[ring-logger "0.7.7"]
[clj-time "0.13.0"]
[clojurewerkz/elastisch "3.0.0-beta1"]
[yesql "0.5.3"]
[com.mchange/c3p0 "0.9.5-pre10"]
[com.oracle/ojdbc7 "12.1.0.1"]
[org.postgresql/postgresql "9.4-1201-jdbc41"]
[ragtime "0.6.3"]
[environ "1.1.0"]
[metosin/compojure-api "1.2.0-alpha5"]
[prismatic/schema "1.1.3"]
[buddy/buddy-auth "1.4.1"]
[org.ithaka/clj-iacauth "1.1.3"]
[org.ithaka.artstor/captains-common "0.4.2"]
[clojure-future-spec "1.9.0-alpha15"]
;; Use Logback as the main logging implementation:
[ch.qos.logback/logback-classic "1.1.9"]
[ch.qos.logback/logback-core "1.1.9"]
;; Logback implements the SLF4J API:
[org.slf4j/slf4j-api "1.7.22"]
;; Redirect Apache Commons Logging to Logback via the SLF4J API:
[org.slf4j/jcl-over-slf4j "1.7.22"]
;; Redirect Log4j 1.x to Logback via the SLF4J API:
[org.slf4j/log4j-over-slf4j "1.7.22"]
;; Redirect Log4j 2.x to Logback via the SLF4J API:
[org.apache.logging.log4j/log4j-to-slf4j "2.7"]
;; Redirect OSGI LogService to Logback via the SLF4J API
[org.slf4j/osgi-over-slf4j "1.7.22"]
;; Redirect java.util.logging to Logback via the SLF4J API.
;; Requires installing the bridge handler, see README:
[org.slf4j/jul-to-slf4j "1.7.22"]]
:exclusions [;; Exclude transitive dependencies on all other logging
;; implementations, including other SLF4J bridges.
commons-logging
log4j
org.apache.logging.log4j/log4j
org.slf4j/simple
org.slf4j/slf4j-jcl
org.slf4j/slf4j-nop
org.slf4j/slf4j-log4j12
org.slf4j/slf4j-log4j13]
:profiles {:test {:env {:artstor-group-db-url "jdbc:h2:/tmp/artstor-group-test.db"
:artstor-oracle-db-url "jdbc:h2:/tmp/artstor-group-test.db"}
:dependencies [[cheshire "5.7.0"]
[szew/h2 "0.1.1"]
[org.clojure/tools.nrepl "0.2.12"]
[org.clojure/test.check "0.9.0"]
[ragtime "0.6.3"]]
:ragtime {:database "jdbc:h2:/tmp/artstor-group-test.db"}}}
:plugins [[lein-modules "0.3.11"]
[lein-ring "0.10.0"]
[lein-environ "1.1.0"]
[lein-marginalia "0.9.0"]]
:ring {:handler artstor-group-service.core/app :port 8080})
|
25559
|
(defproject artstor-group-service "0.0.7-SNAPSHOT"
:description "AIW Group Service"
:url "http://www.artstor.org/"
:license {:name "MIT License"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/data.json "0.2.6"]
[org.clojure/data.codec "0.1.0"]
[org.clojure/core.cache "0.6.5"]
[org.clojure/test.check "0.9.0"]
[org.clojure/tools.logging "0.3.1"]
[org.sharetribe/aws-sig4 "0.1.2"]
[com.amazonaws/aws-java-sdk-core "1.11.98"]
[clj-sequoia "3.0.3"]
[ring "1.6.2"]
[ring/ring-json "0.4.0"]
[ring/ring-mock "0.3.0"]
[ring-logger "0.7.7"]
[clj-time "0.13.0"]
[clojurewerkz/elastisch "3.0.0-beta1"]
[yesql "0.5.3"]
[com.mchange/c3p0 "0.9.5-pre10"]
[com.oracle/ojdbc7 "1192.168.127.12"]
[org.postgresql/postgresql "9.4-1201-jdbc41"]
[ragtime "0.6.3"]
[environ "1.1.0"]
[metosin/compojure-api "1.2.0-alpha5"]
[prismatic/schema "1.1.3"]
[buddy/buddy-auth "1.4.1"]
[org.ithaka/clj-iacauth "1.1.3"]
[org.ithaka.artstor/captains-common "0.4.2"]
[clojure-future-spec "1.9.0-alpha15"]
;; Use Logback as the main logging implementation:
[ch.qos.logback/logback-classic "1.1.9"]
[ch.qos.logback/logback-core "1.1.9"]
;; Logback implements the SLF4J API:
[org.slf4j/slf4j-api "1.7.22"]
;; Redirect Apache Commons Logging to Logback via the SLF4J API:
[org.slf4j/jcl-over-slf4j "1.7.22"]
;; Redirect Log4j 1.x to Logback via the SLF4J API:
[org.slf4j/log4j-over-slf4j "1.7.22"]
;; Redirect Log4j 2.x to Logback via the SLF4J API:
[org.apache.logging.log4j/log4j-to-slf4j "2.7"]
;; Redirect OSGI LogService to Logback via the SLF4J API
[org.slf4j/osgi-over-slf4j "1.7.22"]
;; Redirect java.util.logging to Logback via the SLF4J API.
;; Requires installing the bridge handler, see README:
[org.slf4j/jul-to-slf4j "1.7.22"]]
:exclusions [;; Exclude transitive dependencies on all other logging
;; implementations, including other SLF4J bridges.
commons-logging
log4j
org.apache.logging.log4j/log4j
org.slf4j/simple
org.slf4j/slf4j-jcl
org.slf4j/slf4j-nop
org.slf4j/slf4j-log4j12
org.slf4j/slf4j-log4j13]
:profiles {:test {:env {:artstor-group-db-url "jdbc:h2:/tmp/artstor-group-test.db"
:artstor-oracle-db-url "jdbc:h2:/tmp/artstor-group-test.db"}
:dependencies [[cheshire "5.7.0"]
[szew/h2 "0.1.1"]
[org.clojure/tools.nrepl "0.2.12"]
[org.clojure/test.check "0.9.0"]
[ragtime "0.6.3"]]
:ragtime {:database "jdbc:h2:/tmp/artstor-group-test.db"}}}
:plugins [[lein-modules "0.3.11"]
[lein-ring "0.10.0"]
[lein-environ "1.1.0"]
[lein-marginalia "0.9.0"]]
:ring {:handler artstor-group-service.core/app :port 8080})
| true |
(defproject artstor-group-service "0.0.7-SNAPSHOT"
:description "AIW Group Service"
:url "http://www.artstor.org/"
:license {:name "MIT License"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/data.json "0.2.6"]
[org.clojure/data.codec "0.1.0"]
[org.clojure/core.cache "0.6.5"]
[org.clojure/test.check "0.9.0"]
[org.clojure/tools.logging "0.3.1"]
[org.sharetribe/aws-sig4 "0.1.2"]
[com.amazonaws/aws-java-sdk-core "1.11.98"]
[clj-sequoia "3.0.3"]
[ring "1.6.2"]
[ring/ring-json "0.4.0"]
[ring/ring-mock "0.3.0"]
[ring-logger "0.7.7"]
[clj-time "0.13.0"]
[clojurewerkz/elastisch "3.0.0-beta1"]
[yesql "0.5.3"]
[com.mchange/c3p0 "0.9.5-pre10"]
[com.oracle/ojdbc7 "1PI:IP_ADDRESS:192.168.127.12END_PI"]
[org.postgresql/postgresql "9.4-1201-jdbc41"]
[ragtime "0.6.3"]
[environ "1.1.0"]
[metosin/compojure-api "1.2.0-alpha5"]
[prismatic/schema "1.1.3"]
[buddy/buddy-auth "1.4.1"]
[org.ithaka/clj-iacauth "1.1.3"]
[org.ithaka.artstor/captains-common "0.4.2"]
[clojure-future-spec "1.9.0-alpha15"]
;; Use Logback as the main logging implementation:
[ch.qos.logback/logback-classic "1.1.9"]
[ch.qos.logback/logback-core "1.1.9"]
;; Logback implements the SLF4J API:
[org.slf4j/slf4j-api "1.7.22"]
;; Redirect Apache Commons Logging to Logback via the SLF4J API:
[org.slf4j/jcl-over-slf4j "1.7.22"]
;; Redirect Log4j 1.x to Logback via the SLF4J API:
[org.slf4j/log4j-over-slf4j "1.7.22"]
;; Redirect Log4j 2.x to Logback via the SLF4J API:
[org.apache.logging.log4j/log4j-to-slf4j "2.7"]
;; Redirect OSGI LogService to Logback via the SLF4J API
[org.slf4j/osgi-over-slf4j "1.7.22"]
;; Redirect java.util.logging to Logback via the SLF4J API.
;; Requires installing the bridge handler, see README:
[org.slf4j/jul-to-slf4j "1.7.22"]]
:exclusions [;; Exclude transitive dependencies on all other logging
;; implementations, including other SLF4J bridges.
commons-logging
log4j
org.apache.logging.log4j/log4j
org.slf4j/simple
org.slf4j/slf4j-jcl
org.slf4j/slf4j-nop
org.slf4j/slf4j-log4j12
org.slf4j/slf4j-log4j13]
:profiles {:test {:env {:artstor-group-db-url "jdbc:h2:/tmp/artstor-group-test.db"
:artstor-oracle-db-url "jdbc:h2:/tmp/artstor-group-test.db"}
:dependencies [[cheshire "5.7.0"]
[szew/h2 "0.1.1"]
[org.clojure/tools.nrepl "0.2.12"]
[org.clojure/test.check "0.9.0"]
[ragtime "0.6.3"]]
:ragtime {:database "jdbc:h2:/tmp/artstor-group-test.db"}}}
:plugins [[lein-modules "0.3.11"]
[lein-ring "0.10.0"]
[lein-environ "1.1.0"]
[lein-marginalia "0.9.0"]]
:ring {:handler artstor-group-service.core/app :port 8080})
|
[
{
"context": ".datomic.format :as f]))\n\n(def photo-service-key :system/cloudinary)\n(defn photo-service [chan]\n (cloudinary-test ch",
"end": 410,
"score": 0.9952483177185059,
"start": 393,
"tag": "KEY",
"value": "system/cloudinary"
}
] |
test/eponai/server/api/store/product_test.clj
|
eponai/sulolive
| 181 |
(ns eponai.server.api.store.product-test
(:require
[clojure.test :refer :all]
[eponai.common.database :as db]
[clojure.core.async :as async]
[eponai.server.api.store.test-util :refer [store-test s3-test cloudinary-test]]
[eponai.server.test-util :refer [new-db]]
[eponai.server.api.store :as store]
[eponai.server.datomic.format :as f]))
(def photo-service-key :system/cloudinary)
(defn photo-service [chan]
(cloudinary-test chan))
(defn photo-service-input [url]
{:public_id url
:url url
:resource_type "image"})
;; ######################## CREATE #########################
(deftest create-product-no-image-test
(testing "Create product with no photo should not add photo entity."
(let [;; Prepare existing data, store to be updated
new-store (store-test)
conn (new-db [new-store])
;; Fetch existing data from test DB
db-store (db/pull (db/db conn) [:db/id] [:store/uuid (:store/uuid new-store)])
;; Prepare data for creating new products
params {:store.item/name "product" :store.item/price "10" :store.item/skus [{:store.item.sku/variation "variation"}]}
s3-chan (async/chan 1)]
(store/create-product {:state conn :system {photo-service-key (photo-service s3-chan)}} (:db/id db-store) params)
(let [result-db (db/db conn)
;; Pull new data after creation
new-db-store (db/pull result-db [:db/id {:store/items [:store.item/name :store.item/photos :store.item/skus]}] (:db/id db-store))
db-product (first (get new-db-store :store/items))]
;; Verify
(is (= 1 (count (:store/items new-db-store)) (count (:store.item/skus db-product)))) ;;Verify that our store has one product
(is (= (:store.item/name db-product) (:store.item/name params))) ;;Verify that the store's item is the same as the newly created product
(is (nil? (async/poll! s3-chan))) ;;Verify that S3 was called with the photo we wanted to upload
(is (empty? (get db-product :store.item/photos))))))) ;; Verify that no photo entities were created for the product
(deftest create-product-with-image-test
(testing "Create product with one photo should add one photo entity to that product."
(let [;; Prepare existing data, store to be updated
store (store-test)
conn (new-db [store])
;; Fetch existing data from test DB
db-store (db/pull (db/db conn) [:db/id] [:store/uuid (:store/uuid store)])
;; Prepare data for creating new products
params {:store.item/name "product" :store.item/photos [(photo-service-input "someurl")] :store.item/price "10"}
s3-chan (async/chan 1)]
(store/create-product {:state conn :system {photo-service-key (photo-service s3-chan)}} (:db/id db-store) params)
(let [result-db (db/db conn)
;; Pull new data after creation
new-db-store (db/pull result-db [:db/id {:store/items [:store.item/name
{:store.item/photos [{:store.item.photo/photo [:db/id :photo/path]}]}]}] (:db/id db-store))
db-product (first (get new-db-store :store/items))
item-photos (get db-product :store.item/photos)]
;; Verify
(is (= 1 (count (:store/items new-db-store)))) ;;Verify that our store has one product
(is (= (:store.item/name db-product) (:store.item/name params))) ;;Verify that the store's item is the same as the newly created product
(is (= 1 (count item-photos))) ;; Verify that we now have a photo entity for the product in the DB
(is (= (async/poll! s3-chan)
(get-in (first item-photos) [:store.item.photo/photo :photo/path]))) ;;Verify that S3 was called with the photo we wanted to upload
))))
(deftest create-product-with-multiple-images
(testing "Create product with multiple photos should add all photo entities to that product."
(let [;; Prepare existing data, store to be updated
store (store-test)
conn (new-db [store])
;; Fetch existing data from test DB
db-store (db/pull (db/db conn) [:db/id] [:store/uuid (:store/uuid store)])
;; Prepare data for creating new products
params {:store.item/name "product" :store.item/photos [(photo-service-input "first-photo")
(photo-service-input "second-photo")] :store.item/price "10"}
s3-chan (async/chan 2)]
(store/create-product {:state conn :system {photo-service-key (photo-service s3-chan)}} (:db/id db-store) params)
(let [result-db (db/db conn)
;; Pull new data after creation
new-db-store (db/pull result-db [:db/id {:store/items [:store.item/name
{:store.item/photos [{:store.item.photo/photo [:db/id :photo/path]}]}]}] (:db/id db-store))
db-product (first (get new-db-store :store/items))
item-photos (get db-product :store.item/photos)]
;; Verify
(is (= 1 (count (:store/items new-db-store)))) ;;Verify that our store has one product
(is (= (:store.item/name db-product) (:store.item/name params))) ;;Verify that the store's item is the same as the newly created product
(is (= 2 (count item-photos))) ;; Verify that the new product has two photos
(is (= (into #{} (comp (take 2) (map #(get-in % [:store.item.photo/photo :photo/path])))
item-photos)
(into #{} (take 2) (repeatedly #(async/poll! s3-chan))))) ;;Verify that S3 was called with the photos we wanted to upload
))))
;; ######################### UPDATE ############################
(deftest update-product-with-skus-add-more-skus
(testing "Update a a product with an SKU and add more SKUs, an sku should be created and added to the product."
(let [;; Prepare existing data to be updated
old-sku (f/sku {:store.item.sku/variation "variation"})
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/skus [old-sku])
;; Fetch existing data from our test DB
conn (new-db [(assoc (store-test) :store/items [old-product])])
db-product (db/pull (db/db conn) [:db/id {:store.item/skus [:db/id]}] [:store.item/uuid (:store.item/uuid old-product)])
;; Prepare our update parameters
new-params {:store.item/name "product-updated" :store.item/skus [old-sku
{:store.item.sku/variation "variation-2"}]}]
(store/update-product {:state conn} (:db/id db-product) new-params)
(let [result-db (db/db conn)
;; Pull new data after update
new-db-product (db/pull result-db [:db/id :store.item/name :store.item/skus] (:db/id db-product))
all-skus (db/all-with result-db {:where '[[?e :store.item.sku/variation]]})]
;; Verify
(is (= (:store.item/name new-db-product) (:store.item/name new-params))) ;; Verify that the name of the updated entity matches our parameters
(is (= 2 (count (get new-db-product :store.item/skus)))) ;; Verify that no new photo entities were created for product
(is (= 2 (count all-skus)))) ;; Verify that we replaced the old photo entities and not created new ones.
)))
(deftest update-product-with-skus-remove-skus
(testing "Update a a product with an SKU and remove some SKUs, they should be retracted from DB and removed from product."
(let [;; Prepare existing data to be updated
old-skus [(f/sku {:store.item.sku/variation "variation-1"})
(f/sku {:store.item.sku/variation "variation-2"})]
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/skus old-skus)
store (assoc (store-test) :store/items [old-product])
;; Fetch existing data from our test DB
conn (new-db [store])
db-product (db/pull (db/db conn) [:db/id {:store.item/skus [:db/id :store.item.sku/variation]}] [:store.item/uuid (:store.item/uuid old-product)])
db-sku (first (:store.item/skus db-product))
;; Prepare our update parameters, add only one SKU (i.e. the other one should be removed)
new-params {:store.item/name "product-updated" :store.item/skus [db-sku]}]
(store/update-product {:state conn} (:db/id db-product) new-params)
(let [result-db (db/db conn)
;; Pull new data after update
new-db-product (db/pull result-db [:db/id :store.item/name :store.item/skus] (:db/id db-product))
all-skus (db/all-with result-db {:where '[[?e :store.item.sku/variation]]})]
;; Verify
(is (= (:store.item/name new-db-product) (:store.item/name new-params))) ;; Verify that the name of the updated entity matches our parameters
(is (= 1 (count (get new-db-product :store.item/skus)))) ;; Verify that our product has only one SKU left
(is (= 1 (count all-skus)))) ;; Verify that we removed one SKU entity from the DB entirely.
)))
;; ################### Photos ##################
(deftest update-product-with-one-image-replace-that-image
(testing "Update a product that has an image with one new image, that image should be replaced."
(let [;; Prepare existing data to be updated
old-photo (f/item-photo {:photo/path "old-photo"
:photo/id "old-photo"} 0)
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/photos [old-photo])
store (assoc (store-test) :store/items [old-product])
;; Fetch existing data from our test DB
conn (new-db [store])
db-product (db/pull (db/db conn) [:db/id :store.item/photos] [:store.item/uuid (:store.item/uuid old-product)])
;; Prepare our update parameters
new-params {:store.item/name "product-updated" :store.item/photos [(photo-service-input "someurl")]}
s3-chan (async/chan 1)]
(store/update-product {:state conn :system {photo-service-key (photo-service s3-chan)}} (:db/id db-product) new-params)
(let [result-db (db/db conn)
;; Pull new data after update
new-db-product (db/pull result-db [:db/id :store.item/name {:store.item/photos [:db/id {:store.item.photo/photo [:db/id :photo/path]}]}] (:db/id db-product))
new-db-photo (first (get new-db-product :store.item/photos))
all-photos (db/all-with result-db {:where '[[?e :photo/path]]})
all-product-photos (db/all-with result-db {:where '[[?e :store.item.photo/photo]]})]
;; Verify
(is new-db-photo) ;;Verify photo entity exists
(is (= (async/poll! s3-chan) (get-in new-db-photo [:store.item.photo/photo :photo/path]))) ;; Verify that S3 was called with updated photo
(is (= 1
(count (get new-db-product :store.item/photos))
(count (get db-product :store.item/photos)))) ;; Verify that no new photo entities were created for product
(is (= 1 (count all-photos) (count all-product-photos)))) ;; Verify that we replaced the old photo entity, and not created new ones in the DB.
)))
(deftest update-product-with-image-replace-multiple-images
(testing "Update a product that has an image with multiple images, the one should be replaced and the other added."
(let [;; Prepare existing data to be updated
old-photo (f/item-photo {:photo/path "old-photo"
:photo/id "old-photo"} 0)
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/photos [old-photo])
store (assoc (store-test) :store/items [old-product])
;; Fetch existing data from our test DB
conn (new-db [store])
db-product (db/pull (db/db conn) [:db/id {:store.item/photos [:db/id :photo/path]}] [:store.item/uuid (:store.item/uuid old-product)])
;; Prepare our update parameters
new-params {:store.item/name "product-updated" :store.item/photos [(photo-service-input "newfirst") ; Should replace the old photo
(photo-service-input "newsecond")]}
s3-chan (async/chan 2)]
(store/update-product {:state conn :system {photo-service-key (photo-service s3-chan)}} (:db/id db-product) new-params)
(let [result-db (db/db conn)
;; Pull new data after update
new-db-product (db/pull result-db [:db/id :store.item/name {:store.item/photos [:db/id {:store.item.photo/photo [:db/id :photo/path]} :store.item.photo/index]}] (:db/id db-product))
new-db-photos (get new-db-product :store.item/photos)
all-photos (db/all-with result-db {:where '[[?e :photo/path]]})
all-product-photos (db/all-with result-db {:where '[[?e :store.item.photo/photo]]})
sorted-new-photos (sort-by :store.item.photo/index new-db-photos)]
;; Verify
(is (= (get-in (first sorted-new-photos) [:store.item.photo/photo :photo/path]) "newfirst")) ; Verify the first photo is now replaced
(is (= (get-in (second sorted-new-photos) [:store.item.photo/photo :photo/path]) "newsecond")) ; Verify the second photo exists
(is (= (into #{} (comp (take 2) (map #(get-in % [:store.item.photo/photo :photo/path])))
sorted-new-photos)
(into #{} (take 2) (repeatedly #(async/poll! s3-chan))))) ; Verify the first and second new photo was passed to S3 in any order
(is (= (:store.item/name new-db-product) (:store.item/name new-params))) ;; Verify that the name of the updated entity matches our parameters
(is (= 2 (count new-db-photos) (count all-photos) (count all-product-photos)))) ;; Verify that we replaced the old photo entity and created a new one.
)))
(deftest update-product-with-image-add-new-images
(testing "Update a product that has an image with a new image, the existing photo should remain the same, and the new one should be created."
(let [;; Prepare existing data to be updated
old-photo (f/item-photo {:photo/path "old-photo"
:photo/id "old-photo"} 0)
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/photos [old-photo])
store (assoc (store-test) :store/items [old-product])
;; Fetch existing data from our test DB
conn (new-db [store])
db-product (db/pull (db/db conn) [:db/id {:store.item/photos [{:store.item.photo/photo [:db/id :photo/path]}
:store.item.photo/index
:db/id]}] [:store.item/uuid (:store.item/uuid old-product)])
db-photo (first (:store.item/photos db-product))
;; Prepare our update parameters
new-params {:store.item/name "product-updated" :store.item/photos [db-photo ;Pass in the old photo again, should not be uploaded to S3
(photo-service-input "newsecond")]}
s3-chan (async/chan 2)]
(store/update-product {:state conn :system {photo-service-key (photo-service s3-chan)}} (:db/id db-product) new-params)
(let [result-db (db/db conn)
;; Pull new data after update
new-db-product (db/pull result-db [:db/id :store.item/name {:store.item/photos [:db/id {:store.item.photo/photo [:db/id :photo/path]} :store.item.photo/index]}] (:db/id db-product))
new-db-photos (get new-db-product :store.item/photos)
all-photos (db/all-with result-db {:where '[[?e :photo/path]]})
all-product-photos (db/all-with result-db {:where '[[?e :store.item.photo/photo]]})
sorted-new-photos (sort-by :store.item.photo/index new-db-photos)]
;; Verify
(is (= (get-in (first sorted-new-photos) [:store.item.photo/photo :photo/path]) "old-photo"))
(is (= (get-in (second sorted-new-photos) [:store.item.photo/photo :photo/path]) "newsecond")) ; Verify the order is correct with the photos
(is (= (async/poll! s3-chan) "newsecond")) ; Verify that our first upload is the new photo (the existing photo doesn't need to be uploaded)
(is (= 2 (count new-db-photos) (count all-photos) (count all-product-photos)))) ;; Verify that we have 2 photos on this item, and in the entire DB.
)))
(deftest update-product-with-images-remove-images
(testing "Update a product that has an image with fewer images, thos not added again should be removed from DB and the product."
(let [;; Prepare existing data to be updated
old-photos [(f/item-photo {:photo/path "old-photo"
:photo/id "old-photo"} 0) (f/item-photo {:photo/path "old-two"
:photo/id "old-two"} 1)]
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/photos old-photos)
store (assoc (store-test) :store/items [old-product])
;; Fetch existing data from our test DB
conn (new-db [store])
db-product (db/pull (db/db conn) [:db/id {:store.item/photos [{:store.item.photo/photo [:photo/path]}
:store.item.photo/index
:db/id]}] [:store.item/uuid (:store.item/uuid old-product)])
;; Prepare our update parameters
new-params {:store.item/name "product-updated" :store.item/photos [(photo-service-input "new-one")]}
s3-chan (async/chan 2)]
(store/update-product {:state conn :system {photo-service-key (photo-service s3-chan)}} (:db/id db-product) new-params)
(let [result-db (db/db conn)
;; Pull new data after update
new-db-product (db/pull result-db [:db/id :store.item/name {:store.item/photos [:db/id {:store.item.photo/photo [:db/id :photo/path]} :store.item.photo/index]}] (:db/id db-product))
new-db-photos (get new-db-product :store.item/photos)
all-photos (db/all-with result-db {:where '[[?e :photo/path]]})
all-product-photos (db/all-with result-db {:where '[[?e :store.item.photo/photo]]})
sorted-new-photos (sort-by :store.item.photo/index new-db-photos)]
;; Verify
(is (= 2 (count (:store.item/photos db-product))))
(is (= (get-in (first sorted-new-photos) [:store.item.photo/photo :photo/path]) "new-one"))
(is (= (async/poll! s3-chan) (get-in (first sorted-new-photos) [:store.item.photo/photo :photo/path])))
(is (= (:store.item/name new-db-product) (:store.item/name new-params))) ;; Verify that the name of the updated entity matches our parameters
(is (= 1 (count new-db-photos) (count all-photos) (count all-product-photos)))) ;; Verify that we replaced the old photo entities and not created new ones.
)))
(deftest update-product-with-image-remove-all-images
(testing "Update a product that has an image with a new image, photo entity and other attributes should be updated."
(let [;; Prepare existing data to be updated
old-photos [(f/item-photo {:photo/path "old-photo"
:photo/id "old-photo"} 0) (f/item-photo {:photo/path "old-photo"
:photo/id "old-photo"} 1)]
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/photos old-photos)
store (assoc (store-test) :store/items [old-product])
;; Fetch existing data from our test DB
conn (new-db [store])
db-product (db/pull (db/db conn) [:db/id {:store.item/photos [{:store.item.photo/photo [:photo/path]}
:store.item.photo/index
:db/id]}] [:store.item/uuid (:store.item/uuid old-product)])
;; Prepare our update parameters
new-params {:store.item/name "product-updated" :store.item/photos []}]
(store/update-product {:state conn} (:db/id db-product) new-params)
(let [result-db (db/db conn)
;; Pull new data after update
new-db-product (db/pull result-db [:db/id :store.item/name {:store.item/photos [:db/id {:store.item.photo/photo [:db/id :photo/path]} :store.item.photo/index]}] (:db/id db-product))
new-db-photos (get new-db-product :store.item/photos)
all-photos (db/all-with result-db {:where '[[?e :photo/path]]})
all-product-photos (db/all-with result-db {:where '[[?e :store.item.photo/photo]]})
sorted-new-photos (sort-by :store.item.photo/index new-db-photos)]
;; Verify there's no photos in the DB or at the product anymore
(is (= 0 (count new-db-photos) (count all-photos) (count all-product-photos)))))))
(deftest update-product-with-image-no-new-image
(testing "Update a product that has an image with only the old images, nothing should be uploaded, photo entities should stay the same."
(let [
;; Prepare existing data to be updated
old-photo (f/item-photo {:photo/path "old-photo"
:photo/id "old-photo"} 0)
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/photos [old-photo])
store (assoc (store-test) :store/items [old-product])
;; Fetch existing data from our test DB
conn (new-db [store])
db-product (db/pull (db/db conn) [:db/id {:store.item/photos [{:store.item.photo/photo [:db/id :photo/path]}
:store.item.photo/index
:db/id]}] [:store.item/uuid (:store.item/uuid old-product)])
db-photo (first (get db-product :store.item/photos))
;; Prepare our update parameters
new-params {:store.item/name "product-updated" :store.item/photos [db-photo]}
s3-chan (async/chan 1)]
(store/update-product {:state conn :system {photo-service-key (photo-service s3-chan)}} (:db/id db-product) new-params)
(let [result-db (db/db conn)
;; Pull new data after update
new-db-product (db/pull result-db [:db/id :store.item/name {:store.item/photos [:db/id :photo/path]}] (:db/id db-product))
new-db-photo (first (get new-db-product :store.item/photos))]
;; Verify
(is (nil? (async/poll! s3-chan))) ;; Verify that S3 was not called since we didn't have a photo
(is (= (:db/id db-photo) (:db/id new-db-photo))) ;; Verify that we updated an existing photo and not created a new one
(is (= (:photo/path db-photo) (:photo/path new-db-photo))) ;; Verify that the path is still the same in photo entity
(is (= 1
(count (get new-db-product :store.item/photos))
(count (get db-product :store.item/photos))))) ;; Verify that no new photo entities were created for product
)))
;; ################################################# DELETE ####################################################
(deftest delete-product
(testing "Delete product, entity should be retracted."
(let [
;; Prepare existing data to be deleted
old-product (f/product {:store.item/name "product" :store.item/uuid (db/squuid)})
store (assoc (store-test) :store/items [old-product])
;; Pull existing data from our test DB
conn (new-db [store])
db-store (db/pull (db/db conn) [:db/id :store/items] [:store/uuid (:store/uuid store)])
db-product (db/pull (db/db conn) [:db/id] [:store.item/uuid (:store.item/uuid old-product)])
;; Prepare our delete
result (store/delete-product {:state conn}
(:db/id db-product))
;; Pull new data after delete
new-db-store (db/pull (:db-after result) [:store/items] (:db/id db-store))
new-db-product (db/pull (:db-after result) [:db/id] [:store.item/uuid (:store.item/uuid old-product)])]
;; Verify
(is (= 1 (count (:store/items db-store))))
(is (:store.item/uuid old-product))
(is (nil? new-db-product))
(is (empty? (:store/items new-db-store))) ;; Verify that our store has no products anymore
)))
(deftest delete-product-with-image
(testing "Delete product, entity should be retracted."
(let [
;; Prepare existing data to be deleted
old-photo (f/photo {:photo/path "old-photo"})
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/photos [old-photo])
store (assoc (store-test) :store/items [old-product])
;; Pull existing data from our test DB
conn (new-db [store])
db-store (db/pull (db/db conn) [:db/id :store/items] [:store/uuid (:store/uuid store)])
db-product (db/pull (db/db conn) [:db/id] [:store.item/uuid (:store.item/uuid old-product)])
db-photo (db/one-with (db/db conn) {:where '[[?e :photo/path ?p]]
:symbols {'?p "old-photo"}})
;; Prepare our delete
result (store/delete-product {:state conn}
(:db/id db-product))
;; Pull new data after delete
new-db-store (db/pull (:db-after result) [:store/items] (:db/id db-store))
new-db-product (db/pull (:db-after result) [:db/id] [:store.item/uuid (:store.item/uuid old-product)])
new-db-photo (db/one-with (:db-after result) {:where '[[?e :photo/path ?p]]
:symbols {'?p "old-photo"}})]
;; Verify
(is db-photo)
(is (= 1 (count (:store/items db-store)))) ;;Verify our store started with one product
(is (nil? new-db-product)) ;;Verify that product was retracted from DB
(is (nil? new-db-photo)) ;;Verify that photo entity was retracted from DB
(is (empty? (:store/items new-db-store))) ;; Verify that our store has no products anymore
)))
|
102874
|
(ns eponai.server.api.store.product-test
(:require
[clojure.test :refer :all]
[eponai.common.database :as db]
[clojure.core.async :as async]
[eponai.server.api.store.test-util :refer [store-test s3-test cloudinary-test]]
[eponai.server.test-util :refer [new-db]]
[eponai.server.api.store :as store]
[eponai.server.datomic.format :as f]))
(def photo-service-key :<KEY>)
(defn photo-service [chan]
(cloudinary-test chan))
(defn photo-service-input [url]
{:public_id url
:url url
:resource_type "image"})
;; ######################## CREATE #########################
(deftest create-product-no-image-test
(testing "Create product with no photo should not add photo entity."
(let [;; Prepare existing data, store to be updated
new-store (store-test)
conn (new-db [new-store])
;; Fetch existing data from test DB
db-store (db/pull (db/db conn) [:db/id] [:store/uuid (:store/uuid new-store)])
;; Prepare data for creating new products
params {:store.item/name "product" :store.item/price "10" :store.item/skus [{:store.item.sku/variation "variation"}]}
s3-chan (async/chan 1)]
(store/create-product {:state conn :system {photo-service-key (photo-service s3-chan)}} (:db/id db-store) params)
(let [result-db (db/db conn)
;; Pull new data after creation
new-db-store (db/pull result-db [:db/id {:store/items [:store.item/name :store.item/photos :store.item/skus]}] (:db/id db-store))
db-product (first (get new-db-store :store/items))]
;; Verify
(is (= 1 (count (:store/items new-db-store)) (count (:store.item/skus db-product)))) ;;Verify that our store has one product
(is (= (:store.item/name db-product) (:store.item/name params))) ;;Verify that the store's item is the same as the newly created product
(is (nil? (async/poll! s3-chan))) ;;Verify that S3 was called with the photo we wanted to upload
(is (empty? (get db-product :store.item/photos))))))) ;; Verify that no photo entities were created for the product
(deftest create-product-with-image-test
(testing "Create product with one photo should add one photo entity to that product."
(let [;; Prepare existing data, store to be updated
store (store-test)
conn (new-db [store])
;; Fetch existing data from test DB
db-store (db/pull (db/db conn) [:db/id] [:store/uuid (:store/uuid store)])
;; Prepare data for creating new products
params {:store.item/name "product" :store.item/photos [(photo-service-input "someurl")] :store.item/price "10"}
s3-chan (async/chan 1)]
(store/create-product {:state conn :system {photo-service-key (photo-service s3-chan)}} (:db/id db-store) params)
(let [result-db (db/db conn)
;; Pull new data after creation
new-db-store (db/pull result-db [:db/id {:store/items [:store.item/name
{:store.item/photos [{:store.item.photo/photo [:db/id :photo/path]}]}]}] (:db/id db-store))
db-product (first (get new-db-store :store/items))
item-photos (get db-product :store.item/photos)]
;; Verify
(is (= 1 (count (:store/items new-db-store)))) ;;Verify that our store has one product
(is (= (:store.item/name db-product) (:store.item/name params))) ;;Verify that the store's item is the same as the newly created product
(is (= 1 (count item-photos))) ;; Verify that we now have a photo entity for the product in the DB
(is (= (async/poll! s3-chan)
(get-in (first item-photos) [:store.item.photo/photo :photo/path]))) ;;Verify that S3 was called with the photo we wanted to upload
))))
(deftest create-product-with-multiple-images
(testing "Create product with multiple photos should add all photo entities to that product."
(let [;; Prepare existing data, store to be updated
store (store-test)
conn (new-db [store])
;; Fetch existing data from test DB
db-store (db/pull (db/db conn) [:db/id] [:store/uuid (:store/uuid store)])
;; Prepare data for creating new products
params {:store.item/name "product" :store.item/photos [(photo-service-input "first-photo")
(photo-service-input "second-photo")] :store.item/price "10"}
s3-chan (async/chan 2)]
(store/create-product {:state conn :system {photo-service-key (photo-service s3-chan)}} (:db/id db-store) params)
(let [result-db (db/db conn)
;; Pull new data after creation
new-db-store (db/pull result-db [:db/id {:store/items [:store.item/name
{:store.item/photos [{:store.item.photo/photo [:db/id :photo/path]}]}]}] (:db/id db-store))
db-product (first (get new-db-store :store/items))
item-photos (get db-product :store.item/photos)]
;; Verify
(is (= 1 (count (:store/items new-db-store)))) ;;Verify that our store has one product
(is (= (:store.item/name db-product) (:store.item/name params))) ;;Verify that the store's item is the same as the newly created product
(is (= 2 (count item-photos))) ;; Verify that the new product has two photos
(is (= (into #{} (comp (take 2) (map #(get-in % [:store.item.photo/photo :photo/path])))
item-photos)
(into #{} (take 2) (repeatedly #(async/poll! s3-chan))))) ;;Verify that S3 was called with the photos we wanted to upload
))))
;; ######################### UPDATE ############################
(deftest update-product-with-skus-add-more-skus
(testing "Update a a product with an SKU and add more SKUs, an sku should be created and added to the product."
(let [;; Prepare existing data to be updated
old-sku (f/sku {:store.item.sku/variation "variation"})
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/skus [old-sku])
;; Fetch existing data from our test DB
conn (new-db [(assoc (store-test) :store/items [old-product])])
db-product (db/pull (db/db conn) [:db/id {:store.item/skus [:db/id]}] [:store.item/uuid (:store.item/uuid old-product)])
;; Prepare our update parameters
new-params {:store.item/name "product-updated" :store.item/skus [old-sku
{:store.item.sku/variation "variation-2"}]}]
(store/update-product {:state conn} (:db/id db-product) new-params)
(let [result-db (db/db conn)
;; Pull new data after update
new-db-product (db/pull result-db [:db/id :store.item/name :store.item/skus] (:db/id db-product))
all-skus (db/all-with result-db {:where '[[?e :store.item.sku/variation]]})]
;; Verify
(is (= (:store.item/name new-db-product) (:store.item/name new-params))) ;; Verify that the name of the updated entity matches our parameters
(is (= 2 (count (get new-db-product :store.item/skus)))) ;; Verify that no new photo entities were created for product
(is (= 2 (count all-skus)))) ;; Verify that we replaced the old photo entities and not created new ones.
)))
(deftest update-product-with-skus-remove-skus
(testing "Update a a product with an SKU and remove some SKUs, they should be retracted from DB and removed from product."
(let [;; Prepare existing data to be updated
old-skus [(f/sku {:store.item.sku/variation "variation-1"})
(f/sku {:store.item.sku/variation "variation-2"})]
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/skus old-skus)
store (assoc (store-test) :store/items [old-product])
;; Fetch existing data from our test DB
conn (new-db [store])
db-product (db/pull (db/db conn) [:db/id {:store.item/skus [:db/id :store.item.sku/variation]}] [:store.item/uuid (:store.item/uuid old-product)])
db-sku (first (:store.item/skus db-product))
;; Prepare our update parameters, add only one SKU (i.e. the other one should be removed)
new-params {:store.item/name "product-updated" :store.item/skus [db-sku]}]
(store/update-product {:state conn} (:db/id db-product) new-params)
(let [result-db (db/db conn)
;; Pull new data after update
new-db-product (db/pull result-db [:db/id :store.item/name :store.item/skus] (:db/id db-product))
all-skus (db/all-with result-db {:where '[[?e :store.item.sku/variation]]})]
;; Verify
(is (= (:store.item/name new-db-product) (:store.item/name new-params))) ;; Verify that the name of the updated entity matches our parameters
(is (= 1 (count (get new-db-product :store.item/skus)))) ;; Verify that our product has only one SKU left
(is (= 1 (count all-skus)))) ;; Verify that we removed one SKU entity from the DB entirely.
)))
;; ################### Photos ##################
(deftest update-product-with-one-image-replace-that-image
(testing "Update a product that has an image with one new image, that image should be replaced."
(let [;; Prepare existing data to be updated
old-photo (f/item-photo {:photo/path "old-photo"
:photo/id "old-photo"} 0)
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/photos [old-photo])
store (assoc (store-test) :store/items [old-product])
;; Fetch existing data from our test DB
conn (new-db [store])
db-product (db/pull (db/db conn) [:db/id :store.item/photos] [:store.item/uuid (:store.item/uuid old-product)])
;; Prepare our update parameters
new-params {:store.item/name "product-updated" :store.item/photos [(photo-service-input "someurl")]}
s3-chan (async/chan 1)]
(store/update-product {:state conn :system {photo-service-key (photo-service s3-chan)}} (:db/id db-product) new-params)
(let [result-db (db/db conn)
;; Pull new data after update
new-db-product (db/pull result-db [:db/id :store.item/name {:store.item/photos [:db/id {:store.item.photo/photo [:db/id :photo/path]}]}] (:db/id db-product))
new-db-photo (first (get new-db-product :store.item/photos))
all-photos (db/all-with result-db {:where '[[?e :photo/path]]})
all-product-photos (db/all-with result-db {:where '[[?e :store.item.photo/photo]]})]
;; Verify
(is new-db-photo) ;;Verify photo entity exists
(is (= (async/poll! s3-chan) (get-in new-db-photo [:store.item.photo/photo :photo/path]))) ;; Verify that S3 was called with updated photo
(is (= 1
(count (get new-db-product :store.item/photos))
(count (get db-product :store.item/photos)))) ;; Verify that no new photo entities were created for product
(is (= 1 (count all-photos) (count all-product-photos)))) ;; Verify that we replaced the old photo entity, and not created new ones in the DB.
)))
(deftest update-product-with-image-replace-multiple-images
(testing "Update a product that has an image with multiple images, the one should be replaced and the other added."
(let [;; Prepare existing data to be updated
old-photo (f/item-photo {:photo/path "old-photo"
:photo/id "old-photo"} 0)
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/photos [old-photo])
store (assoc (store-test) :store/items [old-product])
;; Fetch existing data from our test DB
conn (new-db [store])
db-product (db/pull (db/db conn) [:db/id {:store.item/photos [:db/id :photo/path]}] [:store.item/uuid (:store.item/uuid old-product)])
;; Prepare our update parameters
new-params {:store.item/name "product-updated" :store.item/photos [(photo-service-input "newfirst") ; Should replace the old photo
(photo-service-input "newsecond")]}
s3-chan (async/chan 2)]
(store/update-product {:state conn :system {photo-service-key (photo-service s3-chan)}} (:db/id db-product) new-params)
(let [result-db (db/db conn)
;; Pull new data after update
new-db-product (db/pull result-db [:db/id :store.item/name {:store.item/photos [:db/id {:store.item.photo/photo [:db/id :photo/path]} :store.item.photo/index]}] (:db/id db-product))
new-db-photos (get new-db-product :store.item/photos)
all-photos (db/all-with result-db {:where '[[?e :photo/path]]})
all-product-photos (db/all-with result-db {:where '[[?e :store.item.photo/photo]]})
sorted-new-photos (sort-by :store.item.photo/index new-db-photos)]
;; Verify
(is (= (get-in (first sorted-new-photos) [:store.item.photo/photo :photo/path]) "newfirst")) ; Verify the first photo is now replaced
(is (= (get-in (second sorted-new-photos) [:store.item.photo/photo :photo/path]) "newsecond")) ; Verify the second photo exists
(is (= (into #{} (comp (take 2) (map #(get-in % [:store.item.photo/photo :photo/path])))
sorted-new-photos)
(into #{} (take 2) (repeatedly #(async/poll! s3-chan))))) ; Verify the first and second new photo was passed to S3 in any order
(is (= (:store.item/name new-db-product) (:store.item/name new-params))) ;; Verify that the name of the updated entity matches our parameters
(is (= 2 (count new-db-photos) (count all-photos) (count all-product-photos)))) ;; Verify that we replaced the old photo entity and created a new one.
)))
(deftest update-product-with-image-add-new-images
(testing "Update a product that has an image with a new image, the existing photo should remain the same, and the new one should be created."
(let [;; Prepare existing data to be updated
old-photo (f/item-photo {:photo/path "old-photo"
:photo/id "old-photo"} 0)
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/photos [old-photo])
store (assoc (store-test) :store/items [old-product])
;; Fetch existing data from our test DB
conn (new-db [store])
db-product (db/pull (db/db conn) [:db/id {:store.item/photos [{:store.item.photo/photo [:db/id :photo/path]}
:store.item.photo/index
:db/id]}] [:store.item/uuid (:store.item/uuid old-product)])
db-photo (first (:store.item/photos db-product))
;; Prepare our update parameters
new-params {:store.item/name "product-updated" :store.item/photos [db-photo ;Pass in the old photo again, should not be uploaded to S3
(photo-service-input "newsecond")]}
s3-chan (async/chan 2)]
(store/update-product {:state conn :system {photo-service-key (photo-service s3-chan)}} (:db/id db-product) new-params)
(let [result-db (db/db conn)
;; Pull new data after update
new-db-product (db/pull result-db [:db/id :store.item/name {:store.item/photos [:db/id {:store.item.photo/photo [:db/id :photo/path]} :store.item.photo/index]}] (:db/id db-product))
new-db-photos (get new-db-product :store.item/photos)
all-photos (db/all-with result-db {:where '[[?e :photo/path]]})
all-product-photos (db/all-with result-db {:where '[[?e :store.item.photo/photo]]})
sorted-new-photos (sort-by :store.item.photo/index new-db-photos)]
;; Verify
(is (= (get-in (first sorted-new-photos) [:store.item.photo/photo :photo/path]) "old-photo"))
(is (= (get-in (second sorted-new-photos) [:store.item.photo/photo :photo/path]) "newsecond")) ; Verify the order is correct with the photos
(is (= (async/poll! s3-chan) "newsecond")) ; Verify that our first upload is the new photo (the existing photo doesn't need to be uploaded)
(is (= 2 (count new-db-photos) (count all-photos) (count all-product-photos)))) ;; Verify that we have 2 photos on this item, and in the entire DB.
)))
(deftest update-product-with-images-remove-images
(testing "Update a product that has an image with fewer images, thos not added again should be removed from DB and the product."
(let [;; Prepare existing data to be updated
old-photos [(f/item-photo {:photo/path "old-photo"
:photo/id "old-photo"} 0) (f/item-photo {:photo/path "old-two"
:photo/id "old-two"} 1)]
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/photos old-photos)
store (assoc (store-test) :store/items [old-product])
;; Fetch existing data from our test DB
conn (new-db [store])
db-product (db/pull (db/db conn) [:db/id {:store.item/photos [{:store.item.photo/photo [:photo/path]}
:store.item.photo/index
:db/id]}] [:store.item/uuid (:store.item/uuid old-product)])
;; Prepare our update parameters
new-params {:store.item/name "product-updated" :store.item/photos [(photo-service-input "new-one")]}
s3-chan (async/chan 2)]
(store/update-product {:state conn :system {photo-service-key (photo-service s3-chan)}} (:db/id db-product) new-params)
(let [result-db (db/db conn)
;; Pull new data after update
new-db-product (db/pull result-db [:db/id :store.item/name {:store.item/photos [:db/id {:store.item.photo/photo [:db/id :photo/path]} :store.item.photo/index]}] (:db/id db-product))
new-db-photos (get new-db-product :store.item/photos)
all-photos (db/all-with result-db {:where '[[?e :photo/path]]})
all-product-photos (db/all-with result-db {:where '[[?e :store.item.photo/photo]]})
sorted-new-photos (sort-by :store.item.photo/index new-db-photos)]
;; Verify
(is (= 2 (count (:store.item/photos db-product))))
(is (= (get-in (first sorted-new-photos) [:store.item.photo/photo :photo/path]) "new-one"))
(is (= (async/poll! s3-chan) (get-in (first sorted-new-photos) [:store.item.photo/photo :photo/path])))
(is (= (:store.item/name new-db-product) (:store.item/name new-params))) ;; Verify that the name of the updated entity matches our parameters
(is (= 1 (count new-db-photos) (count all-photos) (count all-product-photos)))) ;; Verify that we replaced the old photo entities and not created new ones.
)))
(deftest update-product-with-image-remove-all-images
(testing "Update a product that has an image with a new image, photo entity and other attributes should be updated."
(let [;; Prepare existing data to be updated
old-photos [(f/item-photo {:photo/path "old-photo"
:photo/id "old-photo"} 0) (f/item-photo {:photo/path "old-photo"
:photo/id "old-photo"} 1)]
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/photos old-photos)
store (assoc (store-test) :store/items [old-product])
;; Fetch existing data from our test DB
conn (new-db [store])
db-product (db/pull (db/db conn) [:db/id {:store.item/photos [{:store.item.photo/photo [:photo/path]}
:store.item.photo/index
:db/id]}] [:store.item/uuid (:store.item/uuid old-product)])
;; Prepare our update parameters
new-params {:store.item/name "product-updated" :store.item/photos []}]
(store/update-product {:state conn} (:db/id db-product) new-params)
(let [result-db (db/db conn)
;; Pull new data after update
new-db-product (db/pull result-db [:db/id :store.item/name {:store.item/photos [:db/id {:store.item.photo/photo [:db/id :photo/path]} :store.item.photo/index]}] (:db/id db-product))
new-db-photos (get new-db-product :store.item/photos)
all-photos (db/all-with result-db {:where '[[?e :photo/path]]})
all-product-photos (db/all-with result-db {:where '[[?e :store.item.photo/photo]]})
sorted-new-photos (sort-by :store.item.photo/index new-db-photos)]
;; Verify there's no photos in the DB or at the product anymore
(is (= 0 (count new-db-photos) (count all-photos) (count all-product-photos)))))))
(deftest update-product-with-image-no-new-image
(testing "Update a product that has an image with only the old images, nothing should be uploaded, photo entities should stay the same."
(let [
;; Prepare existing data to be updated
old-photo (f/item-photo {:photo/path "old-photo"
:photo/id "old-photo"} 0)
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/photos [old-photo])
store (assoc (store-test) :store/items [old-product])
;; Fetch existing data from our test DB
conn (new-db [store])
db-product (db/pull (db/db conn) [:db/id {:store.item/photos [{:store.item.photo/photo [:db/id :photo/path]}
:store.item.photo/index
:db/id]}] [:store.item/uuid (:store.item/uuid old-product)])
db-photo (first (get db-product :store.item/photos))
;; Prepare our update parameters
new-params {:store.item/name "product-updated" :store.item/photos [db-photo]}
s3-chan (async/chan 1)]
(store/update-product {:state conn :system {photo-service-key (photo-service s3-chan)}} (:db/id db-product) new-params)
(let [result-db (db/db conn)
;; Pull new data after update
new-db-product (db/pull result-db [:db/id :store.item/name {:store.item/photos [:db/id :photo/path]}] (:db/id db-product))
new-db-photo (first (get new-db-product :store.item/photos))]
;; Verify
(is (nil? (async/poll! s3-chan))) ;; Verify that S3 was not called since we didn't have a photo
(is (= (:db/id db-photo) (:db/id new-db-photo))) ;; Verify that we updated an existing photo and not created a new one
(is (= (:photo/path db-photo) (:photo/path new-db-photo))) ;; Verify that the path is still the same in photo entity
(is (= 1
(count (get new-db-product :store.item/photos))
(count (get db-product :store.item/photos))))) ;; Verify that no new photo entities were created for product
)))
;; ################################################# DELETE ####################################################
(deftest delete-product
(testing "Delete product, entity should be retracted."
(let [
;; Prepare existing data to be deleted
old-product (f/product {:store.item/name "product" :store.item/uuid (db/squuid)})
store (assoc (store-test) :store/items [old-product])
;; Pull existing data from our test DB
conn (new-db [store])
db-store (db/pull (db/db conn) [:db/id :store/items] [:store/uuid (:store/uuid store)])
db-product (db/pull (db/db conn) [:db/id] [:store.item/uuid (:store.item/uuid old-product)])
;; Prepare our delete
result (store/delete-product {:state conn}
(:db/id db-product))
;; Pull new data after delete
new-db-store (db/pull (:db-after result) [:store/items] (:db/id db-store))
new-db-product (db/pull (:db-after result) [:db/id] [:store.item/uuid (:store.item/uuid old-product)])]
;; Verify
(is (= 1 (count (:store/items db-store))))
(is (:store.item/uuid old-product))
(is (nil? new-db-product))
(is (empty? (:store/items new-db-store))) ;; Verify that our store has no products anymore
)))
(deftest delete-product-with-image
(testing "Delete product, entity should be retracted."
(let [
;; Prepare existing data to be deleted
old-photo (f/photo {:photo/path "old-photo"})
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/photos [old-photo])
store (assoc (store-test) :store/items [old-product])
;; Pull existing data from our test DB
conn (new-db [store])
db-store (db/pull (db/db conn) [:db/id :store/items] [:store/uuid (:store/uuid store)])
db-product (db/pull (db/db conn) [:db/id] [:store.item/uuid (:store.item/uuid old-product)])
db-photo (db/one-with (db/db conn) {:where '[[?e :photo/path ?p]]
:symbols {'?p "old-photo"}})
;; Prepare our delete
result (store/delete-product {:state conn}
(:db/id db-product))
;; Pull new data after delete
new-db-store (db/pull (:db-after result) [:store/items] (:db/id db-store))
new-db-product (db/pull (:db-after result) [:db/id] [:store.item/uuid (:store.item/uuid old-product)])
new-db-photo (db/one-with (:db-after result) {:where '[[?e :photo/path ?p]]
:symbols {'?p "old-photo"}})]
;; Verify
(is db-photo)
(is (= 1 (count (:store/items db-store)))) ;;Verify our store started with one product
(is (nil? new-db-product)) ;;Verify that product was retracted from DB
(is (nil? new-db-photo)) ;;Verify that photo entity was retracted from DB
(is (empty? (:store/items new-db-store))) ;; Verify that our store has no products anymore
)))
| true |
(ns eponai.server.api.store.product-test
(:require
[clojure.test :refer :all]
[eponai.common.database :as db]
[clojure.core.async :as async]
[eponai.server.api.store.test-util :refer [store-test s3-test cloudinary-test]]
[eponai.server.test-util :refer [new-db]]
[eponai.server.api.store :as store]
[eponai.server.datomic.format :as f]))
(def photo-service-key :PI:KEY:<KEY>END_PI)
(defn photo-service [chan]
(cloudinary-test chan))
(defn photo-service-input [url]
{:public_id url
:url url
:resource_type "image"})
;; ######################## CREATE #########################
(deftest create-product-no-image-test
(testing "Create product with no photo should not add photo entity."
(let [;; Prepare existing data, store to be updated
new-store (store-test)
conn (new-db [new-store])
;; Fetch existing data from test DB
db-store (db/pull (db/db conn) [:db/id] [:store/uuid (:store/uuid new-store)])
;; Prepare data for creating new products
params {:store.item/name "product" :store.item/price "10" :store.item/skus [{:store.item.sku/variation "variation"}]}
s3-chan (async/chan 1)]
(store/create-product {:state conn :system {photo-service-key (photo-service s3-chan)}} (:db/id db-store) params)
(let [result-db (db/db conn)
;; Pull new data after creation
new-db-store (db/pull result-db [:db/id {:store/items [:store.item/name :store.item/photos :store.item/skus]}] (:db/id db-store))
db-product (first (get new-db-store :store/items))]
;; Verify
(is (= 1 (count (:store/items new-db-store)) (count (:store.item/skus db-product)))) ;;Verify that our store has one product
(is (= (:store.item/name db-product) (:store.item/name params))) ;;Verify that the store's item is the same as the newly created product
(is (nil? (async/poll! s3-chan))) ;;Verify that S3 was called with the photo we wanted to upload
(is (empty? (get db-product :store.item/photos))))))) ;; Verify that no photo entities were created for the product
(deftest create-product-with-image-test
(testing "Create product with one photo should add one photo entity to that product."
(let [;; Prepare existing data, store to be updated
store (store-test)
conn (new-db [store])
;; Fetch existing data from test DB
db-store (db/pull (db/db conn) [:db/id] [:store/uuid (:store/uuid store)])
;; Prepare data for creating new products
params {:store.item/name "product" :store.item/photos [(photo-service-input "someurl")] :store.item/price "10"}
s3-chan (async/chan 1)]
(store/create-product {:state conn :system {photo-service-key (photo-service s3-chan)}} (:db/id db-store) params)
(let [result-db (db/db conn)
;; Pull new data after creation
new-db-store (db/pull result-db [:db/id {:store/items [:store.item/name
{:store.item/photos [{:store.item.photo/photo [:db/id :photo/path]}]}]}] (:db/id db-store))
db-product (first (get new-db-store :store/items))
item-photos (get db-product :store.item/photos)]
;; Verify
(is (= 1 (count (:store/items new-db-store)))) ;;Verify that our store has one product
(is (= (:store.item/name db-product) (:store.item/name params))) ;;Verify that the store's item is the same as the newly created product
(is (= 1 (count item-photos))) ;; Verify that we now have a photo entity for the product in the DB
(is (= (async/poll! s3-chan)
(get-in (first item-photos) [:store.item.photo/photo :photo/path]))) ;;Verify that S3 was called with the photo we wanted to upload
))))
(deftest create-product-with-multiple-images
(testing "Create product with multiple photos should add all photo entities to that product."
(let [;; Prepare existing data, store to be updated
store (store-test)
conn (new-db [store])
;; Fetch existing data from test DB
db-store (db/pull (db/db conn) [:db/id] [:store/uuid (:store/uuid store)])
;; Prepare data for creating new products
params {:store.item/name "product" :store.item/photos [(photo-service-input "first-photo")
(photo-service-input "second-photo")] :store.item/price "10"}
s3-chan (async/chan 2)]
(store/create-product {:state conn :system {photo-service-key (photo-service s3-chan)}} (:db/id db-store) params)
(let [result-db (db/db conn)
;; Pull new data after creation
new-db-store (db/pull result-db [:db/id {:store/items [:store.item/name
{:store.item/photos [{:store.item.photo/photo [:db/id :photo/path]}]}]}] (:db/id db-store))
db-product (first (get new-db-store :store/items))
item-photos (get db-product :store.item/photos)]
;; Verify
(is (= 1 (count (:store/items new-db-store)))) ;;Verify that our store has one product
(is (= (:store.item/name db-product) (:store.item/name params))) ;;Verify that the store's item is the same as the newly created product
(is (= 2 (count item-photos))) ;; Verify that the new product has two photos
(is (= (into #{} (comp (take 2) (map #(get-in % [:store.item.photo/photo :photo/path])))
item-photos)
(into #{} (take 2) (repeatedly #(async/poll! s3-chan))))) ;;Verify that S3 was called with the photos we wanted to upload
))))
;; ######################### UPDATE ############################
(deftest update-product-with-skus-add-more-skus
(testing "Update a a product with an SKU and add more SKUs, an sku should be created and added to the product."
(let [;; Prepare existing data to be updated
old-sku (f/sku {:store.item.sku/variation "variation"})
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/skus [old-sku])
;; Fetch existing data from our test DB
conn (new-db [(assoc (store-test) :store/items [old-product])])
db-product (db/pull (db/db conn) [:db/id {:store.item/skus [:db/id]}] [:store.item/uuid (:store.item/uuid old-product)])
;; Prepare our update parameters
new-params {:store.item/name "product-updated" :store.item/skus [old-sku
{:store.item.sku/variation "variation-2"}]}]
(store/update-product {:state conn} (:db/id db-product) new-params)
(let [result-db (db/db conn)
;; Pull new data after update
new-db-product (db/pull result-db [:db/id :store.item/name :store.item/skus] (:db/id db-product))
all-skus (db/all-with result-db {:where '[[?e :store.item.sku/variation]]})]
;; Verify
(is (= (:store.item/name new-db-product) (:store.item/name new-params))) ;; Verify that the name of the updated entity matches our parameters
(is (= 2 (count (get new-db-product :store.item/skus)))) ;; Verify that no new photo entities were created for product
(is (= 2 (count all-skus)))) ;; Verify that we replaced the old photo entities and not created new ones.
)))
(deftest update-product-with-skus-remove-skus
(testing "Update a a product with an SKU and remove some SKUs, they should be retracted from DB and removed from product."
(let [;; Prepare existing data to be updated
old-skus [(f/sku {:store.item.sku/variation "variation-1"})
(f/sku {:store.item.sku/variation "variation-2"})]
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/skus old-skus)
store (assoc (store-test) :store/items [old-product])
;; Fetch existing data from our test DB
conn (new-db [store])
db-product (db/pull (db/db conn) [:db/id {:store.item/skus [:db/id :store.item.sku/variation]}] [:store.item/uuid (:store.item/uuid old-product)])
db-sku (first (:store.item/skus db-product))
;; Prepare our update parameters, add only one SKU (i.e. the other one should be removed)
new-params {:store.item/name "product-updated" :store.item/skus [db-sku]}]
(store/update-product {:state conn} (:db/id db-product) new-params)
(let [result-db (db/db conn)
;; Pull new data after update
new-db-product (db/pull result-db [:db/id :store.item/name :store.item/skus] (:db/id db-product))
all-skus (db/all-with result-db {:where '[[?e :store.item.sku/variation]]})]
;; Verify
(is (= (:store.item/name new-db-product) (:store.item/name new-params))) ;; Verify that the name of the updated entity matches our parameters
(is (= 1 (count (get new-db-product :store.item/skus)))) ;; Verify that our product has only one SKU left
(is (= 1 (count all-skus)))) ;; Verify that we removed one SKU entity from the DB entirely.
)))
;; ################### Photos ##################
(deftest update-product-with-one-image-replace-that-image
(testing "Update a product that has an image with one new image, that image should be replaced."
(let [;; Prepare existing data to be updated
old-photo (f/item-photo {:photo/path "old-photo"
:photo/id "old-photo"} 0)
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/photos [old-photo])
store (assoc (store-test) :store/items [old-product])
;; Fetch existing data from our test DB
conn (new-db [store])
db-product (db/pull (db/db conn) [:db/id :store.item/photos] [:store.item/uuid (:store.item/uuid old-product)])
;; Prepare our update parameters
new-params {:store.item/name "product-updated" :store.item/photos [(photo-service-input "someurl")]}
s3-chan (async/chan 1)]
(store/update-product {:state conn :system {photo-service-key (photo-service s3-chan)}} (:db/id db-product) new-params)
(let [result-db (db/db conn)
;; Pull new data after update
new-db-product (db/pull result-db [:db/id :store.item/name {:store.item/photos [:db/id {:store.item.photo/photo [:db/id :photo/path]}]}] (:db/id db-product))
new-db-photo (first (get new-db-product :store.item/photos))
all-photos (db/all-with result-db {:where '[[?e :photo/path]]})
all-product-photos (db/all-with result-db {:where '[[?e :store.item.photo/photo]]})]
;; Verify
(is new-db-photo) ;;Verify photo entity exists
(is (= (async/poll! s3-chan) (get-in new-db-photo [:store.item.photo/photo :photo/path]))) ;; Verify that S3 was called with updated photo
(is (= 1
(count (get new-db-product :store.item/photos))
(count (get db-product :store.item/photos)))) ;; Verify that no new photo entities were created for product
(is (= 1 (count all-photos) (count all-product-photos)))) ;; Verify that we replaced the old photo entity, and not created new ones in the DB.
)))
(deftest update-product-with-image-replace-multiple-images
(testing "Update a product that has an image with multiple images, the one should be replaced and the other added."
(let [;; Prepare existing data to be updated
old-photo (f/item-photo {:photo/path "old-photo"
:photo/id "old-photo"} 0)
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/photos [old-photo])
store (assoc (store-test) :store/items [old-product])
;; Fetch existing data from our test DB
conn (new-db [store])
db-product (db/pull (db/db conn) [:db/id {:store.item/photos [:db/id :photo/path]}] [:store.item/uuid (:store.item/uuid old-product)])
;; Prepare our update parameters
new-params {:store.item/name "product-updated" :store.item/photos [(photo-service-input "newfirst") ; Should replace the old photo
(photo-service-input "newsecond")]}
s3-chan (async/chan 2)]
(store/update-product {:state conn :system {photo-service-key (photo-service s3-chan)}} (:db/id db-product) new-params)
(let [result-db (db/db conn)
;; Pull new data after update
new-db-product (db/pull result-db [:db/id :store.item/name {:store.item/photos [:db/id {:store.item.photo/photo [:db/id :photo/path]} :store.item.photo/index]}] (:db/id db-product))
new-db-photos (get new-db-product :store.item/photos)
all-photos (db/all-with result-db {:where '[[?e :photo/path]]})
all-product-photos (db/all-with result-db {:where '[[?e :store.item.photo/photo]]})
sorted-new-photos (sort-by :store.item.photo/index new-db-photos)]
;; Verify
(is (= (get-in (first sorted-new-photos) [:store.item.photo/photo :photo/path]) "newfirst")) ; Verify the first photo is now replaced
(is (= (get-in (second sorted-new-photos) [:store.item.photo/photo :photo/path]) "newsecond")) ; Verify the second photo exists
(is (= (into #{} (comp (take 2) (map #(get-in % [:store.item.photo/photo :photo/path])))
sorted-new-photos)
(into #{} (take 2) (repeatedly #(async/poll! s3-chan))))) ; Verify the first and second new photo was passed to S3 in any order
(is (= (:store.item/name new-db-product) (:store.item/name new-params))) ;; Verify that the name of the updated entity matches our parameters
(is (= 2 (count new-db-photos) (count all-photos) (count all-product-photos)))) ;; Verify that we replaced the old photo entity and created a new one.
)))
(deftest update-product-with-image-add-new-images
(testing "Update a product that has an image with a new image, the existing photo should remain the same, and the new one should be created."
(let [;; Prepare existing data to be updated
old-photo (f/item-photo {:photo/path "old-photo"
:photo/id "old-photo"} 0)
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/photos [old-photo])
store (assoc (store-test) :store/items [old-product])
;; Fetch existing data from our test DB
conn (new-db [store])
db-product (db/pull (db/db conn) [:db/id {:store.item/photos [{:store.item.photo/photo [:db/id :photo/path]}
:store.item.photo/index
:db/id]}] [:store.item/uuid (:store.item/uuid old-product)])
db-photo (first (:store.item/photos db-product))
;; Prepare our update parameters
new-params {:store.item/name "product-updated" :store.item/photos [db-photo ;Pass in the old photo again, should not be uploaded to S3
(photo-service-input "newsecond")]}
s3-chan (async/chan 2)]
(store/update-product {:state conn :system {photo-service-key (photo-service s3-chan)}} (:db/id db-product) new-params)
(let [result-db (db/db conn)
;; Pull new data after update
new-db-product (db/pull result-db [:db/id :store.item/name {:store.item/photos [:db/id {:store.item.photo/photo [:db/id :photo/path]} :store.item.photo/index]}] (:db/id db-product))
new-db-photos (get new-db-product :store.item/photos)
all-photos (db/all-with result-db {:where '[[?e :photo/path]]})
all-product-photos (db/all-with result-db {:where '[[?e :store.item.photo/photo]]})
sorted-new-photos (sort-by :store.item.photo/index new-db-photos)]
;; Verify
(is (= (get-in (first sorted-new-photos) [:store.item.photo/photo :photo/path]) "old-photo"))
(is (= (get-in (second sorted-new-photos) [:store.item.photo/photo :photo/path]) "newsecond")) ; Verify the order is correct with the photos
(is (= (async/poll! s3-chan) "newsecond")) ; Verify that our first upload is the new photo (the existing photo doesn't need to be uploaded)
(is (= 2 (count new-db-photos) (count all-photos) (count all-product-photos)))) ;; Verify that we have 2 photos on this item, and in the entire DB.
)))
(deftest update-product-with-images-remove-images
(testing "Update a product that has an image with fewer images, thos not added again should be removed from DB and the product."
(let [;; Prepare existing data to be updated
old-photos [(f/item-photo {:photo/path "old-photo"
:photo/id "old-photo"} 0) (f/item-photo {:photo/path "old-two"
:photo/id "old-two"} 1)]
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/photos old-photos)
store (assoc (store-test) :store/items [old-product])
;; Fetch existing data from our test DB
conn (new-db [store])
db-product (db/pull (db/db conn) [:db/id {:store.item/photos [{:store.item.photo/photo [:photo/path]}
:store.item.photo/index
:db/id]}] [:store.item/uuid (:store.item/uuid old-product)])
;; Prepare our update parameters
new-params {:store.item/name "product-updated" :store.item/photos [(photo-service-input "new-one")]}
s3-chan (async/chan 2)]
(store/update-product {:state conn :system {photo-service-key (photo-service s3-chan)}} (:db/id db-product) new-params)
(let [result-db (db/db conn)
;; Pull new data after update
new-db-product (db/pull result-db [:db/id :store.item/name {:store.item/photos [:db/id {:store.item.photo/photo [:db/id :photo/path]} :store.item.photo/index]}] (:db/id db-product))
new-db-photos (get new-db-product :store.item/photos)
all-photos (db/all-with result-db {:where '[[?e :photo/path]]})
all-product-photos (db/all-with result-db {:where '[[?e :store.item.photo/photo]]})
sorted-new-photos (sort-by :store.item.photo/index new-db-photos)]
;; Verify
(is (= 2 (count (:store.item/photos db-product))))
(is (= (get-in (first sorted-new-photos) [:store.item.photo/photo :photo/path]) "new-one"))
(is (= (async/poll! s3-chan) (get-in (first sorted-new-photos) [:store.item.photo/photo :photo/path])))
(is (= (:store.item/name new-db-product) (:store.item/name new-params))) ;; Verify that the name of the updated entity matches our parameters
(is (= 1 (count new-db-photos) (count all-photos) (count all-product-photos)))) ;; Verify that we replaced the old photo entities and not created new ones.
)))
(deftest update-product-with-image-remove-all-images
(testing "Update a product that has an image with a new image, photo entity and other attributes should be updated."
(let [;; Prepare existing data to be updated
old-photos [(f/item-photo {:photo/path "old-photo"
:photo/id "old-photo"} 0) (f/item-photo {:photo/path "old-photo"
:photo/id "old-photo"} 1)]
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/photos old-photos)
store (assoc (store-test) :store/items [old-product])
;; Fetch existing data from our test DB
conn (new-db [store])
db-product (db/pull (db/db conn) [:db/id {:store.item/photos [{:store.item.photo/photo [:photo/path]}
:store.item.photo/index
:db/id]}] [:store.item/uuid (:store.item/uuid old-product)])
;; Prepare our update parameters
new-params {:store.item/name "product-updated" :store.item/photos []}]
(store/update-product {:state conn} (:db/id db-product) new-params)
(let [result-db (db/db conn)
;; Pull new data after update
new-db-product (db/pull result-db [:db/id :store.item/name {:store.item/photos [:db/id {:store.item.photo/photo [:db/id :photo/path]} :store.item.photo/index]}] (:db/id db-product))
new-db-photos (get new-db-product :store.item/photos)
all-photos (db/all-with result-db {:where '[[?e :photo/path]]})
all-product-photos (db/all-with result-db {:where '[[?e :store.item.photo/photo]]})
sorted-new-photos (sort-by :store.item.photo/index new-db-photos)]
;; Verify there's no photos in the DB or at the product anymore
(is (= 0 (count new-db-photos) (count all-photos) (count all-product-photos)))))))
(deftest update-product-with-image-no-new-image
(testing "Update a product that has an image with only the old images, nothing should be uploaded, photo entities should stay the same."
(let [
;; Prepare existing data to be updated
old-photo (f/item-photo {:photo/path "old-photo"
:photo/id "old-photo"} 0)
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/photos [old-photo])
store (assoc (store-test) :store/items [old-product])
;; Fetch existing data from our test DB
conn (new-db [store])
db-product (db/pull (db/db conn) [:db/id {:store.item/photos [{:store.item.photo/photo [:db/id :photo/path]}
:store.item.photo/index
:db/id]}] [:store.item/uuid (:store.item/uuid old-product)])
db-photo (first (get db-product :store.item/photos))
;; Prepare our update parameters
new-params {:store.item/name "product-updated" :store.item/photos [db-photo]}
s3-chan (async/chan 1)]
(store/update-product {:state conn :system {photo-service-key (photo-service s3-chan)}} (:db/id db-product) new-params)
(let [result-db (db/db conn)
;; Pull new data after update
new-db-product (db/pull result-db [:db/id :store.item/name {:store.item/photos [:db/id :photo/path]}] (:db/id db-product))
new-db-photo (first (get new-db-product :store.item/photos))]
;; Verify
(is (nil? (async/poll! s3-chan))) ;; Verify that S3 was not called since we didn't have a photo
(is (= (:db/id db-photo) (:db/id new-db-photo))) ;; Verify that we updated an existing photo and not created a new one
(is (= (:photo/path db-photo) (:photo/path new-db-photo))) ;; Verify that the path is still the same in photo entity
(is (= 1
(count (get new-db-product :store.item/photos))
(count (get db-product :store.item/photos))))) ;; Verify that no new photo entities were created for product
)))
;; ################################################# DELETE ####################################################
(deftest delete-product
(testing "Delete product, entity should be retracted."
(let [
;; Prepare existing data to be deleted
old-product (f/product {:store.item/name "product" :store.item/uuid (db/squuid)})
store (assoc (store-test) :store/items [old-product])
;; Pull existing data from our test DB
conn (new-db [store])
db-store (db/pull (db/db conn) [:db/id :store/items] [:store/uuid (:store/uuid store)])
db-product (db/pull (db/db conn) [:db/id] [:store.item/uuid (:store.item/uuid old-product)])
;; Prepare our delete
result (store/delete-product {:state conn}
(:db/id db-product))
;; Pull new data after delete
new-db-store (db/pull (:db-after result) [:store/items] (:db/id db-store))
new-db-product (db/pull (:db-after result) [:db/id] [:store.item/uuid (:store.item/uuid old-product)])]
;; Verify
(is (= 1 (count (:store/items db-store))))
(is (:store.item/uuid old-product))
(is (nil? new-db-product))
(is (empty? (:store/items new-db-store))) ;; Verify that our store has no products anymore
)))
(deftest delete-product-with-image
(testing "Delete product, entity should be retracted."
(let [
;; Prepare existing data to be deleted
old-photo (f/photo {:photo/path "old-photo"})
old-product (assoc (f/product {:store.item/name "product" :store.item/uuid (db/squuid)}) :store.item/photos [old-photo])
store (assoc (store-test) :store/items [old-product])
;; Pull existing data from our test DB
conn (new-db [store])
db-store (db/pull (db/db conn) [:db/id :store/items] [:store/uuid (:store/uuid store)])
db-product (db/pull (db/db conn) [:db/id] [:store.item/uuid (:store.item/uuid old-product)])
db-photo (db/one-with (db/db conn) {:where '[[?e :photo/path ?p]]
:symbols {'?p "old-photo"}})
;; Prepare our delete
result (store/delete-product {:state conn}
(:db/id db-product))
;; Pull new data after delete
new-db-store (db/pull (:db-after result) [:store/items] (:db/id db-store))
new-db-product (db/pull (:db-after result) [:db/id] [:store.item/uuid (:store.item/uuid old-product)])
new-db-photo (db/one-with (:db-after result) {:where '[[?e :photo/path ?p]]
:symbols {'?p "old-photo"}})]
;; Verify
(is db-photo)
(is (= 1 (count (:store/items db-store)))) ;;Verify our store started with one product
(is (nil? new-db-product)) ;;Verify that product was retracted from DB
(is (nil? new-db-photo)) ;;Verify that photo entity was retracted from DB
(is (empty? (:store/items new-db-store))) ;; Verify that our store has no products anymore
)))
|
[
{
"context": "file is part of gorilla-repl. Copyright (C) 2014-, Jony Hudson.\n;;;;\n;;;; gorilla-repl is licenced to you under ",
"end": 72,
"score": 0.9996723532676697,
"start": 61,
"tag": "NAME",
"value": "Jony Hudson"
}
] |
src/gorilla_repl/table.clj
|
dasmoth/gorilla-repl
| 1 |
;;;; This file is part of gorilla-repl. Copyright (C) 2014-, Jony Hudson.
;;;;
;;;; gorilla-repl is licenced to you under the MIT licence. See the file LICENCE.txt for full details.
(ns gorilla-repl.table
(:require [gorilla-renderable.core :as render]))
(defrecord TableView [contents opts])
(defn table-view [contents & opts]
(TableView. contents opts))
(defn- list-like
[data value open close separator]
{:type :list-like
:open open
:close close
:separator separator
:items data
:value value})
(extend-type TableView
render/Renderable
(render [self]
(let [contents (:contents self)
opts-map (apply hash-map (:opts self))
rows (map (fn [r] (list-like (map render/render r) (pr-str r) "<tr><td>" "</td></tr>" "</td><td>")) contents)
heading (if-let [cols (:columns opts-map)]
[(list-like (map render/render cols) (pr-str cols) "<tr><th>" "</th></tr>" "</th><th>")]
[])
body (list-like (concat heading rows) (pr-str self) "<center><table>" "</table></center>" "\n")]
body)))
|
77006
|
;;;; This file is part of gorilla-repl. Copyright (C) 2014-, <NAME>.
;;;;
;;;; gorilla-repl is licenced to you under the MIT licence. See the file LICENCE.txt for full details.
(ns gorilla-repl.table
(:require [gorilla-renderable.core :as render]))
(defrecord TableView [contents opts])
(defn table-view [contents & opts]
(TableView. contents opts))
(defn- list-like
[data value open close separator]
{:type :list-like
:open open
:close close
:separator separator
:items data
:value value})
(extend-type TableView
render/Renderable
(render [self]
(let [contents (:contents self)
opts-map (apply hash-map (:opts self))
rows (map (fn [r] (list-like (map render/render r) (pr-str r) "<tr><td>" "</td></tr>" "</td><td>")) contents)
heading (if-let [cols (:columns opts-map)]
[(list-like (map render/render cols) (pr-str cols) "<tr><th>" "</th></tr>" "</th><th>")]
[])
body (list-like (concat heading rows) (pr-str self) "<center><table>" "</table></center>" "\n")]
body)))
| true |
;;;; This file is part of gorilla-repl. Copyright (C) 2014-, PI:NAME:<NAME>END_PI.
;;;;
;;;; gorilla-repl is licenced to you under the MIT licence. See the file LICENCE.txt for full details.
(ns gorilla-repl.table
(:require [gorilla-renderable.core :as render]))
(defrecord TableView [contents opts])
(defn table-view [contents & opts]
(TableView. contents opts))
(defn- list-like
[data value open close separator]
{:type :list-like
:open open
:close close
:separator separator
:items data
:value value})
(extend-type TableView
render/Renderable
(render [self]
(let [contents (:contents self)
opts-map (apply hash-map (:opts self))
rows (map (fn [r] (list-like (map render/render r) (pr-str r) "<tr><td>" "</td></tr>" "</td><td>")) contents)
heading (if-let [cols (:columns opts-map)]
[(list-like (map render/render cols) (pr-str cols) "<tr><th>" "</th></tr>" "</th><th>")]
[])
body (list-like (concat heading rows) (pr-str self) "<center><table>" "</table></center>" "\n")]
body)))
|
[
{
"context": "; Copyright 2010 Mark Allerton. All rights reserved.\n;\n; Redistribution and u",
"end": 33,
"score": 0.9998699426651001,
"start": 20,
"tag": "NAME",
"value": "Mark Allerton"
},
{
"context": " distribution.\n;\n; THIS SOFTWARE IS PROVIDED BY MARK ALLERTON ``AS IS'' AND ANY EXPRESS OR IMPLIED\n; WARRA",
"end": 645,
"score": 0.6845159530639648,
"start": 634,
"tag": "NAME",
"value": "MARK ALLERT"
},
{
"context": "ial policies, either expressed\n; or implied, of Mark Allerton.\n\n(ns couverjure.tools.clojure-model\n (",
"end": 1589,
"score": 0.6056010723114014,
"start": 1585,
"tag": "NAME",
"value": "Mark"
}
] |
BridgeSupport/src/clojure/couverjure/tools/clojure_model.clj
|
allertonm/Couverjure
| 3 |
; Copyright 2010 Mark Allerton. All rights reserved.
;
; Redistribution and use in source and binary forms, with or without modification, are
; permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice, this list of
; conditions and the following disclaimer.
;
; 2. Redistributions in binary form must reproduce the above copyright notice, this list
; of conditions and the following disclaimer in the documentation and/or other materials
; provided with the distribution.
;
; THIS SOFTWARE IS PROVIDED BY MARK ALLERTON ``AS IS'' AND ANY EXPRESS OR IMPLIED
; WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
; FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> OR
; CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
; SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
; ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
; ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
;
; The views and conclusions contained in the software and documentation are those of the
; authors and should not be interpreted as representing official policies, either expressed
; or implied, of Mark Allerton.
(ns couverjure.tools.clojure-model
(:use
couverjure.tools.formatter))
(defn no-brackets [seq]
(conj (apply list seq) :no-brackets))
; this is a model of economy when compared to the java version :)
;
(defn emit-clojure [m]
(cond
; lists - normally emitted as a bracketed list but there are some directives
; that can be in first position.
(list? m)
(cond
; make the first element of a list :no-brackets to suppress brackets
; good for the file level of source
(= :no-brackets (first m))
(map emit-clojure (rest m))
; :comment as first element of a list makes the rest of the list into a comment
; (each list element is a new comment line)
(= :comment (first m))
(for [mi (rest m)] [ ";" (str mi) :break])
; :source as first element writes the rest of the elements directly to the output
(= :source (first m))
(apply str (rest m))
; everything else
true
["(" (map emit-clojure m) ")"])
; vectors
(vector? m)
["[" (map emit-clojure m) "]"]
; maps
(map? m)
["{" (for [mi m] [(emit-clojure (first mi)) (emit-clojure (second mi))]) "}"]
; strings
(string? m)
[ (str "\"" m "\"") ]
; formatting instructions
(#{:break :indent :unindent} m)
m
; default
true
(str m)
))
(defn format-clojure-source
[writer emitted-tree]
(format-source writer emitted-tree 2 #{ "(" "[" "{" } #{ ")" "]" "}" }))
|
5874
|
; Copyright 2010 <NAME>. All rights reserved.
;
; Redistribution and use in source and binary forms, with or without modification, are
; permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice, this list of
; conditions and the following disclaimer.
;
; 2. Redistributions in binary form must reproduce the above copyright notice, this list
; of conditions and the following disclaimer in the documentation and/or other materials
; provided with the distribution.
;
; THIS SOFTWARE IS PROVIDED BY <NAME>ON ``AS IS'' AND ANY EXPRESS OR IMPLIED
; WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
; FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> OR
; CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
; SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
; ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
; ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
;
; The views and conclusions contained in the software and documentation are those of the
; authors and should not be interpreted as representing official policies, either expressed
; or implied, of <NAME> Allerton.
(ns couverjure.tools.clojure-model
(:use
couverjure.tools.formatter))
(defn no-brackets [seq]
(conj (apply list seq) :no-brackets))
; this is a model of economy when compared to the java version :)
;
(defn emit-clojure [m]
(cond
; lists - normally emitted as a bracketed list but there are some directives
; that can be in first position.
(list? m)
(cond
; make the first element of a list :no-brackets to suppress brackets
; good for the file level of source
(= :no-brackets (first m))
(map emit-clojure (rest m))
; :comment as first element of a list makes the rest of the list into a comment
; (each list element is a new comment line)
(= :comment (first m))
(for [mi (rest m)] [ ";" (str mi) :break])
; :source as first element writes the rest of the elements directly to the output
(= :source (first m))
(apply str (rest m))
; everything else
true
["(" (map emit-clojure m) ")"])
; vectors
(vector? m)
["[" (map emit-clojure m) "]"]
; maps
(map? m)
["{" (for [mi m] [(emit-clojure (first mi)) (emit-clojure (second mi))]) "}"]
; strings
(string? m)
[ (str "\"" m "\"") ]
; formatting instructions
(#{:break :indent :unindent} m)
m
; default
true
(str m)
))
(defn format-clojure-source
[writer emitted-tree]
(format-source writer emitted-tree 2 #{ "(" "[" "{" } #{ ")" "]" "}" }))
| true |
; Copyright 2010 PI:NAME:<NAME>END_PI. All rights reserved.
;
; Redistribution and use in source and binary forms, with or without modification, are
; permitted provided that the following conditions are met:
;
; 1. Redistributions of source code must retain the above copyright notice, this list of
; conditions and the following disclaimer.
;
; 2. Redistributions in binary form must reproduce the above copyright notice, this list
; of conditions and the following disclaimer in the documentation and/or other materials
; provided with the distribution.
;
; THIS SOFTWARE IS PROVIDED BY PI:NAME:<NAME>END_PION ``AS IS'' AND ANY EXPRESS OR IMPLIED
; WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
; FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> OR
; CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
; SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
; ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
; ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
;
; The views and conclusions contained in the software and documentation are those of the
; authors and should not be interpreted as representing official policies, either expressed
; or implied, of PI:NAME:<NAME>END_PI Allerton.
(ns couverjure.tools.clojure-model
(:use
couverjure.tools.formatter))
(defn no-brackets [seq]
(conj (apply list seq) :no-brackets))
; this is a model of economy when compared to the java version :)
;
(defn emit-clojure [m]
(cond
; lists - normally emitted as a bracketed list but there are some directives
; that can be in first position.
(list? m)
(cond
; make the first element of a list :no-brackets to suppress brackets
; good for the file level of source
(= :no-brackets (first m))
(map emit-clojure (rest m))
; :comment as first element of a list makes the rest of the list into a comment
; (each list element is a new comment line)
(= :comment (first m))
(for [mi (rest m)] [ ";" (str mi) :break])
; :source as first element writes the rest of the elements directly to the output
(= :source (first m))
(apply str (rest m))
; everything else
true
["(" (map emit-clojure m) ")"])
; vectors
(vector? m)
["[" (map emit-clojure m) "]"]
; maps
(map? m)
["{" (for [mi m] [(emit-clojure (first mi)) (emit-clojure (second mi))]) "}"]
; strings
(string? m)
[ (str "\"" m "\"") ]
; formatting instructions
(#{:break :indent :unindent} m)
m
; default
true
(str m)
))
(defn format-clojure-source
[writer emitted-tree]
(format-source writer emitted-tree 2 #{ "(" "[" "{" } #{ ")" "]" "}" }))
|
[
{
"context": "/local-date 2014 1 2))\n(def menu-r1-d1 {1 {:name \"Name v1\"\n :menu {date1 \"menu 1\"}}})\n(d",
"end": 262,
"score": 0.7433512210845947,
"start": 255,
"tag": "NAME",
"value": "Name v1"
},
{
"context": "nu {date1 \"menu 1\"}}})\n(def menu-r1-d2 {1 {:name \"Name v2\"\n :menu {date2 \"menu 2\"}}})\n\n(",
"end": 344,
"score": 0.7612159252166748,
"start": 337,
"tag": "NAME",
"value": "Name v2"
}
] |
test/varjocafe/updater_test.clj
|
luontola/varjocafe
| 2 |
(ns varjocafe.updater-test
(:use midje.sweet
varjocafe.testutil)
(:require [varjocafe.updater :as updater]
[clj-time.core :as t]))
(def date1 (t/local-date 2014 1 1))
(def date2 (t/local-date 2014 1 2))
(def menu-r1-d1 {1 {:name "Name v1"
:menu {date1 "menu 1"}}})
(def menu-r1-d2 {1 {:name "Name v2"
:menu {date2 "menu 2"}}})
(fact "Initializes the database"
(updater/update-database {} (fn [] menu-r1-d1)) => menu-r1-d1)
(fact "Replaces old data with new data"
(updater/update-database menu-r1-d1 (fn [] menu-r1-d2)) => menu-r1-d2)
(defn run-update-command [old-data data-provider]
(let [database (atom old-data)
command (updater/make-update-command database data-provider)]
(command)
@database))
(fact "Handles failures from data provider gracefully"
(with-silent-logger
(fact "no failure; update normally"
(run-update-command menu-r1-d1 (fn [] menu-r1-d2)) => menu-r1-d2)
(fact "throws an exception; keep old value"
(run-update-command menu-r1-d1 (fn [] (throw (Exception. "dummy")))) => menu-r1-d1)
(fact "returns nil; keep old value"
(run-update-command menu-r1-d1 (fn [] nil)) => menu-r1-d1)
(fact "throws InterruptedException; keep old value & keep interrupted status"
(run-update-command menu-r1-d1 (fn [] (throw (InterruptedException. "dummy")))) => menu-r1-d1
(Thread/interrupted) => true)))
|
63115
|
(ns varjocafe.updater-test
(:use midje.sweet
varjocafe.testutil)
(:require [varjocafe.updater :as updater]
[clj-time.core :as t]))
(def date1 (t/local-date 2014 1 1))
(def date2 (t/local-date 2014 1 2))
(def menu-r1-d1 {1 {:name "<NAME>"
:menu {date1 "menu 1"}}})
(def menu-r1-d2 {1 {:name "<NAME>"
:menu {date2 "menu 2"}}})
(fact "Initializes the database"
(updater/update-database {} (fn [] menu-r1-d1)) => menu-r1-d1)
(fact "Replaces old data with new data"
(updater/update-database menu-r1-d1 (fn [] menu-r1-d2)) => menu-r1-d2)
(defn run-update-command [old-data data-provider]
(let [database (atom old-data)
command (updater/make-update-command database data-provider)]
(command)
@database))
(fact "Handles failures from data provider gracefully"
(with-silent-logger
(fact "no failure; update normally"
(run-update-command menu-r1-d1 (fn [] menu-r1-d2)) => menu-r1-d2)
(fact "throws an exception; keep old value"
(run-update-command menu-r1-d1 (fn [] (throw (Exception. "dummy")))) => menu-r1-d1)
(fact "returns nil; keep old value"
(run-update-command menu-r1-d1 (fn [] nil)) => menu-r1-d1)
(fact "throws InterruptedException; keep old value & keep interrupted status"
(run-update-command menu-r1-d1 (fn [] (throw (InterruptedException. "dummy")))) => menu-r1-d1
(Thread/interrupted) => true)))
| true |
(ns varjocafe.updater-test
(:use midje.sweet
varjocafe.testutil)
(:require [varjocafe.updater :as updater]
[clj-time.core :as t]))
(def date1 (t/local-date 2014 1 1))
(def date2 (t/local-date 2014 1 2))
(def menu-r1-d1 {1 {:name "PI:NAME:<NAME>END_PI"
:menu {date1 "menu 1"}}})
(def menu-r1-d2 {1 {:name "PI:NAME:<NAME>END_PI"
:menu {date2 "menu 2"}}})
(fact "Initializes the database"
(updater/update-database {} (fn [] menu-r1-d1)) => menu-r1-d1)
(fact "Replaces old data with new data"
(updater/update-database menu-r1-d1 (fn [] menu-r1-d2)) => menu-r1-d2)
(defn run-update-command [old-data data-provider]
(let [database (atom old-data)
command (updater/make-update-command database data-provider)]
(command)
@database))
(fact "Handles failures from data provider gracefully"
(with-silent-logger
(fact "no failure; update normally"
(run-update-command menu-r1-d1 (fn [] menu-r1-d2)) => menu-r1-d2)
(fact "throws an exception; keep old value"
(run-update-command menu-r1-d1 (fn [] (throw (Exception. "dummy")))) => menu-r1-d1)
(fact "returns nil; keep old value"
(run-update-command menu-r1-d1 (fn [] nil)) => menu-r1-d1)
(fact "throws InterruptedException; keep old value & keep interrupted status"
(run-update-command menu-r1-d1 (fn [] (throw (InterruptedException. "dummy")))) => menu-r1-d1
(Thread/interrupted) => true)))
|
[
{
"context": "n/read-string))\n\n(comment\n (gzip-base64-tag->edn \"H4sIAAAAAAAAAIWPMQvCMBCF/8qRScEGxM3tiAELtSltFXEpoQkhII0ktR1K/7spio4Od8O7997HTcR5Q1vtAh2NDYG2o22p8bJ73nWgD+8UgWnewF/fYJX20btXspdAcqyQ/M11sreDbqz6BRme+DXZAcvE+QCYx+GlqEQGBZZ1yjIO7IglspqX6Q3rVOSwYlggW8Nl+0WaiAzv3SzFSeu8/rxi3BDJQdJ4VTYs6vwC7Me2uQkBAAA=\"))\n",
"end": 739,
"score": 0.999439537525177,
"start": 490,
"tag": "KEY",
"value": "H4sIAAAAAAAAAIWPMQvCMBCF/8qRScEGxM3tiAELtSltFXEpoQkhII0ktR1K/7spio4Od8O7997HTcR5Q1vtAh2NDYG2o22p8bJ73nWgD+8UgWnewF/fYJX20btXspdAcqyQ/M11sreDbqz6BRme+DXZAcvE+QCYx+GlqEQGBZZ1yjIO7IglspqX6Q3rVOSwYlggW8Nl+0WaiAzv3SzFSeu8/rxi3BDJQdJ4VTYs6vwC7Me2uQkBAAA=\""
}
] |
cmr-exchange/graph/src/cmr/graph/data/tags.clj
|
daniel-zamora/Common-Metadata-Repository
| 294 |
(ns cmr.graph.data.tags
"Functions for working with tags data."
(:require
[clojure.data.codec.base64 :as b64]
[clojure.edn :as edn])
(:import
(java.util.zip GZIPInputStream)
(java.io ByteArrayInputStream)))
(defn gzip-base64-tag->edn
"Converts a base64 encoded gzipped string to EDN."
[^String input]
(-> input
.getBytes
b64/decode
ByteArrayInputStream.
GZIPInputStream.
slurp
edn/read-string))
(comment
(gzip-base64-tag->edn "H4sIAAAAAAAAAIWPMQvCMBCF/8qRScEGxM3tiAELtSltFXEpoQkhII0ktR1K/7spio4Od8O7997HTcR5Q1vtAh2NDYG2o22p8bJ73nWgD+8UgWnewF/fYJX20btXspdAcqyQ/M11sreDbqz6BRme+DXZAcvE+QCYx+GlqEQGBZZ1yjIO7IglspqX6Q3rVOSwYlggW8Nl+0WaiAzv3SzFSeu8/rxi3BDJQdJ4VTYs6vwC7Me2uQkBAAA="))
|
56113
|
(ns cmr.graph.data.tags
"Functions for working with tags data."
(:require
[clojure.data.codec.base64 :as b64]
[clojure.edn :as edn])
(:import
(java.util.zip GZIPInputStream)
(java.io ByteArrayInputStream)))
(defn gzip-base64-tag->edn
"Converts a base64 encoded gzipped string to EDN."
[^String input]
(-> input
.getBytes
b64/decode
ByteArrayInputStream.
GZIPInputStream.
slurp
edn/read-string))
(comment
(gzip-base64-tag->edn "<KEY>))
| true |
(ns cmr.graph.data.tags
"Functions for working with tags data."
(:require
[clojure.data.codec.base64 :as b64]
[clojure.edn :as edn])
(:import
(java.util.zip GZIPInputStream)
(java.io ByteArrayInputStream)))
(defn gzip-base64-tag->edn
"Converts a base64 encoded gzipped string to EDN."
[^String input]
(-> input
.getBytes
b64/decode
ByteArrayInputStream.
GZIPInputStream.
slurp
edn/read-string))
(comment
(gzip-base64-tag->edn "PI:KEY:<KEY>END_PI))
|
[
{
"context": " [:p\n \"Clojure Meetup Düsseldorf\" [:br]\n \"Christian Meter\" [:br]\n \"07.02.2019\"]]])\n\n(def slide-2\n [:se",
"end": 482,
"score": 0.999879777431488,
"start": 467,
"tag": "NAME",
"value": "Christian Meter"
},
{
"context": " [:small\n [:a {:href \"https://speakerdeck.com/bendisposto/verliebt-in-clojure?slide=12\"}\n \"https://spe",
"end": 1999,
"score": 0.999657392501831,
"start": 1988,
"tag": "USERNAME",
"value": "bendisposto"
},
{
"context": "clojure?slide=12\"}\n \"https://speakerdeck.com/bendisposto/verliebt-in-clojure?slide=12\"]]]])\n\n(def slide-7\n",
"end": 2073,
"score": 0.9996724724769592,
"start": 2062,
"tag": "USERNAME",
"value": "bendisposto"
},
{
"context": "ren\"\n [:br]\n [:a {:href \"https://github.com/clojuredus/xml-convert\"} \"https://github.com/clojuredus/xml-",
"end": 2805,
"score": 0.9996910095214844,
"start": 2795,
"tag": "USERNAME",
"value": "clojuredus"
},
{
"context": ".com/clojuredus/xml-convert\"} \"https://github.com/clojuredus/xml-convert\"]]\n [:p\n \"Katas aus den letzten ",
"end": 2850,
"score": 0.9997074007987976,
"start": 2840,
"tag": "USERNAME",
"value": "clojuredus"
},
{
"context": "ups\"\n [:br]\n [:a {:href \"https://github.com/clojuredus/clojure-coding-dojo\"}\n \"https://github.com/cl",
"end": 2964,
"score": 0.99969881772995,
"start": 2954,
"tag": "USERNAME",
"value": "clojuredus"
},
{
"context": "us/clojure-coding-dojo\"}\n \"https://github.com/clojuredus/clojure-coding-dojo\"]]])\n\n(def slide-links-more\n ",
"end": 3022,
"score": 0.9997040629386902,
"start": 3012,
"tag": "USERNAME",
"value": "clojuredus"
}
] |
src/reveal/slides.cljs
|
n2o/clojure-erste-schritte
| 0 |
(ns reveal.slides
(:require [goog.string :refer [format]]
[goog.string.format]))
(defn- set-header [header data-state]
[:style (format ".%s header span:after { content: \"%s\";}" data-state header)])
(def slide-1
[:section {:data-state "footer"}
[:div#title
[:img {:src "img/logos/clj.svg"
:style "height: 5em;line-height:5em;"}]
[:h1 "Clojure: Erste Schritte"]
[:hr]
[:p
"Clojure Meetup Düsseldorf" [:br]
"Christian Meter" [:br]
"07.02.2019"]]])
(def slide-2
[:section
[:h3 "Clojure ist..."]
[:p "funktional"]
[:p "dynamisch typisiert"]
[:p "auf der JVM gehostet"]
[:p "ein Lisp-Dialekt"]])
(def slide-3
[:section {:data-state "clojure-history"}
(set-header "Geschichte von Clojure" "clojure-history")
[:div.row
[:div.col-4
[:img {:src "img/logos/clj.svg"
:style "height: 5em;line-height:5em;"}]]
[:div.col-8
[:p "Öffentliches Release: Okt. 2007"]
[:p "Aktuelle Version 1.10"]
[:p "Extrem seriöse Entwicklung"]
[:p "Nicht \"der neuste heiße Scheiß\" "]
[:p.highlight "Trotzdem nicht langweilig"]]]])
(def slide-4
[:section
[:img {:src "img/tweet-boring-clojure.png"}]])
(def slide-5
[:section {:data-state "clojure-data"}
(set-header "Datenstrukturen" "clojure-data")
[:table {:style "width:100%"}
[:tbody
[:tr [:td [:pre.table [:code "42 1.3 4/3"]]] [:td "Numbers"]]
[:tr [:td [:pre.table [:code "\"foo\""]]] [:td "Strings"]]
[:tr [:td [:pre.table [:code ":foo :bar :baz"]]] [:td "Keywords"]]
[:tr
[:td [:pre.table [:code "[] '() #{} {}"]]]
[:td
"Collections"[:br]
[:small "(Vector, List, Set, Map)"]]]
[:tr [:td [:pre.table [:code "true false"]]] [:td "Booleans"]]]]])
(def slide-6
[:section {:data-state "clojure-hof"}
(set-header "Higher-Order Functions" "clojure-hof")
[:img {:src "img/hof.png"}]
[:small
[:small
[:a {:href "https://speakerdeck.com/bendisposto/verliebt-in-clojure?slide=12"}
"https://speakerdeck.com/bendisposto/verliebt-in-clojure?slide=12"]]]])
(def slide-7
[:section {:data-state "clojure-code"}
(set-header "Beispiele" "clojure-code")
[:pre [:code "(def x 42)\nx\n;; 42"]]
[:pre [:code "(defn square [num] (* num num))\n(square 4)\n;; 16
;; Alternativ:\n(def square (fn [num] (* num num)))\n(def square #(* % %))\n"]]
[:pre [:code "(map square [1 2 3])\n;; (1 4 9)"]]
[:pre [:code "(reduce + (map square [1 2 3]))\n;; 14"]]])
(def slide-to-the-repl
[:section {:data-state "demo"}
(set-header "Demo" "demo")
[:strong "To the REPL!"]])
(def slide-links
[:section {:data-state "links"}
(set-header "Aufgaben" "links")
[:p
"Video-Feed generieren"
[:br]
[:a {:href "https://github.com/clojuredus/xml-convert"} "https://github.com/clojuredus/xml-convert"]]
[:p
"Katas aus den letzten Meetups"
[:br]
[:a {:href "https://github.com/clojuredus/clojure-coding-dojo"}
"https://github.com/clojuredus/clojure-coding-dojo"]]])
(def slide-links-more
[:section {:data-state "links-more"}
(set-header "Weitere Aufgaben" "links-more")
[:p
"Web-Spielchen"
[:br]
[:a {:href "http://clojurescriptkoans.com"} "ClojureScript Koans"]]
[:p
"Web-IDE mit eigener Codeeingabe und grafischen Beispielen"
[:br]
[:a {:href "https://www.maria.cloud/"} "maria.cloud"]]
[:p
"Herunterladbare Testaufgaben"
[:br]
[:a
{:href "http://exercism.io/languages/clojure/about"}
"exercism.io"]]])
(def slide-links-editoren
[:section {:data-state "links-editors"}
(set-header "Editoren" "links-editors")
[:p [:a {:href "https://leiningen.org/"} "Build-Tool Leiningen"]]
[:p [:a {:href "http://spacemacs.org"} "Spacemacs + Cider"]]
[:p
[:a {:href "https://joyclark.org/post/sketchnote/clojure-meetup/2017/08/17/spacemacs.html"}
"Blogpost von Joy über Spacemacs + Clojure"]]
[:p
[:a {:href "https://cursive-ide.com/"}
"IntelliJ + Cursive"]]])
(defn all
"Add here all slides you want to see in your presentation."
[]
[slide-1
slide-2
slide-3
slide-4
slide-5
slide-7
slide-to-the-repl
slide-links
slide-links-more
slide-links-editoren])
|
47572
|
(ns reveal.slides
(:require [goog.string :refer [format]]
[goog.string.format]))
(defn- set-header [header data-state]
[:style (format ".%s header span:after { content: \"%s\";}" data-state header)])
(def slide-1
[:section {:data-state "footer"}
[:div#title
[:img {:src "img/logos/clj.svg"
:style "height: 5em;line-height:5em;"}]
[:h1 "Clojure: Erste Schritte"]
[:hr]
[:p
"Clojure Meetup Düsseldorf" [:br]
"<NAME>" [:br]
"07.02.2019"]]])
(def slide-2
[:section
[:h3 "Clojure ist..."]
[:p "funktional"]
[:p "dynamisch typisiert"]
[:p "auf der JVM gehostet"]
[:p "ein Lisp-Dialekt"]])
(def slide-3
[:section {:data-state "clojure-history"}
(set-header "Geschichte von Clojure" "clojure-history")
[:div.row
[:div.col-4
[:img {:src "img/logos/clj.svg"
:style "height: 5em;line-height:5em;"}]]
[:div.col-8
[:p "Öffentliches Release: Okt. 2007"]
[:p "Aktuelle Version 1.10"]
[:p "Extrem seriöse Entwicklung"]
[:p "Nicht \"der neuste heiße Scheiß\" "]
[:p.highlight "Trotzdem nicht langweilig"]]]])
(def slide-4
[:section
[:img {:src "img/tweet-boring-clojure.png"}]])
(def slide-5
[:section {:data-state "clojure-data"}
(set-header "Datenstrukturen" "clojure-data")
[:table {:style "width:100%"}
[:tbody
[:tr [:td [:pre.table [:code "42 1.3 4/3"]]] [:td "Numbers"]]
[:tr [:td [:pre.table [:code "\"foo\""]]] [:td "Strings"]]
[:tr [:td [:pre.table [:code ":foo :bar :baz"]]] [:td "Keywords"]]
[:tr
[:td [:pre.table [:code "[] '() #{} {}"]]]
[:td
"Collections"[:br]
[:small "(Vector, List, Set, Map)"]]]
[:tr [:td [:pre.table [:code "true false"]]] [:td "Booleans"]]]]])
(def slide-6
[:section {:data-state "clojure-hof"}
(set-header "Higher-Order Functions" "clojure-hof")
[:img {:src "img/hof.png"}]
[:small
[:small
[:a {:href "https://speakerdeck.com/bendisposto/verliebt-in-clojure?slide=12"}
"https://speakerdeck.com/bendisposto/verliebt-in-clojure?slide=12"]]]])
(def slide-7
[:section {:data-state "clojure-code"}
(set-header "Beispiele" "clojure-code")
[:pre [:code "(def x 42)\nx\n;; 42"]]
[:pre [:code "(defn square [num] (* num num))\n(square 4)\n;; 16
;; Alternativ:\n(def square (fn [num] (* num num)))\n(def square #(* % %))\n"]]
[:pre [:code "(map square [1 2 3])\n;; (1 4 9)"]]
[:pre [:code "(reduce + (map square [1 2 3]))\n;; 14"]]])
(def slide-to-the-repl
[:section {:data-state "demo"}
(set-header "Demo" "demo")
[:strong "To the REPL!"]])
(def slide-links
[:section {:data-state "links"}
(set-header "Aufgaben" "links")
[:p
"Video-Feed generieren"
[:br]
[:a {:href "https://github.com/clojuredus/xml-convert"} "https://github.com/clojuredus/xml-convert"]]
[:p
"Katas aus den letzten Meetups"
[:br]
[:a {:href "https://github.com/clojuredus/clojure-coding-dojo"}
"https://github.com/clojuredus/clojure-coding-dojo"]]])
(def slide-links-more
[:section {:data-state "links-more"}
(set-header "Weitere Aufgaben" "links-more")
[:p
"Web-Spielchen"
[:br]
[:a {:href "http://clojurescriptkoans.com"} "ClojureScript Koans"]]
[:p
"Web-IDE mit eigener Codeeingabe und grafischen Beispielen"
[:br]
[:a {:href "https://www.maria.cloud/"} "maria.cloud"]]
[:p
"Herunterladbare Testaufgaben"
[:br]
[:a
{:href "http://exercism.io/languages/clojure/about"}
"exercism.io"]]])
(def slide-links-editoren
[:section {:data-state "links-editors"}
(set-header "Editoren" "links-editors")
[:p [:a {:href "https://leiningen.org/"} "Build-Tool Leiningen"]]
[:p [:a {:href "http://spacemacs.org"} "Spacemacs + Cider"]]
[:p
[:a {:href "https://joyclark.org/post/sketchnote/clojure-meetup/2017/08/17/spacemacs.html"}
"Blogpost von Joy über Spacemacs + Clojure"]]
[:p
[:a {:href "https://cursive-ide.com/"}
"IntelliJ + Cursive"]]])
(defn all
"Add here all slides you want to see in your presentation."
[]
[slide-1
slide-2
slide-3
slide-4
slide-5
slide-7
slide-to-the-repl
slide-links
slide-links-more
slide-links-editoren])
| true |
(ns reveal.slides
(:require [goog.string :refer [format]]
[goog.string.format]))
(defn- set-header [header data-state]
[:style (format ".%s header span:after { content: \"%s\";}" data-state header)])
(def slide-1
[:section {:data-state "footer"}
[:div#title
[:img {:src "img/logos/clj.svg"
:style "height: 5em;line-height:5em;"}]
[:h1 "Clojure: Erste Schritte"]
[:hr]
[:p
"Clojure Meetup Düsseldorf" [:br]
"PI:NAME:<NAME>END_PI" [:br]
"07.02.2019"]]])
(def slide-2
[:section
[:h3 "Clojure ist..."]
[:p "funktional"]
[:p "dynamisch typisiert"]
[:p "auf der JVM gehostet"]
[:p "ein Lisp-Dialekt"]])
(def slide-3
[:section {:data-state "clojure-history"}
(set-header "Geschichte von Clojure" "clojure-history")
[:div.row
[:div.col-4
[:img {:src "img/logos/clj.svg"
:style "height: 5em;line-height:5em;"}]]
[:div.col-8
[:p "Öffentliches Release: Okt. 2007"]
[:p "Aktuelle Version 1.10"]
[:p "Extrem seriöse Entwicklung"]
[:p "Nicht \"der neuste heiße Scheiß\" "]
[:p.highlight "Trotzdem nicht langweilig"]]]])
(def slide-4
[:section
[:img {:src "img/tweet-boring-clojure.png"}]])
(def slide-5
[:section {:data-state "clojure-data"}
(set-header "Datenstrukturen" "clojure-data")
[:table {:style "width:100%"}
[:tbody
[:tr [:td [:pre.table [:code "42 1.3 4/3"]]] [:td "Numbers"]]
[:tr [:td [:pre.table [:code "\"foo\""]]] [:td "Strings"]]
[:tr [:td [:pre.table [:code ":foo :bar :baz"]]] [:td "Keywords"]]
[:tr
[:td [:pre.table [:code "[] '() #{} {}"]]]
[:td
"Collections"[:br]
[:small "(Vector, List, Set, Map)"]]]
[:tr [:td [:pre.table [:code "true false"]]] [:td "Booleans"]]]]])
(def slide-6
[:section {:data-state "clojure-hof"}
(set-header "Higher-Order Functions" "clojure-hof")
[:img {:src "img/hof.png"}]
[:small
[:small
[:a {:href "https://speakerdeck.com/bendisposto/verliebt-in-clojure?slide=12"}
"https://speakerdeck.com/bendisposto/verliebt-in-clojure?slide=12"]]]])
(def slide-7
[:section {:data-state "clojure-code"}
(set-header "Beispiele" "clojure-code")
[:pre [:code "(def x 42)\nx\n;; 42"]]
[:pre [:code "(defn square [num] (* num num))\n(square 4)\n;; 16
;; Alternativ:\n(def square (fn [num] (* num num)))\n(def square #(* % %))\n"]]
[:pre [:code "(map square [1 2 3])\n;; (1 4 9)"]]
[:pre [:code "(reduce + (map square [1 2 3]))\n;; 14"]]])
(def slide-to-the-repl
[:section {:data-state "demo"}
(set-header "Demo" "demo")
[:strong "To the REPL!"]])
(def slide-links
[:section {:data-state "links"}
(set-header "Aufgaben" "links")
[:p
"Video-Feed generieren"
[:br]
[:a {:href "https://github.com/clojuredus/xml-convert"} "https://github.com/clojuredus/xml-convert"]]
[:p
"Katas aus den letzten Meetups"
[:br]
[:a {:href "https://github.com/clojuredus/clojure-coding-dojo"}
"https://github.com/clojuredus/clojure-coding-dojo"]]])
(def slide-links-more
[:section {:data-state "links-more"}
(set-header "Weitere Aufgaben" "links-more")
[:p
"Web-Spielchen"
[:br]
[:a {:href "http://clojurescriptkoans.com"} "ClojureScript Koans"]]
[:p
"Web-IDE mit eigener Codeeingabe und grafischen Beispielen"
[:br]
[:a {:href "https://www.maria.cloud/"} "maria.cloud"]]
[:p
"Herunterladbare Testaufgaben"
[:br]
[:a
{:href "http://exercism.io/languages/clojure/about"}
"exercism.io"]]])
(def slide-links-editoren
[:section {:data-state "links-editors"}
(set-header "Editoren" "links-editors")
[:p [:a {:href "https://leiningen.org/"} "Build-Tool Leiningen"]]
[:p [:a {:href "http://spacemacs.org"} "Spacemacs + Cider"]]
[:p
[:a {:href "https://joyclark.org/post/sketchnote/clojure-meetup/2017/08/17/spacemacs.html"}
"Blogpost von Joy über Spacemacs + Clojure"]]
[:p
[:a {:href "https://cursive-ide.com/"}
"IntelliJ + Cursive"]]])
(defn all
"Add here all slides you want to see in your presentation."
[]
[slide-1
slide-2
slide-3
slide-4
slide-5
slide-7
slide-to-the-repl
slide-links
slide-links-more
slide-links-editoren])
|
[
{
"context": " as driver-specific properties.\n :user \"scott\"\n :password \"tiger\"})\n\n (with-connecti",
"end": 703,
"score": 0.9913668632507324,
"start": 698,
"tag": "USERNAME",
"value": "scott"
},
{
"context": "s.\n :user \"scott\"\n :password \"tiger\"})\n\n (with-connection db\n (with-query-results",
"end": 732,
"score": 0.9988477230072021,
"start": 727,
"tag": "PASSWORD",
"value": "tiger"
}
] |
postgre/clojure/read/postgre_read.clj
|
ekzemplaro/data_base_language
| 3 |
; -----------------------------------------------------------------
;
; postgre_read.clj
;
; Jul/17/2014
;
; -----------------------------------------------------------------
(load-file "/var/www/data_base/common/clojure_common/sql_manipulate.clj")
; -----------------------------------------------------------------
(use 'clojure.java.jdbc)
;
(println "*** 開始 ***")
(let [db-host "localhost"
db-name "city"]
(def db {:classname "org.postgresql.Driver" ; must be in classpath
:subprotocol "postgresql"
:subname (str "//" db-host "/" db-name)
; Any additional keys are passed to the driver
; as driver-specific properties.
:user "scott"
:password "tiger"})
(with-connection db
(with-query-results rs ["select * from cities order by id"]
(display_proc rs)
)))
(println "*** 終了 ***")
; (dorun (map #(println (:language :iso_code %)) rs)))))
; -----------------------------------------------------------------
|
124495
|
; -----------------------------------------------------------------
;
; postgre_read.clj
;
; Jul/17/2014
;
; -----------------------------------------------------------------
(load-file "/var/www/data_base/common/clojure_common/sql_manipulate.clj")
; -----------------------------------------------------------------
(use 'clojure.java.jdbc)
;
(println "*** 開始 ***")
(let [db-host "localhost"
db-name "city"]
(def db {:classname "org.postgresql.Driver" ; must be in classpath
:subprotocol "postgresql"
:subname (str "//" db-host "/" db-name)
; Any additional keys are passed to the driver
; as driver-specific properties.
:user "scott"
:password "<PASSWORD>"})
(with-connection db
(with-query-results rs ["select * from cities order by id"]
(display_proc rs)
)))
(println "*** 終了 ***")
; (dorun (map #(println (:language :iso_code %)) rs)))))
; -----------------------------------------------------------------
| true |
; -----------------------------------------------------------------
;
; postgre_read.clj
;
; Jul/17/2014
;
; -----------------------------------------------------------------
(load-file "/var/www/data_base/common/clojure_common/sql_manipulate.clj")
; -----------------------------------------------------------------
(use 'clojure.java.jdbc)
;
(println "*** 開始 ***")
(let [db-host "localhost"
db-name "city"]
(def db {:classname "org.postgresql.Driver" ; must be in classpath
:subprotocol "postgresql"
:subname (str "//" db-host "/" db-name)
; Any additional keys are passed to the driver
; as driver-specific properties.
:user "scott"
:password "PI:PASSWORD:<PASSWORD>END_PI"})
(with-connection db
(with-query-results rs ["select * from cities order by id"]
(display_proc rs)
)))
(println "*** 終了 ***")
; (dorun (map #(println (:language :iso_code %)) rs)))))
; -----------------------------------------------------------------
|
[
{
"context": "le string\"\n (let [result (sut/parse-override \"[email protected]\" \"override [email protected]\")]\n (t/is (= [",
"end": 671,
"score": 0.9998936653137207,
"start": 653,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "sut/parse-override \"[email protected]\" \"override [email protected]\")]\n (t/is (= [\"[email protected]\"] (:who re",
"end": 701,
"score": 0.9998687505722046,
"start": 683,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": " \"override [email protected]\")]\n (t/is (= [\"[email protected]\"] (:who result)))\n (t/is (jt/local-date? (:w",
"end": 740,
"score": 0.9998995065689087,
"start": 722,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": " multiple\"\n (let [result (sut/parse-override \"[email protected]\" \"override [email protected] [email protected]\")]\n (t/is (= [\"[email protected]\"",
"end": 895,
"score": 0.9998599290847778,
"start": 877,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "sut/parse-override \"[email protected]\" \"override [email protected] [email protected]\")]\n (t/is (= [\"[email protected]\" \"[email protected]\"] (:w",
"end": 908,
"score": 0.7560108304023743,
"start": 907,
"tag": "EMAIL",
"value": "a"
},
{
"context": "andles help\"\n (t/is (nil? (sut/parse-override \"[email protected]\" \"help\")))))\n\n(t/deftest override-bringer-action\n",
"end": 1056,
"score": 0.9998904466629028,
"start": 1038,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "ent answers)}\n (sut/override-bringer \"[email protected]\" (jt/local-date)))))\n (t/testing \"can set bringe",
"end": 1526,
"score": 0.9999019503593445,
"start": 1510,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "an override multiple bringers\"\n (let [emails [\"[email protected]\" \"[email protected]\"]]\n (t/is (= {:d",
"end": 1938,
"score": 0.9999221563339233,
"start": 1909,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": " (let [emails [\"[email protected]\" \"[email protected]\"]]\n (t/is (= {:direct-reply (:ack answers) :",
"end": 1966,
"score": 0.9999251365661621,
"start": 1941,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "emails next-date)))\n (t/is (= (list {:email \"[email protected]\", :fullname \"Cahterina Carollo\"}\n ",
"end": 2145,
"score": 0.9999241828918457,
"start": 2116,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "email \"[email protected]\", :fullname \"Cahterina Carollo\"}\n {:email \"marissa.mucci@com",
"end": 2176,
"score": 0.999873697757721,
"start": 2159,
"tag": "NAME",
"value": "Cahterina Carollo"
},
{
"context": "Cahterina Carollo\"}\n {:email \"[email protected]\", :fullname \"Marisssa Mucci\"})\n (db",
"end": 2234,
"score": 0.9999241828918457,
"start": 2209,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": " {:email \"[email protected]\", :fullname \"Marisssa Mucci\"})\n (db/get-bringers-on db/db {:day",
"end": 2262,
"score": 0.9998741745948792,
"start": 2248,
"tag": "NAME",
"value": "Marisssa Mucci"
}
] |
test/breakfastbot/handlers/override_test.clj
|
studer-l/breakfastbot
| 0 |
(ns breakfastbot.handlers.override-test
(:require [breakfastbot.db :as db]
[breakfastbot.db-test :refer [prepare-mock-db unpopular-date
next-date mock-emails]]
[breakfastbot.handlers.common :refer [answers]]
[breakfastbot.handlers.override :as sut]
[clojure.test :as t]
[java-time :as jt]
[mount.core :as mount]))
(mount/start #'db/db)
;; parser already well tested by sign-off; this is just to ensure it matches `override me`
(t/deftest override-parser
(t/testing "matches most simple string"
(let [result (sut/parse-override "[email protected]" "override [email protected]")]
(t/is (= ["[email protected]"] (:who result)))
(t/is (jt/local-date? (:when result)))))
(t/testing "matches multiple"
(let [result (sut/parse-override "[email protected]" "override [email protected] [email protected]")]
(t/is (= ["[email protected]" "[email protected]"] (:who result)))))
(t/testing "handles help"
(t/is (nil? (sut/parse-override "[email protected]" "help")))))
(t/deftest override-bringer-action
(t/testing "can override on known date"
(prepare-mock-db)
(t/is (= {:direct-reply (:ack answers) :update true}
(sut/override-bringer [(-> mock-emails (nth 2) :email)]
unpopular-date))))
(t/testing "refuses sing-on for dates where there is no breakfast"
(t/is (= {:direct-reply (:error-no-event answers)}
(sut/override-bringer "[email protected]" (jt/local-date)))))
(t/testing "can set bringer on date where no bringer is set yet"
(t/is (= {:direct-reply (:ack answers) :update true}
(sut/override-bringer [(-> mock-emails first :email)]
next-date)))))
(t/deftest override-many-bringers
(prepare-mock-db)
(t/testing "can override multiple bringers"
(let [emails ["[email protected]" "[email protected]"]]
(t/is (= {:direct-reply (:ack answers) :update true}
(sut/override-bringer emails next-date)))
(t/is (= (list {:email "[email protected]", :fullname "Cahterina Carollo"}
{:email "[email protected]", :fullname "Marisssa Mucci"})
(db/get-bringers-on db/db {:day next-date}))))))
|
111551
|
(ns breakfastbot.handlers.override-test
(:require [breakfastbot.db :as db]
[breakfastbot.db-test :refer [prepare-mock-db unpopular-date
next-date mock-emails]]
[breakfastbot.handlers.common :refer [answers]]
[breakfastbot.handlers.override :as sut]
[clojure.test :as t]
[java-time :as jt]
[mount.core :as mount]))
(mount/start #'db/db)
;; parser already well tested by sign-off; this is just to ensure it matches `override me`
(t/deftest override-parser
(t/testing "matches most simple string"
(let [result (sut/parse-override "<EMAIL>" "override <EMAIL>")]
(t/is (= ["<EMAIL>"] (:who result)))
(t/is (jt/local-date? (:when result)))))
(t/testing "matches multiple"
(let [result (sut/parse-override "<EMAIL>" "override <EMAIL>@b.c [email protected]")]
(t/is (= ["[email protected]" "[email protected]"] (:who result)))))
(t/testing "handles help"
(t/is (nil? (sut/parse-override "<EMAIL>" "help")))))
(t/deftest override-bringer-action
(t/testing "can override on known date"
(prepare-mock-db)
(t/is (= {:direct-reply (:ack answers) :update true}
(sut/override-bringer [(-> mock-emails (nth 2) :email)]
unpopular-date))))
(t/testing "refuses sing-on for dates where there is no breakfast"
(t/is (= {:direct-reply (:error-no-event answers)}
(sut/override-bringer "<EMAIL>" (jt/local-date)))))
(t/testing "can set bringer on date where no bringer is set yet"
(t/is (= {:direct-reply (:ack answers) :update true}
(sut/override-bringer [(-> mock-emails first :email)]
next-date)))))
(t/deftest override-many-bringers
(prepare-mock-db)
(t/testing "can override multiple bringers"
(let [emails ["<EMAIL>" "<EMAIL>"]]
(t/is (= {:direct-reply (:ack answers) :update true}
(sut/override-bringer emails next-date)))
(t/is (= (list {:email "<EMAIL>", :fullname "<NAME>"}
{:email "<EMAIL>", :fullname "<NAME>"})
(db/get-bringers-on db/db {:day next-date}))))))
| true |
(ns breakfastbot.handlers.override-test
(:require [breakfastbot.db :as db]
[breakfastbot.db-test :refer [prepare-mock-db unpopular-date
next-date mock-emails]]
[breakfastbot.handlers.common :refer [answers]]
[breakfastbot.handlers.override :as sut]
[clojure.test :as t]
[java-time :as jt]
[mount.core :as mount]))
(mount/start #'db/db)
;; parser already well tested by sign-off; this is just to ensure it matches `override me`
(t/deftest override-parser
(t/testing "matches most simple string"
(let [result (sut/parse-override "PI:EMAIL:<EMAIL>END_PI" "override PI:EMAIL:<EMAIL>END_PI")]
(t/is (= ["PI:EMAIL:<EMAIL>END_PI"] (:who result)))
(t/is (jt/local-date? (:when result)))))
(t/testing "matches multiple"
(let [result (sut/parse-override "PI:EMAIL:<EMAIL>END_PI" "override PI:EMAIL:<EMAIL>[email protected] [email protected]")]
(t/is (= ["[email protected]" "[email protected]"] (:who result)))))
(t/testing "handles help"
(t/is (nil? (sut/parse-override "PI:EMAIL:<EMAIL>END_PI" "help")))))
(t/deftest override-bringer-action
(t/testing "can override on known date"
(prepare-mock-db)
(t/is (= {:direct-reply (:ack answers) :update true}
(sut/override-bringer [(-> mock-emails (nth 2) :email)]
unpopular-date))))
(t/testing "refuses sing-on for dates where there is no breakfast"
(t/is (= {:direct-reply (:error-no-event answers)}
(sut/override-bringer "PI:EMAIL:<EMAIL>END_PI" (jt/local-date)))))
(t/testing "can set bringer on date where no bringer is set yet"
(t/is (= {:direct-reply (:ack answers) :update true}
(sut/override-bringer [(-> mock-emails first :email)]
next-date)))))
(t/deftest override-many-bringers
(prepare-mock-db)
(t/testing "can override multiple bringers"
(let [emails ["PI:EMAIL:<EMAIL>END_PI" "PI:EMAIL:<EMAIL>END_PI"]]
(t/is (= {:direct-reply (:ack answers) :update true}
(sut/override-bringer emails next-date)))
(t/is (= (list {:email "PI:EMAIL:<EMAIL>END_PI", :fullname "PI:NAME:<NAME>END_PI"}
{:email "PI:EMAIL:<EMAIL>END_PI", :fullname "PI:NAME:<NAME>END_PI"})
(db/get-bringers-on db/db {:day next-date}))))))
|
[
{
"context": "ect {:host \"localhost\"\n :username \"admin\"\n :password \"dials\"})\n (origi",
"end": 134,
"score": 0.9908370971679688,
"start": 129,
"tag": "USERNAME",
"value": "admin"
},
{
"context": " :username \"admin\"\n :password \"dials\"})\n (originate-call {:exten \"100\"\n ",
"end": 168,
"score": 0.9988552331924438,
"start": 163,
"tag": "PASSWORD",
"value": "dials"
}
] |
doc/example-script.clj
|
Ingemark/amicli
| 0 |
(ns amicli.user
(:require [amicli :refer :all]))
(defn script []
(-> (connect {:host "localhost"
:username "admin"
:password "dials"})
(originate-call {:exten "100"
:channel "SIP/139"
:context "default"
:async true})))
(script)
|
57659
|
(ns amicli.user
(:require [amicli :refer :all]))
(defn script []
(-> (connect {:host "localhost"
:username "admin"
:password "<PASSWORD>"})
(originate-call {:exten "100"
:channel "SIP/139"
:context "default"
:async true})))
(script)
| true |
(ns amicli.user
(:require [amicli :refer :all]))
(defn script []
(-> (connect {:host "localhost"
:username "admin"
:password "PI:PASSWORD:<PASSWORD>END_PI"})
(originate-call {:exten "100"
:channel "SIP/139"
:context "default"
:async true})))
(script)
|
[
{
"context": "(comment \n re-core, Copyright 2012 Ronen Narkis, narkisr.com\n Licensed under the Apache License,",
"end": 48,
"score": 0.9998844265937805,
"start": 36,
"tag": "NAME",
"value": "Ronen Narkis"
},
{
"context": "ment \n re-core, Copyright 2012 Ronen Narkis, narkisr.com\n Licensed under the Apache License,\n Versio",
"end": 57,
"score": 0.5069965720176697,
"start": 54,
"tag": "EMAIL",
"value": "isr"
},
{
"context": " \n re-core, Copyright 2012 Ronen Narkis, narkisr.com\n Licensed under the Apache License,\n Version 2.",
"end": 61,
"score": 0.6141349077224731,
"start": 58,
"tag": "EMAIL",
"value": "com"
}
] |
src/openstack/validations.clj
|
celestial-ops/core
| 1 |
(comment
re-core, Copyright 2012 Ronen Narkis, narkisr.com
Licensed under the Apache License,
Version 2.0 (the "License") you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.)
(ns openstack.validations
"Openstack validations"
(:require
[openstack.model :refer (identifiers)]
[re-core.model :refer (check-validity)]
[clojure.core.strint :refer (<<)]
[subs.core :as subs :refer (validate! combine every-v every-kv validation when-not-nil subtract)])
)
(def machine-entity
{:machine {
:hostname #{:required :String} :domain #{:required :String}
:user #{:required :String} :os #{:required :Keyword}
}})
(validation ::volume {
:device #{:required :device}
:size #{:required :Integer}
:clear #{:required :Boolean}})
(validation ::group* (every-v #{:String}))
(validation ::network* (every-v #{:String}))
(validation ::volume* (every-v #{::volume}))
(validation ::hint* (every-v #{:Vector}))
(def openstack-common
{:openstack
{:flavor #{:required :String} :tenant #{:required :String}
:security-groups #{:Vector ::group*} :networks #{:Vector ::network*}
:key-name #{:required :String} :hints #{::hint*} :volumes #{::volume*}
:floating-ip-pool #{:String} :floating-ip #{:ip :String}
}
})
(defn provider-validation [spec]
(validate! spec (combine machine-entity openstack-common) :error ::invalid-openstack))
(defmethod check-validity [:openstack :entity] [m]
(validate! m (combine machine-entity openstack-common) :error ::invalid-system))
(defmethod check-validity [:openstack :template] [m]
(validate! m (subtract (combine machine-entity openstack-common) identifiers) :error ::invalid-template))
|
122838
|
(comment
re-core, Copyright 2012 <NAME>, nark<EMAIL>.<EMAIL>
Licensed under the Apache License,
Version 2.0 (the "License") you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.)
(ns openstack.validations
"Openstack validations"
(:require
[openstack.model :refer (identifiers)]
[re-core.model :refer (check-validity)]
[clojure.core.strint :refer (<<)]
[subs.core :as subs :refer (validate! combine every-v every-kv validation when-not-nil subtract)])
)
(def machine-entity
{:machine {
:hostname #{:required :String} :domain #{:required :String}
:user #{:required :String} :os #{:required :Keyword}
}})
(validation ::volume {
:device #{:required :device}
:size #{:required :Integer}
:clear #{:required :Boolean}})
(validation ::group* (every-v #{:String}))
(validation ::network* (every-v #{:String}))
(validation ::volume* (every-v #{::volume}))
(validation ::hint* (every-v #{:Vector}))
(def openstack-common
{:openstack
{:flavor #{:required :String} :tenant #{:required :String}
:security-groups #{:Vector ::group*} :networks #{:Vector ::network*}
:key-name #{:required :String} :hints #{::hint*} :volumes #{::volume*}
:floating-ip-pool #{:String} :floating-ip #{:ip :String}
}
})
(defn provider-validation [spec]
(validate! spec (combine machine-entity openstack-common) :error ::invalid-openstack))
(defmethod check-validity [:openstack :entity] [m]
(validate! m (combine machine-entity openstack-common) :error ::invalid-system))
(defmethod check-validity [:openstack :template] [m]
(validate! m (subtract (combine machine-entity openstack-common) identifiers) :error ::invalid-template))
| true |
(comment
re-core, Copyright 2012 PI:NAME:<NAME>END_PI, narkPI:EMAIL:<EMAIL>END_PI.PI:EMAIL:<EMAIL>END_PI
Licensed under the Apache License,
Version 2.0 (the "License") you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.)
(ns openstack.validations
"Openstack validations"
(:require
[openstack.model :refer (identifiers)]
[re-core.model :refer (check-validity)]
[clojure.core.strint :refer (<<)]
[subs.core :as subs :refer (validate! combine every-v every-kv validation when-not-nil subtract)])
)
(def machine-entity
{:machine {
:hostname #{:required :String} :domain #{:required :String}
:user #{:required :String} :os #{:required :Keyword}
}})
(validation ::volume {
:device #{:required :device}
:size #{:required :Integer}
:clear #{:required :Boolean}})
(validation ::group* (every-v #{:String}))
(validation ::network* (every-v #{:String}))
(validation ::volume* (every-v #{::volume}))
(validation ::hint* (every-v #{:Vector}))
(def openstack-common
{:openstack
{:flavor #{:required :String} :tenant #{:required :String}
:security-groups #{:Vector ::group*} :networks #{:Vector ::network*}
:key-name #{:required :String} :hints #{::hint*} :volumes #{::volume*}
:floating-ip-pool #{:String} :floating-ip #{:ip :String}
}
})
(defn provider-validation [spec]
(validate! spec (combine machine-entity openstack-common) :error ::invalid-openstack))
(defmethod check-validity [:openstack :entity] [m]
(validate! m (combine machine-entity openstack-common) :error ::invalid-system))
(defmethod check-validity [:openstack :template] [m]
(validate! m (subtract (combine machine-entity openstack-common) identifiers) :error ::invalid-template))
|
[
{
"context": "; Copyright (c) Rich Hickey. All rights reserved.\n; The use and distributio",
"end": 29,
"score": 0.9998701214790344,
"start": 18,
"tag": "NAME",
"value": "Rich Hickey"
},
{
"context": "tice, or any other, from this software.\n\n; Author: Frantisek Sodomka\n\n(ns clojure.test-clojure.macros\n (:use clojure.",
"end": 491,
"score": 0.9998854994773865,
"start": 474,
"tag": "NAME",
"value": "Frantisek Sodomka"
}
] |
test/clojure/test_clojure/macros.clj
|
lorettahe/clojure
| 1 |
; Copyright (c) Rich Hickey. All rights reserved.
; The use and distribution terms for this software are covered by the
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
; which can be found in the file epl-v10.html at the root of this distribution.
; By using this software in any fashion, you are agreeing to be bound by
; the terms of this license.
; You must not remove this notice, or any other, from this software.
; Author: Frantisek Sodomka
(ns clojure.test-clojure.macros
(:use clojure.test))
; http://clojure.org/macros
; ->
; defmacro definline macroexpand-1 macroexpand
;; -> and ->> should not be dependent on the meaning of their arguments
(defmacro c
[arg]
(if (= 'b (first arg))
:foo
:bar))
(deftest ->test
(let [a 2, b identity]
(is (= (-> a b c)
(c (b a))))))
(deftest ->>test
(let [a 2, b identity]
(is (= (->> a b c)
(c (b a))))))
(deftest ->metadata-test
(testing "a trivial form"
(is (= {:hardy :har :har :-D}
(meta (macroexpand-1 (list `-> (with-meta
'quoted-symbol
{:hardy :har :har :-D})))))))
(testing "a nontrivial form"
(let [a (with-meta 'a {:foo :bar})
b (with-meta '(b c d) {:bar :baz})
e (with-meta 'e {:baz :quux})
expanded (macroexpand-1 (list `-> a b e))]
(is (= expanded '(e (b a c d))))
(is (= {:baz :quux} (meta (first expanded))))
(is (= {:bar :baz} (meta (second expanded))))
(is (= {:foo :bar} (meta (second (second expanded))))))))
(deftest ->>metadata-test
(testing "a trivial form"
(is (= {:hardy :har :har :-D}
(meta (macroexpand-1 (list `->> (with-meta
'quoted-symbol
{:hardy :har :har :-D})))))))
(testing "a non-trivial form"
(let [a (with-meta 'a {:foo :bar})
b (with-meta '(b c d) {:bar :baz})
e (with-meta 'e {:baz :quux})
expanded (macroexpand-1 (list `->> a b e))]
(is (= expanded '(e (b c d a))))
(is (= {:baz :quux} (meta (first expanded))))
(is (= {:bar :baz} (meta (second expanded))))
(is (= {:foo :bar} (meta (last (second expanded))))))))
|
36177
|
; Copyright (c) <NAME>. All rights reserved.
; The use and distribution terms for this software are covered by the
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
; which can be found in the file epl-v10.html at the root of this distribution.
; By using this software in any fashion, you are agreeing to be bound by
; the terms of this license.
; You must not remove this notice, or any other, from this software.
; Author: <NAME>
(ns clojure.test-clojure.macros
(:use clojure.test))
; http://clojure.org/macros
; ->
; defmacro definline macroexpand-1 macroexpand
;; -> and ->> should not be dependent on the meaning of their arguments
(defmacro c
[arg]
(if (= 'b (first arg))
:foo
:bar))
(deftest ->test
(let [a 2, b identity]
(is (= (-> a b c)
(c (b a))))))
(deftest ->>test
(let [a 2, b identity]
(is (= (->> a b c)
(c (b a))))))
(deftest ->metadata-test
(testing "a trivial form"
(is (= {:hardy :har :har :-D}
(meta (macroexpand-1 (list `-> (with-meta
'quoted-symbol
{:hardy :har :har :-D})))))))
(testing "a nontrivial form"
(let [a (with-meta 'a {:foo :bar})
b (with-meta '(b c d) {:bar :baz})
e (with-meta 'e {:baz :quux})
expanded (macroexpand-1 (list `-> a b e))]
(is (= expanded '(e (b a c d))))
(is (= {:baz :quux} (meta (first expanded))))
(is (= {:bar :baz} (meta (second expanded))))
(is (= {:foo :bar} (meta (second (second expanded))))))))
(deftest ->>metadata-test
(testing "a trivial form"
(is (= {:hardy :har :har :-D}
(meta (macroexpand-1 (list `->> (with-meta
'quoted-symbol
{:hardy :har :har :-D})))))))
(testing "a non-trivial form"
(let [a (with-meta 'a {:foo :bar})
b (with-meta '(b c d) {:bar :baz})
e (with-meta 'e {:baz :quux})
expanded (macroexpand-1 (list `->> a b e))]
(is (= expanded '(e (b c d a))))
(is (= {:baz :quux} (meta (first expanded))))
(is (= {:bar :baz} (meta (second expanded))))
(is (= {:foo :bar} (meta (last (second expanded))))))))
| true |
; Copyright (c) PI:NAME:<NAME>END_PI. All rights reserved.
; The use and distribution terms for this software are covered by the
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
; which can be found in the file epl-v10.html at the root of this distribution.
; By using this software in any fashion, you are agreeing to be bound by
; the terms of this license.
; You must not remove this notice, or any other, from this software.
; Author: PI:NAME:<NAME>END_PI
(ns clojure.test-clojure.macros
(:use clojure.test))
; http://clojure.org/macros
; ->
; defmacro definline macroexpand-1 macroexpand
;; -> and ->> should not be dependent on the meaning of their arguments
(defmacro c
[arg]
(if (= 'b (first arg))
:foo
:bar))
(deftest ->test
(let [a 2, b identity]
(is (= (-> a b c)
(c (b a))))))
(deftest ->>test
(let [a 2, b identity]
(is (= (->> a b c)
(c (b a))))))
(deftest ->metadata-test
(testing "a trivial form"
(is (= {:hardy :har :har :-D}
(meta (macroexpand-1 (list `-> (with-meta
'quoted-symbol
{:hardy :har :har :-D})))))))
(testing "a nontrivial form"
(let [a (with-meta 'a {:foo :bar})
b (with-meta '(b c d) {:bar :baz})
e (with-meta 'e {:baz :quux})
expanded (macroexpand-1 (list `-> a b e))]
(is (= expanded '(e (b a c d))))
(is (= {:baz :quux} (meta (first expanded))))
(is (= {:bar :baz} (meta (second expanded))))
(is (= {:foo :bar} (meta (second (second expanded))))))))
(deftest ->>metadata-test
(testing "a trivial form"
(is (= {:hardy :har :har :-D}
(meta (macroexpand-1 (list `->> (with-meta
'quoted-symbol
{:hardy :har :har :-D})))))))
(testing "a non-trivial form"
(let [a (with-meta 'a {:foo :bar})
b (with-meta '(b c d) {:bar :baz})
e (with-meta 'e {:baz :quux})
expanded (macroexpand-1 (list `->> a b e))]
(is (= expanded '(e (b c d a))))
(is (= {:baz :quux} (meta (first expanded))))
(is (= {:bar :baz} (meta (second expanded))))
(is (= {:foo :bar} (meta (last (second expanded))))))))
|
[
{
"context": "\n (h/a {:class \"header__email\" :href \"mailto:[email protected]\"}\n \"Email Us\"))))\n\n(defn layout\n [current",
"end": 1667,
"score": 0.9999289512634277,
"start": 1651,
"tag": "EMAIL",
"value": "[email protected]"
}
] |
src/mechtron/core.clj
|
aetkinz/mechtron.ca
| 0 |
(ns mechtron.core
(:require [clj-template.html5 :as h]
[clojure.string :as str]))
(def navbar {"./" "Home"
"company.htm" "Company"
"products.htm" "Products"
"capabilities.htm" "Capabilities"
"contact.htm" "Contact"})
(defn navigation-item
[selected [href title]]
(when-not (and (= title "Home") (= selected "home"))
(h/li {:class (str "navbar__item" (when (str/starts-with? href selected) " navbar__selected"))}
(h/a {:class "navbar__link" :href href} title))))
(defn navigation
[selected]
(h/nav {:class "navbar"}
(h/ul {:class "navbar__items"}
(str/join "\n" (mapv #(navigation-item selected %) navbar)))))
(defn header
[]
(h/header {:class "header"}
(h/section {:class "header__logo logo"}
(h/h1 {:class "logo__title"}
(h/a {:class "logo__link" :href "./"}
(h/span {:class "logo__text"} "Mechtron Industries")
(h/img- {:class "logo__img"
:src "static/images/mechtron_logo.svg"
:alt "Mechtron Industries"}))))
(h/section {:class "header__blurb blurb"}
(h/p {:class "blurb__text"}
(h/span {:class "line"}
"Mechtron Innovations is Your Supplier of Tubular")
(h/span {:class "line"}
"Value Add Components, Sub Assemblies and Custom")
(h/span {:class "line"}
"Tooling to the Automative and Related Industries")))
(h/section {:class "header__info"}
(h/p {:class "header__id"} "TS16949 / ISO 9001:2015")
(h/p {:class "header__phone"} "519-624-9780")
(h/a {:class "header__email" :href "mailto:[email protected]"}
"Email Us"))))
(defn layout
[current-page title content]
(h/html
(h/head
(h/meta- {:charset "utf-8"})
(h/title (str "Mechtron Innovations Inc.: " title))
(h/link- {:href "static/css/style.css" :rel "stylesheet"})
(h/link- {:href "static/images/favicon.png" :rel "icon" :type "image/png"})
(h/meta- {:name "viewport" :content "width=1050"}))
(h/body
(h/div {:class (str "layout layout--page_" current-page)}
(header)
(navigation current-page)
(h/div {:class "layout__main"}
content)))))
(defn line
[text]
(h/span {:class "line"} text))
|
122364
|
(ns mechtron.core
(:require [clj-template.html5 :as h]
[clojure.string :as str]))
(def navbar {"./" "Home"
"company.htm" "Company"
"products.htm" "Products"
"capabilities.htm" "Capabilities"
"contact.htm" "Contact"})
(defn navigation-item
[selected [href title]]
(when-not (and (= title "Home") (= selected "home"))
(h/li {:class (str "navbar__item" (when (str/starts-with? href selected) " navbar__selected"))}
(h/a {:class "navbar__link" :href href} title))))
(defn navigation
[selected]
(h/nav {:class "navbar"}
(h/ul {:class "navbar__items"}
(str/join "\n" (mapv #(navigation-item selected %) navbar)))))
(defn header
[]
(h/header {:class "header"}
(h/section {:class "header__logo logo"}
(h/h1 {:class "logo__title"}
(h/a {:class "logo__link" :href "./"}
(h/span {:class "logo__text"} "Mechtron Industries")
(h/img- {:class "logo__img"
:src "static/images/mechtron_logo.svg"
:alt "Mechtron Industries"}))))
(h/section {:class "header__blurb blurb"}
(h/p {:class "blurb__text"}
(h/span {:class "line"}
"Mechtron Innovations is Your Supplier of Tubular")
(h/span {:class "line"}
"Value Add Components, Sub Assemblies and Custom")
(h/span {:class "line"}
"Tooling to the Automative and Related Industries")))
(h/section {:class "header__info"}
(h/p {:class "header__id"} "TS16949 / ISO 9001:2015")
(h/p {:class "header__phone"} "519-624-9780")
(h/a {:class "header__email" :href "mailto:<EMAIL>"}
"Email Us"))))
(defn layout
[current-page title content]
(h/html
(h/head
(h/meta- {:charset "utf-8"})
(h/title (str "Mechtron Innovations Inc.: " title))
(h/link- {:href "static/css/style.css" :rel "stylesheet"})
(h/link- {:href "static/images/favicon.png" :rel "icon" :type "image/png"})
(h/meta- {:name "viewport" :content "width=1050"}))
(h/body
(h/div {:class (str "layout layout--page_" current-page)}
(header)
(navigation current-page)
(h/div {:class "layout__main"}
content)))))
(defn line
[text]
(h/span {:class "line"} text))
| true |
(ns mechtron.core
(:require [clj-template.html5 :as h]
[clojure.string :as str]))
(def navbar {"./" "Home"
"company.htm" "Company"
"products.htm" "Products"
"capabilities.htm" "Capabilities"
"contact.htm" "Contact"})
(defn navigation-item
[selected [href title]]
(when-not (and (= title "Home") (= selected "home"))
(h/li {:class (str "navbar__item" (when (str/starts-with? href selected) " navbar__selected"))}
(h/a {:class "navbar__link" :href href} title))))
(defn navigation
[selected]
(h/nav {:class "navbar"}
(h/ul {:class "navbar__items"}
(str/join "\n" (mapv #(navigation-item selected %) navbar)))))
(defn header
[]
(h/header {:class "header"}
(h/section {:class "header__logo logo"}
(h/h1 {:class "logo__title"}
(h/a {:class "logo__link" :href "./"}
(h/span {:class "logo__text"} "Mechtron Industries")
(h/img- {:class "logo__img"
:src "static/images/mechtron_logo.svg"
:alt "Mechtron Industries"}))))
(h/section {:class "header__blurb blurb"}
(h/p {:class "blurb__text"}
(h/span {:class "line"}
"Mechtron Innovations is Your Supplier of Tubular")
(h/span {:class "line"}
"Value Add Components, Sub Assemblies and Custom")
(h/span {:class "line"}
"Tooling to the Automative and Related Industries")))
(h/section {:class "header__info"}
(h/p {:class "header__id"} "TS16949 / ISO 9001:2015")
(h/p {:class "header__phone"} "519-624-9780")
(h/a {:class "header__email" :href "mailto:PI:EMAIL:<EMAIL>END_PI"}
"Email Us"))))
(defn layout
[current-page title content]
(h/html
(h/head
(h/meta- {:charset "utf-8"})
(h/title (str "Mechtron Innovations Inc.: " title))
(h/link- {:href "static/css/style.css" :rel "stylesheet"})
(h/link- {:href "static/images/favicon.png" :rel "icon" :type "image/png"})
(h/meta- {:name "viewport" :content "width=1050"}))
(h/body
(h/div {:class (str "layout layout--page_" current-page)}
(header)
(navigation current-page)
(h/div {:class "layout__main"}
content)))))
(defn line
[text]
(h/span {:class "line"} text))
|
[
{
"context": "a map value attribute\"\n (let [vls {:formatted \"John SmitH\"\n :family-name \"John\"\n ",
"end": 672,
"score": 0.9998531341552734,
"start": 662,
"tag": "NAME",
"value": "John SmitH"
},
{
"context": "rmatted \"John SmitH\"\n :family-name \"John\"\n :given-name \"Smith\"}\n en",
"end": 707,
"score": 0.9997293949127197,
"start": 703,
"tag": "NAME",
"value": "John"
},
{
"context": " :family-name \"John\"\n :given-name \"Smith\"}\n entity {:user {:formatted_name (:form",
"end": 742,
"score": 0.9997804164886475,
"start": 737,
"tag": "NAME",
"value": "Smith"
}
] |
test/clj/scimmer/services/resource_test.clj
|
elarous/scimmer
| 1 |
(ns scimmer.services.resource-test
(:require [scimmer.services.resource :as sut]
[scimmer.services.schema :as sch]
[clojure.test :refer :all]
[malli.util :as mu]))
(deftest build-resource
(testing "extracting a top level attribute"
(let [locale "EN"
entity {:user {:locale locale}}
schema [:map [:locale {::sch/mapping :user/locale} string?]]
resource (sut/build-resource (mu/to-map-syntax schema) entity)]
(def r resource)
(is (contains? resource :locale))
(is (= (:locale resource) locale))))
(testing "extracting a map value attribute"
(let [vls {:formatted "John SmitH"
:family-name "John"
:given-name "Smith"}
entity {:user {:formatted_name (:formatted vls)
:last_name (:family-name vls)
:name (:given-name vls)}}
schema [:map
[:name
[:map
[:formatted {::sch/mapping :user/formatted_name} string?]
[:familyName {::sch/mapping :user/last_name} string?]
[:givenName {::sch/mapping :user/name} string?]]]]
resource (sut/build-resource (mu/to-map-syntax schema) entity)]
(is (= (get-in resource [:name :formatted]) (:formatted vls)))
(is (= (get-in resource [:name :familyName]) (:family-name vls)))
(is (= (get-in resource [:name :givenName]) (:given-name vls)))))
(testing "extracting a vector value attribute"
(let [vls {:work-number "+12121212"
:mobile-number "+34343434"}
entity {:user {:work_number (:work-number vls)
:mobile_number (:mobile-number vls)}}
schema [:map
[:phoneNumbers
[:vector
[:multi {:dispatch :type}
[:work [:map
[:type [:= :work]]
[:value {::sch/mapping :user/work_number} string?]]]
[:mobile [:map
[:type [:= :mobile]]
[:value {::sch/mapping :user/mobile_number} string?]]]]]]]
resource (sut/build-resource (mu/to-map-syntax schema) entity)]
(is (contains? resource :phoneNumbers))
(is 2 (count (:phoneNumbers resource)))
(is (= (:value (some #(and (= (:type %) "work") %) (:phoneNumbers resource)))
(:work-number vls)))
(is (= (:value (some #(and (= (:type %) "mobile") %) (:phoneNumbers resource)))
(:mobile-number vls))))))
|
32981
|
(ns scimmer.services.resource-test
(:require [scimmer.services.resource :as sut]
[scimmer.services.schema :as sch]
[clojure.test :refer :all]
[malli.util :as mu]))
(deftest build-resource
(testing "extracting a top level attribute"
(let [locale "EN"
entity {:user {:locale locale}}
schema [:map [:locale {::sch/mapping :user/locale} string?]]
resource (sut/build-resource (mu/to-map-syntax schema) entity)]
(def r resource)
(is (contains? resource :locale))
(is (= (:locale resource) locale))))
(testing "extracting a map value attribute"
(let [vls {:formatted "<NAME>"
:family-name "<NAME>"
:given-name "<NAME>"}
entity {:user {:formatted_name (:formatted vls)
:last_name (:family-name vls)
:name (:given-name vls)}}
schema [:map
[:name
[:map
[:formatted {::sch/mapping :user/formatted_name} string?]
[:familyName {::sch/mapping :user/last_name} string?]
[:givenName {::sch/mapping :user/name} string?]]]]
resource (sut/build-resource (mu/to-map-syntax schema) entity)]
(is (= (get-in resource [:name :formatted]) (:formatted vls)))
(is (= (get-in resource [:name :familyName]) (:family-name vls)))
(is (= (get-in resource [:name :givenName]) (:given-name vls)))))
(testing "extracting a vector value attribute"
(let [vls {:work-number "+12121212"
:mobile-number "+34343434"}
entity {:user {:work_number (:work-number vls)
:mobile_number (:mobile-number vls)}}
schema [:map
[:phoneNumbers
[:vector
[:multi {:dispatch :type}
[:work [:map
[:type [:= :work]]
[:value {::sch/mapping :user/work_number} string?]]]
[:mobile [:map
[:type [:= :mobile]]
[:value {::sch/mapping :user/mobile_number} string?]]]]]]]
resource (sut/build-resource (mu/to-map-syntax schema) entity)]
(is (contains? resource :phoneNumbers))
(is 2 (count (:phoneNumbers resource)))
(is (= (:value (some #(and (= (:type %) "work") %) (:phoneNumbers resource)))
(:work-number vls)))
(is (= (:value (some #(and (= (:type %) "mobile") %) (:phoneNumbers resource)))
(:mobile-number vls))))))
| true |
(ns scimmer.services.resource-test
(:require [scimmer.services.resource :as sut]
[scimmer.services.schema :as sch]
[clojure.test :refer :all]
[malli.util :as mu]))
(deftest build-resource
(testing "extracting a top level attribute"
(let [locale "EN"
entity {:user {:locale locale}}
schema [:map [:locale {::sch/mapping :user/locale} string?]]
resource (sut/build-resource (mu/to-map-syntax schema) entity)]
(def r resource)
(is (contains? resource :locale))
(is (= (:locale resource) locale))))
(testing "extracting a map value attribute"
(let [vls {:formatted "PI:NAME:<NAME>END_PI"
:family-name "PI:NAME:<NAME>END_PI"
:given-name "PI:NAME:<NAME>END_PI"}
entity {:user {:formatted_name (:formatted vls)
:last_name (:family-name vls)
:name (:given-name vls)}}
schema [:map
[:name
[:map
[:formatted {::sch/mapping :user/formatted_name} string?]
[:familyName {::sch/mapping :user/last_name} string?]
[:givenName {::sch/mapping :user/name} string?]]]]
resource (sut/build-resource (mu/to-map-syntax schema) entity)]
(is (= (get-in resource [:name :formatted]) (:formatted vls)))
(is (= (get-in resource [:name :familyName]) (:family-name vls)))
(is (= (get-in resource [:name :givenName]) (:given-name vls)))))
(testing "extracting a vector value attribute"
(let [vls {:work-number "+12121212"
:mobile-number "+34343434"}
entity {:user {:work_number (:work-number vls)
:mobile_number (:mobile-number vls)}}
schema [:map
[:phoneNumbers
[:vector
[:multi {:dispatch :type}
[:work [:map
[:type [:= :work]]
[:value {::sch/mapping :user/work_number} string?]]]
[:mobile [:map
[:type [:= :mobile]]
[:value {::sch/mapping :user/mobile_number} string?]]]]]]]
resource (sut/build-resource (mu/to-map-syntax schema) entity)]
(is (contains? resource :phoneNumbers))
(is 2 (count (:phoneNumbers resource)))
(is (= (:value (some #(and (= (:type %) "work") %) (:phoneNumbers resource)))
(:work-number vls)))
(is (= (:value (some #(and (= (:type %) "mobile") %) (:phoneNumbers resource)))
(:mobile-number vls))))))
|
[
{
"context": "e]\n (let [data [{:id 1000\n :name \"Luke\"\n :home_planet \"Tatooine\"\n ",
"end": 461,
"score": 0.9996914863586426,
"start": 457,
"tag": "NAME",
"value": "Luke"
},
{
"context": "\"]}\n {:id 2000\n :name \"Lando Calrissian\"\n :home_planet \"Socorro\"\n ",
"end": 620,
"score": 0.999758780002594,
"start": 604,
"tag": "NAME",
"value": "Lando Calrissian"
}
] |
resources/leiningen/new/luminus/graphql/src/graphql.clj
|
Cnly/luminus-template
| 0 |
(ns <<project-ns>>.routes.services.graphql
(:require
[com.walmartlabs.lacinia.util :refer [attach-resolvers]]
[com.walmartlabs.lacinia.schema :as schema]
[com.walmartlabs.lacinia :as lacinia]
[clojure.data.json :as json]
[clojure.edn :as edn]
[clojure.java.io :as io]
[ring.util.http-response :refer :all]
[mount.core :refer [defstate]]))
(defn get-hero [context args value]
(let [data [{:id 1000
:name "Luke"
:home_planet "Tatooine"
:appears_in ["NEWHOPE" "EMPIRE" "JEDI"]}
{:id 2000
:name "Lando Calrissian"
:home_planet "Socorro"
:appears_in ["EMPIRE" "JEDI"]}]]
(first data)))
(defstate compiled-schema
:start
(-> "graphql/schema.edn"
io/resource
slurp
edn/read-string
(attach-resolvers {:get-hero get-hero
:get-droid (constantly {})})
schema/compile))
(defn format-params [query]
(let [parsed (json/read-str query)] ;;-> placeholder - need to ensure query meets graphql syntax
(str "query { hero(id: \"1000\") { name appears_in }}")))
(defn execute-request [query]
(let [vars nil
context nil]
(-> (lacinia/execute compiled-schema query vars context)
(json/write-str))))
|
103751
|
(ns <<project-ns>>.routes.services.graphql
(:require
[com.walmartlabs.lacinia.util :refer [attach-resolvers]]
[com.walmartlabs.lacinia.schema :as schema]
[com.walmartlabs.lacinia :as lacinia]
[clojure.data.json :as json]
[clojure.edn :as edn]
[clojure.java.io :as io]
[ring.util.http-response :refer :all]
[mount.core :refer [defstate]]))
(defn get-hero [context args value]
(let [data [{:id 1000
:name "<NAME>"
:home_planet "Tatooine"
:appears_in ["NEWHOPE" "EMPIRE" "JEDI"]}
{:id 2000
:name "<NAME>"
:home_planet "Socorro"
:appears_in ["EMPIRE" "JEDI"]}]]
(first data)))
(defstate compiled-schema
:start
(-> "graphql/schema.edn"
io/resource
slurp
edn/read-string
(attach-resolvers {:get-hero get-hero
:get-droid (constantly {})})
schema/compile))
(defn format-params [query]
(let [parsed (json/read-str query)] ;;-> placeholder - need to ensure query meets graphql syntax
(str "query { hero(id: \"1000\") { name appears_in }}")))
(defn execute-request [query]
(let [vars nil
context nil]
(-> (lacinia/execute compiled-schema query vars context)
(json/write-str))))
| true |
(ns <<project-ns>>.routes.services.graphql
(:require
[com.walmartlabs.lacinia.util :refer [attach-resolvers]]
[com.walmartlabs.lacinia.schema :as schema]
[com.walmartlabs.lacinia :as lacinia]
[clojure.data.json :as json]
[clojure.edn :as edn]
[clojure.java.io :as io]
[ring.util.http-response :refer :all]
[mount.core :refer [defstate]]))
(defn get-hero [context args value]
(let [data [{:id 1000
:name "PI:NAME:<NAME>END_PI"
:home_planet "Tatooine"
:appears_in ["NEWHOPE" "EMPIRE" "JEDI"]}
{:id 2000
:name "PI:NAME:<NAME>END_PI"
:home_planet "Socorro"
:appears_in ["EMPIRE" "JEDI"]}]]
(first data)))
(defstate compiled-schema
:start
(-> "graphql/schema.edn"
io/resource
slurp
edn/read-string
(attach-resolvers {:get-hero get-hero
:get-droid (constantly {})})
schema/compile))
(defn format-params [query]
(let [parsed (json/read-str query)] ;;-> placeholder - need to ensure query meets graphql syntax
(str "query { hero(id: \"1000\") { name appears_in }}")))
(defn execute-request [query]
(let [vars nil
context nil]
(-> (lacinia/execute compiled-schema query vars context)
(json/write-str))))
|
[
{
"context": "sword)]\n (swap! users assoc username {:username username\n :roles (set role",
"end": 1230,
"score": 0.996575653553009,
"start": 1222,
"tag": "USERNAME",
"value": "username"
},
{
"context": "\\\"POST\\\" action=\\\"/login\\\">\n <label for=\\\"username\\\">Username:\n <input type=\\\"text\\\" name=\\\"",
"end": 1698,
"score": 0.9979419112205505,
"start": 1690,
"tag": "USERNAME",
"value": "username"
},
{
"context": "\\\">Username:\n <input type=\\\"text\\\" name=\\\"username\\\"/>\n </label>\n <label for=\\\"passw",
"end": 1756,
"score": 0.9981616735458374,
"start": 1748,
"tag": "USERNAME",
"value": "username"
},
{
"context": "security-manager)}))\n\n(register-user! {:username \"john\"\n :password \"secret\"\n ",
"end": 2869,
"score": 0.5537458062171936,
"start": 2865,
"tag": "USERNAME",
"value": "john"
},
{
"context": "er! {:username \"john\"\n :password \"secret\"\n :roles [:manager]\n ",
"end": 2905,
"score": 0.9992615580558777,
"start": 2899,
"tag": "PASSWORD",
"value": "secret"
}
] |
samples/username-password-webapp/src/sample/app.clj
|
inventiLT/Pocheshiro
| 10 |
(ns sample.app
(:import [org.eclipse.jetty.servlet ServletContextHandler ServletHolder]
[org.eclipse.jetty.server.session SessionHandler]
org.apache.shiro.web.mgt.DefaultWebSecurityManager
org.apache.shiro.authc.UsernamePasswordToken)
(:require [ring.adapter.jetty :as jetty]
[ring.util.servlet :as servlet]
[compojure.handler :as handler]
[compojure.core :refer (context defroutes GET POST)]
[pocheshiro.core :as shiro :refer (enforce authorized authenticated)]))
(defn run [handler]
(jetty/run-jetty handler
{:join? false
:port 8080
:configurator
#(let [session-handler (SessionHandler.)]
(-> session-handler .getSessionManager (.setHttpOnly true))
(.setHandler
% (doto (ServletContextHandler.)
(.setSessionHandler session-handler)
(.addServlet (ServletHolder. (servlet/servlet handler)) "/*"))))}))
(def users (atom {}))
(def bcrypted-passwords (shiro/bcrypt-passwords {}))
(defn register-user! [{:keys [username password roles permissions]}]
(let [hashed-pwd (.encryptPassword bcrypted-passwords password)]
(swap! users assoc username {:username username
:roles (set roles)
:permissions (set permissions)
:password-hash hashed-pwd})))
(defroutes routes
(GET "/" {:keys [user]}
(enforce authenticated
(str "You are logged in, " user "."
"<a href=\"/logout\">Logout</a>")))
(GET "/login" request
"<form method=\"POST\" action=\"/login\">
<label for=\"username\">Username:
<input type=\"text\" name=\"username\"/>
</label>
<label for=\"password\">Password:
<input type=\"password\" name=\"password\"/>
</label>
<input type=\"submit\" value=\"Login\" />
</form>")
(POST "/login" {:keys [params] :as request}
(shiro/login! (UsernamePasswordToken. (:username params) (:password params)))
(shiro/redirect-after-login! request "/"))
(GET "/logout" request
(shiro/logout!)
{:status 200, :body "You have been logged out!"}))
(def inmemory-realm
(shiro/username-password-realm
:passwords bcrypted-passwords
:get-authentication
#(if-let [user (get @users (.getPrincipal %))]
{:principal (:username user)
:credentials (:password-hash user)})
:get-authorization
#(if-let [user (get @users (.getPrimaryPrincipal %))]
(select-keys user [:roles :permissions]))))
(def security-manager (DefaultWebSecurityManager. [inmemory-realm]))
(def route-handler
(shiro/wrap-security
(handler/site #'routes)
{:security-manager-retriever (constantly security-manager)}))
(register-user! {:username "john"
:password "secret"
:roles [:manager]
:permissions [:fire-underlings]})
(defn run! []
(run route-handler))
|
117522
|
(ns sample.app
(:import [org.eclipse.jetty.servlet ServletContextHandler ServletHolder]
[org.eclipse.jetty.server.session SessionHandler]
org.apache.shiro.web.mgt.DefaultWebSecurityManager
org.apache.shiro.authc.UsernamePasswordToken)
(:require [ring.adapter.jetty :as jetty]
[ring.util.servlet :as servlet]
[compojure.handler :as handler]
[compojure.core :refer (context defroutes GET POST)]
[pocheshiro.core :as shiro :refer (enforce authorized authenticated)]))
(defn run [handler]
(jetty/run-jetty handler
{:join? false
:port 8080
:configurator
#(let [session-handler (SessionHandler.)]
(-> session-handler .getSessionManager (.setHttpOnly true))
(.setHandler
% (doto (ServletContextHandler.)
(.setSessionHandler session-handler)
(.addServlet (ServletHolder. (servlet/servlet handler)) "/*"))))}))
(def users (atom {}))
(def bcrypted-passwords (shiro/bcrypt-passwords {}))
(defn register-user! [{:keys [username password roles permissions]}]
(let [hashed-pwd (.encryptPassword bcrypted-passwords password)]
(swap! users assoc username {:username username
:roles (set roles)
:permissions (set permissions)
:password-hash hashed-pwd})))
(defroutes routes
(GET "/" {:keys [user]}
(enforce authenticated
(str "You are logged in, " user "."
"<a href=\"/logout\">Logout</a>")))
(GET "/login" request
"<form method=\"POST\" action=\"/login\">
<label for=\"username\">Username:
<input type=\"text\" name=\"username\"/>
</label>
<label for=\"password\">Password:
<input type=\"password\" name=\"password\"/>
</label>
<input type=\"submit\" value=\"Login\" />
</form>")
(POST "/login" {:keys [params] :as request}
(shiro/login! (UsernamePasswordToken. (:username params) (:password params)))
(shiro/redirect-after-login! request "/"))
(GET "/logout" request
(shiro/logout!)
{:status 200, :body "You have been logged out!"}))
(def inmemory-realm
(shiro/username-password-realm
:passwords bcrypted-passwords
:get-authentication
#(if-let [user (get @users (.getPrincipal %))]
{:principal (:username user)
:credentials (:password-hash user)})
:get-authorization
#(if-let [user (get @users (.getPrimaryPrincipal %))]
(select-keys user [:roles :permissions]))))
(def security-manager (DefaultWebSecurityManager. [inmemory-realm]))
(def route-handler
(shiro/wrap-security
(handler/site #'routes)
{:security-manager-retriever (constantly security-manager)}))
(register-user! {:username "john"
:password "<PASSWORD>"
:roles [:manager]
:permissions [:fire-underlings]})
(defn run! []
(run route-handler))
| true |
(ns sample.app
(:import [org.eclipse.jetty.servlet ServletContextHandler ServletHolder]
[org.eclipse.jetty.server.session SessionHandler]
org.apache.shiro.web.mgt.DefaultWebSecurityManager
org.apache.shiro.authc.UsernamePasswordToken)
(:require [ring.adapter.jetty :as jetty]
[ring.util.servlet :as servlet]
[compojure.handler :as handler]
[compojure.core :refer (context defroutes GET POST)]
[pocheshiro.core :as shiro :refer (enforce authorized authenticated)]))
(defn run [handler]
(jetty/run-jetty handler
{:join? false
:port 8080
:configurator
#(let [session-handler (SessionHandler.)]
(-> session-handler .getSessionManager (.setHttpOnly true))
(.setHandler
% (doto (ServletContextHandler.)
(.setSessionHandler session-handler)
(.addServlet (ServletHolder. (servlet/servlet handler)) "/*"))))}))
(def users (atom {}))
(def bcrypted-passwords (shiro/bcrypt-passwords {}))
(defn register-user! [{:keys [username password roles permissions]}]
(let [hashed-pwd (.encryptPassword bcrypted-passwords password)]
(swap! users assoc username {:username username
:roles (set roles)
:permissions (set permissions)
:password-hash hashed-pwd})))
(defroutes routes
(GET "/" {:keys [user]}
(enforce authenticated
(str "You are logged in, " user "."
"<a href=\"/logout\">Logout</a>")))
(GET "/login" request
"<form method=\"POST\" action=\"/login\">
<label for=\"username\">Username:
<input type=\"text\" name=\"username\"/>
</label>
<label for=\"password\">Password:
<input type=\"password\" name=\"password\"/>
</label>
<input type=\"submit\" value=\"Login\" />
</form>")
(POST "/login" {:keys [params] :as request}
(shiro/login! (UsernamePasswordToken. (:username params) (:password params)))
(shiro/redirect-after-login! request "/"))
(GET "/logout" request
(shiro/logout!)
{:status 200, :body "You have been logged out!"}))
(def inmemory-realm
(shiro/username-password-realm
:passwords bcrypted-passwords
:get-authentication
#(if-let [user (get @users (.getPrincipal %))]
{:principal (:username user)
:credentials (:password-hash user)})
:get-authorization
#(if-let [user (get @users (.getPrimaryPrincipal %))]
(select-keys user [:roles :permissions]))))
(def security-manager (DefaultWebSecurityManager. [inmemory-realm]))
(def route-handler
(shiro/wrap-security
(handler/site #'routes)
{:security-manager-retriever (constantly security-manager)}))
(register-user! {:username "john"
:password "PI:PASSWORD:<PASSWORD>END_PI"
:roles [:manager]
:permissions [:fire-underlings]})
(defn run! []
(run route-handler))
|
[
{
"context": "host \"imap.gmail.com\"\n :user \"[email protected]\"\n :password \"password\"\n ",
"end": 3925,
"score": 0.9999109506607056,
"start": 3907,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "[email protected]\"\n :password \"password\"\n :folder-name \"INBOX\"}\n ",
"end": 3967,
"score": 0.9996103644371033,
"start": 3959,
"tag": "PASSWORD",
"value": "password"
},
{
"context": "\"imap.somedomain.xyz\"\n :user \"someuser\"\n :password \"somepassword\"\n ",
"end": 4156,
"score": 0.9995461702346802,
"start": 4148,
"tag": "USERNAME",
"value": "someuser"
},
{
"context": " :user \"someuser\"\n :password \"somepassword\"\n :folder-name \"INBOX.somefol",
"end": 4202,
"score": 0.9994476437568665,
"start": 4190,
"tag": "PASSWORD",
"value": "somepassword"
},
{
"context": "\"pop.otherdomain.xyz\"\n :user \"someuser\"\n :password \"somepassword\"\n ",
"end": 4392,
"score": 0.9995486736297607,
"start": 4384,
"tag": "USERNAME",
"value": "someuser"
},
{
"context": " :user \"someuser\"\n :password \"somepassword\"\n :folder-name \"INBOX\"}})\n ;",
"end": 4438,
"score": 0.999413013458252,
"start": 4426,
"tag": "PASSWORD",
"value": "somepassword"
}
] |
qt4_mailtray/mailtray.clj
|
cdaddr/clj-qt4-mailtray
| 3 |
;; A Qt4 system tray app to check mail servers for new mail,
;; displaying an icon in the system tray.
;;
;; When there are new messages, a number is drawn over the icon
;; and the icon's context menu is updated to display info about
;; the new messages.
;;
;; This app can check multiple servers and multiple folders on the
;; same server.
;;
;; Requires Qt Jambi, Javamail, and clojure-contrib.
;;
;; NOTE: mail.png is supplied. Supply your own if you wish.
;; Transparent icons work.
(ns qt4-mailtray.mailtray
(:import (com.trolltech.qt.gui QAction QFont QFont$Weight)
(com.trolltech.qt.core QCoreApplication))
(:use clojure.contrib.str-utils
(qt4-mailtray qt4 mail util)))
(def *messages* (ref {}))
(def *mailspecs* (ref #{}))
(def *message-fetch-interval-ms* (* 60 1000))
(def *message-updater* (agent nil))
(def *icon-filename* "mail.png") ;; ***** CUSTOMIZE ME *****
;; Mail-fetching fns
(defn check-mail
"Fetches a fresh list of UNSEEN messages from a server and updates the messages ref for this server. Updates the systray to reflect new info."
[mailspec callback]
(when @*running*
(dosync
(try
(commute *messages* conj [(mailspec-name mailspec) (get-new-messages mailspec)])
(catch Exception e (println e))))
(callback)
(Thread/sleep *message-fetch-interval-ms*)
(send-off *agent* check-mail callback))
mailspec)
(defn count-messages
"Sum and return the number of messages in the messages ref for all servers."
[messages]
(reduce + (map count (vals messages))))
;; Menu-making fns
(defn make-title-action
"Make a menu title."
[menu text]
(doto (new QAction text menu)
(.setFont (new QFont "Deja Vu Sans" 10 (.. QFont$Weight Bold value)))))
(defn make-message-action
"Make a menu item for a single email message."
[menu message]
(new QAction (str (:from message) " - " (:subject message)) menu))
(defn make-mail-menu
"Make a new menu with titles and actions for all the messages in the global message ref."
[messages]
(make-quit-menu
(fn [menu]
(dorun
(map (fn [[folder-name ms]]
(.addAction menu (make-title-action menu folder-name))
(dorun (map (fn [m]
(.addAction menu (make-message-action menu m)))
ms))
(.addSeparator menu))
messages)))))
;; Systray-updating fns
(defn update-systray-icon
"Update the systray icon - generate a new icon and assign it to the systray."
([systray] (update-systray-icon systray nil))
([systray text]
(.dispose (.icon systray))
(.setIcon systray (make-icon *icon-filename* text))
systray))
(defn update-systray-menu
"Update the systray menu - generate a new menu and assign it to the systray, disposing the old menu."
[systray menu]
(.dispose (.contextMenu systray))
(.setContextMenu systray menu))
(defn update-systray
"Update the systray - refresh the icon and the context menu."
[systray]
(QCoreApplication/invokeLater
(fn []
(update-systray-icon systray (count-messages @*messages*))
(update-systray-menu systray (make-mail-menu @*messages*)))))
(defn run
"Start the UI and start the background threads for fetching messages from the server. Runs forever until QCoreApplication/quit is called."
[]
(qt4
(let [systray (make-systray *icon-filename*)
callback (fn [] (update-systray systray))]
(dorun (map #(send-off % check-mail callback) @*mailspecs*)))))
(defn load-mailspecs [specs]
"Given a set of maps, initializes *mailspecs* (agents)."
(dosync
(ref-set *mailspecs*
(into #{}
(map #(agent (reduce conj (struct mailspec) %)) specs)))))
;; Example usage
(comment
;; Pass in a set of maps
(load-mailspecs #{
{:protocol "imaps"
:host "imap.gmail.com"
:user "[email protected]"
:password "password"
:folder-name "INBOX"}
{:protocol "imap"
:host "imap.somedomain.xyz"
:user "someuser"
:password "somepassword"
:folder-name "INBOX.somefolder.subfolder"}
{:protocol "pop3"
:host "pop.otherdomain.xyz"
:user "someuser"
:password "somepassword"
:folder-name "INBOX"}})
;; And off we go.
(run))
|
15679
|
;; A Qt4 system tray app to check mail servers for new mail,
;; displaying an icon in the system tray.
;;
;; When there are new messages, a number is drawn over the icon
;; and the icon's context menu is updated to display info about
;; the new messages.
;;
;; This app can check multiple servers and multiple folders on the
;; same server.
;;
;; Requires Qt Jambi, Javamail, and clojure-contrib.
;;
;; NOTE: mail.png is supplied. Supply your own if you wish.
;; Transparent icons work.
(ns qt4-mailtray.mailtray
(:import (com.trolltech.qt.gui QAction QFont QFont$Weight)
(com.trolltech.qt.core QCoreApplication))
(:use clojure.contrib.str-utils
(qt4-mailtray qt4 mail util)))
(def *messages* (ref {}))
(def *mailspecs* (ref #{}))
(def *message-fetch-interval-ms* (* 60 1000))
(def *message-updater* (agent nil))
(def *icon-filename* "mail.png") ;; ***** CUSTOMIZE ME *****
;; Mail-fetching fns
(defn check-mail
"Fetches a fresh list of UNSEEN messages from a server and updates the messages ref for this server. Updates the systray to reflect new info."
[mailspec callback]
(when @*running*
(dosync
(try
(commute *messages* conj [(mailspec-name mailspec) (get-new-messages mailspec)])
(catch Exception e (println e))))
(callback)
(Thread/sleep *message-fetch-interval-ms*)
(send-off *agent* check-mail callback))
mailspec)
(defn count-messages
"Sum and return the number of messages in the messages ref for all servers."
[messages]
(reduce + (map count (vals messages))))
;; Menu-making fns
(defn make-title-action
"Make a menu title."
[menu text]
(doto (new QAction text menu)
(.setFont (new QFont "Deja Vu Sans" 10 (.. QFont$Weight Bold value)))))
(defn make-message-action
"Make a menu item for a single email message."
[menu message]
(new QAction (str (:from message) " - " (:subject message)) menu))
(defn make-mail-menu
"Make a new menu with titles and actions for all the messages in the global message ref."
[messages]
(make-quit-menu
(fn [menu]
(dorun
(map (fn [[folder-name ms]]
(.addAction menu (make-title-action menu folder-name))
(dorun (map (fn [m]
(.addAction menu (make-message-action menu m)))
ms))
(.addSeparator menu))
messages)))))
;; Systray-updating fns
(defn update-systray-icon
"Update the systray icon - generate a new icon and assign it to the systray."
([systray] (update-systray-icon systray nil))
([systray text]
(.dispose (.icon systray))
(.setIcon systray (make-icon *icon-filename* text))
systray))
(defn update-systray-menu
"Update the systray menu - generate a new menu and assign it to the systray, disposing the old menu."
[systray menu]
(.dispose (.contextMenu systray))
(.setContextMenu systray menu))
(defn update-systray
"Update the systray - refresh the icon and the context menu."
[systray]
(QCoreApplication/invokeLater
(fn []
(update-systray-icon systray (count-messages @*messages*))
(update-systray-menu systray (make-mail-menu @*messages*)))))
(defn run
"Start the UI and start the background threads for fetching messages from the server. Runs forever until QCoreApplication/quit is called."
[]
(qt4
(let [systray (make-systray *icon-filename*)
callback (fn [] (update-systray systray))]
(dorun (map #(send-off % check-mail callback) @*mailspecs*)))))
(defn load-mailspecs [specs]
"Given a set of maps, initializes *mailspecs* (agents)."
(dosync
(ref-set *mailspecs*
(into #{}
(map #(agent (reduce conj (struct mailspec) %)) specs)))))
;; Example usage
(comment
;; Pass in a set of maps
(load-mailspecs #{
{:protocol "imaps"
:host "imap.gmail.com"
:user "<EMAIL>"
:password "<PASSWORD>"
:folder-name "INBOX"}
{:protocol "imap"
:host "imap.somedomain.xyz"
:user "someuser"
:password "<PASSWORD>"
:folder-name "INBOX.somefolder.subfolder"}
{:protocol "pop3"
:host "pop.otherdomain.xyz"
:user "someuser"
:password "<PASSWORD>"
:folder-name "INBOX"}})
;; And off we go.
(run))
| true |
;; A Qt4 system tray app to check mail servers for new mail,
;; displaying an icon in the system tray.
;;
;; When there are new messages, a number is drawn over the icon
;; and the icon's context menu is updated to display info about
;; the new messages.
;;
;; This app can check multiple servers and multiple folders on the
;; same server.
;;
;; Requires Qt Jambi, Javamail, and clojure-contrib.
;;
;; NOTE: mail.png is supplied. Supply your own if you wish.
;; Transparent icons work.
(ns qt4-mailtray.mailtray
(:import (com.trolltech.qt.gui QAction QFont QFont$Weight)
(com.trolltech.qt.core QCoreApplication))
(:use clojure.contrib.str-utils
(qt4-mailtray qt4 mail util)))
(def *messages* (ref {}))
(def *mailspecs* (ref #{}))
(def *message-fetch-interval-ms* (* 60 1000))
(def *message-updater* (agent nil))
(def *icon-filename* "mail.png") ;; ***** CUSTOMIZE ME *****
;; Mail-fetching fns
(defn check-mail
"Fetches a fresh list of UNSEEN messages from a server and updates the messages ref for this server. Updates the systray to reflect new info."
[mailspec callback]
(when @*running*
(dosync
(try
(commute *messages* conj [(mailspec-name mailspec) (get-new-messages mailspec)])
(catch Exception e (println e))))
(callback)
(Thread/sleep *message-fetch-interval-ms*)
(send-off *agent* check-mail callback))
mailspec)
(defn count-messages
"Sum and return the number of messages in the messages ref for all servers."
[messages]
(reduce + (map count (vals messages))))
;; Menu-making fns
(defn make-title-action
"Make a menu title."
[menu text]
(doto (new QAction text menu)
(.setFont (new QFont "Deja Vu Sans" 10 (.. QFont$Weight Bold value)))))
(defn make-message-action
"Make a menu item for a single email message."
[menu message]
(new QAction (str (:from message) " - " (:subject message)) menu))
(defn make-mail-menu
"Make a new menu with titles and actions for all the messages in the global message ref."
[messages]
(make-quit-menu
(fn [menu]
(dorun
(map (fn [[folder-name ms]]
(.addAction menu (make-title-action menu folder-name))
(dorun (map (fn [m]
(.addAction menu (make-message-action menu m)))
ms))
(.addSeparator menu))
messages)))))
;; Systray-updating fns
(defn update-systray-icon
"Update the systray icon - generate a new icon and assign it to the systray."
([systray] (update-systray-icon systray nil))
([systray text]
(.dispose (.icon systray))
(.setIcon systray (make-icon *icon-filename* text))
systray))
(defn update-systray-menu
"Update the systray menu - generate a new menu and assign it to the systray, disposing the old menu."
[systray menu]
(.dispose (.contextMenu systray))
(.setContextMenu systray menu))
(defn update-systray
"Update the systray - refresh the icon and the context menu."
[systray]
(QCoreApplication/invokeLater
(fn []
(update-systray-icon systray (count-messages @*messages*))
(update-systray-menu systray (make-mail-menu @*messages*)))))
(defn run
"Start the UI and start the background threads for fetching messages from the server. Runs forever until QCoreApplication/quit is called."
[]
(qt4
(let [systray (make-systray *icon-filename*)
callback (fn [] (update-systray systray))]
(dorun (map #(send-off % check-mail callback) @*mailspecs*)))))
(defn load-mailspecs [specs]
"Given a set of maps, initializes *mailspecs* (agents)."
(dosync
(ref-set *mailspecs*
(into #{}
(map #(agent (reduce conj (struct mailspec) %)) specs)))))
;; Example usage
(comment
;; Pass in a set of maps
(load-mailspecs #{
{:protocol "imaps"
:host "imap.gmail.com"
:user "PI:EMAIL:<EMAIL>END_PI"
:password "PI:PASSWORD:<PASSWORD>END_PI"
:folder-name "INBOX"}
{:protocol "imap"
:host "imap.somedomain.xyz"
:user "someuser"
:password "PI:PASSWORD:<PASSWORD>END_PI"
:folder-name "INBOX.somefolder.subfolder"}
{:protocol "pop3"
:host "pop.otherdomain.xyz"
:user "someuser"
:password "PI:PASSWORD:<PASSWORD>END_PI"
:folder-name "INBOX"}})
;; And off we go.
(run))
|
[
{
"context": " [:>\n Button\n {:key (str \"grid-cell-\" (+ (* row-index 5) col-index))\n :clas",
"end": 1827,
"score": 0.5931444764137268,
"start": 1818,
"tag": "KEY",
"value": "grid-cell"
},
{
"context": "]]]]\n [:>\n Footer\n (contact-footer \"Lalit Prakash Vatsal\"\n [{:label :twitter :url \"ht",
"end": 7686,
"score": 0.9998772144317627,
"start": 7666,
"tag": "NAME",
"value": "Lalit Prakash Vatsal"
},
{
"context": " [{:label :twitter :url \"https://twitter.com/lprakashv\"}\n {:label :linkedin :url \"",
"end": 7763,
"score": 0.9996179938316345,
"start": 7754,
"tag": "USERNAME",
"value": "lprakashv"
},
{
"context": "label :linkedin :url \"https://www.linkedin.com/in/lalit-vatsal-ab921879/\"}\n {:label :github :url \"h",
"end": 7862,
"score": 0.9905532598495483,
"start": 7841,
"tag": "USERNAME",
"value": "lalit-vatsal-ab921879"
},
{
"context": " {:label :github :url \"https://github.com/lprakashv\"}\n {:label :medium :url \"ht",
"end": 7939,
"score": 0.9996321201324463,
"start": 7930,
"tag": "USERNAME",
"value": "lprakashv"
},
{
"context": " {:label :medium :url \"https://medium.com/@lprakashv\"}])]]))\n",
"end": 8016,
"score": 0.9978975057601929,
"start": 8006,
"tag": "USERNAME",
"value": "@lprakashv"
}
] |
src/cljs/reframe_codenames/views.cljs
|
lprakashv/reframe-codenames
| 0 |
(ns reframe-codenames.views
(:require
[re-frame.core :as re-frame]
[reframe-codenames.subs :as subs]
[reframe-codenames.events :as events]
[reframe-codenames.utils :as utils])
(:require
["react-bootstrap"
:refer
[Card
Button
ButtonGroup
Row
Col
Badge
Container
Accordion
FormControl
InputGroup
Alert]]
["react-bootstrap/Card" :refer [Body Header Footer]]
["react-bootstrap/Accordion"
:refer [Toggle Collapse]
:rename {Toggle AccToggle
Collapse AccCollapse}]
["react-bootstrap/InputGroup"
:refer [Text Prepend Append]
:rename {Text IGText
Prepend IGPrepend
Append IGAppend}]
["react-social-icons" :refer [SocialIcon]]))
; TODO - simplify booleans everywhere!
(def row-style
{:fluid :true :style {:margin 5} :class-name :justify-content-md-center})
(defn rules-header [rules]
[:>
Accordion
{:defaultActiveKey "0"}
[:>
Card
[:>
AccToggle
{:as Header :eventKey "0"}
[:h4 "Click to show/hide Rules"]]
[:>
AccCollapse
{:eventKey "0"}
[:>
Body
(map-indexed
(fn [index rule] [:p {:style {:text-align :left}} (str (inc index) ". " rule)])
rules)]]]])
(defn grid-row [row-index items turn spy-master? disable?]
[:>
Row
{:key (str "grid-row-" row-index)
:fluid :true
:class-name :justify-content-md-center
:margin 5
:padding 5}
(map-indexed
(fn [col-index item]
(let [{:keys [open? color]} item]
[:>
Col
{:key (str "grid-cell-" (+ (* row-index 5) col-index))
:style {:width "20vw"
:padding 0
:margin 2}}
[:>
Button
{:key (str "grid-cell-" (+ (* row-index 5) col-index))
:class [:board-grid-btn]
:variant (if (and spy-master? open?) :info :light)
:style {:border-radius 2
:padding 5
:width "100%"
:height "10vh"
:justify-content :center
:font-size "2.5vmin"
:color (when (or open? spy-master?) color)}
:disabled (or spy-master? open? disable?)
:size :sm
:on-click #(re-frame/dispatch
; TODO - remove logic from view!
(if (= color :black)
[::events/announce-winner (utils/opp-color turn)]
[::events/open-tile row-index col-index]))}
(:word item)]]))
items)])
(defn grid [board-tiles turn spy-master? disable?]
(->> (partition 5 board-tiles)
(map-indexed
#(grid-row %1 %2 turn spy-master? disable?))))
(defn hint-badge [hint]
(when (not (clojure.string/blank? hint))
[:h2 [:> Badge {:variant :info} (str "Hint: " hint)]]))
(defn limit-left-badge [limit]
(when (not (zero? limit))
[:h2 [:> Badge {:variant :warning} (str "Limit: " limit)]]))
(defn reds-left-count-badge [cnt]
[:h2 [:> Badge {:variant :danger} (str "Reds left:" cnt)]])
(defn blues-left-count-badge [cnt]
[:h2 [:> Badge {:variant :primary} (str "Blues left:" cnt)]])
(defn hint-limit-input-group [hint limit spy-master? game-over? turn-over?]
[:>
InputGroup
{:size :sm}
[:>
IGPrepend
[:>
IGText
"Hint"]]
[:>
FormControl
{:disabled (or game-over? (not spy-master?) turn-over?)
:on-change #(re-frame/dispatch [::events/set-hint (-> % .-target .-value)])
:value hint}]
[:>
IGAppend
[:>
IGText
"Limit"]]
[:>
FormControl
{:disabled (or game-over? (not spy-master?) turn-over?)
:on-change #(re-frame/dispatch [::events/set-limit (-> % .-target .-value)])
:value limit}]])
(defn spy-master-toggle-button [game-over? spy-master?]
(when (not game-over?)
[:>
Button
{:variant :warning :on-click #(re-frame/dispatch [::events/toggle-spy-master])}
(if spy-master? "Over to team" "Spy Master")]))
(defn turn-change-button [turn game-over? spy-master?]
(when (and (not game-over?) spy-master?)
[:>
Button
{:disabled (not spy-master?)
:variant (if (= turn :red) :primary :danger)
:on-click #(re-frame/dispatch [::events/toggle-turn])}
(str "Make " (utils/capitalize (utils/opp-color turn)) "'s Turn")]))
(defn new-game-button []
[:>
Button
{:fluid true
:variant :success
:style {:margin 5}
:on-click #(re-frame/dispatch [::events/initialize-db])}
"New Game"])
(defn contact-footer [name label-with-url-list]
[:p {:class-name :text-muted} (str "Creator: " name)]
(map (fn [attrs] [:> SocialIcon attrs]) label-with-url-list))
(defn main-panel []
; TODO - split this main-panel into multpple functions having their own subscriptions
(let [spy-master? @(re-frame/subscribe [::subs/spy-master?])
board-tiles @(re-frame/subscribe [::subs/board])
turn @(re-frame/subscribe [::subs/turn])
red-left (utils/left-tiles-count-by-color board-tiles :red)
blue-left (utils/left-tiles-count-by-color board-tiles :blue)
turn-over? @(re-frame/subscribe [::subs/turn-over?])
hint @(re-frame/subscribe [::subs/hint])
limit @(re-frame/subscribe [::subs/limit])
message @(re-frame/subscribe [::subs/message])
game-over? @(re-frame/subscribe [::subs/game-over?])]
(when (zero? red-left) (re-frame/dispatch-sync [::events/announce-winner :red]))
(when (zero? blue-left) (re-frame/dispatch-sync [::events/announce-winner :blue]))
[:>
Card
{:style {:border-radius 10 :margin 5}}
[:>
Header
[:h1 {:style {:background-color :gold :padding 10}} "Codenames Game"]
(rules-header utils/rules)]
[:>
Body
{:style {:background-color (if spy-master? :black :lavender)}}
[:>
Container
{:style {:padding 5}}
(if spy-master?
[:>
Row
row-style
[:>
Col
{:style {:width "100vw"}}
(hint-limit-input-group hint limit spy-master? game-over? turn-over?)]]
[:>
Row
row-style
[:>
Col
{:style {:width "50vw"}}
(hint-badge hint)]
[:>
Col
{:style {:width "50vw"}}
(limit-left-badge limit)]])
[:>
Row
row-style
[:>
Col
{:style {:width "50vw"}}
(reds-left-count-badge red-left)]
[:>
Col
{:style {:width "50vw"}}
(blues-left-count-badge blue-left)]]
[:>
Row
row-style
[:>
Alert
{:style {:width "100vw"} :variant (:status message)}
[:h4 (:text message)]]]
; TODO - remove logic from views (or make this a separate function)
(grid board-tiles turn spy-master? (or game-over? (clojure.string/blank? hint) (< limit 1) turn-over?))
[:>
Row
{:class-name :justify-content-md-center}
[:>
Col
{:style {:width "100vw"}}
[:>
ButtonGroup
{:fluid :true :vertical :true :style {:margin 5}}
(spy-master-toggle-button game-over? spy-master?)
(turn-change-button turn game-over? spy-master?)]]]
[:>
Row
[:>
Col
{:style {:width "100vw"}}
(new-game-button)]]]]
[:>
Footer
(contact-footer "Lalit Prakash Vatsal"
[{:label :twitter :url "https://twitter.com/lprakashv"}
{:label :linkedin :url "https://www.linkedin.com/in/lalit-vatsal-ab921879/"}
{:label :github :url "https://github.com/lprakashv"}
{:label :medium :url "https://medium.com/@lprakashv"}])]]))
|
90201
|
(ns reframe-codenames.views
(:require
[re-frame.core :as re-frame]
[reframe-codenames.subs :as subs]
[reframe-codenames.events :as events]
[reframe-codenames.utils :as utils])
(:require
["react-bootstrap"
:refer
[Card
Button
ButtonGroup
Row
Col
Badge
Container
Accordion
FormControl
InputGroup
Alert]]
["react-bootstrap/Card" :refer [Body Header Footer]]
["react-bootstrap/Accordion"
:refer [Toggle Collapse]
:rename {Toggle AccToggle
Collapse AccCollapse}]
["react-bootstrap/InputGroup"
:refer [Text Prepend Append]
:rename {Text IGText
Prepend IGPrepend
Append IGAppend}]
["react-social-icons" :refer [SocialIcon]]))
; TODO - simplify booleans everywhere!
(def row-style
{:fluid :true :style {:margin 5} :class-name :justify-content-md-center})
(defn rules-header [rules]
[:>
Accordion
{:defaultActiveKey "0"}
[:>
Card
[:>
AccToggle
{:as Header :eventKey "0"}
[:h4 "Click to show/hide Rules"]]
[:>
AccCollapse
{:eventKey "0"}
[:>
Body
(map-indexed
(fn [index rule] [:p {:style {:text-align :left}} (str (inc index) ". " rule)])
rules)]]]])
(defn grid-row [row-index items turn spy-master? disable?]
[:>
Row
{:key (str "grid-row-" row-index)
:fluid :true
:class-name :justify-content-md-center
:margin 5
:padding 5}
(map-indexed
(fn [col-index item]
(let [{:keys [open? color]} item]
[:>
Col
{:key (str "grid-cell-" (+ (* row-index 5) col-index))
:style {:width "20vw"
:padding 0
:margin 2}}
[:>
Button
{:key (str "<KEY>-" (+ (* row-index 5) col-index))
:class [:board-grid-btn]
:variant (if (and spy-master? open?) :info :light)
:style {:border-radius 2
:padding 5
:width "100%"
:height "10vh"
:justify-content :center
:font-size "2.5vmin"
:color (when (or open? spy-master?) color)}
:disabled (or spy-master? open? disable?)
:size :sm
:on-click #(re-frame/dispatch
; TODO - remove logic from view!
(if (= color :black)
[::events/announce-winner (utils/opp-color turn)]
[::events/open-tile row-index col-index]))}
(:word item)]]))
items)])
(defn grid [board-tiles turn spy-master? disable?]
(->> (partition 5 board-tiles)
(map-indexed
#(grid-row %1 %2 turn spy-master? disable?))))
(defn hint-badge [hint]
(when (not (clojure.string/blank? hint))
[:h2 [:> Badge {:variant :info} (str "Hint: " hint)]]))
(defn limit-left-badge [limit]
(when (not (zero? limit))
[:h2 [:> Badge {:variant :warning} (str "Limit: " limit)]]))
(defn reds-left-count-badge [cnt]
[:h2 [:> Badge {:variant :danger} (str "Reds left:" cnt)]])
(defn blues-left-count-badge [cnt]
[:h2 [:> Badge {:variant :primary} (str "Blues left:" cnt)]])
(defn hint-limit-input-group [hint limit spy-master? game-over? turn-over?]
[:>
InputGroup
{:size :sm}
[:>
IGPrepend
[:>
IGText
"Hint"]]
[:>
FormControl
{:disabled (or game-over? (not spy-master?) turn-over?)
:on-change #(re-frame/dispatch [::events/set-hint (-> % .-target .-value)])
:value hint}]
[:>
IGAppend
[:>
IGText
"Limit"]]
[:>
FormControl
{:disabled (or game-over? (not spy-master?) turn-over?)
:on-change #(re-frame/dispatch [::events/set-limit (-> % .-target .-value)])
:value limit}]])
(defn spy-master-toggle-button [game-over? spy-master?]
(when (not game-over?)
[:>
Button
{:variant :warning :on-click #(re-frame/dispatch [::events/toggle-spy-master])}
(if spy-master? "Over to team" "Spy Master")]))
(defn turn-change-button [turn game-over? spy-master?]
(when (and (not game-over?) spy-master?)
[:>
Button
{:disabled (not spy-master?)
:variant (if (= turn :red) :primary :danger)
:on-click #(re-frame/dispatch [::events/toggle-turn])}
(str "Make " (utils/capitalize (utils/opp-color turn)) "'s Turn")]))
(defn new-game-button []
[:>
Button
{:fluid true
:variant :success
:style {:margin 5}
:on-click #(re-frame/dispatch [::events/initialize-db])}
"New Game"])
(defn contact-footer [name label-with-url-list]
[:p {:class-name :text-muted} (str "Creator: " name)]
(map (fn [attrs] [:> SocialIcon attrs]) label-with-url-list))
(defn main-panel []
; TODO - split this main-panel into multpple functions having their own subscriptions
(let [spy-master? @(re-frame/subscribe [::subs/spy-master?])
board-tiles @(re-frame/subscribe [::subs/board])
turn @(re-frame/subscribe [::subs/turn])
red-left (utils/left-tiles-count-by-color board-tiles :red)
blue-left (utils/left-tiles-count-by-color board-tiles :blue)
turn-over? @(re-frame/subscribe [::subs/turn-over?])
hint @(re-frame/subscribe [::subs/hint])
limit @(re-frame/subscribe [::subs/limit])
message @(re-frame/subscribe [::subs/message])
game-over? @(re-frame/subscribe [::subs/game-over?])]
(when (zero? red-left) (re-frame/dispatch-sync [::events/announce-winner :red]))
(when (zero? blue-left) (re-frame/dispatch-sync [::events/announce-winner :blue]))
[:>
Card
{:style {:border-radius 10 :margin 5}}
[:>
Header
[:h1 {:style {:background-color :gold :padding 10}} "Codenames Game"]
(rules-header utils/rules)]
[:>
Body
{:style {:background-color (if spy-master? :black :lavender)}}
[:>
Container
{:style {:padding 5}}
(if spy-master?
[:>
Row
row-style
[:>
Col
{:style {:width "100vw"}}
(hint-limit-input-group hint limit spy-master? game-over? turn-over?)]]
[:>
Row
row-style
[:>
Col
{:style {:width "50vw"}}
(hint-badge hint)]
[:>
Col
{:style {:width "50vw"}}
(limit-left-badge limit)]])
[:>
Row
row-style
[:>
Col
{:style {:width "50vw"}}
(reds-left-count-badge red-left)]
[:>
Col
{:style {:width "50vw"}}
(blues-left-count-badge blue-left)]]
[:>
Row
row-style
[:>
Alert
{:style {:width "100vw"} :variant (:status message)}
[:h4 (:text message)]]]
; TODO - remove logic from views (or make this a separate function)
(grid board-tiles turn spy-master? (or game-over? (clojure.string/blank? hint) (< limit 1) turn-over?))
[:>
Row
{:class-name :justify-content-md-center}
[:>
Col
{:style {:width "100vw"}}
[:>
ButtonGroup
{:fluid :true :vertical :true :style {:margin 5}}
(spy-master-toggle-button game-over? spy-master?)
(turn-change-button turn game-over? spy-master?)]]]
[:>
Row
[:>
Col
{:style {:width "100vw"}}
(new-game-button)]]]]
[:>
Footer
(contact-footer "<NAME>"
[{:label :twitter :url "https://twitter.com/lprakashv"}
{:label :linkedin :url "https://www.linkedin.com/in/lalit-vatsal-ab921879/"}
{:label :github :url "https://github.com/lprakashv"}
{:label :medium :url "https://medium.com/@lprakashv"}])]]))
| true |
(ns reframe-codenames.views
(:require
[re-frame.core :as re-frame]
[reframe-codenames.subs :as subs]
[reframe-codenames.events :as events]
[reframe-codenames.utils :as utils])
(:require
["react-bootstrap"
:refer
[Card
Button
ButtonGroup
Row
Col
Badge
Container
Accordion
FormControl
InputGroup
Alert]]
["react-bootstrap/Card" :refer [Body Header Footer]]
["react-bootstrap/Accordion"
:refer [Toggle Collapse]
:rename {Toggle AccToggle
Collapse AccCollapse}]
["react-bootstrap/InputGroup"
:refer [Text Prepend Append]
:rename {Text IGText
Prepend IGPrepend
Append IGAppend}]
["react-social-icons" :refer [SocialIcon]]))
; TODO - simplify booleans everywhere!
(def row-style
{:fluid :true :style {:margin 5} :class-name :justify-content-md-center})
(defn rules-header [rules]
[:>
Accordion
{:defaultActiveKey "0"}
[:>
Card
[:>
AccToggle
{:as Header :eventKey "0"}
[:h4 "Click to show/hide Rules"]]
[:>
AccCollapse
{:eventKey "0"}
[:>
Body
(map-indexed
(fn [index rule] [:p {:style {:text-align :left}} (str (inc index) ". " rule)])
rules)]]]])
(defn grid-row [row-index items turn spy-master? disable?]
[:>
Row
{:key (str "grid-row-" row-index)
:fluid :true
:class-name :justify-content-md-center
:margin 5
:padding 5}
(map-indexed
(fn [col-index item]
(let [{:keys [open? color]} item]
[:>
Col
{:key (str "grid-cell-" (+ (* row-index 5) col-index))
:style {:width "20vw"
:padding 0
:margin 2}}
[:>
Button
{:key (str "PI:KEY:<KEY>END_PI-" (+ (* row-index 5) col-index))
:class [:board-grid-btn]
:variant (if (and spy-master? open?) :info :light)
:style {:border-radius 2
:padding 5
:width "100%"
:height "10vh"
:justify-content :center
:font-size "2.5vmin"
:color (when (or open? spy-master?) color)}
:disabled (or spy-master? open? disable?)
:size :sm
:on-click #(re-frame/dispatch
; TODO - remove logic from view!
(if (= color :black)
[::events/announce-winner (utils/opp-color turn)]
[::events/open-tile row-index col-index]))}
(:word item)]]))
items)])
(defn grid [board-tiles turn spy-master? disable?]
(->> (partition 5 board-tiles)
(map-indexed
#(grid-row %1 %2 turn spy-master? disable?))))
(defn hint-badge [hint]
(when (not (clojure.string/blank? hint))
[:h2 [:> Badge {:variant :info} (str "Hint: " hint)]]))
(defn limit-left-badge [limit]
(when (not (zero? limit))
[:h2 [:> Badge {:variant :warning} (str "Limit: " limit)]]))
(defn reds-left-count-badge [cnt]
[:h2 [:> Badge {:variant :danger} (str "Reds left:" cnt)]])
(defn blues-left-count-badge [cnt]
[:h2 [:> Badge {:variant :primary} (str "Blues left:" cnt)]])
(defn hint-limit-input-group [hint limit spy-master? game-over? turn-over?]
[:>
InputGroup
{:size :sm}
[:>
IGPrepend
[:>
IGText
"Hint"]]
[:>
FormControl
{:disabled (or game-over? (not spy-master?) turn-over?)
:on-change #(re-frame/dispatch [::events/set-hint (-> % .-target .-value)])
:value hint}]
[:>
IGAppend
[:>
IGText
"Limit"]]
[:>
FormControl
{:disabled (or game-over? (not spy-master?) turn-over?)
:on-change #(re-frame/dispatch [::events/set-limit (-> % .-target .-value)])
:value limit}]])
(defn spy-master-toggle-button [game-over? spy-master?]
(when (not game-over?)
[:>
Button
{:variant :warning :on-click #(re-frame/dispatch [::events/toggle-spy-master])}
(if spy-master? "Over to team" "Spy Master")]))
(defn turn-change-button [turn game-over? spy-master?]
(when (and (not game-over?) spy-master?)
[:>
Button
{:disabled (not spy-master?)
:variant (if (= turn :red) :primary :danger)
:on-click #(re-frame/dispatch [::events/toggle-turn])}
(str "Make " (utils/capitalize (utils/opp-color turn)) "'s Turn")]))
(defn new-game-button []
[:>
Button
{:fluid true
:variant :success
:style {:margin 5}
:on-click #(re-frame/dispatch [::events/initialize-db])}
"New Game"])
(defn contact-footer [name label-with-url-list]
[:p {:class-name :text-muted} (str "Creator: " name)]
(map (fn [attrs] [:> SocialIcon attrs]) label-with-url-list))
(defn main-panel []
; TODO - split this main-panel into multpple functions having their own subscriptions
(let [spy-master? @(re-frame/subscribe [::subs/spy-master?])
board-tiles @(re-frame/subscribe [::subs/board])
turn @(re-frame/subscribe [::subs/turn])
red-left (utils/left-tiles-count-by-color board-tiles :red)
blue-left (utils/left-tiles-count-by-color board-tiles :blue)
turn-over? @(re-frame/subscribe [::subs/turn-over?])
hint @(re-frame/subscribe [::subs/hint])
limit @(re-frame/subscribe [::subs/limit])
message @(re-frame/subscribe [::subs/message])
game-over? @(re-frame/subscribe [::subs/game-over?])]
(when (zero? red-left) (re-frame/dispatch-sync [::events/announce-winner :red]))
(when (zero? blue-left) (re-frame/dispatch-sync [::events/announce-winner :blue]))
[:>
Card
{:style {:border-radius 10 :margin 5}}
[:>
Header
[:h1 {:style {:background-color :gold :padding 10}} "Codenames Game"]
(rules-header utils/rules)]
[:>
Body
{:style {:background-color (if spy-master? :black :lavender)}}
[:>
Container
{:style {:padding 5}}
(if spy-master?
[:>
Row
row-style
[:>
Col
{:style {:width "100vw"}}
(hint-limit-input-group hint limit spy-master? game-over? turn-over?)]]
[:>
Row
row-style
[:>
Col
{:style {:width "50vw"}}
(hint-badge hint)]
[:>
Col
{:style {:width "50vw"}}
(limit-left-badge limit)]])
[:>
Row
row-style
[:>
Col
{:style {:width "50vw"}}
(reds-left-count-badge red-left)]
[:>
Col
{:style {:width "50vw"}}
(blues-left-count-badge blue-left)]]
[:>
Row
row-style
[:>
Alert
{:style {:width "100vw"} :variant (:status message)}
[:h4 (:text message)]]]
; TODO - remove logic from views (or make this a separate function)
(grid board-tiles turn spy-master? (or game-over? (clojure.string/blank? hint) (< limit 1) turn-over?))
[:>
Row
{:class-name :justify-content-md-center}
[:>
Col
{:style {:width "100vw"}}
[:>
ButtonGroup
{:fluid :true :vertical :true :style {:margin 5}}
(spy-master-toggle-button game-over? spy-master?)
(turn-change-button turn game-over? spy-master?)]]]
[:>
Row
[:>
Col
{:style {:width "100vw"}}
(new-game-button)]]]]
[:>
Footer
(contact-footer "PI:NAME:<NAME>END_PI"
[{:label :twitter :url "https://twitter.com/lprakashv"}
{:label :linkedin :url "https://www.linkedin.com/in/lalit-vatsal-ab921879/"}
{:label :github :url "https://github.com/lprakashv"}
{:label :medium :url "https://medium.com/@lprakashv"}])]]))
|
[
{
"context": "nts\n* Creating Annotation Schemas\"\n :author \"Paul Landes\"}\n zensols.annotate.gate\n (:import [java.util",
"end": 263,
"score": 0.9998892545700073,
"start": 252,
"tag": "NAME",
"value": "Paul Landes"
}
] |
src/clojure/zensols/annotate/gate.clj
|
plandes/clj-gate
| 0 |
(ns ^{:doc "Wrapper for [Gate](https://gate.ac.uk) annotation natural language
processing utility. This is a small wrapper that makes the following easier:
* Annotating Documents
* Create Store Documents
* Creating Annotation Schemas"
:author "Paul Landes"}
zensols.annotate.gate
(:import [java.util HashSet]
[gate Gate Factory Utils Document]
[gate.corpora DocumentImpl DocumentContentImpl]
[gate.creole AnnotationSchema FeatureSchema]
[gate.persist SerialDataStore])
(:require [clojure.java.io :as io]
[clojure.tools.logging :as log])
(:require [zensols.actioncli.resource :as res]))
(def ^:dynamic *corpus-name*
"The default corpus name when creating a Gate data store."
"zensols-gate-corpus")
(defn initialize
"Initialize the Gate system. This is called when this namespace is loaded."
[]
(res/register-resource :gate-home :system-file "gate.home"
:system-default
(-> (System/getProperty "user.home")
(io/file "Applications/Developer/GateDeveloper")
.getAbsolutePath))
(let [gate-home (res/resource-path :gate-home)]
(log/infof "initializing gate system with home: %s" gate-home)
(-> (io/file gate-home "plugins")
.getAbsolutePath
(#(System/setProperty "gate.plugins.home" %)))
(-> (io/file gate-home "gate.xml")
.getAbsolutePath
(#(System/setProperty "gate.site.config" %)))
(Gate/init)
gate-home))
(defn configure-plugins
"Configure Gate plugins. The no-arg default configures the `Alignment`
plugin."
([]
(configure-plugins ["Alignment"]))
([plugins]
(doseq [plugin plugins]
(let [plugin-dir (res/resource-path :gate-home
(format "plugins/%s" plugin))]
(-> (Gate/getCreoleRegister)
(.registerDirectories (io/as-url plugin-dir)))))))
(defn- delete-recursively [fname]
(let [func (fn [func f]
(when (.isDirectory f)
(doseq [f2 (.listFiles f)]
(func func f2)))
(io/delete-file f))]
(func func (io/file fname))))
(defn- feature-map
"Create a Gate `FeatureMap` from a Clojure (or any) map."
([]
(feature-map nil))
([map]
(let [fm (Factory/newFeatureMap)]
(if map (.putAll fm map))
fm)))
(defn annotation-schema-from-resource
"Create a schema annotation from a schema the contents of **resource**.
See [Gate docs](https://gate.ac.uk/sale/tao/splitch7.html#x11-1720007.11)).
See [[annotation-schema]]."
[resource]
(->> {"xmlFileUrl" (->> resource io/resource io/as-url)}
feature-map
(Factory/createResource "gate.creole.AnnotationSchema")))
(defn annotation-schema
"Create an annotation schema (i.e. entity) **label**. If **options** is
given provide additional feature schema metadata.
See [[annotation-schema-from-resource]]."
([label]
(annotation-schema label nil))
([label options]
(->> (doto (AnnotationSchema.)
(.setAnnotationName label)
(.setFeatureSchemaSet
(->> options
(map (fn [{:keys [name value use options]
:or {use :default}}]
(let [usestr (cond (= use :default) "default"
(= use :fixed) "fixed"
true "")]
(FeatureSchema. name String
(or value (format "%s-value" name))
usestr
(if options
(HashSet. (set options)))))))
HashSet.))))))
(defn create-document
"Create a document with raw text. You can annotate the returned document
with [[annotate-document]]."
([text]
(doto (DocumentImpl.)
(.setContent (DocumentContentImpl. text))))
([text name]
(doto (create-document text)
(.setName name))))
(defn annotate-document
"Annotate a document with entity **label** `type` from character
position [**start** **end**) using additional entity metadata **features** in
document **doc**."
([start end label doc]
(annotate-document start end label {} doc))
([start end label features doc]
(let [fmap (.getFeatures doc)
anons (.getAnnotations doc)]
(.add anons start end label (feature-map features))
doc)))
(defn- file-to-url [dir]
(-> dir io/as-url .toString))
(defn store-documents
"Create a Gate data store that can be opened by the Gate GUI. This creates a
directory structure at **store-dir** and populates it **documents** that were
create with [[create-document]]. The name of the corpus is taken
from [[*corpus-name*]].
**Important**: this first deletes the **store-dir** directory if it exists.
Keys
----
* **resources**: resources (i.e. entities created with [[annotation-schema]])"
[store-dir documents
& {:keys [resources]}]
(if (.exists store-dir)
(delete-recursively store-dir))
(let [store (Factory/createDataStore "gate.persist.SerialDataStore"
(file-to-url store-dir))]
(try
(let [corpus (Factory/newCorpus *corpus-name*)
feats (doto (Factory/newFeatureMap)
(.put "transientSource" corpus))
cd-feats (Factory/newFeatureMap)]
(doall (map #(.add corpus %) documents))
(->> (.adopt store corpus)
(.sync store))
(doseq [res resources]
(->> (.adopt store res)
(.sync store)))
(log/infof "wrote store at: %s" store-dir))
(finally (.close store)))))
(defn- doc-to-map
"Return a map that represesnts a Gate document (see [[retrieve-documents]])."
[^Document doc]
(let [anon (-> doc .getAnnotations .inDocumentOrder)]
(->> anon
(map (fn [anon]
{:text (Utils/stringFor doc anon)
:label (.getType anon)
:char-range [(-> anon .getStartNode .getOffset)
(-> anon .getEndNode .getOffset)]}))
(hash-map :document doc
:name (.getName doc)
:content (-> doc .getContent .getOriginalContent)
:annotations))))
(defn retrieve-documents
"Retrieve Gate documents as maps that was stored by a human annotator or by
[[store-documents]]. The data to be retrieved comes from the file system
pointed by the directory **store-dir**.
This returns a lazy sequence of maps that have the following keys:
* **:document** The `gate.Document` instance (if you really need it)
* **:name** The name of the document
* **:content** The text string content of the document.
* **:annotation** A map of annotation maps that have the following keys:
* **:text:** The text of the annotation
* **:label** The label of the annotation (*type* in Gate parlance)
* **:annotations** The character interval of the annotation text (start/end
node in Gate parlance"
[store-dir]
(let [lr-type "gate.corpora.SerialCorpusImpl"
data-store (doto (SerialDataStore. (file-to-url store-dir))
.open)
docs (->> (.getLrIds data-store lr-type)
first
(.getLr data-store lr-type)
(into ())
(map doc-to-map))]
(.close data-store)
docs))
(initialize)
|
104161
|
(ns ^{:doc "Wrapper for [Gate](https://gate.ac.uk) annotation natural language
processing utility. This is a small wrapper that makes the following easier:
* Annotating Documents
* Create Store Documents
* Creating Annotation Schemas"
:author "<NAME>"}
zensols.annotate.gate
(:import [java.util HashSet]
[gate Gate Factory Utils Document]
[gate.corpora DocumentImpl DocumentContentImpl]
[gate.creole AnnotationSchema FeatureSchema]
[gate.persist SerialDataStore])
(:require [clojure.java.io :as io]
[clojure.tools.logging :as log])
(:require [zensols.actioncli.resource :as res]))
(def ^:dynamic *corpus-name*
"The default corpus name when creating a Gate data store."
"zensols-gate-corpus")
(defn initialize
"Initialize the Gate system. This is called when this namespace is loaded."
[]
(res/register-resource :gate-home :system-file "gate.home"
:system-default
(-> (System/getProperty "user.home")
(io/file "Applications/Developer/GateDeveloper")
.getAbsolutePath))
(let [gate-home (res/resource-path :gate-home)]
(log/infof "initializing gate system with home: %s" gate-home)
(-> (io/file gate-home "plugins")
.getAbsolutePath
(#(System/setProperty "gate.plugins.home" %)))
(-> (io/file gate-home "gate.xml")
.getAbsolutePath
(#(System/setProperty "gate.site.config" %)))
(Gate/init)
gate-home))
(defn configure-plugins
"Configure Gate plugins. The no-arg default configures the `Alignment`
plugin."
([]
(configure-plugins ["Alignment"]))
([plugins]
(doseq [plugin plugins]
(let [plugin-dir (res/resource-path :gate-home
(format "plugins/%s" plugin))]
(-> (Gate/getCreoleRegister)
(.registerDirectories (io/as-url plugin-dir)))))))
(defn- delete-recursively [fname]
(let [func (fn [func f]
(when (.isDirectory f)
(doseq [f2 (.listFiles f)]
(func func f2)))
(io/delete-file f))]
(func func (io/file fname))))
(defn- feature-map
"Create a Gate `FeatureMap` from a Clojure (or any) map."
([]
(feature-map nil))
([map]
(let [fm (Factory/newFeatureMap)]
(if map (.putAll fm map))
fm)))
(defn annotation-schema-from-resource
"Create a schema annotation from a schema the contents of **resource**.
See [Gate docs](https://gate.ac.uk/sale/tao/splitch7.html#x11-1720007.11)).
See [[annotation-schema]]."
[resource]
(->> {"xmlFileUrl" (->> resource io/resource io/as-url)}
feature-map
(Factory/createResource "gate.creole.AnnotationSchema")))
(defn annotation-schema
"Create an annotation schema (i.e. entity) **label**. If **options** is
given provide additional feature schema metadata.
See [[annotation-schema-from-resource]]."
([label]
(annotation-schema label nil))
([label options]
(->> (doto (AnnotationSchema.)
(.setAnnotationName label)
(.setFeatureSchemaSet
(->> options
(map (fn [{:keys [name value use options]
:or {use :default}}]
(let [usestr (cond (= use :default) "default"
(= use :fixed) "fixed"
true "")]
(FeatureSchema. name String
(or value (format "%s-value" name))
usestr
(if options
(HashSet. (set options)))))))
HashSet.))))))
(defn create-document
"Create a document with raw text. You can annotate the returned document
with [[annotate-document]]."
([text]
(doto (DocumentImpl.)
(.setContent (DocumentContentImpl. text))))
([text name]
(doto (create-document text)
(.setName name))))
(defn annotate-document
"Annotate a document with entity **label** `type` from character
position [**start** **end**) using additional entity metadata **features** in
document **doc**."
([start end label doc]
(annotate-document start end label {} doc))
([start end label features doc]
(let [fmap (.getFeatures doc)
anons (.getAnnotations doc)]
(.add anons start end label (feature-map features))
doc)))
(defn- file-to-url [dir]
(-> dir io/as-url .toString))
(defn store-documents
"Create a Gate data store that can be opened by the Gate GUI. This creates a
directory structure at **store-dir** and populates it **documents** that were
create with [[create-document]]. The name of the corpus is taken
from [[*corpus-name*]].
**Important**: this first deletes the **store-dir** directory if it exists.
Keys
----
* **resources**: resources (i.e. entities created with [[annotation-schema]])"
[store-dir documents
& {:keys [resources]}]
(if (.exists store-dir)
(delete-recursively store-dir))
(let [store (Factory/createDataStore "gate.persist.SerialDataStore"
(file-to-url store-dir))]
(try
(let [corpus (Factory/newCorpus *corpus-name*)
feats (doto (Factory/newFeatureMap)
(.put "transientSource" corpus))
cd-feats (Factory/newFeatureMap)]
(doall (map #(.add corpus %) documents))
(->> (.adopt store corpus)
(.sync store))
(doseq [res resources]
(->> (.adopt store res)
(.sync store)))
(log/infof "wrote store at: %s" store-dir))
(finally (.close store)))))
(defn- doc-to-map
"Return a map that represesnts a Gate document (see [[retrieve-documents]])."
[^Document doc]
(let [anon (-> doc .getAnnotations .inDocumentOrder)]
(->> anon
(map (fn [anon]
{:text (Utils/stringFor doc anon)
:label (.getType anon)
:char-range [(-> anon .getStartNode .getOffset)
(-> anon .getEndNode .getOffset)]}))
(hash-map :document doc
:name (.getName doc)
:content (-> doc .getContent .getOriginalContent)
:annotations))))
(defn retrieve-documents
"Retrieve Gate documents as maps that was stored by a human annotator or by
[[store-documents]]. The data to be retrieved comes from the file system
pointed by the directory **store-dir**.
This returns a lazy sequence of maps that have the following keys:
* **:document** The `gate.Document` instance (if you really need it)
* **:name** The name of the document
* **:content** The text string content of the document.
* **:annotation** A map of annotation maps that have the following keys:
* **:text:** The text of the annotation
* **:label** The label of the annotation (*type* in Gate parlance)
* **:annotations** The character interval of the annotation text (start/end
node in Gate parlance"
[store-dir]
(let [lr-type "gate.corpora.SerialCorpusImpl"
data-store (doto (SerialDataStore. (file-to-url store-dir))
.open)
docs (->> (.getLrIds data-store lr-type)
first
(.getLr data-store lr-type)
(into ())
(map doc-to-map))]
(.close data-store)
docs))
(initialize)
| true |
(ns ^{:doc "Wrapper for [Gate](https://gate.ac.uk) annotation natural language
processing utility. This is a small wrapper that makes the following easier:
* Annotating Documents
* Create Store Documents
* Creating Annotation Schemas"
:author "PI:NAME:<NAME>END_PI"}
zensols.annotate.gate
(:import [java.util HashSet]
[gate Gate Factory Utils Document]
[gate.corpora DocumentImpl DocumentContentImpl]
[gate.creole AnnotationSchema FeatureSchema]
[gate.persist SerialDataStore])
(:require [clojure.java.io :as io]
[clojure.tools.logging :as log])
(:require [zensols.actioncli.resource :as res]))
(def ^:dynamic *corpus-name*
"The default corpus name when creating a Gate data store."
"zensols-gate-corpus")
(defn initialize
"Initialize the Gate system. This is called when this namespace is loaded."
[]
(res/register-resource :gate-home :system-file "gate.home"
:system-default
(-> (System/getProperty "user.home")
(io/file "Applications/Developer/GateDeveloper")
.getAbsolutePath))
(let [gate-home (res/resource-path :gate-home)]
(log/infof "initializing gate system with home: %s" gate-home)
(-> (io/file gate-home "plugins")
.getAbsolutePath
(#(System/setProperty "gate.plugins.home" %)))
(-> (io/file gate-home "gate.xml")
.getAbsolutePath
(#(System/setProperty "gate.site.config" %)))
(Gate/init)
gate-home))
(defn configure-plugins
"Configure Gate plugins. The no-arg default configures the `Alignment`
plugin."
([]
(configure-plugins ["Alignment"]))
([plugins]
(doseq [plugin plugins]
(let [plugin-dir (res/resource-path :gate-home
(format "plugins/%s" plugin))]
(-> (Gate/getCreoleRegister)
(.registerDirectories (io/as-url plugin-dir)))))))
(defn- delete-recursively [fname]
(let [func (fn [func f]
(when (.isDirectory f)
(doseq [f2 (.listFiles f)]
(func func f2)))
(io/delete-file f))]
(func func (io/file fname))))
(defn- feature-map
"Create a Gate `FeatureMap` from a Clojure (or any) map."
([]
(feature-map nil))
([map]
(let [fm (Factory/newFeatureMap)]
(if map (.putAll fm map))
fm)))
(defn annotation-schema-from-resource
"Create a schema annotation from a schema the contents of **resource**.
See [Gate docs](https://gate.ac.uk/sale/tao/splitch7.html#x11-1720007.11)).
See [[annotation-schema]]."
[resource]
(->> {"xmlFileUrl" (->> resource io/resource io/as-url)}
feature-map
(Factory/createResource "gate.creole.AnnotationSchema")))
(defn annotation-schema
"Create an annotation schema (i.e. entity) **label**. If **options** is
given provide additional feature schema metadata.
See [[annotation-schema-from-resource]]."
([label]
(annotation-schema label nil))
([label options]
(->> (doto (AnnotationSchema.)
(.setAnnotationName label)
(.setFeatureSchemaSet
(->> options
(map (fn [{:keys [name value use options]
:or {use :default}}]
(let [usestr (cond (= use :default) "default"
(= use :fixed) "fixed"
true "")]
(FeatureSchema. name String
(or value (format "%s-value" name))
usestr
(if options
(HashSet. (set options)))))))
HashSet.))))))
(defn create-document
"Create a document with raw text. You can annotate the returned document
with [[annotate-document]]."
([text]
(doto (DocumentImpl.)
(.setContent (DocumentContentImpl. text))))
([text name]
(doto (create-document text)
(.setName name))))
(defn annotate-document
"Annotate a document with entity **label** `type` from character
position [**start** **end**) using additional entity metadata **features** in
document **doc**."
([start end label doc]
(annotate-document start end label {} doc))
([start end label features doc]
(let [fmap (.getFeatures doc)
anons (.getAnnotations doc)]
(.add anons start end label (feature-map features))
doc)))
(defn- file-to-url [dir]
(-> dir io/as-url .toString))
(defn store-documents
"Create a Gate data store that can be opened by the Gate GUI. This creates a
directory structure at **store-dir** and populates it **documents** that were
create with [[create-document]]. The name of the corpus is taken
from [[*corpus-name*]].
**Important**: this first deletes the **store-dir** directory if it exists.
Keys
----
* **resources**: resources (i.e. entities created with [[annotation-schema]])"
[store-dir documents
& {:keys [resources]}]
(if (.exists store-dir)
(delete-recursively store-dir))
(let [store (Factory/createDataStore "gate.persist.SerialDataStore"
(file-to-url store-dir))]
(try
(let [corpus (Factory/newCorpus *corpus-name*)
feats (doto (Factory/newFeatureMap)
(.put "transientSource" corpus))
cd-feats (Factory/newFeatureMap)]
(doall (map #(.add corpus %) documents))
(->> (.adopt store corpus)
(.sync store))
(doseq [res resources]
(->> (.adopt store res)
(.sync store)))
(log/infof "wrote store at: %s" store-dir))
(finally (.close store)))))
(defn- doc-to-map
"Return a map that represesnts a Gate document (see [[retrieve-documents]])."
[^Document doc]
(let [anon (-> doc .getAnnotations .inDocumentOrder)]
(->> anon
(map (fn [anon]
{:text (Utils/stringFor doc anon)
:label (.getType anon)
:char-range [(-> anon .getStartNode .getOffset)
(-> anon .getEndNode .getOffset)]}))
(hash-map :document doc
:name (.getName doc)
:content (-> doc .getContent .getOriginalContent)
:annotations))))
(defn retrieve-documents
"Retrieve Gate documents as maps that was stored by a human annotator or by
[[store-documents]]. The data to be retrieved comes from the file system
pointed by the directory **store-dir**.
This returns a lazy sequence of maps that have the following keys:
* **:document** The `gate.Document` instance (if you really need it)
* **:name** The name of the document
* **:content** The text string content of the document.
* **:annotation** A map of annotation maps that have the following keys:
* **:text:** The text of the annotation
* **:label** The label of the annotation (*type* in Gate parlance)
* **:annotations** The character interval of the annotation text (start/end
node in Gate parlance"
[store-dir]
(let [lr-type "gate.corpora.SerialCorpusImpl"
data-store (doto (SerialDataStore. (file-to-url store-dir))
.open)
docs (->> (.getLrIds data-store lr-type)
first
(.getLr data-store lr-type)
(into ())
(map doc-to-map))]
(.close data-store)
docs))
(initialize)
|
[
{
"context": "red st/number]})\n\n(def test-valid-input\n {:name \"Enyert Vinas\"\n :year 1936})\n\n(def test-non-valid-input\n {:n",
"end": 320,
"score": 0.9998494386672974,
"start": 308,
"tag": "NAME",
"value": "Enyert Vinas"
},
{
"context": ":year 1936})\n\n(def test-non-valid-input\n {:name \"Enyert Vinas\"\n :year \"1936\"})\n\n(def expected-exception-vecto",
"end": 387,
"score": 0.9998561143875122,
"start": 375,
"tag": "NAME",
"value": "Enyert Vinas"
},
{
"context": "string\n #\"[{:year \\\"must be a number\\\"} {:name \\\"Enyert Vinas\\\"}]\")\n\n(def load-template-valid-input\n {:templat",
"end": 501,
"score": 0.9973059892654419,
"start": 489,
"tag": "NAME",
"value": "Enyert Vinas"
}
] |
test/generic_code_generator/input_validator_test.clj
|
evinasgu/pangu
| 0 |
(ns generic-code-generator.input-validator-test
(:require [clojure.test :refer :all]
[generic-code-generator.input-validator :refer :all]
[struct.core :as st]))
(def +test-scheme+
{:name [st/required st/string]
:year [st/required st/number]})
(def test-valid-input
{:name "Enyert Vinas"
:year 1936})
(def test-non-valid-input
{:name "Enyert Vinas"
:year "1936"})
(def expected-exception-vector-string
#"[{:year \"must be a number\"} {:name \"Enyert Vinas\"}]")
(def load-template-valid-input
{:template-content "Hello World! {{ name }}"
:template-url "/home/machine_name/hello.txt"})
(def load-template-non-valid-input-by-type
{:template-content "Hello World! {{ name }}"
:template-url 1})
(def load-template-non-valid-input-by-required-nil
{:template-content "Hello World! {{ name }}"
:template-url nil})
(def load-template-non-valid-input-by-required-empty
{:template-content ""
:template-url "/home/machine_name/hello.txt"})
(def expected-exception-vector-string-validate-load-template-by-type
#"[{:template-url \"must be a string\"} {:template\-content \"Hello World! {{ name }}\"}]")
(def expected-exception-vector-string-validate-load-template-by-nil
#"[{:template-url \"this field is mandatory\"} {:template\-content \"Hello World! {{ name }}\"}]")
(def expected-exception-vector-string-validate-load-template-by-nil
#"[{:template\-content \"this field is mandatory\"} {:template\-url \"\/home\/machine_name\/hello.txt\"}]")
(deftest validate-scheme-test
(testing "validate-scheme function verifies succesfully a valid input"
(is (= test-valid-input (validate-scheme
+test-scheme+
test-valid-input))))
(testing "validate-scheme function throws an exception when input is invalid"
(is (thrown-with-msg? clojure.lang.ExceptionInfo expected-exception-vector-string
(validate-scheme
+test-scheme+
test-non-valid-input)))))
(deftest validate-load-template-input-test
(testing "validate-load-template-input function verifies succesfully a valid input"
(is (= load-template-valid-input (validate-load-template-input
load-template-valid-input))))
(testing "validate-load-template-input function throws an error when receives an invalid input by type"
(is (thrown-with-msg? clojure.lang.ExceptionInfo expected-exception-vector-string-validate-load-template-by-type
(validate-load-template-input
load-template-non-valid-input-by-type))))
(testing "validate-load-template-input throws an error when receives a nil parameter"
(is (thrown-with-msg? clojure.lang.ExceptionInfo expected-exception-vector-string-validate-load-template-by-nil
(validate-load-template-input
load-template-non-valid-input-by-required-nil))))
(testing "validate-load-template-input function throws an error when receives an empty parameter"
(is (thrown-with-msg? clojure.lang.ExceptionInfo expected-exception-vector-string-validate-load-template-by-nil
(validate-load-template-input
load-template-non-valid-input-by-required-empty)))))
|
44641
|
(ns generic-code-generator.input-validator-test
(:require [clojure.test :refer :all]
[generic-code-generator.input-validator :refer :all]
[struct.core :as st]))
(def +test-scheme+
{:name [st/required st/string]
:year [st/required st/number]})
(def test-valid-input
{:name "<NAME>"
:year 1936})
(def test-non-valid-input
{:name "<NAME>"
:year "1936"})
(def expected-exception-vector-string
#"[{:year \"must be a number\"} {:name \"<NAME>\"}]")
(def load-template-valid-input
{:template-content "Hello World! {{ name }}"
:template-url "/home/machine_name/hello.txt"})
(def load-template-non-valid-input-by-type
{:template-content "Hello World! {{ name }}"
:template-url 1})
(def load-template-non-valid-input-by-required-nil
{:template-content "Hello World! {{ name }}"
:template-url nil})
(def load-template-non-valid-input-by-required-empty
{:template-content ""
:template-url "/home/machine_name/hello.txt"})
(def expected-exception-vector-string-validate-load-template-by-type
#"[{:template-url \"must be a string\"} {:template\-content \"Hello World! {{ name }}\"}]")
(def expected-exception-vector-string-validate-load-template-by-nil
#"[{:template-url \"this field is mandatory\"} {:template\-content \"Hello World! {{ name }}\"}]")
(def expected-exception-vector-string-validate-load-template-by-nil
#"[{:template\-content \"this field is mandatory\"} {:template\-url \"\/home\/machine_name\/hello.txt\"}]")
(deftest validate-scheme-test
(testing "validate-scheme function verifies succesfully a valid input"
(is (= test-valid-input (validate-scheme
+test-scheme+
test-valid-input))))
(testing "validate-scheme function throws an exception when input is invalid"
(is (thrown-with-msg? clojure.lang.ExceptionInfo expected-exception-vector-string
(validate-scheme
+test-scheme+
test-non-valid-input)))))
(deftest validate-load-template-input-test
(testing "validate-load-template-input function verifies succesfully a valid input"
(is (= load-template-valid-input (validate-load-template-input
load-template-valid-input))))
(testing "validate-load-template-input function throws an error when receives an invalid input by type"
(is (thrown-with-msg? clojure.lang.ExceptionInfo expected-exception-vector-string-validate-load-template-by-type
(validate-load-template-input
load-template-non-valid-input-by-type))))
(testing "validate-load-template-input throws an error when receives a nil parameter"
(is (thrown-with-msg? clojure.lang.ExceptionInfo expected-exception-vector-string-validate-load-template-by-nil
(validate-load-template-input
load-template-non-valid-input-by-required-nil))))
(testing "validate-load-template-input function throws an error when receives an empty parameter"
(is (thrown-with-msg? clojure.lang.ExceptionInfo expected-exception-vector-string-validate-load-template-by-nil
(validate-load-template-input
load-template-non-valid-input-by-required-empty)))))
| true |
(ns generic-code-generator.input-validator-test
(:require [clojure.test :refer :all]
[generic-code-generator.input-validator :refer :all]
[struct.core :as st]))
(def +test-scheme+
{:name [st/required st/string]
:year [st/required st/number]})
(def test-valid-input
{:name "PI:NAME:<NAME>END_PI"
:year 1936})
(def test-non-valid-input
{:name "PI:NAME:<NAME>END_PI"
:year "1936"})
(def expected-exception-vector-string
#"[{:year \"must be a number\"} {:name \"PI:NAME:<NAME>END_PI\"}]")
(def load-template-valid-input
{:template-content "Hello World! {{ name }}"
:template-url "/home/machine_name/hello.txt"})
(def load-template-non-valid-input-by-type
{:template-content "Hello World! {{ name }}"
:template-url 1})
(def load-template-non-valid-input-by-required-nil
{:template-content "Hello World! {{ name }}"
:template-url nil})
(def load-template-non-valid-input-by-required-empty
{:template-content ""
:template-url "/home/machine_name/hello.txt"})
(def expected-exception-vector-string-validate-load-template-by-type
#"[{:template-url \"must be a string\"} {:template\-content \"Hello World! {{ name }}\"}]")
(def expected-exception-vector-string-validate-load-template-by-nil
#"[{:template-url \"this field is mandatory\"} {:template\-content \"Hello World! {{ name }}\"}]")
(def expected-exception-vector-string-validate-load-template-by-nil
#"[{:template\-content \"this field is mandatory\"} {:template\-url \"\/home\/machine_name\/hello.txt\"}]")
(deftest validate-scheme-test
(testing "validate-scheme function verifies succesfully a valid input"
(is (= test-valid-input (validate-scheme
+test-scheme+
test-valid-input))))
(testing "validate-scheme function throws an exception when input is invalid"
(is (thrown-with-msg? clojure.lang.ExceptionInfo expected-exception-vector-string
(validate-scheme
+test-scheme+
test-non-valid-input)))))
(deftest validate-load-template-input-test
(testing "validate-load-template-input function verifies succesfully a valid input"
(is (= load-template-valid-input (validate-load-template-input
load-template-valid-input))))
(testing "validate-load-template-input function throws an error when receives an invalid input by type"
(is (thrown-with-msg? clojure.lang.ExceptionInfo expected-exception-vector-string-validate-load-template-by-type
(validate-load-template-input
load-template-non-valid-input-by-type))))
(testing "validate-load-template-input throws an error when receives a nil parameter"
(is (thrown-with-msg? clojure.lang.ExceptionInfo expected-exception-vector-string-validate-load-template-by-nil
(validate-load-template-input
load-template-non-valid-input-by-required-nil))))
(testing "validate-load-template-input function throws an error when receives an empty parameter"
(is (thrown-with-msg? clojure.lang.ExceptionInfo expected-exception-vector-string-validate-load-template-by-nil
(validate-load-template-input
load-template-non-valid-input-by-required-empty)))))
|
[
{
"context": "rom python Reability port \n (http://github.com/srid/readability/blob/master/src/readability.py).\n ",
"end": 150,
"score": 0.9980065822601318,
"start": 146,
"tag": "USERNAME",
"value": "srid"
},
{
"context": "at work \n and one that doesn't. \"\n :author \"Aria Haghighi <[email protected]>\"}\n (:use [infer.measures :only [",
"end": 311,
"score": 0.9998769760131836,
"start": 298,
"tag": "NAME",
"value": "Aria Haghighi"
},
{
"context": "d one that doesn't. \"\n :author \"Aria Haghighi <[email protected]>\"}\n (:use [infer.measures :only [sparse-dot-prod",
"end": 326,
"score": 0.99992436170578,
"start": 313,
"tag": "EMAIL",
"value": "[email protected]"
}
] |
src/webmine/readability.clj
|
robertpfeiffer/webmine
| 1 |
(ns webmine.readability
^{:doc "Simple heuristics for selecting content divs. Uses
a lot from python Reability port
(http://github.com/srid/readability/blob/master/src/readability.py).
See comment form below for example sites that work
and one that doesn't. "
:author "Aria Haghighi <[email protected]>"}
(:use [infer.measures :only [sparse-dot-product]]
[plumbing.core :only [max-by min-by]]
[clojure.contrib.def :only [defvar-]])
(:require [clojure.string :as clj-str]
[html-parse.parser :as parser])
(:import [org.apache.xerces.dom ElementNSImpl]
[org.w3c.dom Node Element]))
(defvar- NEGATIVE
#"comment|meta|footer|navigation|footnote|foot"
"Bad words for class or ids")
(defvar- POSITIVE
#"article|post|hentry|entry|content|text|body|article"
"Good words for class or ids")
(defvar- PUNC
#"[!\"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~]"
"Punctuation")
(defvar- SHOULD-BE-PAR
#"<br */? *>[ \r\n]*<br */? *>"
"Should be a paragraph break")
(defvar- BASE-ELEM
#"a|blockquote|dl|div|img|ol|p|pre|table|ul"
"Base element")
(defn- to-binary [x]
(if x 1.0 0.0))
(defn- has-match? [s m]
(try
(re-seq s m)
(catch Exception _ false)))
; (defn is-text-div [n]
; (let [children (parser/do-children n identity)]
; (and children
; (-> children count (= 1))
; (-> children first parser/text-node?))))
(def ^:private word-re #"\w+")
(def ^:private comma-re #",")
(defn- div-feat-vec
"Features of the given div for readability"
[^Element div]
{ :num-children-pars ; how many immediate par children
(count
(filter
(fn [^Node c]
(try
(.equalsIgnoreCase (.getNodeName c) "p")
(catch Exception _ false)))
(parser/do-children div identity)))
:only-base-children
(to-binary
(every?
(fn [^Element c]
(or (parser/text-node? c)
(re-matches BASE-ELEM
(.getNodeName c))))
(parser/do-children div identity)))
:num-inner-divs
(count
(filter
(fn [^Node c]
(and (parser/element? c) (= (.getNodeName c) "div")))
(parser/do-children div identity)))
:good-class-word
(->> div parser/attr-map :class (has-match? POSITIVE) to-binary)
:good-id-word
(->> div parser/attr-map :id (has-match? POSITIVE) to-binary)
:bad-class-word
(->> div parser/attr-map :class (has-match? NEGATIVE) to-binary)
:bad-id-word
(->> div parser/attr-map :id (has-match? NEGATIVE) to-binary)
:long-text?
(to-binary (> (-> div .getTextContent count) 10))
:num-commas
(->> div .getTextContent (re-seq comma-re) count)
:total-words
(->> div .getTextContent (re-seq word-re) count)
})
; :num-children-text-divs
; (count
; (filter is-text-div (parser/do-children div identity)))
; :total-punc
; (->> div .getTextContent (re-seq PUNC) count)
(defvar- content-weight-vec
{:num-children-pars 100
:only-base-children 10
:num-inner-divs -1
:long-text? 1.0
:num-commas 1.0
:good-class-word 25
:good-id-word 25
:bad-class-word -1000
:num-words 0.01
:bad-id-word -1000 }
"Div Features set by hand from readability port")
(defn- div-content-score [div]
(let [dfv (div-feat-vec div)]
(sparse-dot-product dfv content-weight-vec)))
(defn min-chars? [^Node d n]
(>= (-> d .getTextContent count) n))
(defn bad-style? [^Node d]
(let [^String style (-> d parser/attr-map :style)]
(and style
(re-matches #"display:\s*none;"
(.toLowerCase style)))))
(defn ^Node find-best-content-div
"For the given dom root, what is the best DIV. Returns
best DIV unaltered. Return root if there are no divs."
[root]
(let [divs
(filter (fn [^Node d]
(and (not (bad-style? d))
(min-chars? d 140)))
(parser/divs root))]
(if (empty? divs) root
(apply max-key div-content-score divs))))
(defn div-stats
[div]
(let [txt (parser/clean-text div)
a (parser/elements div "a")]
{:div div
:p (count (parser/elements div "p"))
:img (count (parser/elements div "img"))
:li (count (parser/elements div "li"))
:a (count a)
:embed (count (parser/elements div "embed"))
:commas (count (re-seq comma-re txt))
:awords (count (re-seq word-re
(apply str
(map parser/text-from-dom a))))
:words (count (re-seq word-re txt))}))
(defn strip-bads [root]
(let [ds (parser/divs root)]
(if (= 0 (count ds)) root
(let [best-div
(->> (cons root ds)
(map div-stats)
(filter
(fn [{:keys [p img li
a embed txt
commas words awords]}]
;;(or
;; (< commas 10)
(and
;; (> commas 5)
(> words 0)
(> awords 0))))
;; (<= words p) ;;(* 5 p))
;; (<= commas p)
;; (> img p)
;; (> li p)
;; (> a p)
;; (> embed 0))))
;;TODO: for li text too?
(min-by
(fn [{:keys [words awords]}]
(float (/ awords words))))
:div)]
(if (not (= best-div root))
best-div
(parser/strip-from-dom root ds))))))
(defn readability-div
"given a dom, returns the best div."
[d]
(-> d
parser/strip-non-content
find-best-content-div
strip-bads))
(defn extract-content
"return the readability text from raw-html string"
[raw-html]
(-> raw-html
parser/dom
readability-div
parser/clean-text))
(defn format-plain-text-content
"return plain text rendering of html dom element. should
strip tags and replace <p> tags with newline"
[dom]
(-> dom
^String (parser/walk-dom
(fn [^Node node]
(cond
(parser/element? node)
(cond (= (.getNodeName node) "p") "\n\n"
(= (.getNodeName node) "br") "\n"
:default nil)
(parser/text-node? node)
(.getNodeValue node)))
(comp clj-str/join cons))
(.replaceAll "\n{3,}" "\n\n")
(.replaceAll " " "\t")))
|
22132
|
(ns webmine.readability
^{:doc "Simple heuristics for selecting content divs. Uses
a lot from python Reability port
(http://github.com/srid/readability/blob/master/src/readability.py).
See comment form below for example sites that work
and one that doesn't. "
:author "<NAME> <<EMAIL>>"}
(:use [infer.measures :only [sparse-dot-product]]
[plumbing.core :only [max-by min-by]]
[clojure.contrib.def :only [defvar-]])
(:require [clojure.string :as clj-str]
[html-parse.parser :as parser])
(:import [org.apache.xerces.dom ElementNSImpl]
[org.w3c.dom Node Element]))
(defvar- NEGATIVE
#"comment|meta|footer|navigation|footnote|foot"
"Bad words for class or ids")
(defvar- POSITIVE
#"article|post|hentry|entry|content|text|body|article"
"Good words for class or ids")
(defvar- PUNC
#"[!\"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~]"
"Punctuation")
(defvar- SHOULD-BE-PAR
#"<br */? *>[ \r\n]*<br */? *>"
"Should be a paragraph break")
(defvar- BASE-ELEM
#"a|blockquote|dl|div|img|ol|p|pre|table|ul"
"Base element")
(defn- to-binary [x]
(if x 1.0 0.0))
(defn- has-match? [s m]
(try
(re-seq s m)
(catch Exception _ false)))
; (defn is-text-div [n]
; (let [children (parser/do-children n identity)]
; (and children
; (-> children count (= 1))
; (-> children first parser/text-node?))))
(def ^:private word-re #"\w+")
(def ^:private comma-re #",")
(defn- div-feat-vec
"Features of the given div for readability"
[^Element div]
{ :num-children-pars ; how many immediate par children
(count
(filter
(fn [^Node c]
(try
(.equalsIgnoreCase (.getNodeName c) "p")
(catch Exception _ false)))
(parser/do-children div identity)))
:only-base-children
(to-binary
(every?
(fn [^Element c]
(or (parser/text-node? c)
(re-matches BASE-ELEM
(.getNodeName c))))
(parser/do-children div identity)))
:num-inner-divs
(count
(filter
(fn [^Node c]
(and (parser/element? c) (= (.getNodeName c) "div")))
(parser/do-children div identity)))
:good-class-word
(->> div parser/attr-map :class (has-match? POSITIVE) to-binary)
:good-id-word
(->> div parser/attr-map :id (has-match? POSITIVE) to-binary)
:bad-class-word
(->> div parser/attr-map :class (has-match? NEGATIVE) to-binary)
:bad-id-word
(->> div parser/attr-map :id (has-match? NEGATIVE) to-binary)
:long-text?
(to-binary (> (-> div .getTextContent count) 10))
:num-commas
(->> div .getTextContent (re-seq comma-re) count)
:total-words
(->> div .getTextContent (re-seq word-re) count)
})
; :num-children-text-divs
; (count
; (filter is-text-div (parser/do-children div identity)))
; :total-punc
; (->> div .getTextContent (re-seq PUNC) count)
(defvar- content-weight-vec
{:num-children-pars 100
:only-base-children 10
:num-inner-divs -1
:long-text? 1.0
:num-commas 1.0
:good-class-word 25
:good-id-word 25
:bad-class-word -1000
:num-words 0.01
:bad-id-word -1000 }
"Div Features set by hand from readability port")
(defn- div-content-score [div]
(let [dfv (div-feat-vec div)]
(sparse-dot-product dfv content-weight-vec)))
(defn min-chars? [^Node d n]
(>= (-> d .getTextContent count) n))
(defn bad-style? [^Node d]
(let [^String style (-> d parser/attr-map :style)]
(and style
(re-matches #"display:\s*none;"
(.toLowerCase style)))))
(defn ^Node find-best-content-div
"For the given dom root, what is the best DIV. Returns
best DIV unaltered. Return root if there are no divs."
[root]
(let [divs
(filter (fn [^Node d]
(and (not (bad-style? d))
(min-chars? d 140)))
(parser/divs root))]
(if (empty? divs) root
(apply max-key div-content-score divs))))
(defn div-stats
[div]
(let [txt (parser/clean-text div)
a (parser/elements div "a")]
{:div div
:p (count (parser/elements div "p"))
:img (count (parser/elements div "img"))
:li (count (parser/elements div "li"))
:a (count a)
:embed (count (parser/elements div "embed"))
:commas (count (re-seq comma-re txt))
:awords (count (re-seq word-re
(apply str
(map parser/text-from-dom a))))
:words (count (re-seq word-re txt))}))
(defn strip-bads [root]
(let [ds (parser/divs root)]
(if (= 0 (count ds)) root
(let [best-div
(->> (cons root ds)
(map div-stats)
(filter
(fn [{:keys [p img li
a embed txt
commas words awords]}]
;;(or
;; (< commas 10)
(and
;; (> commas 5)
(> words 0)
(> awords 0))))
;; (<= words p) ;;(* 5 p))
;; (<= commas p)
;; (> img p)
;; (> li p)
;; (> a p)
;; (> embed 0))))
;;TODO: for li text too?
(min-by
(fn [{:keys [words awords]}]
(float (/ awords words))))
:div)]
(if (not (= best-div root))
best-div
(parser/strip-from-dom root ds))))))
(defn readability-div
"given a dom, returns the best div."
[d]
(-> d
parser/strip-non-content
find-best-content-div
strip-bads))
(defn extract-content
"return the readability text from raw-html string"
[raw-html]
(-> raw-html
parser/dom
readability-div
parser/clean-text))
(defn format-plain-text-content
"return plain text rendering of html dom element. should
strip tags and replace <p> tags with newline"
[dom]
(-> dom
^String (parser/walk-dom
(fn [^Node node]
(cond
(parser/element? node)
(cond (= (.getNodeName node) "p") "\n\n"
(= (.getNodeName node) "br") "\n"
:default nil)
(parser/text-node? node)
(.getNodeValue node)))
(comp clj-str/join cons))
(.replaceAll "\n{3,}" "\n\n")
(.replaceAll " " "\t")))
| true |
(ns webmine.readability
^{:doc "Simple heuristics for selecting content divs. Uses
a lot from python Reability port
(http://github.com/srid/readability/blob/master/src/readability.py).
See comment form below for example sites that work
and one that doesn't. "
:author "PI:NAME:<NAME>END_PI <PI:EMAIL:<EMAIL>END_PI>"}
(:use [infer.measures :only [sparse-dot-product]]
[plumbing.core :only [max-by min-by]]
[clojure.contrib.def :only [defvar-]])
(:require [clojure.string :as clj-str]
[html-parse.parser :as parser])
(:import [org.apache.xerces.dom ElementNSImpl]
[org.w3c.dom Node Element]))
(defvar- NEGATIVE
#"comment|meta|footer|navigation|footnote|foot"
"Bad words for class or ids")
(defvar- POSITIVE
#"article|post|hentry|entry|content|text|body|article"
"Good words for class or ids")
(defvar- PUNC
#"[!\"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~]"
"Punctuation")
(defvar- SHOULD-BE-PAR
#"<br */? *>[ \r\n]*<br */? *>"
"Should be a paragraph break")
(defvar- BASE-ELEM
#"a|blockquote|dl|div|img|ol|p|pre|table|ul"
"Base element")
(defn- to-binary [x]
(if x 1.0 0.0))
(defn- has-match? [s m]
(try
(re-seq s m)
(catch Exception _ false)))
; (defn is-text-div [n]
; (let [children (parser/do-children n identity)]
; (and children
; (-> children count (= 1))
; (-> children first parser/text-node?))))
(def ^:private word-re #"\w+")
(def ^:private comma-re #",")
(defn- div-feat-vec
"Features of the given div for readability"
[^Element div]
{ :num-children-pars ; how many immediate par children
(count
(filter
(fn [^Node c]
(try
(.equalsIgnoreCase (.getNodeName c) "p")
(catch Exception _ false)))
(parser/do-children div identity)))
:only-base-children
(to-binary
(every?
(fn [^Element c]
(or (parser/text-node? c)
(re-matches BASE-ELEM
(.getNodeName c))))
(parser/do-children div identity)))
:num-inner-divs
(count
(filter
(fn [^Node c]
(and (parser/element? c) (= (.getNodeName c) "div")))
(parser/do-children div identity)))
:good-class-word
(->> div parser/attr-map :class (has-match? POSITIVE) to-binary)
:good-id-word
(->> div parser/attr-map :id (has-match? POSITIVE) to-binary)
:bad-class-word
(->> div parser/attr-map :class (has-match? NEGATIVE) to-binary)
:bad-id-word
(->> div parser/attr-map :id (has-match? NEGATIVE) to-binary)
:long-text?
(to-binary (> (-> div .getTextContent count) 10))
:num-commas
(->> div .getTextContent (re-seq comma-re) count)
:total-words
(->> div .getTextContent (re-seq word-re) count)
})
; :num-children-text-divs
; (count
; (filter is-text-div (parser/do-children div identity)))
; :total-punc
; (->> div .getTextContent (re-seq PUNC) count)
(defvar- content-weight-vec
{:num-children-pars 100
:only-base-children 10
:num-inner-divs -1
:long-text? 1.0
:num-commas 1.0
:good-class-word 25
:good-id-word 25
:bad-class-word -1000
:num-words 0.01
:bad-id-word -1000 }
"Div Features set by hand from readability port")
(defn- div-content-score [div]
(let [dfv (div-feat-vec div)]
(sparse-dot-product dfv content-weight-vec)))
(defn min-chars? [^Node d n]
(>= (-> d .getTextContent count) n))
(defn bad-style? [^Node d]
(let [^String style (-> d parser/attr-map :style)]
(and style
(re-matches #"display:\s*none;"
(.toLowerCase style)))))
(defn ^Node find-best-content-div
"For the given dom root, what is the best DIV. Returns
best DIV unaltered. Return root if there are no divs."
[root]
(let [divs
(filter (fn [^Node d]
(and (not (bad-style? d))
(min-chars? d 140)))
(parser/divs root))]
(if (empty? divs) root
(apply max-key div-content-score divs))))
(defn div-stats
[div]
(let [txt (parser/clean-text div)
a (parser/elements div "a")]
{:div div
:p (count (parser/elements div "p"))
:img (count (parser/elements div "img"))
:li (count (parser/elements div "li"))
:a (count a)
:embed (count (parser/elements div "embed"))
:commas (count (re-seq comma-re txt))
:awords (count (re-seq word-re
(apply str
(map parser/text-from-dom a))))
:words (count (re-seq word-re txt))}))
(defn strip-bads [root]
(let [ds (parser/divs root)]
(if (= 0 (count ds)) root
(let [best-div
(->> (cons root ds)
(map div-stats)
(filter
(fn [{:keys [p img li
a embed txt
commas words awords]}]
;;(or
;; (< commas 10)
(and
;; (> commas 5)
(> words 0)
(> awords 0))))
;; (<= words p) ;;(* 5 p))
;; (<= commas p)
;; (> img p)
;; (> li p)
;; (> a p)
;; (> embed 0))))
;;TODO: for li text too?
(min-by
(fn [{:keys [words awords]}]
(float (/ awords words))))
:div)]
(if (not (= best-div root))
best-div
(parser/strip-from-dom root ds))))))
(defn readability-div
"given a dom, returns the best div."
[d]
(-> d
parser/strip-non-content
find-best-content-div
strip-bads))
(defn extract-content
"return the readability text from raw-html string"
[raw-html]
(-> raw-html
parser/dom
readability-div
parser/clean-text))
(defn format-plain-text-content
"return plain text rendering of html dom element. should
strip tags and replace <p> tags with newline"
[dom]
(-> dom
^String (parser/walk-dom
(fn [^Node node]
(cond
(parser/element? node)
(cond (= (.getNodeName node) "p") "\n\n"
(= (.getNodeName node) "br") "\n"
:default nil)
(parser/text-node? node)
(.getNodeValue node)))
(comp clj-str/join cons))
(.replaceAll "\n{3,}" "\n\n")
(.replaceAll " " "\t")))
|
[
{
"context": "; Copyright 2009, 2011 Howard M. Lewis Ship\n;\n; Licensed under the Apache License, Version 2.",
"end": 43,
"score": 0.9998667240142822,
"start": 23,
"tag": "NAME",
"value": "Howard M. Lewis Ship"
}
] |
test/cascade/test_parser.clj
|
hlship/cascade
| 8 |
; Copyright 2009, 2011 Howard M. Lewis Ship
;
; Licensed under the Apache License, Version 2.0 (the "License");
; you may not use this file except in compliance with the License.
; You may obtain a copy of the License at
;
; http://www.apache.org/licenses/LICENSE-2.0
;
; Unless required by applicable law or agreed to in writing, software
; distributed under the License is distributed on an "AS IS" BASIS,
; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
; implied. See the License for the specific language governing permissions
; and limitations under the License.
(ns cascade.test-parser
(:use
(clojure test)
(cascade.internal parser)))
(deftest test-simple-fn
(let [[n p forms] (parse-function-def '(my-fn [a b] c d))]
(are [value expected]
(= value expected)
n 'my-fn
p '[a b]
forms '(c d))))
(deftest meta-data-for-doc-string-available
(let [[n p forms] (parse-function-def '(my-fn "Test" [a b] c))]
(are [value expected]
(= value expected)
n 'my-fn
p '[a b]
forms '(c))
(is (= ((meta n) :doc) "Test"))))
(deftest meta-data-applied-to-symbol
(let [[n p forms] (parse-function-def '(a-fn "Next" {:key :value} [x y z] :gnip :gnop))]
(are [value expected]
(= value expected)
n 'a-fn
p '[x y z]
forms '(:gnip :gnop))
(are [k v]
(= ((meta n) k) v)
:doc "Next"
:key :value)))
(deftest binding-vector
(let [[n p forms] (parse-function-def '(a-fn "Next" [a b] :gnip :gnop))]
(are [value expected]
(= value expected)
n 'a-fn
p '[a b]
forms '(:gnip :gnop))))
|
1194
|
; Copyright 2009, 2011 <NAME>
;
; Licensed under the Apache License, Version 2.0 (the "License");
; you may not use this file except in compliance with the License.
; You may obtain a copy of the License at
;
; http://www.apache.org/licenses/LICENSE-2.0
;
; Unless required by applicable law or agreed to in writing, software
; distributed under the License is distributed on an "AS IS" BASIS,
; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
; implied. See the License for the specific language governing permissions
; and limitations under the License.
(ns cascade.test-parser
(:use
(clojure test)
(cascade.internal parser)))
(deftest test-simple-fn
(let [[n p forms] (parse-function-def '(my-fn [a b] c d))]
(are [value expected]
(= value expected)
n 'my-fn
p '[a b]
forms '(c d))))
(deftest meta-data-for-doc-string-available
(let [[n p forms] (parse-function-def '(my-fn "Test" [a b] c))]
(are [value expected]
(= value expected)
n 'my-fn
p '[a b]
forms '(c))
(is (= ((meta n) :doc) "Test"))))
(deftest meta-data-applied-to-symbol
(let [[n p forms] (parse-function-def '(a-fn "Next" {:key :value} [x y z] :gnip :gnop))]
(are [value expected]
(= value expected)
n 'a-fn
p '[x y z]
forms '(:gnip :gnop))
(are [k v]
(= ((meta n) k) v)
:doc "Next"
:key :value)))
(deftest binding-vector
(let [[n p forms] (parse-function-def '(a-fn "Next" [a b] :gnip :gnop))]
(are [value expected]
(= value expected)
n 'a-fn
p '[a b]
forms '(:gnip :gnop))))
| true |
; Copyright 2009, 2011 PI:NAME:<NAME>END_PI
;
; Licensed under the Apache License, Version 2.0 (the "License");
; you may not use this file except in compliance with the License.
; You may obtain a copy of the License at
;
; http://www.apache.org/licenses/LICENSE-2.0
;
; Unless required by applicable law or agreed to in writing, software
; distributed under the License is distributed on an "AS IS" BASIS,
; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
; implied. See the License for the specific language governing permissions
; and limitations under the License.
(ns cascade.test-parser
(:use
(clojure test)
(cascade.internal parser)))
(deftest test-simple-fn
(let [[n p forms] (parse-function-def '(my-fn [a b] c d))]
(are [value expected]
(= value expected)
n 'my-fn
p '[a b]
forms '(c d))))
(deftest meta-data-for-doc-string-available
(let [[n p forms] (parse-function-def '(my-fn "Test" [a b] c))]
(are [value expected]
(= value expected)
n 'my-fn
p '[a b]
forms '(c))
(is (= ((meta n) :doc) "Test"))))
(deftest meta-data-applied-to-symbol
(let [[n p forms] (parse-function-def '(a-fn "Next" {:key :value} [x y z] :gnip :gnop))]
(are [value expected]
(= value expected)
n 'a-fn
p '[x y z]
forms '(:gnip :gnop))
(are [k v]
(= ((meta n) k) v)
:doc "Next"
:key :value)))
(deftest binding-vector
(let [[n p forms] (parse-function-def '(a-fn "Next" [a b] :gnip :gnop))]
(are [value expected]
(= value expected)
n 'a-fn
p '[a b]
forms '(:gnip :gnop))))
|
[
{
"context": " {:child ({:child ({:label \"Paul\" :token-index 3})\n ",
"end": 1270,
"score": 0.9488648176193237,
"start": 1266,
"tag": "NAME",
"value": "Paul"
},
{
"context": " (= first-sent-gold\n (->> (parse \"I am Paul\") :sents first :parse-tree))))))\n",
"end": 1808,
"score": 0.9756548404693604,
"start": 1804,
"tag": "NAME",
"value": "Paul"
}
] |
test/zensols/nlparse/sr_parse_test.clj
|
plandes/clj-nlp-parse
| 33 |
(ns zensols.nlparse.sr-parse-test
(:require [clojure.test :refer :all])
(:require [clojure.string :as s]
[clojure.tools.logging :as log]
[zensols.actioncli.resource :as res]
[zensols.nlparse.parse :as p]
[zensols.nlparse.config :as conf :refer (with-context)]))
(defonce ^:private context
(->> (conf/create-parse-config
:pipeline [(conf/tokenize)
(conf/sentence)
(conf/part-of-speech)
(conf/morphology)
(conf/named-entity-recognizer)
(conf/parse-tree {:use-shift-reduce? true})])
conf/create-context))
(defn- sr-model-found? []
(.exists (res/resource-path :stanford-sr-model)))
(defn- parse [utterance]
(with-context context
(p/parse utterance)))
(def ^:private first-sent-gold
'{:child ({:child ({:child ({:child ({:label "I" :token-index 1})
:label "PRP"
:token-index 1})
:label "NP"}
{:child ({:child ({:label "am" :token-index 2})
:label "VBP"
:token-index 2}
{:child ({:child ({:label "Paul" :token-index 3})
:label "NNP"
:token-index 3})
:label "NP"})
:label "VP"})
:label "S"})
:label "ROOT"})
(deftest test-sr-parse []
(testing "testing SR parser (if model is available)"
;; satisfy test runner
(is (= 1 1))
(if-not (sr-model-found?)
(log/warn "No shift reduce model found--skipping test")
(is (= first-sent-gold
(->> (parse "I am Paul") :sents first :parse-tree))))))
|
89901
|
(ns zensols.nlparse.sr-parse-test
(:require [clojure.test :refer :all])
(:require [clojure.string :as s]
[clojure.tools.logging :as log]
[zensols.actioncli.resource :as res]
[zensols.nlparse.parse :as p]
[zensols.nlparse.config :as conf :refer (with-context)]))
(defonce ^:private context
(->> (conf/create-parse-config
:pipeline [(conf/tokenize)
(conf/sentence)
(conf/part-of-speech)
(conf/morphology)
(conf/named-entity-recognizer)
(conf/parse-tree {:use-shift-reduce? true})])
conf/create-context))
(defn- sr-model-found? []
(.exists (res/resource-path :stanford-sr-model)))
(defn- parse [utterance]
(with-context context
(p/parse utterance)))
(def ^:private first-sent-gold
'{:child ({:child ({:child ({:child ({:label "I" :token-index 1})
:label "PRP"
:token-index 1})
:label "NP"}
{:child ({:child ({:label "am" :token-index 2})
:label "VBP"
:token-index 2}
{:child ({:child ({:label "<NAME>" :token-index 3})
:label "NNP"
:token-index 3})
:label "NP"})
:label "VP"})
:label "S"})
:label "ROOT"})
(deftest test-sr-parse []
(testing "testing SR parser (if model is available)"
;; satisfy test runner
(is (= 1 1))
(if-not (sr-model-found?)
(log/warn "No shift reduce model found--skipping test")
(is (= first-sent-gold
(->> (parse "I am <NAME>") :sents first :parse-tree))))))
| true |
(ns zensols.nlparse.sr-parse-test
(:require [clojure.test :refer :all])
(:require [clojure.string :as s]
[clojure.tools.logging :as log]
[zensols.actioncli.resource :as res]
[zensols.nlparse.parse :as p]
[zensols.nlparse.config :as conf :refer (with-context)]))
(defonce ^:private context
(->> (conf/create-parse-config
:pipeline [(conf/tokenize)
(conf/sentence)
(conf/part-of-speech)
(conf/morphology)
(conf/named-entity-recognizer)
(conf/parse-tree {:use-shift-reduce? true})])
conf/create-context))
(defn- sr-model-found? []
(.exists (res/resource-path :stanford-sr-model)))
(defn- parse [utterance]
(with-context context
(p/parse utterance)))
(def ^:private first-sent-gold
'{:child ({:child ({:child ({:child ({:label "I" :token-index 1})
:label "PRP"
:token-index 1})
:label "NP"}
{:child ({:child ({:label "am" :token-index 2})
:label "VBP"
:token-index 2}
{:child ({:child ({:label "PI:NAME:<NAME>END_PI" :token-index 3})
:label "NNP"
:token-index 3})
:label "NP"})
:label "VP"})
:label "S"})
:label "ROOT"})
(deftest test-sr-parse []
(testing "testing SR parser (if model is available)"
;; satisfy test runner
(is (= 1 1))
(if-not (sr-model-found?)
(log/warn "No shift reduce model found--skipping test")
(is (= first-sent-gold
(->> (parse "I am PI:NAME:<NAME>END_PI") :sents first :parse-tree))))))
|
[
{
"context": " other))))\n\n; -> (is-http (java.net.URL. \"mailto:/[email protected]\"))\n; -> false\n(defn is-http\n \"Returns true iff u",
"end": 1102,
"score": 0.999381422996521,
"start": 1086,
"tag": "EMAIL",
"value": "[email protected]"
}
] |
src/clementine/core.clj
|
danesherbs/clementine
| 4 |
(ns clementine.core
"Lightweight web crawler with an aritrary handler."
(:use [clojure.core.async :only (go)])
(:require [net.cgrand.enlive-html :as html]
[clj-http.client :as client]))
; Default config for http requests
(def http-opts {:socket-timeout 4000
:conn-timeout 4000
:insecure? false
:cookie-policy :standard
:throw-entire-message? false})
; -> (fetch-dom "https://news.ycombinator.com")
; -> ({:tag :a {:href "a.com"}} ...)
(defn fetch-dom
"Retrieves DOM at given url"
[url]
(try (html/html-snippet (:body (client/get url http-opts)))
(catch Exception e (println "Couldn't fetch" url (.getMessage e)) [])))
; -> (resolve-path "https://news.ycombinator.com/news?p=2" "news?p=3")
; -> "https://news.ycombinator.com/news?p=3"
(defn resolve-path [url other]
"Tries to resolve url and child url"
(try (java.net.URL. (java.net.URL. url) other)
(catch java.net.MalformedURLException e (println "Couldn't resolve" url "and" other))))
; -> (is-http (java.net.URL. "mailto:/[email protected]"))
; -> false
(defn is-http
"Returns true iff url is valid and uses http"
[url]
(try (.startsWith (.getProtocol url) "http")
(catch Exception e (println "Couldn't get protocol of" url) false)))
; -> (fetch-urls "https://news.ycombinator.com/news?p=2" [[:a.storylink]])
; -> ("https://a.com" "https://b.com" ...)
(defn fetch-urls
"Fetches urls on page"
[url link-selector]
(-> url
fetch-dom
(html/select link-selector)
(as-> nodes (map :attrs nodes))
(as-> attrs (map :href attrs))
(as-> hrefs (remove nil? hrefs))
(as-> hrefs (map (fn [href] (resolve-path url href)) hrefs))
(as-> hrefs (remove nil? hrefs))
(as-> hrefs (filter is-http hrefs))
(as-> hrefs (map str hrefs))))
; -> (go-crawl "https://news.ycombinator.com" println #{[:a.storylink] [:a.morelink]} 3)
; -> "https://a.com"
; "https://b.com"
; ...
(defn go-crawl
"Passes all reachable urls from url to handler fn"
[url handler link-selector max-depth visiting visited]
(if (>= max-depth 0)
; Crawl if not visted
(let [crawl-url (ref false)]
; Mark current url as visited
(dosync
(when-not (contains? @visited url)
(ref-set crawl-url true)
(alter visited conj url)
(alter visiting disj url)))
; Start crawl
(when @crawl-url
; Pass url to handler
(go (handler url))
; Crawl all urls on current page
(doseq [next-url (fetch-urls url link-selector)]
; Crawl next url if not visited or soon to be
(let [crawl-next-url (ref false)]
; Mark current url as visiting
(dosync
(when (and (not (contains? @visiting next-url))
(not (contains? @visited next-url)))
(ref-set crawl-next-url true)
(alter visiting disj url)))
; Crawl next url
(when @crawl-next-url
(go (go-crawl next-url handler link-selector (dec max-depth) visiting visited)))))))))
; -> (crawl {:url "https://news.ycombinator.com"
; :handler println
; :link-selector #{[:a.storylink] [:a.morelink]}
; :max-depth 3})
; -> "https://a.com"
; "https://b.com"
; ...
(defn crawl
[config]
(let [url (:url config)
handler (:handler config)
link-selector (:link-selector config)
max-depth (:max-depth config)
visiting (ref (set nil))
visited (ref (set nil))]
(go-crawl url handler link-selector max-depth visiting visited)))
|
11702
|
(ns clementine.core
"Lightweight web crawler with an aritrary handler."
(:use [clojure.core.async :only (go)])
(:require [net.cgrand.enlive-html :as html]
[clj-http.client :as client]))
; Default config for http requests
(def http-opts {:socket-timeout 4000
:conn-timeout 4000
:insecure? false
:cookie-policy :standard
:throw-entire-message? false})
; -> (fetch-dom "https://news.ycombinator.com")
; -> ({:tag :a {:href "a.com"}} ...)
(defn fetch-dom
"Retrieves DOM at given url"
[url]
(try (html/html-snippet (:body (client/get url http-opts)))
(catch Exception e (println "Couldn't fetch" url (.getMessage e)) [])))
; -> (resolve-path "https://news.ycombinator.com/news?p=2" "news?p=3")
; -> "https://news.ycombinator.com/news?p=3"
(defn resolve-path [url other]
"Tries to resolve url and child url"
(try (java.net.URL. (java.net.URL. url) other)
(catch java.net.MalformedURLException e (println "Couldn't resolve" url "and" other))))
; -> (is-http (java.net.URL. "mailto:/<EMAIL>"))
; -> false
(defn is-http
"Returns true iff url is valid and uses http"
[url]
(try (.startsWith (.getProtocol url) "http")
(catch Exception e (println "Couldn't get protocol of" url) false)))
; -> (fetch-urls "https://news.ycombinator.com/news?p=2" [[:a.storylink]])
; -> ("https://a.com" "https://b.com" ...)
(defn fetch-urls
"Fetches urls on page"
[url link-selector]
(-> url
fetch-dom
(html/select link-selector)
(as-> nodes (map :attrs nodes))
(as-> attrs (map :href attrs))
(as-> hrefs (remove nil? hrefs))
(as-> hrefs (map (fn [href] (resolve-path url href)) hrefs))
(as-> hrefs (remove nil? hrefs))
(as-> hrefs (filter is-http hrefs))
(as-> hrefs (map str hrefs))))
; -> (go-crawl "https://news.ycombinator.com" println #{[:a.storylink] [:a.morelink]} 3)
; -> "https://a.com"
; "https://b.com"
; ...
(defn go-crawl
"Passes all reachable urls from url to handler fn"
[url handler link-selector max-depth visiting visited]
(if (>= max-depth 0)
; Crawl if not visted
(let [crawl-url (ref false)]
; Mark current url as visited
(dosync
(when-not (contains? @visited url)
(ref-set crawl-url true)
(alter visited conj url)
(alter visiting disj url)))
; Start crawl
(when @crawl-url
; Pass url to handler
(go (handler url))
; Crawl all urls on current page
(doseq [next-url (fetch-urls url link-selector)]
; Crawl next url if not visited or soon to be
(let [crawl-next-url (ref false)]
; Mark current url as visiting
(dosync
(when (and (not (contains? @visiting next-url))
(not (contains? @visited next-url)))
(ref-set crawl-next-url true)
(alter visiting disj url)))
; Crawl next url
(when @crawl-next-url
(go (go-crawl next-url handler link-selector (dec max-depth) visiting visited)))))))))
; -> (crawl {:url "https://news.ycombinator.com"
; :handler println
; :link-selector #{[:a.storylink] [:a.morelink]}
; :max-depth 3})
; -> "https://a.com"
; "https://b.com"
; ...
(defn crawl
[config]
(let [url (:url config)
handler (:handler config)
link-selector (:link-selector config)
max-depth (:max-depth config)
visiting (ref (set nil))
visited (ref (set nil))]
(go-crawl url handler link-selector max-depth visiting visited)))
| true |
(ns clementine.core
"Lightweight web crawler with an aritrary handler."
(:use [clojure.core.async :only (go)])
(:require [net.cgrand.enlive-html :as html]
[clj-http.client :as client]))
; Default config for http requests
(def http-opts {:socket-timeout 4000
:conn-timeout 4000
:insecure? false
:cookie-policy :standard
:throw-entire-message? false})
; -> (fetch-dom "https://news.ycombinator.com")
; -> ({:tag :a {:href "a.com"}} ...)
(defn fetch-dom
"Retrieves DOM at given url"
[url]
(try (html/html-snippet (:body (client/get url http-opts)))
(catch Exception e (println "Couldn't fetch" url (.getMessage e)) [])))
; -> (resolve-path "https://news.ycombinator.com/news?p=2" "news?p=3")
; -> "https://news.ycombinator.com/news?p=3"
(defn resolve-path [url other]
"Tries to resolve url and child url"
(try (java.net.URL. (java.net.URL. url) other)
(catch java.net.MalformedURLException e (println "Couldn't resolve" url "and" other))))
; -> (is-http (java.net.URL. "mailto:/PI:EMAIL:<EMAIL>END_PI"))
; -> false
(defn is-http
"Returns true iff url is valid and uses http"
[url]
(try (.startsWith (.getProtocol url) "http")
(catch Exception e (println "Couldn't get protocol of" url) false)))
; -> (fetch-urls "https://news.ycombinator.com/news?p=2" [[:a.storylink]])
; -> ("https://a.com" "https://b.com" ...)
(defn fetch-urls
"Fetches urls on page"
[url link-selector]
(-> url
fetch-dom
(html/select link-selector)
(as-> nodes (map :attrs nodes))
(as-> attrs (map :href attrs))
(as-> hrefs (remove nil? hrefs))
(as-> hrefs (map (fn [href] (resolve-path url href)) hrefs))
(as-> hrefs (remove nil? hrefs))
(as-> hrefs (filter is-http hrefs))
(as-> hrefs (map str hrefs))))
; -> (go-crawl "https://news.ycombinator.com" println #{[:a.storylink] [:a.morelink]} 3)
; -> "https://a.com"
; "https://b.com"
; ...
(defn go-crawl
"Passes all reachable urls from url to handler fn"
[url handler link-selector max-depth visiting visited]
(if (>= max-depth 0)
; Crawl if not visted
(let [crawl-url (ref false)]
; Mark current url as visited
(dosync
(when-not (contains? @visited url)
(ref-set crawl-url true)
(alter visited conj url)
(alter visiting disj url)))
; Start crawl
(when @crawl-url
; Pass url to handler
(go (handler url))
; Crawl all urls on current page
(doseq [next-url (fetch-urls url link-selector)]
; Crawl next url if not visited or soon to be
(let [crawl-next-url (ref false)]
; Mark current url as visiting
(dosync
(when (and (not (contains? @visiting next-url))
(not (contains? @visited next-url)))
(ref-set crawl-next-url true)
(alter visiting disj url)))
; Crawl next url
(when @crawl-next-url
(go (go-crawl next-url handler link-selector (dec max-depth) visiting visited)))))))))
; -> (crawl {:url "https://news.ycombinator.com"
; :handler println
; :link-selector #{[:a.storylink] [:a.morelink]}
; :max-depth 3})
; -> "https://a.com"
; "https://b.com"
; ...
(defn crawl
[config]
(let [url (:url config)
handler (:handler config)
link-selector (:link-selector config)
max-depth (:max-depth config)
visiting (ref (set nil))
visited (ref (set nil))]
(go-crawl url handler link-selector max-depth visiting visited)))
|
[
{
"context": "ge, London, All rights reserved.\n;\n; Contributors: Jony Hudson\n;\n; Released under the MIT license..\n;\n\n(ns darwi",
"end": 134,
"score": 0.9997667670249939,
"start": 123,
"tag": "NAME",
"value": "Jony Hudson"
}
] |
src/darwin/evolution/metrics.clj
|
drcode/darwin
| 22 |
;
; This file is part of darwin.
;
; Copyright (C) 2014-, Imperial College, London, All rights reserved.
;
; Contributors: Jony Hudson
;
; Released under the MIT license..
;
(ns darwin.evolution.metrics
"Functions for capturing metrics for the run.")
(def metrics (atom {}))
(defn clear!
"Reset the metrics."
[]
(reset! metrics {}))
(defn add!
[key value]
(swap! metrics #(update-in % [key] (fn [x] (apply vector (conj x value))))))
(defn- calculate-stats
"Update a single population-level metric."
[values]
(let [mean-val (double (/ (apply + values) (count values)))
min-val (apply min values)
max-val (apply max values)]
[mean-val min-val max-val]))
(defn- update-stat
[key stat value]
(swap! metrics #(update-in % [key stat] (fn [x] (apply vector (conj x value))))))
(defn add-stats!
"Adds a metric derived from the statistics of a given set of values. Adds the mean, min and max of
the given values to the metric with the given name."
[key values]
(mapv #(update-stat key %1 %2) [:mean :min :max] (calculate-stats values)))
|
99371
|
;
; This file is part of darwin.
;
; Copyright (C) 2014-, Imperial College, London, All rights reserved.
;
; Contributors: <NAME>
;
; Released under the MIT license..
;
(ns darwin.evolution.metrics
"Functions for capturing metrics for the run.")
(def metrics (atom {}))
(defn clear!
"Reset the metrics."
[]
(reset! metrics {}))
(defn add!
[key value]
(swap! metrics #(update-in % [key] (fn [x] (apply vector (conj x value))))))
(defn- calculate-stats
"Update a single population-level metric."
[values]
(let [mean-val (double (/ (apply + values) (count values)))
min-val (apply min values)
max-val (apply max values)]
[mean-val min-val max-val]))
(defn- update-stat
[key stat value]
(swap! metrics #(update-in % [key stat] (fn [x] (apply vector (conj x value))))))
(defn add-stats!
"Adds a metric derived from the statistics of a given set of values. Adds the mean, min and max of
the given values to the metric with the given name."
[key values]
(mapv #(update-stat key %1 %2) [:mean :min :max] (calculate-stats values)))
| true |
;
; This file is part of darwin.
;
; Copyright (C) 2014-, Imperial College, London, All rights reserved.
;
; Contributors: PI:NAME:<NAME>END_PI
;
; Released under the MIT license..
;
(ns darwin.evolution.metrics
"Functions for capturing metrics for the run.")
(def metrics (atom {}))
(defn clear!
"Reset the metrics."
[]
(reset! metrics {}))
(defn add!
[key value]
(swap! metrics #(update-in % [key] (fn [x] (apply vector (conj x value))))))
(defn- calculate-stats
"Update a single population-level metric."
[values]
(let [mean-val (double (/ (apply + values) (count values)))
min-val (apply min values)
max-val (apply max values)]
[mean-val min-val max-val]))
(defn- update-stat
[key stat value]
(swap! metrics #(update-in % [key stat] (fn [x] (apply vector (conj x value))))))
(defn add-stats!
"Adds a metric derived from the statistics of a given set of values. Adds the mean, min and max of
the given values to the metric with the given name."
[key values]
(mapv #(update-stat key %1 %2) [:mean :min :max] (calculate-stats values)))
|
[
{
"context": " \"environment-exists? function\"\n (doseq [env [\"bobby\" \"dave\" \"charlie\"]]\n (storage/ensure-environ",
"end": 1905,
"score": 0.9783107042312622,
"start": 1900,
"tag": "NAME",
"value": "bobby"
},
{
"context": "nment-exists? function\"\n (doseq [env [\"bobby\" \"dave\" \"charlie\"]]\n (storage/ensure-environment en",
"end": 1912,
"score": 0.9987442493438721,
"start": 1908,
"tag": "NAME",
"value": "dave"
},
{
"context": "xists? function\"\n (doseq [env [\"bobby\" \"dave\" \"charlie\"]]\n (storage/ensure-environment env))\n\n (",
"end": 1922,
"score": 0.9983198046684265,
"start": 1915,
"tag": "NAME",
"value": "charlie"
}
] |
test/puppetlabs/puppetdb/query/environments_test.clj
|
ajroetker/puppetdb
| 0 |
(ns puppetlabs.puppetdb.query.environments-test
(:require [puppetlabs.puppetdb.query.environments :refer :all]
[puppetlabs.puppetdb.query-eng :as eng]
[clojure.test :refer :all]
[puppetlabs.puppetdb.scf.storage :as storage]
[puppetlabs.puppetdb.fixtures :as fixt]
[puppetlabs.puppetdb.cheshire :as json]))
(fixt/defixture super-fixture :each fixt/with-test-db)
(defn query-environments
[version & [query]]
(eng/stream-query-result :environments version query {} fixt/*db* ""))
(deftest test-all-environments
(testing "without environments"
(is (empty? (query-environments :v4))))
(testing "with environments"
(doseq [env ["foo" "bar" "baz"]]
(storage/ensure-environment env))
(is (= #{{:name "foo"}
{:name "bar"}
{:name "baz"}}
(set (query-environments :v4))))))
(def jsonify (comp json/parse-strict-string json/generate-string))
(deftest test-environment-queries
(testing "without environments"
(is (empty? (query-environments :v4))))
(testing "with environments"
(doseq [env ["foo" "bar" "baz"]]
(storage/ensure-environment env))
(are [query result] (= result (set (query-environments :v4 (jsonify query))))
'[= name foo]
#{{:name "foo"}}
'["~" name f.*]
#{{:name "foo"}}
'[not [= name foo]]
#{{:name "bar"}
{:name "baz"}}
'[not ["~" name f.*]]
#{{:name "bar"}
{:name "baz"}}
'[or
[= name foo]
[= name bar]]
#{{:name "foo"}
{:name "bar"}}
'[and
["~" name f.*]
["~" name .*o]]
#{{:name "foo"}}
'[and
["~" name f.*]
["~" name .*o]]
#{{:name "foo"}}))
(testing "environment-exists? function"
(doseq [env ["bobby" "dave" "charlie"]]
(storage/ensure-environment env))
(is (= true (eng/object-exists? :environment "bobby")))
(is (= true (eng/object-exists? :environment "dave")))
(is (= true (eng/object-exists? :environment "charlie")))
(is (= false (eng/object-exists? :environment "ussr")))))
(deftest test-failed-comparison
(are [query] (thrown-with-msg? IllegalArgumentException
#"Query operators >,>=,<,<= are not allowed on field name"
(query-environments :v4 (jsonify query)))
'[<= name foo]
'[>= name foo]
'[< name foo]
'[> name foo]))
|
28351
|
(ns puppetlabs.puppetdb.query.environments-test
(:require [puppetlabs.puppetdb.query.environments :refer :all]
[puppetlabs.puppetdb.query-eng :as eng]
[clojure.test :refer :all]
[puppetlabs.puppetdb.scf.storage :as storage]
[puppetlabs.puppetdb.fixtures :as fixt]
[puppetlabs.puppetdb.cheshire :as json]))
(fixt/defixture super-fixture :each fixt/with-test-db)
(defn query-environments
[version & [query]]
(eng/stream-query-result :environments version query {} fixt/*db* ""))
(deftest test-all-environments
(testing "without environments"
(is (empty? (query-environments :v4))))
(testing "with environments"
(doseq [env ["foo" "bar" "baz"]]
(storage/ensure-environment env))
(is (= #{{:name "foo"}
{:name "bar"}
{:name "baz"}}
(set (query-environments :v4))))))
(def jsonify (comp json/parse-strict-string json/generate-string))
(deftest test-environment-queries
(testing "without environments"
(is (empty? (query-environments :v4))))
(testing "with environments"
(doseq [env ["foo" "bar" "baz"]]
(storage/ensure-environment env))
(are [query result] (= result (set (query-environments :v4 (jsonify query))))
'[= name foo]
#{{:name "foo"}}
'["~" name f.*]
#{{:name "foo"}}
'[not [= name foo]]
#{{:name "bar"}
{:name "baz"}}
'[not ["~" name f.*]]
#{{:name "bar"}
{:name "baz"}}
'[or
[= name foo]
[= name bar]]
#{{:name "foo"}
{:name "bar"}}
'[and
["~" name f.*]
["~" name .*o]]
#{{:name "foo"}}
'[and
["~" name f.*]
["~" name .*o]]
#{{:name "foo"}}))
(testing "environment-exists? function"
(doseq [env ["<NAME>" "<NAME>" "<NAME>"]]
(storage/ensure-environment env))
(is (= true (eng/object-exists? :environment "bobby")))
(is (= true (eng/object-exists? :environment "dave")))
(is (= true (eng/object-exists? :environment "charlie")))
(is (= false (eng/object-exists? :environment "ussr")))))
(deftest test-failed-comparison
(are [query] (thrown-with-msg? IllegalArgumentException
#"Query operators >,>=,<,<= are not allowed on field name"
(query-environments :v4 (jsonify query)))
'[<= name foo]
'[>= name foo]
'[< name foo]
'[> name foo]))
| true |
(ns puppetlabs.puppetdb.query.environments-test
(:require [puppetlabs.puppetdb.query.environments :refer :all]
[puppetlabs.puppetdb.query-eng :as eng]
[clojure.test :refer :all]
[puppetlabs.puppetdb.scf.storage :as storage]
[puppetlabs.puppetdb.fixtures :as fixt]
[puppetlabs.puppetdb.cheshire :as json]))
(fixt/defixture super-fixture :each fixt/with-test-db)
(defn query-environments
[version & [query]]
(eng/stream-query-result :environments version query {} fixt/*db* ""))
(deftest test-all-environments
(testing "without environments"
(is (empty? (query-environments :v4))))
(testing "with environments"
(doseq [env ["foo" "bar" "baz"]]
(storage/ensure-environment env))
(is (= #{{:name "foo"}
{:name "bar"}
{:name "baz"}}
(set (query-environments :v4))))))
(def jsonify (comp json/parse-strict-string json/generate-string))
(deftest test-environment-queries
(testing "without environments"
(is (empty? (query-environments :v4))))
(testing "with environments"
(doseq [env ["foo" "bar" "baz"]]
(storage/ensure-environment env))
(are [query result] (= result (set (query-environments :v4 (jsonify query))))
'[= name foo]
#{{:name "foo"}}
'["~" name f.*]
#{{:name "foo"}}
'[not [= name foo]]
#{{:name "bar"}
{:name "baz"}}
'[not ["~" name f.*]]
#{{:name "bar"}
{:name "baz"}}
'[or
[= name foo]
[= name bar]]
#{{:name "foo"}
{:name "bar"}}
'[and
["~" name f.*]
["~" name .*o]]
#{{:name "foo"}}
'[and
["~" name f.*]
["~" name .*o]]
#{{:name "foo"}}))
(testing "environment-exists? function"
(doseq [env ["PI:NAME:<NAME>END_PI" "PI:NAME:<NAME>END_PI" "PI:NAME:<NAME>END_PI"]]
(storage/ensure-environment env))
(is (= true (eng/object-exists? :environment "bobby")))
(is (= true (eng/object-exists? :environment "dave")))
(is (= true (eng/object-exists? :environment "charlie")))
(is (= false (eng/object-exists? :environment "ussr")))))
(deftest test-failed-comparison
(are [query] (thrown-with-msg? IllegalArgumentException
#"Query operators >,>=,<,<= are not allowed on field name"
(query-environments :v4 (jsonify query)))
'[<= name foo]
'[>= name foo]
'[< name foo]
'[> name foo]))
|
[
{
"context": "pe Serialization/Deserialization\"\n :author \"Yannick Scherer\" }\n thrift-clj.protocol.serialize\n (:use [thrif",
"end": 87,
"score": 0.9998490214347839,
"start": 72,
"tag": "NAME",
"value": "Yannick Scherer"
}
] |
src/thrift_clj/protocol/serialize.clj
|
ipostelnik/thrift-clj
| 35 |
(ns ^{ :doc "Thrift Type Serialization/Deserialization"
:author "Yannick Scherer" }
thrift-clj.protocol.serialize
(:use [thrift-clj.protocol.core :only [protocol-factory]])
(:require [thrift-clj.gen.core :as c])
(:import [org.apache.thrift TSerializer TDeserializer]))
;; ## Serialize/Deserialize Protocols
(defprotocol Serializer
"Protocol for Serialization."
(value->bytes [this v])
(value->string [this v] [this v charset]))
(defprotocol Deserializer
"Protocol for Deserialization."
(bytes->value [this prototype data])
(string->value [this prototype string] [this prototype string charset]))
(extend-type TSerializer
Serializer
(value->bytes [this v]
(.serialize this (c/->thrift v)))
(value->string
([this v] (.toString this (c/->thrift v)))
([this v charset] (.toString this (c/->thrift v) charset))))
(extend-type TDeserializer
Deserializer
(bytes->value [this prototype data]
(let [proto (c/->thrift-unchecked prototype)]
(.deserialize this proto data)
(c/->clj proto)))
(string->value
([this prototype string]
(let [proto (c/->thrift-unchecked prototype)]
(.fromString this proto string)
(c/->clj proto)))
([this prototype string charset]
(let [proto (c/->thrift-unchecked prototype)]
(.deserialize this proto string charset)
(c/->clj proto)))))
;; ## Combined Serializer/Deserializer
(deftype Serialize [serializer deserializer]
Serializer
(value->bytes [this v]
(value->bytes serializer v))
(value->string [this v]
(value->string serializer v))
(value->string [this v charset]
(value->string serializer v charset))
Deserializer
(bytes->value [this prototype data]
(bytes->value deserializer prototype data))
(string->value [this prototype string]
(string->value deserializer prototype string))
(string->value [this prototype string charset]
(string->value deserializer prototype string charset)))
;; ## Serializer Creation
(defn serializer
"Create new Serialization Helper using the given Protocol Type and Options."
[protocol-id & args]
(let [factory (apply protocol-factory protocol-id args)]
(Serialize.
(TSerializer. factory)
(TDeserializer. factory))))
|
28898
|
(ns ^{ :doc "Thrift Type Serialization/Deserialization"
:author "<NAME>" }
thrift-clj.protocol.serialize
(:use [thrift-clj.protocol.core :only [protocol-factory]])
(:require [thrift-clj.gen.core :as c])
(:import [org.apache.thrift TSerializer TDeserializer]))
;; ## Serialize/Deserialize Protocols
(defprotocol Serializer
"Protocol for Serialization."
(value->bytes [this v])
(value->string [this v] [this v charset]))
(defprotocol Deserializer
"Protocol for Deserialization."
(bytes->value [this prototype data])
(string->value [this prototype string] [this prototype string charset]))
(extend-type TSerializer
Serializer
(value->bytes [this v]
(.serialize this (c/->thrift v)))
(value->string
([this v] (.toString this (c/->thrift v)))
([this v charset] (.toString this (c/->thrift v) charset))))
(extend-type TDeserializer
Deserializer
(bytes->value [this prototype data]
(let [proto (c/->thrift-unchecked prototype)]
(.deserialize this proto data)
(c/->clj proto)))
(string->value
([this prototype string]
(let [proto (c/->thrift-unchecked prototype)]
(.fromString this proto string)
(c/->clj proto)))
([this prototype string charset]
(let [proto (c/->thrift-unchecked prototype)]
(.deserialize this proto string charset)
(c/->clj proto)))))
;; ## Combined Serializer/Deserializer
(deftype Serialize [serializer deserializer]
Serializer
(value->bytes [this v]
(value->bytes serializer v))
(value->string [this v]
(value->string serializer v))
(value->string [this v charset]
(value->string serializer v charset))
Deserializer
(bytes->value [this prototype data]
(bytes->value deserializer prototype data))
(string->value [this prototype string]
(string->value deserializer prototype string))
(string->value [this prototype string charset]
(string->value deserializer prototype string charset)))
;; ## Serializer Creation
(defn serializer
"Create new Serialization Helper using the given Protocol Type and Options."
[protocol-id & args]
(let [factory (apply protocol-factory protocol-id args)]
(Serialize.
(TSerializer. factory)
(TDeserializer. factory))))
| true |
(ns ^{ :doc "Thrift Type Serialization/Deserialization"
:author "PI:NAME:<NAME>END_PI" }
thrift-clj.protocol.serialize
(:use [thrift-clj.protocol.core :only [protocol-factory]])
(:require [thrift-clj.gen.core :as c])
(:import [org.apache.thrift TSerializer TDeserializer]))
;; ## Serialize/Deserialize Protocols
(defprotocol Serializer
"Protocol for Serialization."
(value->bytes [this v])
(value->string [this v] [this v charset]))
(defprotocol Deserializer
"Protocol for Deserialization."
(bytes->value [this prototype data])
(string->value [this prototype string] [this prototype string charset]))
(extend-type TSerializer
Serializer
(value->bytes [this v]
(.serialize this (c/->thrift v)))
(value->string
([this v] (.toString this (c/->thrift v)))
([this v charset] (.toString this (c/->thrift v) charset))))
(extend-type TDeserializer
Deserializer
(bytes->value [this prototype data]
(let [proto (c/->thrift-unchecked prototype)]
(.deserialize this proto data)
(c/->clj proto)))
(string->value
([this prototype string]
(let [proto (c/->thrift-unchecked prototype)]
(.fromString this proto string)
(c/->clj proto)))
([this prototype string charset]
(let [proto (c/->thrift-unchecked prototype)]
(.deserialize this proto string charset)
(c/->clj proto)))))
;; ## Combined Serializer/Deserializer
(deftype Serialize [serializer deserializer]
Serializer
(value->bytes [this v]
(value->bytes serializer v))
(value->string [this v]
(value->string serializer v))
(value->string [this v charset]
(value->string serializer v charset))
Deserializer
(bytes->value [this prototype data]
(bytes->value deserializer prototype data))
(string->value [this prototype string]
(string->value deserializer prototype string))
(string->value [this prototype string charset]
(string->value deserializer prototype string charset)))
;; ## Serializer Creation
(defn serializer
"Create new Serialization Helper using the given Protocol Type and Options."
[protocol-id & args]
(let [factory (apply protocol-factory protocol-id args)]
(Serialize.
(TSerializer. factory)
(TDeserializer. factory))))
|
[
{
"context": " (t/testing \"valid messages\"\n (t/is (= {:who \"[email protected]\" :when (jt/local-date)}\n (sut/parse-s",
"end": 795,
"score": 0.9999228715896606,
"start": 777,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "jt/local-date)}\n (sut/parse-sign-off \"[email protected]\"\n (str \"cannot \" ",
"end": 872,
"score": 0.9999234080314636,
"start": 854,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": " (str \"cannot \" today-str))))\n (t/is (= {:who \"[email protected]\" :when tomorrow}\n (sut/parse-sign-off",
"end": 974,
"score": 0.9999240040779114,
"start": 956,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": ":when tomorrow}\n (sut/parse-sign-off \"[email protected]\"\n (str \"cannot me",
"end": 1044,
"score": 0.9999246597290039,
"start": 1026,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "\"cannot me \" tomorrow-str))))\n (t/is (= {:who \"[email protected]\" :when (jt/local-date)}\n (sut/parse-s",
"end": 1151,
"score": 0.9999141693115234,
"start": 1134,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "jt/local-date)}\n (sut/parse-sign-off \"[email protected]\"\n (str \"cannot so",
"end": 1236,
"score": 0.9998849034309387,
"start": 1210,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "com\"\n (str \"cannot [email protected] \" today-str))))\n (t/is (= {:who \"[email protected]",
"end": 1301,
"score": 0.9999082684516907,
"start": 1284,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "[email protected] \" today-str))))\n (t/is (= {:who \"[email protected]\" :when (next-monday)}\n (sut/parse-sig",
"end": 1353,
"score": 0.9999181032180786,
"start": 1338,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": " (next-monday)}\n (sut/parse-sign-off \"[email protected]\"\n \"cannot another",
"end": 1428,
"score": 0.9999233484268188,
"start": 1410,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "pany.com\"\n \"cannot [email protected]\")))\n (t/is (= {:who \"[email protected]\" :when",
"end": 1486,
"score": 0.9999202489852905,
"start": 1471,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": " \"cannot [email protected]\")))\n (t/is (= {:who \"[email protected]\" :when (next-monday)}\n (sut/parse-sig",
"end": 1529,
"score": 0.9999244809150696,
"start": 1511,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": " (next-monday)}\n (sut/parse-sign-off \"[email protected]\"\n \"cannot me\")))\n",
"end": 1604,
"score": 0.9999233484268188,
"start": 1586,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": " \"cannot me\")))\n (t/is (= {:who \"[email protected]\" :when (next-monday)}\n (sut/parse-sig",
"end": 1692,
"score": 0.9999240636825562,
"start": 1674,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": " (next-monday)}\n (sut/parse-sign-off \"[email protected]\"\n \"cannot\"))))\n ",
"end": 1767,
"score": 0.9999202489852905,
"start": 1749,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": " (t/is (thrown? Exception (sut/parse-sign-off \"[email protected]\"\n ",
"end": 1923,
"score": 0.9998950958251953,
"start": 1897,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": " (t/is (thrown? Exception (sut/parse-sign-off \"[email protected]\"\n ",
"end": 2250,
"score": 0.999058723449707,
"start": 2220,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": " (t/is (thrown? Exception (sut/parse-sign-off \"[email protected]\"\n ",
"end": 2441,
"score": 0.9996998906135559,
"start": 2417,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "for this date yet\n (let [result (sut/sign-off \"[email protected]\" date date)]\n (t/is (.startsWith (:direct-re",
"end": 2807,
"score": 0.9999305605888367,
"start": 2782,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "-signed-off answers)}\n (sut/sign-off \"[email protected]\" date date))))\n (t/testing \"cannot sign-off from",
"end": 3081,
"score": 0.9999303817749023,
"start": 3056,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "or-no-event answers)}\n (sut/sign-off \"[email protected]\"\n (jt/plus date (jt/day",
"end": 3260,
"score": 0.9999302625656128,
"start": 3235,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "b\n {:day date :email \"[email protected]\"})\n (log/info \"signing off catherina\")\n (t/",
"end": 3551,
"score": 0.9999234080314636,
"start": 3522,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "[email protected]\"})\n (log/info \"signing off catherina\")\n (t/is (= {:direct-reply ((:change-bringer a",
"end": 3591,
"score": 0.9991064071655273,
"start": 3582,
"tag": "NAME",
"value": "catherina"
},
{
"context": "e-bringer answers)\n [\"[email protected]\"])\n :update true\n ",
"end": 3706,
"score": 0.9999271035194397,
"start": 3680,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "true\n :notification {:who (list \"[email protected]\")\n :message (:new-bri",
"end": 3814,
"score": 0.9999266862869263,
"start": 3788,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "ew-bringer answers)}}\n (sut/sign-off \"[email protected]\" date date))))\n (t/testing \"when the last person",
"end": 3937,
"score": 0.9999232292175293,
"start": 3908,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": " breakfast is canceled\"\n (log/info \"signing off milles\")\n (t/is (.startsWith\n (:direct-repl",
"end": 4055,
"score": 0.960878312587738,
"start": 4049,
"tag": "NAME",
"value": "milles"
},
{
"context": "artsWith\n (:direct-reply (sut/sign-off \"[email protected]\" date date))\n (:ok-unhappy answers)))\n ",
"end": 4147,
"score": 0.999916672706604,
"start": 4122,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "(:ok-unhappy answers)))\n (log/info \"signing off stan\")\n (t/is (= {:direct-reply ((:cancel answers) ",
"end": 4227,
"score": 0.92038494348526,
"start": 4223,
"tag": "NAME",
"value": "stan"
},
{
"context": " :update true}\n (sut/sign-off \"[email protected]\" date date))))\n (t/testing \"reports error when n",
"end": 4371,
"score": 0.9999262690544128,
"start": 4345,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "r-no-member answers)}\n (sut/sign-off \"[email protected]\" date date)))))\n",
"end": 4552,
"score": 0.9999222755432129,
"start": 4524,
"tag": "EMAIL",
"value": "[email protected]"
}
] |
test/breakfastbot/handlers/sign_off_test.clj
|
studer-l/breakfastbot
| 0 |
(ns breakfastbot.handlers.sign-off-test
(:require [breakfastbot.date-utils :refer [next-monday]]
[breakfastbot.db :as db]
[breakfastbot.db-test :refer [prepare-mock-db next-date
popular-date]]
[breakfastbot.handlers.common :refer [answers]]
[breakfastbot.handlers.sign-off :as sut]
[clojure.test :as t]
[java-time :as jt]
[mount.core :as mount]
[clojure.tools.logging :as log]))
(mount/start #'db/db)
(def today-str (jt/format "d.M.yyy" (jt/local-date)))
(def tomorrow (jt/plus (jt/local-date) (jt/days 1)))
(def tomorrow-str (jt/format "d.M.yyy" tomorrow))
(t/deftest parse-sign-off
(t/testing "valid messages"
(t/is (= {:who "[email protected]" :when (jt/local-date)}
(sut/parse-sign-off "[email protected]"
(str "cannot " today-str))))
(t/is (= {:who "[email protected]" :when tomorrow}
(sut/parse-sign-off "[email protected]"
(str "cannot me " tomorrow-str))))
(t/is (= {:who "[email protected]" :when (jt/local-date)}
(sut/parse-sign-off "[email protected]"
(str "cannot [email protected] " today-str))))
(t/is (= {:who "[email protected]" :when (next-monday)}
(sut/parse-sign-off "[email protected]"
"cannot [email protected]")))
(t/is (= {:who "[email protected]" :when (next-monday)}
(sut/parse-sign-off "[email protected]"
"cannot me")))
(t/is (= {:who "[email protected]" :when (next-monday)}
(sut/parse-sign-off "[email protected]"
"cannot"))))
(t/testing "invalid messages"
(t/is (thrown? Exception (sut/parse-sign-off "[email protected]"
"cannot me 3.28.2018"))))
(t/testing "reject far off dates"
(t/is (thrown? Exception (sut/parse-sign-off "[email protected]"
(jt/local-date 2300 1 1))))
(t/is (thrown? Exception (sut/parse-sign-off "[email protected]"
"cannot me 1.1.2280"))))
(t/testing "rejects dates in the past"
(t/is (thrown? Exception (sut/parse-sign-off "[email protected]"
"cannot me 1.1.1980")))))
(def date next-date)
;; testing the handler is superbly complicated
(t/deftest test-sign-off-action
(prepare-mock-db)
(t/testing "can sign-off prior to commitment"
;; at this stage no bringer is selected for this date yet
(let [result (sut/sign-off "[email protected]" date date)]
(t/is (.startsWith (:direct-reply result) (:ok-unhappy answers)))
(t/is (= true (:update result)))))
(t/testing "cannot sign-off twice"
(t/is (= {:direct-reply (:error-signed-off answers)}
(sut/sign-off "[email protected]" date date))))
(t/testing "cannot sign-off from non-existant event"
(t/is (= {:direct-reply (:error-no-event answers)}
(sut/sign-off "[email protected]"
(jt/plus date (jt/days 1))
date))))
(t/testing "conflicts are resolved"
(db/reset-bringer-for-day db/db {:day date})
(db/set-bringer-by-email db/db
{:day date :email "[email protected]"})
(log/info "signing off catherina")
(t/is (= {:direct-reply ((:change-bringer answers)
["[email protected]"])
:update true
:notification {:who (list "[email protected]")
:message (:new-bringer answers)}}
(sut/sign-off "[email protected]" date date))))
(t/testing "when the last person signs off, breakfast is canceled"
(log/info "signing off milles")
(t/is (.startsWith
(:direct-reply (sut/sign-off "[email protected]" date date))
(:ok-unhappy answers)))
(log/info "signing off stan")
(t/is (= {:direct-reply ((:cancel answers) date)
:update true}
(sut/sign-off "[email protected]" date date))))
(t/testing "reports error when no member is found"
(t/is (= {:direct-reply (:error-no-member answers)}
(sut/sign-off "[email protected]" date date)))))
|
69129
|
(ns breakfastbot.handlers.sign-off-test
(:require [breakfastbot.date-utils :refer [next-monday]]
[breakfastbot.db :as db]
[breakfastbot.db-test :refer [prepare-mock-db next-date
popular-date]]
[breakfastbot.handlers.common :refer [answers]]
[breakfastbot.handlers.sign-off :as sut]
[clojure.test :as t]
[java-time :as jt]
[mount.core :as mount]
[clojure.tools.logging :as log]))
(mount/start #'db/db)
(def today-str (jt/format "d.M.yyy" (jt/local-date)))
(def tomorrow (jt/plus (jt/local-date) (jt/days 1)))
(def tomorrow-str (jt/format "d.M.yyy" tomorrow))
(t/deftest parse-sign-off
(t/testing "valid messages"
(t/is (= {:who "<EMAIL>" :when (jt/local-date)}
(sut/parse-sign-off "<EMAIL>"
(str "cannot " today-str))))
(t/is (= {:who "<EMAIL>" :when tomorrow}
(sut/parse-sign-off "<EMAIL>"
(str "cannot me " tomorrow-str))))
(t/is (= {:who "<EMAIL>" :when (jt/local-date)}
(sut/parse-sign-off "<EMAIL>"
(str "cannot <EMAIL> " today-str))))
(t/is (= {:who "<EMAIL>" :when (next-monday)}
(sut/parse-sign-off "<EMAIL>"
"cannot <EMAIL>")))
(t/is (= {:who "<EMAIL>" :when (next-monday)}
(sut/parse-sign-off "<EMAIL>"
"cannot me")))
(t/is (= {:who "<EMAIL>" :when (next-monday)}
(sut/parse-sign-off "<EMAIL>"
"cannot"))))
(t/testing "invalid messages"
(t/is (thrown? Exception (sut/parse-sign-off "<EMAIL>"
"cannot me 3.28.2018"))))
(t/testing "reject far off dates"
(t/is (thrown? Exception (sut/parse-sign-off "[email protected]"
(jt/local-date 2300 1 1))))
(t/is (thrown? Exception (sut/parse-sign-off "<EMAIL>"
"cannot me 1.1.2280"))))
(t/testing "rejects dates in the past"
(t/is (thrown? Exception (sut/parse-sign-off "<EMAIL>"
"cannot me 1.1.1980")))))
(def date next-date)
;; testing the handler is superbly complicated
(t/deftest test-sign-off-action
(prepare-mock-db)
(t/testing "can sign-off prior to commitment"
;; at this stage no bringer is selected for this date yet
(let [result (sut/sign-off "<EMAIL>" date date)]
(t/is (.startsWith (:direct-reply result) (:ok-unhappy answers)))
(t/is (= true (:update result)))))
(t/testing "cannot sign-off twice"
(t/is (= {:direct-reply (:error-signed-off answers)}
(sut/sign-off "<EMAIL>" date date))))
(t/testing "cannot sign-off from non-existant event"
(t/is (= {:direct-reply (:error-no-event answers)}
(sut/sign-off "<EMAIL>"
(jt/plus date (jt/days 1))
date))))
(t/testing "conflicts are resolved"
(db/reset-bringer-for-day db/db {:day date})
(db/set-bringer-by-email db/db
{:day date :email "<EMAIL>"})
(log/info "signing off <NAME>")
(t/is (= {:direct-reply ((:change-bringer answers)
["<EMAIL>"])
:update true
:notification {:who (list "<EMAIL>")
:message (:new-bringer answers)}}
(sut/sign-off "<EMAIL>" date date))))
(t/testing "when the last person signs off, breakfast is canceled"
(log/info "signing off <NAME>")
(t/is (.startsWith
(:direct-reply (sut/sign-off "<EMAIL>" date date))
(:ok-unhappy answers)))
(log/info "signing off <NAME>")
(t/is (= {:direct-reply ((:cancel answers) date)
:update true}
(sut/sign-off "<EMAIL>" date date))))
(t/testing "reports error when no member is found"
(t/is (= {:direct-reply (:error-no-member answers)}
(sut/sign-off "<EMAIL>" date date)))))
| true |
(ns breakfastbot.handlers.sign-off-test
(:require [breakfastbot.date-utils :refer [next-monday]]
[breakfastbot.db :as db]
[breakfastbot.db-test :refer [prepare-mock-db next-date
popular-date]]
[breakfastbot.handlers.common :refer [answers]]
[breakfastbot.handlers.sign-off :as sut]
[clojure.test :as t]
[java-time :as jt]
[mount.core :as mount]
[clojure.tools.logging :as log]))
(mount/start #'db/db)
(def today-str (jt/format "d.M.yyy" (jt/local-date)))
(def tomorrow (jt/plus (jt/local-date) (jt/days 1)))
(def tomorrow-str (jt/format "d.M.yyy" tomorrow))
(t/deftest parse-sign-off
(t/testing "valid messages"
(t/is (= {:who "PI:EMAIL:<EMAIL>END_PI" :when (jt/local-date)}
(sut/parse-sign-off "PI:EMAIL:<EMAIL>END_PI"
(str "cannot " today-str))))
(t/is (= {:who "PI:EMAIL:<EMAIL>END_PI" :when tomorrow}
(sut/parse-sign-off "PI:EMAIL:<EMAIL>END_PI"
(str "cannot me " tomorrow-str))))
(t/is (= {:who "PI:EMAIL:<EMAIL>END_PI" :when (jt/local-date)}
(sut/parse-sign-off "PI:EMAIL:<EMAIL>END_PI"
(str "cannot PI:EMAIL:<EMAIL>END_PI " today-str))))
(t/is (= {:who "PI:EMAIL:<EMAIL>END_PI" :when (next-monday)}
(sut/parse-sign-off "PI:EMAIL:<EMAIL>END_PI"
"cannot PI:EMAIL:<EMAIL>END_PI")))
(t/is (= {:who "PI:EMAIL:<EMAIL>END_PI" :when (next-monday)}
(sut/parse-sign-off "PI:EMAIL:<EMAIL>END_PI"
"cannot me")))
(t/is (= {:who "PI:EMAIL:<EMAIL>END_PI" :when (next-monday)}
(sut/parse-sign-off "PI:EMAIL:<EMAIL>END_PI"
"cannot"))))
(t/testing "invalid messages"
(t/is (thrown? Exception (sut/parse-sign-off "PI:EMAIL:<EMAIL>END_PI"
"cannot me 3.28.2018"))))
(t/testing "reject far off dates"
(t/is (thrown? Exception (sut/parse-sign-off "[email protected]"
(jt/local-date 2300 1 1))))
(t/is (thrown? Exception (sut/parse-sign-off "PI:EMAIL:<EMAIL>END_PI"
"cannot me 1.1.2280"))))
(t/testing "rejects dates in the past"
(t/is (thrown? Exception (sut/parse-sign-off "PI:EMAIL:<EMAIL>END_PI"
"cannot me 1.1.1980")))))
(def date next-date)
;; testing the handler is superbly complicated
(t/deftest test-sign-off-action
(prepare-mock-db)
(t/testing "can sign-off prior to commitment"
;; at this stage no bringer is selected for this date yet
(let [result (sut/sign-off "PI:EMAIL:<EMAIL>END_PI" date date)]
(t/is (.startsWith (:direct-reply result) (:ok-unhappy answers)))
(t/is (= true (:update result)))))
(t/testing "cannot sign-off twice"
(t/is (= {:direct-reply (:error-signed-off answers)}
(sut/sign-off "PI:EMAIL:<EMAIL>END_PI" date date))))
(t/testing "cannot sign-off from non-existant event"
(t/is (= {:direct-reply (:error-no-event answers)}
(sut/sign-off "PI:EMAIL:<EMAIL>END_PI"
(jt/plus date (jt/days 1))
date))))
(t/testing "conflicts are resolved"
(db/reset-bringer-for-day db/db {:day date})
(db/set-bringer-by-email db/db
{:day date :email "PI:EMAIL:<EMAIL>END_PI"})
(log/info "signing off PI:NAME:<NAME>END_PI")
(t/is (= {:direct-reply ((:change-bringer answers)
["PI:EMAIL:<EMAIL>END_PI"])
:update true
:notification {:who (list "PI:EMAIL:<EMAIL>END_PI")
:message (:new-bringer answers)}}
(sut/sign-off "PI:EMAIL:<EMAIL>END_PI" date date))))
(t/testing "when the last person signs off, breakfast is canceled"
(log/info "signing off PI:NAME:<NAME>END_PI")
(t/is (.startsWith
(:direct-reply (sut/sign-off "PI:EMAIL:<EMAIL>END_PI" date date))
(:ok-unhappy answers)))
(log/info "signing off PI:NAME:<NAME>END_PI")
(t/is (= {:direct-reply ((:cancel answers) date)
:update true}
(sut/sign-off "PI:EMAIL:<EMAIL>END_PI" date date))))
(t/testing "reports error when no member is found"
(t/is (= {:direct-reply (:error-no-member answers)}
(sut/sign-off "PI:EMAIL:<EMAIL>END_PI" date date)))))
|
[
{
"context": " id\n :user/email email\n :user/password (hash-password password)\n :user/tasks []})\n\n(defn insert-user [id em",
"end": 781,
"score": 0.961367130279541,
"start": 759,
"tag": "PASSWORD",
"value": "hash-password password"
}
] |
resources/clj/new/dv.fulcro_template/src/main/app/auth/user.clj
|
deadghost/dv.fulcro-template
| 0 |
(ns {{namespace}}.auth.user
(:require
[clojure.spec.alpha :as s]
[cryptohash-clj.impl.argon2 :refer [chash verify]]
[com.fulcrologic.guardrails.core :refer [>defn => | ?]]
[com.wsscode.pathom.connect :as pc :refer [defresolver defmutation]]
[{{namespace}}.server.crux-node :refer [crux-node]]
[dv.crux-util :as cu]
[dv.fulcro-util :as fu]
[taoensso.timbre :as log]))
(defn hash-password [password]
(chash password))
(comment
(chash "My OPW")
(verify "My OPW" "100$12$argon2id$v13$pYRqzeaijuNw70HfHSvJgg$Ke0LQgABxQi6tH3yVTJsgtGoTZvQ4Rq+FTVwSbqB2Ok$$$"))
(defn verify-password [input hashed]
(verify input hashed))
(defn make-user [id email password]
{:user/id id
:user/email email
:user/password (hash-password password)
:user/tasks []})
(defn insert-user [id email password]
(cu/insert-entity crux-node :user/id (make-user id email password)))
(defn insert-user-map [m]
(cu/insert-entity crux-node :user/id m))
(defn fresh-user
[email password]
(make-user (fu/uuid) email password))
(defn get-user-by-email [username]
(cu/entity-with-prop crux-node [:user/email username]))
(defn get-user-by-id [crux-node id]
(cu/entity crux-node id))
(defn get-all-users []
(->>
(cu/crux-select crux-node [:user/id :user/email])
(map #(cu/domain-entity crux-node (:user/id %)))
(group-by :user/email)))
(defn get-current-user
"Reads username (email) from the ring session"
[{:keys [:ring/request]}]
(log/info "session: " (:session request))
(when-let [session (:session request)]
(when (:session/valid? session)
(if-let [email (:user/name session)]
(do (log/info "Have a user: " email)
(get-user-by-email email))
(do (log/info "No user")
nil)))))
(def user-keys [:user/email :user/id])
(def db-user-keys (into user-keys [:db/created-at :db/updated-at]))
(defresolver user-resolver [{:keys [crux-node]} {:user/keys [id]}]
{::pc/input #{:user/id}
::pc/output [:user/email]}
(select-keys (get-user-by-id crux-node id) [:user/email]))
(pc/defresolver current-user-res [env _]
{::pc/output [:app/current-user]}
{:app/current-user (get-current-user env)})
(pc/defresolver all-users-resolver [env _]
{::pc/output [{:all-users [:user/id]}]}
{:all-users (map (comp #(cu/domain-entity crux-node %) :user/id)
(cu/crux-select crux-node [:user/id]))})
(def resolvers [user-resolver current-user-res all-users-resolver])
|
102949
|
(ns {{namespace}}.auth.user
(:require
[clojure.spec.alpha :as s]
[cryptohash-clj.impl.argon2 :refer [chash verify]]
[com.fulcrologic.guardrails.core :refer [>defn => | ?]]
[com.wsscode.pathom.connect :as pc :refer [defresolver defmutation]]
[{{namespace}}.server.crux-node :refer [crux-node]]
[dv.crux-util :as cu]
[dv.fulcro-util :as fu]
[taoensso.timbre :as log]))
(defn hash-password [password]
(chash password))
(comment
(chash "My OPW")
(verify "My OPW" "100$12$argon2id$v13$pYRqzeaijuNw70HfHSvJgg$Ke0LQgABxQi6tH3yVTJsgtGoTZvQ4Rq+FTVwSbqB2Ok$$$"))
(defn verify-password [input hashed]
(verify input hashed))
(defn make-user [id email password]
{:user/id id
:user/email email
:user/password (<PASSWORD>)
:user/tasks []})
(defn insert-user [id email password]
(cu/insert-entity crux-node :user/id (make-user id email password)))
(defn insert-user-map [m]
(cu/insert-entity crux-node :user/id m))
(defn fresh-user
[email password]
(make-user (fu/uuid) email password))
(defn get-user-by-email [username]
(cu/entity-with-prop crux-node [:user/email username]))
(defn get-user-by-id [crux-node id]
(cu/entity crux-node id))
(defn get-all-users []
(->>
(cu/crux-select crux-node [:user/id :user/email])
(map #(cu/domain-entity crux-node (:user/id %)))
(group-by :user/email)))
(defn get-current-user
"Reads username (email) from the ring session"
[{:keys [:ring/request]}]
(log/info "session: " (:session request))
(when-let [session (:session request)]
(when (:session/valid? session)
(if-let [email (:user/name session)]
(do (log/info "Have a user: " email)
(get-user-by-email email))
(do (log/info "No user")
nil)))))
(def user-keys [:user/email :user/id])
(def db-user-keys (into user-keys [:db/created-at :db/updated-at]))
(defresolver user-resolver [{:keys [crux-node]} {:user/keys [id]}]
{::pc/input #{:user/id}
::pc/output [:user/email]}
(select-keys (get-user-by-id crux-node id) [:user/email]))
(pc/defresolver current-user-res [env _]
{::pc/output [:app/current-user]}
{:app/current-user (get-current-user env)})
(pc/defresolver all-users-resolver [env _]
{::pc/output [{:all-users [:user/id]}]}
{:all-users (map (comp #(cu/domain-entity crux-node %) :user/id)
(cu/crux-select crux-node [:user/id]))})
(def resolvers [user-resolver current-user-res all-users-resolver])
| true |
(ns {{namespace}}.auth.user
(:require
[clojure.spec.alpha :as s]
[cryptohash-clj.impl.argon2 :refer [chash verify]]
[com.fulcrologic.guardrails.core :refer [>defn => | ?]]
[com.wsscode.pathom.connect :as pc :refer [defresolver defmutation]]
[{{namespace}}.server.crux-node :refer [crux-node]]
[dv.crux-util :as cu]
[dv.fulcro-util :as fu]
[taoensso.timbre :as log]))
(defn hash-password [password]
(chash password))
(comment
(chash "My OPW")
(verify "My OPW" "100$12$argon2id$v13$pYRqzeaijuNw70HfHSvJgg$Ke0LQgABxQi6tH3yVTJsgtGoTZvQ4Rq+FTVwSbqB2Ok$$$"))
(defn verify-password [input hashed]
(verify input hashed))
(defn make-user [id email password]
{:user/id id
:user/email email
:user/password (PI:PASSWORD:<PASSWORD>END_PI)
:user/tasks []})
(defn insert-user [id email password]
(cu/insert-entity crux-node :user/id (make-user id email password)))
(defn insert-user-map [m]
(cu/insert-entity crux-node :user/id m))
(defn fresh-user
[email password]
(make-user (fu/uuid) email password))
(defn get-user-by-email [username]
(cu/entity-with-prop crux-node [:user/email username]))
(defn get-user-by-id [crux-node id]
(cu/entity crux-node id))
(defn get-all-users []
(->>
(cu/crux-select crux-node [:user/id :user/email])
(map #(cu/domain-entity crux-node (:user/id %)))
(group-by :user/email)))
(defn get-current-user
"Reads username (email) from the ring session"
[{:keys [:ring/request]}]
(log/info "session: " (:session request))
(when-let [session (:session request)]
(when (:session/valid? session)
(if-let [email (:user/name session)]
(do (log/info "Have a user: " email)
(get-user-by-email email))
(do (log/info "No user")
nil)))))
(def user-keys [:user/email :user/id])
(def db-user-keys (into user-keys [:db/created-at :db/updated-at]))
(defresolver user-resolver [{:keys [crux-node]} {:user/keys [id]}]
{::pc/input #{:user/id}
::pc/output [:user/email]}
(select-keys (get-user-by-id crux-node id) [:user/email]))
(pc/defresolver current-user-res [env _]
{::pc/output [:app/current-user]}
{:app/current-user (get-current-user env)})
(pc/defresolver all-users-resolver [env _]
{::pc/output [{:all-users [:user/id]}]}
{:all-users (map (comp #(cu/domain-entity crux-node %) :user/id)
(cu/crux-select crux-node [:user/id]))})
(def resolvers [user-resolver current-user-res all-users-resolver])
|
[
{
"context": "ring.mock.request :as mock]))\n\n(def api-username \"laundry-api\")\n(def api-password \"unittest\")\n\n(def test-auth-c",
"end": 167,
"score": 0.996778130531311,
"start": 156,
"tag": "USERNAME",
"value": "laundry-api"
},
{
"context": "ef api-username \"laundry-api\")\n(def api-password \"unittest\")\n\n(def test-auth-conf\n (-> fixture/test-conf\n ",
"end": 197,
"score": 0.999452531337738,
"start": 189,
"tag": "PASSWORD",
"value": "unittest"
}
] |
test/laundry/auth_test.clj
|
hoxu/laundry
| 7 |
(ns laundry.auth-test
(:require
[clojure.test :refer :all]
[laundry.test.fixture :as fixture]
[ring.mock.request :as mock]))
(def api-username "laundry-api")
(def api-password "unittest")
(def test-auth-conf
(-> fixture/test-conf
(assoc :basic-auth-password (fn [] api-password))))
(defn base64-encode [s]
(.encodeToString (java.util.Base64/getEncoder) (.getBytes s)))
(deftest alive-accessible-without-auth
(let [app (fixture/get-app-with test-auth-conf)
request (mock/request :get "/alive")
response (app request)]
(is (= 200 (:status response)))))
(deftest swagger-accessible-without-auth
(let [app (fixture/get-app-with test-auth-conf)
request (mock/request :get "/swagger.json")
response (app request)]
(is (= 200 (:status response)))))
(deftest auth-not-accessible-without-basic-auth
(let [app (fixture/get-app-with test-auth-conf)
request (mock/request :get "/auth-test")
response (app request)]
(is (= 401 (:status response)))))
(deftest auth-accessible-with-basic-auth
(let [app (fixture/get-app-with test-auth-conf)
request (-> (mock/request :get "/auth-test")
(mock/header "authorization" (str "Basic " (base64-encode (str api-username ":" api-password)))))
response (app request)]
(is (= 200 (:status response)))))
|
58543
|
(ns laundry.auth-test
(:require
[clojure.test :refer :all]
[laundry.test.fixture :as fixture]
[ring.mock.request :as mock]))
(def api-username "laundry-api")
(def api-password "<PASSWORD>")
(def test-auth-conf
(-> fixture/test-conf
(assoc :basic-auth-password (fn [] api-password))))
(defn base64-encode [s]
(.encodeToString (java.util.Base64/getEncoder) (.getBytes s)))
(deftest alive-accessible-without-auth
(let [app (fixture/get-app-with test-auth-conf)
request (mock/request :get "/alive")
response (app request)]
(is (= 200 (:status response)))))
(deftest swagger-accessible-without-auth
(let [app (fixture/get-app-with test-auth-conf)
request (mock/request :get "/swagger.json")
response (app request)]
(is (= 200 (:status response)))))
(deftest auth-not-accessible-without-basic-auth
(let [app (fixture/get-app-with test-auth-conf)
request (mock/request :get "/auth-test")
response (app request)]
(is (= 401 (:status response)))))
(deftest auth-accessible-with-basic-auth
(let [app (fixture/get-app-with test-auth-conf)
request (-> (mock/request :get "/auth-test")
(mock/header "authorization" (str "Basic " (base64-encode (str api-username ":" api-password)))))
response (app request)]
(is (= 200 (:status response)))))
| true |
(ns laundry.auth-test
(:require
[clojure.test :refer :all]
[laundry.test.fixture :as fixture]
[ring.mock.request :as mock]))
(def api-username "laundry-api")
(def api-password "PI:PASSWORD:<PASSWORD>END_PI")
(def test-auth-conf
(-> fixture/test-conf
(assoc :basic-auth-password (fn [] api-password))))
(defn base64-encode [s]
(.encodeToString (java.util.Base64/getEncoder) (.getBytes s)))
(deftest alive-accessible-without-auth
(let [app (fixture/get-app-with test-auth-conf)
request (mock/request :get "/alive")
response (app request)]
(is (= 200 (:status response)))))
(deftest swagger-accessible-without-auth
(let [app (fixture/get-app-with test-auth-conf)
request (mock/request :get "/swagger.json")
response (app request)]
(is (= 200 (:status response)))))
(deftest auth-not-accessible-without-basic-auth
(let [app (fixture/get-app-with test-auth-conf)
request (mock/request :get "/auth-test")
response (app request)]
(is (= 401 (:status response)))))
(deftest auth-accessible-with-basic-auth
(let [app (fixture/get-app-with test-auth-conf)
request (-> (mock/request :get "/auth-test")
(mock/header "authorization" (str "Basic " (base64-encode (str api-username ":" api-password)))))
response (app request)]
(is (= 200 (:status response)))))
|
[
{
"context": ":date {:year 2016, :month 10},\n :user {:name \"Chen\"},\n :types {:name 1, \"name\" 2}})))\n\n(defn dis",
"end": 907,
"score": 0.769932746887207,
"start": 903,
"tag": "NAME",
"value": "Chen"
}
] |
src/recollect/app/main.cljs
|
Cumulo/recollect.cljs
| 5 |
(ns recollect.app.main
(:require [respo.core :refer [render! clear-cache! realize-ssr!]]
[recollect.app.comp.container :refer [comp-container]]
[cljs.reader :refer [read-string]]
[recollect.app.twig.container :refer [twig-container]]
[recollect.diff :refer [diff-twig]]
[recollect.patch :refer [patch-twig]]
[recollect.app.updater :refer [updater]]
[recollect.schema :as schema]
[recollect.app.config :as config]
[recollect.twig :refer [clear-twig-caches!]]))
(defonce *client-store (atom schema/store))
(defonce *data-twig (atom nil))
(defonce *store
(atom
(merge
schema/store
{:lit-0 1,
:vec-0 [{:a 1}],
:seq-0 (list {:a 1}),
:set-0 #{1 :a},
:map-0 {:x 0},
:in-map {:lit-1 1, :vec-1 [{:a 1}]},
:date {:year 2016, :month 10},
:user {:name "Chen"},
:types {:name 1, "name" 2}})))
(defn dispatch! [op op-data]
(when (and config/dev? (not= op :states)) (println op op-data))
(reset! *store (updater @*store op op-data)))
(def mount-target (.querySelector js/document ".app"))
(defn render-app! [renderer]
(renderer mount-target (comp-container @*data-twig @*client-store) dispatch!))
(defn render-data-twig! []
(let [data-twig (twig-container @*store)
options {:key :id}
changes (diff-twig @*data-twig data-twig options)]
(comment println "Data twig:" data-twig)
(println "Changes:" changes)
(reset! *data-twig data-twig)
(let [new-client (patch-twig @*client-store changes)]
(comment println "After patching:" new-client)
(reset! *client-store new-client))))
(def ssr? (some? (.querySelector js/document "meta.respo-ssr")))
(defn main! []
(println "Running mode:" (if config/dev? "dev" "release"))
(if ssr? (render-app! realize-ssr!))
(render-app! render!)
(add-watch *store :changes render-data-twig!)
(add-watch *client-store :changes (fn [] (render-app! render!)))
(render-data-twig!)
(println "app started!"))
(defn reload! []
(clear-cache!)
(clear-twig-caches!)
(render-data-twig!)
(println "code update."))
|
83285
|
(ns recollect.app.main
(:require [respo.core :refer [render! clear-cache! realize-ssr!]]
[recollect.app.comp.container :refer [comp-container]]
[cljs.reader :refer [read-string]]
[recollect.app.twig.container :refer [twig-container]]
[recollect.diff :refer [diff-twig]]
[recollect.patch :refer [patch-twig]]
[recollect.app.updater :refer [updater]]
[recollect.schema :as schema]
[recollect.app.config :as config]
[recollect.twig :refer [clear-twig-caches!]]))
(defonce *client-store (atom schema/store))
(defonce *data-twig (atom nil))
(defonce *store
(atom
(merge
schema/store
{:lit-0 1,
:vec-0 [{:a 1}],
:seq-0 (list {:a 1}),
:set-0 #{1 :a},
:map-0 {:x 0},
:in-map {:lit-1 1, :vec-1 [{:a 1}]},
:date {:year 2016, :month 10},
:user {:name "<NAME>"},
:types {:name 1, "name" 2}})))
(defn dispatch! [op op-data]
(when (and config/dev? (not= op :states)) (println op op-data))
(reset! *store (updater @*store op op-data)))
(def mount-target (.querySelector js/document ".app"))
(defn render-app! [renderer]
(renderer mount-target (comp-container @*data-twig @*client-store) dispatch!))
(defn render-data-twig! []
(let [data-twig (twig-container @*store)
options {:key :id}
changes (diff-twig @*data-twig data-twig options)]
(comment println "Data twig:" data-twig)
(println "Changes:" changes)
(reset! *data-twig data-twig)
(let [new-client (patch-twig @*client-store changes)]
(comment println "After patching:" new-client)
(reset! *client-store new-client))))
(def ssr? (some? (.querySelector js/document "meta.respo-ssr")))
(defn main! []
(println "Running mode:" (if config/dev? "dev" "release"))
(if ssr? (render-app! realize-ssr!))
(render-app! render!)
(add-watch *store :changes render-data-twig!)
(add-watch *client-store :changes (fn [] (render-app! render!)))
(render-data-twig!)
(println "app started!"))
(defn reload! []
(clear-cache!)
(clear-twig-caches!)
(render-data-twig!)
(println "code update."))
| true |
(ns recollect.app.main
(:require [respo.core :refer [render! clear-cache! realize-ssr!]]
[recollect.app.comp.container :refer [comp-container]]
[cljs.reader :refer [read-string]]
[recollect.app.twig.container :refer [twig-container]]
[recollect.diff :refer [diff-twig]]
[recollect.patch :refer [patch-twig]]
[recollect.app.updater :refer [updater]]
[recollect.schema :as schema]
[recollect.app.config :as config]
[recollect.twig :refer [clear-twig-caches!]]))
(defonce *client-store (atom schema/store))
(defonce *data-twig (atom nil))
(defonce *store
(atom
(merge
schema/store
{:lit-0 1,
:vec-0 [{:a 1}],
:seq-0 (list {:a 1}),
:set-0 #{1 :a},
:map-0 {:x 0},
:in-map {:lit-1 1, :vec-1 [{:a 1}]},
:date {:year 2016, :month 10},
:user {:name "PI:NAME:<NAME>END_PI"},
:types {:name 1, "name" 2}})))
(defn dispatch! [op op-data]
(when (and config/dev? (not= op :states)) (println op op-data))
(reset! *store (updater @*store op op-data)))
(def mount-target (.querySelector js/document ".app"))
(defn render-app! [renderer]
(renderer mount-target (comp-container @*data-twig @*client-store) dispatch!))
(defn render-data-twig! []
(let [data-twig (twig-container @*store)
options {:key :id}
changes (diff-twig @*data-twig data-twig options)]
(comment println "Data twig:" data-twig)
(println "Changes:" changes)
(reset! *data-twig data-twig)
(let [new-client (patch-twig @*client-store changes)]
(comment println "After patching:" new-client)
(reset! *client-store new-client))))
(def ssr? (some? (.querySelector js/document "meta.respo-ssr")))
(defn main! []
(println "Running mode:" (if config/dev? "dev" "release"))
(if ssr? (render-app! realize-ssr!))
(render-app! render!)
(add-watch *store :changes render-data-twig!)
(add-watch *client-store :changes (fn [] (render-app! render!)))
(render-data-twig!)
(println "app started!"))
(defn reload! []
(clear-cache!)
(clear-twig-caches!)
(render-data-twig!)
(println "code update."))
|
[
{
"context": "uri) 1))\n (.setUser user)\n (.setPassword pwd)\n (.setPrepareThreshold 0)\n (set-pg-opt",
"end": 1569,
"score": 0.9982596039772034,
"start": 1566,
"tag": "PASSWORD",
"value": "pwd"
}
] |
src/uapatron/db.clj
|
uapatron/comebacksub
| 0 |
(ns uapatron.db
(:import [java.net URI]
[java.sql PreparedStatement]
;; [com.zaxxer.hikari HikariDataSource]
[org.postgresql.ds PGSimpleDataSource]
[org.postgresql.jdbc PgArray]
[org.postgresql.util PGobject])
(:require [clojure.string :as str]
[mount.core :as mount]
[ring.util.codec :as codec]
[cheshire.core :as json]
[next.jdbc :as jdbc]
[next.jdbc.result-set :as jdbc-rs]
[next.jdbc.prepare :as prepare]
[next.jdbc.date-time :as jdbc-dt]
[migratus.core :as migratus]
[honey.sql :as sql]
[uapatron.config :as config]))
(set! *warn-on-reflection* true)
(jdbc-dt/read-as-instant)
(def ^:dynamic *current-tx* nil)
(def ^:dynamic *after-commit* nil)
(def call sql/call)
(def fmt sql/format)
(defn set-pg-opts [^PGSimpleDataSource ds opts]
(doseq [[k v] opts]
(case k
"sslmode" (.setSslMode ds v)
"sslrootcert" (.setSslRootCert ds v)
"options" (.setOptions ds v))))
(defn make-conn [url]
(let [uri (URI. url)
[user pwd] (some-> (.getUserInfo uri) (str/split #":"))
port (if (= -1 (.getPort uri))
5432
(.getPort uri))
opts (some-> (.getQuery uri) codec/form-decode)]
(doto (PGSimpleDataSource.)
(.setServerName (.getHost uri))
(.setPortNumber port)
(.setDatabaseName (.substring (.getPath uri) 1))
(.setUser user)
(.setPassword pwd)
(.setPrepareThreshold 0)
(set-pg-opts opts))))
(defn migratus-config [db]
{:store :database
:migration-dir "migrations"
:init-script "init.sql"
:migration-table-name "migratus"
:db db})
(mount/defstate conn
:start (let [conn (make-conn (config/PGURL))]
(doto (migratus-config {:datasource conn})
(migratus/init)
(migratus/migrate))
conn)
;:stop (.close conn)
)
(defn format-query [query]
(if (string? query)
[query]
(sql/format query {:dialect :ansi})))
(defn q [query]
(jdbc/execute! conn (format-query query)
{:builder-fn jdbc-rs/as-unqualified-lower-maps}))
(defn one [query]
(first (q query)))
(defn -eval-after-commit []
(when *after-commit*
(doseq [fn-item @*after-commit*]
(fn-item))
(reset! *after-commit* nil)))
(defmacro tx
[& body]
`(if *current-tx*
(do ~@body)
(binding [*after-commit* (atom [])]
(let [r# (jdbc/with-transaction [tx# conn]
(binding [*current-tx* tx#]
~@body))]
(do (-eval-after-commit)
r#)))))
;;; extensions
(defn <-pgobject
"Transform PGobject containing `json` or `jsonb` value to Clojure
data."
[^PGobject v]
(let [type (.getType v)
value (.getValue v)]
(if (#{"jsonb" "json"} type)
(when value
(with-meta (json/parse-string value keyword) {:pgtype type}))
value)))
(defn ->pgobject
"Transforms Clojure data to a PGobject that contains the data as
JSON. PGObject type defaults to `jsonb` but can be changed via
metadata key `:pgtype`"
[x]
(let [pgtype (or (:pgtype (meta x)) "jsonb")]
(doto (PGobject.)
(.setType pgtype)
(.setValue (json/generate-string x)))))
(extend-protocol jdbc-rs/ReadableColumn
PgArray
(read-column-by-label [v label]
(mapv #(jdbc-rs/read-column-by-label % label) (.getArray v)))
(read-column-by-index [v rsmeta idx]
(mapv #(jdbc-rs/read-column-by-index % rsmeta idx) (.getArray v)))
PGobject
(read-column-by-label [^org.postgresql.util.PGobject v _]
(<-pgobject v))
(read-column-by-index [^org.postgresql.util.PGobject v _2 _3]
(<-pgobject v)))
;; if a SQL parameter is a Clojure hash map or vector, it'll be transformed
;; to a PGobject for JSON/JSONB:
(extend-protocol prepare/SettableParameter
clojure.lang.IPersistentMap
(set-parameter [m ^PreparedStatement s i]
(.setObject s i (->pgobject m)))
clojure.lang.IPersistentVector
(set-parameter [v ^PreparedStatement s i]
(.setObject s i (->pgobject v))))
(def as-jsonb ->pgobject)
(defn keyword->pg-enum
"Convert a keyword value into an enum-compatible object."
[enum-type kw]
(doto (org.postgresql.util.PGobject.)
(.setType enum-type)
(.setValue (name kw))))
(defn ->transaction-type [status] (keyword->pg-enum "transaction_type" status))
(defn ->card-type [status] (keyword->pg-enum "card_type" status))
(defn ->currency-type [status] (keyword->pg-enum "currency_type" status))
|
28968
|
(ns uapatron.db
(:import [java.net URI]
[java.sql PreparedStatement]
;; [com.zaxxer.hikari HikariDataSource]
[org.postgresql.ds PGSimpleDataSource]
[org.postgresql.jdbc PgArray]
[org.postgresql.util PGobject])
(:require [clojure.string :as str]
[mount.core :as mount]
[ring.util.codec :as codec]
[cheshire.core :as json]
[next.jdbc :as jdbc]
[next.jdbc.result-set :as jdbc-rs]
[next.jdbc.prepare :as prepare]
[next.jdbc.date-time :as jdbc-dt]
[migratus.core :as migratus]
[honey.sql :as sql]
[uapatron.config :as config]))
(set! *warn-on-reflection* true)
(jdbc-dt/read-as-instant)
(def ^:dynamic *current-tx* nil)
(def ^:dynamic *after-commit* nil)
(def call sql/call)
(def fmt sql/format)
(defn set-pg-opts [^PGSimpleDataSource ds opts]
(doseq [[k v] opts]
(case k
"sslmode" (.setSslMode ds v)
"sslrootcert" (.setSslRootCert ds v)
"options" (.setOptions ds v))))
(defn make-conn [url]
(let [uri (URI. url)
[user pwd] (some-> (.getUserInfo uri) (str/split #":"))
port (if (= -1 (.getPort uri))
5432
(.getPort uri))
opts (some-> (.getQuery uri) codec/form-decode)]
(doto (PGSimpleDataSource.)
(.setServerName (.getHost uri))
(.setPortNumber port)
(.setDatabaseName (.substring (.getPath uri) 1))
(.setUser user)
(.setPassword <PASSWORD>)
(.setPrepareThreshold 0)
(set-pg-opts opts))))
(defn migratus-config [db]
{:store :database
:migration-dir "migrations"
:init-script "init.sql"
:migration-table-name "migratus"
:db db})
(mount/defstate conn
:start (let [conn (make-conn (config/PGURL))]
(doto (migratus-config {:datasource conn})
(migratus/init)
(migratus/migrate))
conn)
;:stop (.close conn)
)
(defn format-query [query]
(if (string? query)
[query]
(sql/format query {:dialect :ansi})))
(defn q [query]
(jdbc/execute! conn (format-query query)
{:builder-fn jdbc-rs/as-unqualified-lower-maps}))
(defn one [query]
(first (q query)))
(defn -eval-after-commit []
(when *after-commit*
(doseq [fn-item @*after-commit*]
(fn-item))
(reset! *after-commit* nil)))
(defmacro tx
[& body]
`(if *current-tx*
(do ~@body)
(binding [*after-commit* (atom [])]
(let [r# (jdbc/with-transaction [tx# conn]
(binding [*current-tx* tx#]
~@body))]
(do (-eval-after-commit)
r#)))))
;;; extensions
(defn <-pgobject
"Transform PGobject containing `json` or `jsonb` value to Clojure
data."
[^PGobject v]
(let [type (.getType v)
value (.getValue v)]
(if (#{"jsonb" "json"} type)
(when value
(with-meta (json/parse-string value keyword) {:pgtype type}))
value)))
(defn ->pgobject
"Transforms Clojure data to a PGobject that contains the data as
JSON. PGObject type defaults to `jsonb` but can be changed via
metadata key `:pgtype`"
[x]
(let [pgtype (or (:pgtype (meta x)) "jsonb")]
(doto (PGobject.)
(.setType pgtype)
(.setValue (json/generate-string x)))))
(extend-protocol jdbc-rs/ReadableColumn
PgArray
(read-column-by-label [v label]
(mapv #(jdbc-rs/read-column-by-label % label) (.getArray v)))
(read-column-by-index [v rsmeta idx]
(mapv #(jdbc-rs/read-column-by-index % rsmeta idx) (.getArray v)))
PGobject
(read-column-by-label [^org.postgresql.util.PGobject v _]
(<-pgobject v))
(read-column-by-index [^org.postgresql.util.PGobject v _2 _3]
(<-pgobject v)))
;; if a SQL parameter is a Clojure hash map or vector, it'll be transformed
;; to a PGobject for JSON/JSONB:
(extend-protocol prepare/SettableParameter
clojure.lang.IPersistentMap
(set-parameter [m ^PreparedStatement s i]
(.setObject s i (->pgobject m)))
clojure.lang.IPersistentVector
(set-parameter [v ^PreparedStatement s i]
(.setObject s i (->pgobject v))))
(def as-jsonb ->pgobject)
(defn keyword->pg-enum
"Convert a keyword value into an enum-compatible object."
[enum-type kw]
(doto (org.postgresql.util.PGobject.)
(.setType enum-type)
(.setValue (name kw))))
(defn ->transaction-type [status] (keyword->pg-enum "transaction_type" status))
(defn ->card-type [status] (keyword->pg-enum "card_type" status))
(defn ->currency-type [status] (keyword->pg-enum "currency_type" status))
| true |
(ns uapatron.db
(:import [java.net URI]
[java.sql PreparedStatement]
;; [com.zaxxer.hikari HikariDataSource]
[org.postgresql.ds PGSimpleDataSource]
[org.postgresql.jdbc PgArray]
[org.postgresql.util PGobject])
(:require [clojure.string :as str]
[mount.core :as mount]
[ring.util.codec :as codec]
[cheshire.core :as json]
[next.jdbc :as jdbc]
[next.jdbc.result-set :as jdbc-rs]
[next.jdbc.prepare :as prepare]
[next.jdbc.date-time :as jdbc-dt]
[migratus.core :as migratus]
[honey.sql :as sql]
[uapatron.config :as config]))
(set! *warn-on-reflection* true)
(jdbc-dt/read-as-instant)
(def ^:dynamic *current-tx* nil)
(def ^:dynamic *after-commit* nil)
(def call sql/call)
(def fmt sql/format)
(defn set-pg-opts [^PGSimpleDataSource ds opts]
(doseq [[k v] opts]
(case k
"sslmode" (.setSslMode ds v)
"sslrootcert" (.setSslRootCert ds v)
"options" (.setOptions ds v))))
(defn make-conn [url]
(let [uri (URI. url)
[user pwd] (some-> (.getUserInfo uri) (str/split #":"))
port (if (= -1 (.getPort uri))
5432
(.getPort uri))
opts (some-> (.getQuery uri) codec/form-decode)]
(doto (PGSimpleDataSource.)
(.setServerName (.getHost uri))
(.setPortNumber port)
(.setDatabaseName (.substring (.getPath uri) 1))
(.setUser user)
(.setPassword PI:PASSWORD:<PASSWORD>END_PI)
(.setPrepareThreshold 0)
(set-pg-opts opts))))
(defn migratus-config [db]
{:store :database
:migration-dir "migrations"
:init-script "init.sql"
:migration-table-name "migratus"
:db db})
(mount/defstate conn
:start (let [conn (make-conn (config/PGURL))]
(doto (migratus-config {:datasource conn})
(migratus/init)
(migratus/migrate))
conn)
;:stop (.close conn)
)
(defn format-query [query]
(if (string? query)
[query]
(sql/format query {:dialect :ansi})))
(defn q [query]
(jdbc/execute! conn (format-query query)
{:builder-fn jdbc-rs/as-unqualified-lower-maps}))
(defn one [query]
(first (q query)))
(defn -eval-after-commit []
(when *after-commit*
(doseq [fn-item @*after-commit*]
(fn-item))
(reset! *after-commit* nil)))
(defmacro tx
[& body]
`(if *current-tx*
(do ~@body)
(binding [*after-commit* (atom [])]
(let [r# (jdbc/with-transaction [tx# conn]
(binding [*current-tx* tx#]
~@body))]
(do (-eval-after-commit)
r#)))))
;;; extensions
(defn <-pgobject
"Transform PGobject containing `json` or `jsonb` value to Clojure
data."
[^PGobject v]
(let [type (.getType v)
value (.getValue v)]
(if (#{"jsonb" "json"} type)
(when value
(with-meta (json/parse-string value keyword) {:pgtype type}))
value)))
(defn ->pgobject
"Transforms Clojure data to a PGobject that contains the data as
JSON. PGObject type defaults to `jsonb` but can be changed via
metadata key `:pgtype`"
[x]
(let [pgtype (or (:pgtype (meta x)) "jsonb")]
(doto (PGobject.)
(.setType pgtype)
(.setValue (json/generate-string x)))))
(extend-protocol jdbc-rs/ReadableColumn
PgArray
(read-column-by-label [v label]
(mapv #(jdbc-rs/read-column-by-label % label) (.getArray v)))
(read-column-by-index [v rsmeta idx]
(mapv #(jdbc-rs/read-column-by-index % rsmeta idx) (.getArray v)))
PGobject
(read-column-by-label [^org.postgresql.util.PGobject v _]
(<-pgobject v))
(read-column-by-index [^org.postgresql.util.PGobject v _2 _3]
(<-pgobject v)))
;; if a SQL parameter is a Clojure hash map or vector, it'll be transformed
;; to a PGobject for JSON/JSONB:
(extend-protocol prepare/SettableParameter
clojure.lang.IPersistentMap
(set-parameter [m ^PreparedStatement s i]
(.setObject s i (->pgobject m)))
clojure.lang.IPersistentVector
(set-parameter [v ^PreparedStatement s i]
(.setObject s i (->pgobject v))))
(def as-jsonb ->pgobject)
(defn keyword->pg-enum
"Convert a keyword value into an enum-compatible object."
[enum-type kw]
(doto (org.postgresql.util.PGobject.)
(.setType enum-type)
(.setValue (name kw))))
(defn ->transaction-type [status] (keyword->pg-enum "transaction_type" status))
(defn ->card-type [status] (keyword->pg-enum "card_type" status))
(defn ->currency-type [status] (keyword->pg-enum "currency_type" status))
|
[
{
"context": " for details.\n *)\n\n(* Copyright (C) 2009,2016-2017 Matthew Fluet.\n * Copyright (C) 1999-2006 Henry Cejtin, Matthew",
"end": 424,
"score": 0.9998638033866882,
"start": 411,
"tag": "NAME",
"value": "Matthew Fluet"
},
{
"context": "016-2017 Matthew Fluet.\n * Copyright (C) 1999-2006 Henry Cejtin, Matthew Fluet, Suresh\n * Jagannathan, and Ste",
"end": 465,
"score": 0.9998598098754883,
"start": 453,
"tag": "NAME",
"value": "Henry Cejtin"
},
{
"context": "ew Fluet.\n * Copyright (C) 1999-2006 Henry Cejtin, Matthew Fluet, Suresh\n * Jagannathan, and Stephen Weeks.\n * ",
"end": 480,
"score": 0.9998509287834167,
"start": 467,
"tag": "NAME",
"value": "Matthew Fluet"
},
{
"context": "pyright (C) 1999-2006 Henry Cejtin, Matthew Fluet, Suresh\n * Jagannathan, and Stephen Weeks.\n * Copyright",
"end": 488,
"score": 0.9879801273345947,
"start": 482,
"tag": "NAME",
"value": "Suresh"
},
{
"context": "999-2006 Henry Cejtin, Matthew Fluet, Suresh\n * Jagannathan, and Stephen Weeks.\n * Copyright (C) 1997-2000 NE",
"end": 506,
"score": 0.9996857643127441,
"start": 495,
"tag": "NAME",
"value": "Jagannathan"
},
{
"context": "jtin, Matthew Fluet, Suresh\n * Jagannathan, and Stephen Weeks.\n * Copyright (C) 1997-2000 NEC Research Institut",
"end": 525,
"score": 0.9998392462730408,
"start": 512,
"tag": "NAME",
"value": "Stephen Weeks"
}
] |
mlton/front-end/ml.lex.sml.boot
|
devMYC/mlton
| 0 |
(*#line 256.10 "ml.lex"*)functor MLLexFun (structure Tokens : ML_TOKENS)(*#line 1.1 "ml.lex.sml"*)
=
struct
structure UserDeclarations =
struct
(*#line 1.1 "ml.lex"*)(* Heavily modified from SML/NJ sources. *)
(* ml.lex
*
* Copyright 1989 by AT&T Bell Laboratories
*
* SML/NJ is released under a HPND-style license.
* See the file NJ-LICENSE for details.
*)
(* Copyright (C) 2009,2016-2017 Matthew Fluet.
* Copyright (C) 1999-2006 Henry Cejtin, Matthew Fluet, Suresh
* Jagannathan, and Stephen Weeks.
* Copyright (C) 1997-2000 NEC Research Institute.
*
* MLton is released under a HPND-style license.
* See the file MLton-LICENSE for details.
*)
type svalue = Tokens.svalue
type pos = SourcePos.t
type lexresult = (svalue, pos) Tokens.token
type lexarg = {source: Source.t}
type arg = lexarg
type ('a,'b) token = ('a,'b) Tokens.token
local
open Control.Elaborate
in
val allowLineComments = fn () => current allowLineComments
val allowExtendedNumConsts = fn () => current allowExtendedNumConsts
val allowExtendedTextConsts = fn () => current allowExtendedTextConsts
end
fun lastPos (yypos, yytext) = yypos + size yytext - 1
fun tok (t, x, s, l) =
let
val left = Source.getPos (s, l)
val right = Source.getPos (s, lastPos (l, x))
in
t (left, right)
end
fun tok' (t, x, s, l) = tok (fn (l, r) => t (x, l, r), x, s, l)
fun error' (left, right, msg) =
Control.errorStr (Region.make {left = left, right = right}, msg)
fun error (source, left, right, msg) =
error' (Source.getPos (source, left), Source.getPos (source, right), msg)
(* Comments *)
local
val commentErrors: string list ref = ref []
val commentLeft = ref SourcePos.bogus
val commentStack: (int -> unit) list ref = ref []
in
fun addCommentError msg =
List.push (commentErrors, msg)
val inComment = fn () => not (List.isEmpty (!commentStack))
fun startComment (source, yypos, th) =
if inComment ()
then List.push (commentStack, fn _ => th ())
else (commentErrors := []
; commentLeft := Source.getPos (source, yypos)
; List.push (commentStack, fn yypos =>
(List.foreach (!commentErrors, fn msg =>
error' (!commentLeft,
Source.getPos (source, yypos),
msg))
; th ())))
fun finishComment yypos =
(List.pop commentStack) yypos
end
(* Line Directives *)
local
val lineDirCol: int ref = ref ~1
val lineDirFile: File.t option ref = ref NONE
val lineDirLine: int ref = ref ~1
in
fun startLineDir (source, yypos, th) =
let
val _ = lineDirCol := ~1
val _ = lineDirFile := NONE
val _ = lineDirLine := ~1
in
startComment (source, yypos, th)
end
fun addLineDirLineCol (line, col) =
let
val _ = lineDirLine := line
val _ = lineDirCol := col
in
()
end
fun addLineDirFile file =
let
val _ = lineDirFile := SOME file
in
()
end
fun finishLineDir (source, yypos) =
let
val col = !lineDirCol
val file = !lineDirFile
val line = !lineDirLine
val _ = lineDirCol := ~1
val _ = lineDirFile := NONE
val _ = lineDirLine := ~1
in
finishComment yypos
; Source.lineDirective (source, file,
{lineNum = line,
lineStart = yypos + 1 - col})
end
end
(* Numeric Constants *)
local
fun doit (source, yypos, yytext, drop, {extended: string option}, mkTok) =
let
val left = yypos
val right = lastPos (yypos, yytext)
val extended =
if String.contains (yytext, #"_")
then SOME (Option.fold
(extended, "'_' separators", fn (msg1, msg2) =>
msg1 ^ " and " ^ msg2))
else extended
val _ =
case extended of
NONE => ()
| SOME msg =>
if allowExtendedNumConsts ()
then ()
else error (source, left, right,
concat ["Extended numeric constants (using ", msg,
") disallowed, compile with -default-ann 'allowExtendedNumConsts true'"])
in
mkTok (String.keepAll (String.dropPrefix (yytext, drop), fn c => not (c = #"_")),
{extended = Option.isSome extended},
Source.getPos (source, left), Source.getPos (source, right))
end
in
fun real (source, yypos, yytext) =
doit (source, yypos, yytext, 0, {extended = NONE}, fn (digits, {extended: bool}, l, r) =>
Tokens.REAL (digits, l, r))
fun int (source, yypos, yytext, drop, {extended: string option}, {negate: bool}, radix) =
doit (source, yypos, yytext, drop, {extended = extended}, fn (digits, {extended: bool}, l, r) =>
Tokens.INT ({digits = digits,
extended = extended,
negate = negate,
radix = radix},
l, r))
fun word (source, yypos, yytext, drop, {extended: string option}, radix) =
doit (source, yypos, yytext, drop, {extended = extended}, fn (digits, {extended: bool}, l, r) =>
Tokens.WORD ({digits = digits,
radix = radix},
l, r))
end
(* Text Constants *)
local
val chars: IntInf.t list ref = ref []
val inText = ref false
val textLeft = ref SourcePos.bogus
val textFinishFn: (IntInf.t vector * SourcePos.t * SourcePos.t -> lexresult) ref = ref (fn _ => raise Fail "textFinish")
in
fun startText (tl, tf) =
let
val _ = chars := []
val _ = inText := true
val _ = textLeft := tl
val _ = textFinishFn := tf
in
()
end
fun finishText textRight =
let
val cs = Vector.fromListRev (!chars)
val tl = !textLeft
val tr = textRight
val tf = !textFinishFn
val _ = chars := []
val _ = inText := false
val _ = textLeft := SourcePos.bogus
val _ = textFinishFn := (fn _ => raise Fail "textFinish")
in
tf (cs, tl, tr)
end
val inText = fn () => !inText
fun addTextString (s: string) =
chars := String.fold (s, !chars, fn (c, ac) => Int.toIntInf (Char.ord c) :: ac)
fun addTextCharCode (i: IntInf.int) = List.push (chars, i)
end
fun addTextChar (c: char) = addTextString (String.fromChar c)
fun addTextNumEsc (source, yypos, yytext, drop, {extended: string option}, radix): unit =
let
val left = yypos
val right = lastPos (yypos, yytext)
val _ =
case extended of
NONE => ()
| SOME msg =>
if allowExtendedTextConsts ()
then ()
else error (source, left, right,
concat ["Extended text constants (using ", msg,
") disallowed, compile with -default-ann 'allowExtendedTextConsts true'"])
in
case StringCvt.scanString (fn r => IntInf.scan (radix, r)) (String.dropPrefix (yytext, drop)) of
NONE => error (source, left, right, "Illegal numeric escape in text constant")
| SOME i => addTextCharCode i
end
fun addTextUTF8 (source, yypos, yytext): unit =
let
val left = yypos
val right = lastPos (yypos, yytext)
in
if not (allowExtendedTextConsts ())
then error (source, left, right,
"Extended text constants (using UTF-8 byte sequences) disallowed, compile with -default-ann 'allowExtendedTextConsts true'")
else addTextString yytext
end
(* EOF *)
val eof: lexarg -> lexresult =
fn {source, ...} =>
let
val _ = Source.newline (source, ~1)
val pos = Source.getPos (source, ~1)
val _ =
if inComment ()
then error' (pos, SourcePos.bogus, "Unclosed comment at end of file")
else ()
val _ =
if inText ()
then error' (pos, SourcePos.bogus, "Unclosed text constant at end of file")
else ()
in
Tokens.EOF (pos, SourcePos.bogus)
end
(*#line 256.1 "ml.lex.sml"*)
end (* end of user routines *)
exception LexError (* raised if illegal leaf action tried *)
structure Internal =
struct
datatype yyfinstate = N of int
type statedata = {fin : yyfinstate list, trans: int Vector.vector}
(* transition & final state table *)
val tab = let
fun decode s k =
let val k' = k + k
val hi = Char.ord(String.sub(s, k'))
val lo = Char.ord(String.sub(s, k' + 1))
in hi * 256 + lo end
val s = [
(0,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(1,256,
"\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\001\077\001\080\001\077\001\077\001\079\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\001\077\000\200\001\076\001\073\000\200\000\200\000\200\001\071\
\\001\048\001\047\000\200\000\200\001\046\001\044\001\041\000\200\
\\001\025\001\022\001\022\001\022\001\022\001\022\001\022\001\022\
\\001\022\001\022\001\020\001\019\000\200\001\017\000\200\000\200\
\\000\200\000\045\000\045\000\045\000\045\000\045\000\045\000\045\
\\000\045\000\045\000\045\000\045\000\045\000\045\000\045\000\045\
\\000\045\000\045\000\045\000\045\000\045\000\045\000\045\000\045\
\\000\045\000\045\000\045\001\016\000\200\001\015\000\200\000\201\
\\000\200\000\186\000\045\000\182\000\173\000\154\000\146\000\045\
\\000\140\000\128\000\045\000\045\000\121\000\045\000\115\000\105\
\\000\045\000\045\000\098\000\075\000\068\000\045\000\065\000\050\
\\000\045\000\045\000\045\000\044\000\043\000\042\000\020\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019"
),
(3,256,
"\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\127\001\081\001\081\001\126\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\091\001\091\001\125\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\092\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\089\001\089\001\089\001\089\001\089\001\089\001\089\001\089\
\\001\089\001\089\001\089\001\089\001\089\001\089\001\089\001\089\
\\001\089\001\089\001\089\001\089\001\089\001\089\001\089\001\089\
\\001\089\001\089\001\089\001\089\001\089\001\089\001\089\001\089\
\\001\086\001\086\001\086\001\086\001\086\001\086\001\086\001\086\
\\001\086\001\086\001\086\001\086\001\086\001\086\001\086\001\086\
\\001\082\001\082\001\082\001\082\001\082\001\082\001\082\001\082\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081"
),
(5,256,
"\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\130\001\133\001\130\001\130\001\132\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\130\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\129\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128"
),
(7,256,
"\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\141\001\134\001\134\001\140\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\137\001\134\001\135\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134"
),
(9,256,
"\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\144\001\142\001\142\001\143\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142"
),
(11,256,
"\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\000\000\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\146\001\146\001\146\001\146\001\146\001\146\001\146\001\146\
\\001\146\001\146\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145"
),
(13,256,
"\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\152\000\000\001\152\001\152\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\152\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\150\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145"
),
(15,256,
"\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\157\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\159\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156"
),
(17,256,
"\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\160\000\000\001\160\001\160\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\160\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\150\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145"
),
(20,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\021\000\000\000\021\000\021\000\021\000\021\000\000\
\\000\000\000\000\000\021\000\021\000\000\000\021\000\000\000\021\
\\000\035\000\022\000\022\000\022\000\022\000\022\000\022\000\022\
\\000\022\000\022\000\021\000\000\000\021\000\021\000\021\000\021\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(21,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\021\000\000\000\021\000\021\000\021\000\021\000\000\
\\000\000\000\000\000\021\000\021\000\000\000\021\000\000\000\021\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\021\000\000\000\021\000\021\000\021\000\021\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(22,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\028\000\000\
\\000\022\000\022\000\022\000\022\000\022\000\022\000\022\000\022\
\\000\022\000\022\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\023\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\027\
\\000\000\000\000\000\000\000\000\000\000\000\023\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(23,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\025\000\025\000\025\000\025\000\025\000\025\000\025\000\025\
\\000\025\000\025\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\024\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(24,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\025\000\025\000\025\000\025\000\025\000\025\000\025\000\025\
\\000\025\000\025\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(25,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\025\000\025\000\025\000\025\000\025\000\025\000\025\000\025\
\\000\025\000\025\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\026\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(27,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\022\000\022\000\022\000\022\000\022\000\022\000\022\000\022\
\\000\022\000\022\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\027\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(28,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\029\000\029\000\029\000\029\000\029\000\029\000\029\000\029\
\\000\029\000\029\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(29,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\029\000\029\000\029\000\029\000\029\000\029\000\029\000\029\
\\000\029\000\029\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\030\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\034\
\\000\000\000\000\000\000\000\000\000\000\000\030\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(30,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\032\000\032\000\032\000\032\000\032\000\032\000\032\000\032\
\\000\032\000\032\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\031\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(31,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\032\000\032\000\032\000\032\000\032\000\032\000\032\000\032\
\\000\032\000\032\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(32,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\032\000\032\000\032\000\032\000\032\000\032\000\032\000\032\
\\000\032\000\032\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\033\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(34,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\029\000\029\000\029\000\029\000\029\000\029\000\029\000\029\
\\000\029\000\029\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\034\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(35,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\028\000\000\
\\000\022\000\022\000\022\000\022\000\022\000\022\000\022\000\022\
\\000\022\000\022\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\023\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\027\
\\000\000\000\000\000\039\000\000\000\000\000\023\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\036\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(36,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\037\000\037\000\037\000\037\000\037\000\037\000\037\000\037\
\\000\037\000\037\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\037\000\037\000\037\000\037\000\037\000\037\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\037\000\037\000\037\000\037\000\037\000\037\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(37,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\037\000\037\000\037\000\037\000\037\000\037\000\037\000\037\
\\000\037\000\037\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\037\000\037\000\037\000\037\000\037\000\037\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\038\
\\000\000\000\037\000\037\000\037\000\037\000\037\000\037\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(39,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\040\000\040\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(40,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\040\000\040\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\041\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(45,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(47,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\048\000\000\000\048\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\048\000\048\000\000\000\048\000\000\000\048\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\048\000\048\000\048\
\\000\048\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\000\000\048\000\000\000\048\000\000\
\\000\048\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(48,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\048\000\000\000\048\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\048\000\048\000\000\000\048\000\000\000\048\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\048\000\048\000\048\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(49,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\049\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\000\000\000\000\000\000\000\000\049\
\\000\000\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(50,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\058\000\051\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(51,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\052\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(52,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\053\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(53,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\054\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(54,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\055\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(55,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\056\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(56,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\057\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(58,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\062\000\046\000\046\
\\000\046\000\059\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(59,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\060\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(60,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\061\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(62,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\063\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(63,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\064\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(65,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\066\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(66,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\067\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(68,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\072\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\069\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(69,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\070\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(70,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\071\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(72,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\073\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(73,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\074\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(75,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\092\000\084\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\076\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(76,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\077\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(77,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\078\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(78,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\079\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(79,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\080\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(80,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\081\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(81,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\082\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(82,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\083\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(84,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\085\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(85,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\086\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(86,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\087\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(87,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\088\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(88,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\089\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(89,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\090\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(90,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\091\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(92,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\093\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(93,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\094\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(94,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\095\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(95,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\096\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(96,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\097\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(98,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\101\000\046\000\046\000\046\000\099\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(99,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\100\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(101,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\102\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(102,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\103\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(103,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\104\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(105,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\114\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\111\000\046\000\106\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(106,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\107\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(107,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\108\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(108,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\109\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(109,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\110\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(111,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\112\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(112,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\113\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(115,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\116\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(116,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\117\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(117,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\118\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(118,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\119\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(119,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\120\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(121,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\126\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\122\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(122,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\123\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(123,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\124\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(124,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\125\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(126,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\127\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(128,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\139\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\129\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(129,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\134\000\046\000\046\000\130\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(130,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\131\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(131,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\132\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(132,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\133\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(134,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\135\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(135,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\136\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(136,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\137\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(137,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\138\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(140,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\141\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(141,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\142\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(142,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\143\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(143,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\144\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(144,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\145\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(146,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\153\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\147\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(147,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\148\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(148,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\149\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(149,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\150\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(150,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\151\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(151,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\152\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(154,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\170\000\046\000\168\000\046\
\\000\046\000\163\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\155\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(155,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\156\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(156,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\157\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(157,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\158\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(158,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\159\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(159,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\160\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(160,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\161\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(161,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\162\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(163,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\164\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(164,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\165\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(165,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\166\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(166,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\167\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(168,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\169\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(170,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\171\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(171,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\172\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(173,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\175\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\174\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(175,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\176\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(176,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\177\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(177,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\178\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(178,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\179\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(179,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\180\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(180,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\181\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(182,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\183\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(183,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\184\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(184,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\185\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(186,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\194\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\188\000\046\
\\000\046\000\046\000\046\000\187\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(188,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\189\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(189,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\190\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(190,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\191\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(191,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\192\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(192,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\193\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(194,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\195\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(195,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\196\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(196,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\197\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(197,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\198\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(198,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\199\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(201,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\008\000\253\000\232\000\000\000\226\000\000\000\000\
\\000\000\000\220\000\000\000\000\000\000\000\000\000\000\000\212\
\\000\208\000\000\000\000\000\202\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(202,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\203\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(203,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\204\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(204,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\205\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(205,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\206\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(206,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\207\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(208,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\209\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(209,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\210\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(210,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\211\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(212,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\213\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(213,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\214\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(214,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\215\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(215,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\216\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(216,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\217\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(217,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\218\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(218,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\219\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(220,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\221\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(221,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\222\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(222,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\223\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(223,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\224\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(224,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\225\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(226,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\227\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(227,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\228\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(228,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\229\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(229,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\230\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(230,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\231\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(232,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\233\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(233,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\237\000\234\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(234,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\235\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(235,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\236\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(237,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\238\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(238,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\239\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(239,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\240\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(240,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\241\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(241,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\242\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(242,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\243\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(243,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\244\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(244,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\245\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(245,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\246\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(246,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\247\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(247,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\248\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(248,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\249\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(249,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\250\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(250,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\251\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(251,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\252\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(253,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\254\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(254,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\255\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(255,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(256,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\001\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(257,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\002\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(258,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\003\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(259,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\004\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(260,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\001\005\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(261,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\006\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(262,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\007\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(264,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\009\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(265,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\010\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(266,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\011\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(267,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\001\012\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(268,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\013\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(269,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\014\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(273,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\021\000\000\000\021\000\021\000\021\000\021\000\000\
\\000\000\000\000\000\021\000\021\000\000\000\021\000\000\000\021\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\021\000\000\000\021\000\021\001\018\000\021\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(276,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\021\000\000\000\021\000\021\000\021\000\021\000\000\
\\000\000\000\000\000\021\000\021\000\000\000\021\000\000\000\021\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\021\000\000\000\021\000\021\001\021\000\021\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(278,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\028\000\000\
\\001\024\001\024\001\024\001\024\001\024\001\024\001\024\001\024\
\\001\024\001\024\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\023\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\023\
\\000\000\000\000\000\000\000\000\000\000\000\023\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(279,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\024\001\024\001\024\001\024\001\024\001\024\001\024\001\024\
\\001\024\001\024\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\023\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(281,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\028\000\000\
\\001\024\001\024\001\024\001\024\001\024\001\024\001\024\001\024\
\\001\024\001\024\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\023\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\023\
\\000\000\000\000\001\038\000\000\000\000\000\023\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\029\
\\001\026\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(282,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\027\001\027\001\027\001\027\001\027\001\027\001\027\001\027\
\\001\027\001\027\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\027\001\027\001\027\001\027\001\027\001\027\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\027\001\027\001\027\001\027\001\027\001\027\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(283,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\027\001\027\001\027\001\027\001\027\001\027\001\027\001\027\
\\001\027\001\027\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\027\001\027\001\027\001\027\001\027\001\027\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\028\
\\000\000\001\027\001\027\001\027\001\027\001\027\001\027\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(285,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\036\001\036\001\036\001\036\001\036\001\036\001\036\001\036\
\\001\036\001\036\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\033\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\030\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(286,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\031\001\031\001\031\001\031\001\031\001\031\001\031\001\031\
\\001\031\001\031\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\031\001\031\001\031\001\031\001\031\001\031\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\031\001\031\001\031\001\031\001\031\001\031\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(287,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\031\001\031\001\031\001\031\001\031\001\031\001\031\001\031\
\\001\031\001\031\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\031\001\031\001\031\001\031\001\031\001\031\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\032\
\\000\000\001\031\001\031\001\031\001\031\001\031\001\031\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(289,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\034\001\034\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(290,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\034\001\034\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\035\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(292,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\036\001\036\001\036\001\036\001\036\001\036\001\036\001\036\
\\001\036\001\036\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\037\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(294,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\039\001\039\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(295,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\039\001\039\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\040\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(297,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\001\042\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(298,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\001\043\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(300,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\021\000\000\000\021\000\021\000\021\000\021\000\000\
\\000\000\000\000\000\021\000\021\000\000\000\021\000\000\000\021\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\021\000\000\000\021\000\021\001\045\000\021\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(304,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\049\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(305,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\051\000\000\000\000\000\000\000\000\
\\000\000\001\050\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(307,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\066\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\052\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(308,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\053\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(309,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\054\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(310,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\055\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(311,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\056\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(312,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\057\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(313,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\058\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(314,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\059\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(315,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\060\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(316,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\061\000\000\001\061\001\061\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\061\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(317,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\061\000\000\001\061\001\061\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\061\000\000\001\062\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(318,256,
"\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\063\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062"
),
(319,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\063\000\000\001\063\001\063\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\063\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\064\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(320,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\065\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(322,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\067\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(323,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\001\068\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(324,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\001\069\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(325,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\070\000\000\001\070\001\070\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\070\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(327,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\072\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\072\001\072\001\072\001\072\001\072\001\072\001\072\001\072\
\\001\072\001\072\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\072\001\072\001\072\001\072\001\072\001\072\001\072\
\\001\072\001\072\001\072\001\072\001\072\001\072\001\072\001\072\
\\001\072\001\072\001\072\001\072\001\072\001\072\001\072\001\072\
\\001\072\001\072\001\072\000\000\000\000\000\000\000\000\001\072\
\\000\000\001\072\001\072\001\072\001\072\001\072\001\072\001\072\
\\001\072\001\072\001\072\001\072\001\072\001\072\001\072\001\072\
\\001\072\001\072\001\072\001\072\001\072\001\072\001\072\001\072\
\\001\072\001\072\001\072\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(329,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\021\001\075\000\021\000\021\000\021\000\021\000\000\
\\000\000\000\000\000\021\000\021\000\000\000\021\000\000\000\021\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\021\000\000\000\021\000\021\000\021\000\021\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\074\000\021\000\000\000\021\000\000\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(333,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\078\000\000\001\078\001\078\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\078\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(335,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\080\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(338,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\083\001\083\001\083\001\083\001\083\001\083\001\083\001\083\
\\001\083\001\083\001\083\001\083\001\083\001\083\001\083\001\083\
\\001\083\001\083\001\083\001\083\001\083\001\083\001\083\001\083\
\\001\083\001\083\001\083\001\083\001\083\001\083\001\083\001\083\
\\001\083\001\083\001\083\001\083\001\083\001\083\001\083\001\083\
\\001\083\001\083\001\083\001\083\001\083\001\083\001\083\001\083\
\\001\083\001\083\001\083\001\083\001\083\001\083\001\083\001\083\
\\001\083\001\083\001\083\001\083\001\083\001\083\001\083\001\083\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(339,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\084\001\084\001\084\001\084\001\084\001\084\001\084\001\084\
\\001\084\001\084\001\084\001\084\001\084\001\084\001\084\001\084\
\\001\084\001\084\001\084\001\084\001\084\001\084\001\084\001\084\
\\001\084\001\084\001\084\001\084\001\084\001\084\001\084\001\084\
\\001\084\001\084\001\084\001\084\001\084\001\084\001\084\001\084\
\\001\084\001\084\001\084\001\084\001\084\001\084\001\084\001\084\
\\001\084\001\084\001\084\001\084\001\084\001\084\001\084\001\084\
\\001\084\001\084\001\084\001\084\001\084\001\084\001\084\001\084\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(340,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\085\001\085\001\085\001\085\001\085\001\085\001\085\001\085\
\\001\085\001\085\001\085\001\085\001\085\001\085\001\085\001\085\
\\001\085\001\085\001\085\001\085\001\085\001\085\001\085\001\085\
\\001\085\001\085\001\085\001\085\001\085\001\085\001\085\001\085\
\\001\085\001\085\001\085\001\085\001\085\001\085\001\085\001\085\
\\001\085\001\085\001\085\001\085\001\085\001\085\001\085\001\085\
\\001\085\001\085\001\085\001\085\001\085\001\085\001\085\001\085\
\\001\085\001\085\001\085\001\085\001\085\001\085\001\085\001\085\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(342,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\087\001\087\001\087\001\087\001\087\001\087\001\087\001\087\
\\001\087\001\087\001\087\001\087\001\087\001\087\001\087\001\087\
\\001\087\001\087\001\087\001\087\001\087\001\087\001\087\001\087\
\\001\087\001\087\001\087\001\087\001\087\001\087\001\087\001\087\
\\001\087\001\087\001\087\001\087\001\087\001\087\001\087\001\087\
\\001\087\001\087\001\087\001\087\001\087\001\087\001\087\001\087\
\\001\087\001\087\001\087\001\087\001\087\001\087\001\087\001\087\
\\001\087\001\087\001\087\001\087\001\087\001\087\001\087\001\087\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(343,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\088\001\088\001\088\001\088\001\088\001\088\001\088\001\088\
\\001\088\001\088\001\088\001\088\001\088\001\088\001\088\001\088\
\\001\088\001\088\001\088\001\088\001\088\001\088\001\088\001\088\
\\001\088\001\088\001\088\001\088\001\088\001\088\001\088\001\088\
\\001\088\001\088\001\088\001\088\001\088\001\088\001\088\001\088\
\\001\088\001\088\001\088\001\088\001\088\001\088\001\088\001\088\
\\001\088\001\088\001\088\001\088\001\088\001\088\001\088\001\088\
\\001\088\001\088\001\088\001\088\001\088\001\088\001\088\001\088\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(345,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\090\001\090\001\090\001\090\001\090\001\090\001\090\001\090\
\\001\090\001\090\001\090\001\090\001\090\001\090\001\090\001\090\
\\001\090\001\090\001\090\001\090\001\090\001\090\001\090\001\090\
\\001\090\001\090\001\090\001\090\001\090\001\090\001\090\001\090\
\\001\090\001\090\001\090\001\090\001\090\001\090\001\090\001\090\
\\001\090\001\090\001\090\001\090\001\090\001\090\001\090\001\090\
\\001\090\001\090\001\090\001\090\001\090\001\090\001\090\001\090\
\\001\090\001\090\001\090\001\090\001\090\001\090\001\090\001\090\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(348,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\122\001\124\001\122\001\122\001\123\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\122\000\000\001\121\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\118\001\118\001\118\001\118\001\118\001\118\001\118\001\118\
\\001\118\001\118\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\001\109\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\108\000\000\001\105\000\000\
\\000\000\001\104\001\103\000\000\000\000\000\000\001\102\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\001\101\000\000\
\\000\000\000\000\001\100\000\000\001\099\001\094\001\093\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(350,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
\\001\095\001\095\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\095\001\095\001\095\001\095\001\095\001\095\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\095\001\095\001\095\001\095\001\095\001\095\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(351,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\096\001\096\001\096\001\096\001\096\001\096\001\096\001\096\
\\001\096\001\096\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\096\001\096\001\096\001\096\001\096\001\096\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\096\001\096\001\096\001\096\001\096\001\096\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(352,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\097\001\097\001\097\001\097\001\097\001\097\001\097\001\097\
\\001\097\001\097\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\097\001\097\001\097\001\097\001\097\001\097\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\097\001\097\001\097\001\097\001\097\001\097\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(353,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\098\001\098\001\098\001\098\001\098\001\098\001\098\001\098\
\\001\098\001\098\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\098\001\098\001\098\001\098\001\098\001\098\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\098\001\098\001\098\001\098\001\098\001\098\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(361,256,
"\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\000\000\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\107\001\107\001\107\001\107\001\107\001\107\001\107\001\107\
\\001\107\001\107\001\107\001\107\001\107\001\107\001\107\001\107\
\\001\107\001\107\001\107\001\107\001\107\001\107\001\107\001\107\
\\001\107\001\107\001\107\001\107\001\107\001\107\001\107\001\107\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106"
),
(365,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\110\001\110\001\110\001\110\001\110\001\110\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\110\001\110\001\110\001\110\001\110\001\110\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(366,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
\\001\111\001\111\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\111\001\111\001\111\001\111\001\111\001\111\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\111\001\111\001\111\001\111\001\111\001\111\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(367,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\112\001\112\001\112\001\112\001\112\001\112\001\112\001\112\
\\001\112\001\112\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\112\001\112\001\112\001\112\001\112\001\112\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\112\001\112\001\112\001\112\001\112\001\112\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(368,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\113\001\113\001\113\001\113\001\113\001\113\001\113\001\113\
\\001\113\001\113\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\113\001\113\001\113\001\113\001\113\001\113\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\113\001\113\001\113\001\113\001\113\001\113\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(369,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\114\001\114\001\114\001\114\001\114\001\114\001\114\001\114\
\\001\114\001\114\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\114\001\114\001\114\001\114\001\114\001\114\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\114\001\114\001\114\001\114\001\114\001\114\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(370,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\115\001\115\001\115\001\115\001\115\001\115\001\115\001\115\
\\001\115\001\115\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\115\001\115\001\115\001\115\001\115\001\115\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\115\001\115\001\115\001\115\001\115\001\115\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(371,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\116\001\116\001\116\001\116\001\116\001\116\001\116\001\116\
\\001\116\001\116\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\116\001\116\001\116\001\116\001\116\001\116\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\116\001\116\001\116\001\116\001\116\001\116\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(372,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\117\001\117\001\117\001\117\001\117\001\117\001\117\001\117\
\\001\117\001\117\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\117\001\117\001\117\001\117\001\117\001\117\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\117\001\117\001\117\001\117\001\117\001\117\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(374,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\119\001\119\001\119\001\119\001\119\001\119\001\119\001\119\
\\001\119\001\119\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(375,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\120\001\120\001\120\001\120\001\120\001\120\001\120\001\120\
\\001\120\001\120\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(378,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\122\000\000\001\122\001\122\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\122\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(379,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\124\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(382,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\127\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(386,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\131\000\000\001\131\001\131\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\131\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(388,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\133\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(391,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\136\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(393,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\138\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(394,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\139\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(396,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\141\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(399,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\144\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(402,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\001\148\000\000\
\\001\147\001\147\001\147\001\147\001\147\001\147\001\147\001\147\
\\001\147\001\147\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(404,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\149\001\149\001\149\001\149\001\149\001\149\001\149\001\149\
\\001\149\001\149\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(406,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\151\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(408,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\155\000\000\001\155\001\155\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\155\000\000\001\154\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\153\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(412,256,
"\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\158\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157"
),
(416,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\161\000\000\001\161\001\161\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\161\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\153\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(0, 0, "")]
fun f(n, i, x) = (n, Vector.tabulate(i, decode x))
val s = Pervasive.List.map f (Pervasive.List.rev (tl (Pervasive.List.rev s)))
exception LexHackingError
fun look ((j,x)::r, i: int) = if i = j then x else look(r, i)
| look ([], i) = raise LexHackingError
fun g {fin=x, trans=i} = {fin=x, trans=look(s,i)}
in Vector.fromList(Pervasive.List.map g
[{fin = [], trans = 0},
{fin = [], trans = 1},
{fin = [], trans = 1},
{fin = [], trans = 3},
{fin = [], trans = 3},
{fin = [], trans = 5},
{fin = [], trans = 5},
{fin = [], trans = 7},
{fin = [], trans = 7},
{fin = [], trans = 9},
{fin = [], trans = 9},
{fin = [], trans = 11},
{fin = [], trans = 11},
{fin = [], trans = 13},
{fin = [], trans = 13},
{fin = [], trans = 15},
{fin = [], trans = 15},
{fin = [], trans = 17},
{fin = [], trans = 17},
{fin = [(N 799)], trans = 0},
{fin = [(N 427),(N 799)], trans = 20},
{fin = [(N 427)], trans = 21},
{fin = [(N 521)], trans = 22},
{fin = [], trans = 23},
{fin = [], trans = 24},
{fin = [(N 512)], trans = 25},
{fin = [], trans = 25},
{fin = [], trans = 27},
{fin = [], trans = 28},
{fin = [(N 512)], trans = 29},
{fin = [], trans = 30},
{fin = [], trans = 31},
{fin = [(N 512)], trans = 32},
{fin = [], trans = 32},
{fin = [], trans = 34},
{fin = [(N 521)], trans = 35},
{fin = [], trans = 36},
{fin = [(N 534)], trans = 37},
{fin = [], trans = 37},
{fin = [], trans = 39},
{fin = [(N 547)], trans = 40},
{fin = [], trans = 40},
{fin = [(N 144),(N 799)], trans = 0},
{fin = [(N 142),(N 427),(N 799)], trans = 21},
{fin = [(N 140),(N 799)], trans = 0},
{fin = [(N 386),(N 799)], trans = 45},
{fin = [(N 386)], trans = 45},
{fin = [], trans = 47},
{fin = [(N 486)], trans = 48},
{fin = [(N 439)], trans = 49},
{fin = [(N 386),(N 799)], trans = 50},
{fin = [(N 386)], trans = 51},
{fin = [(N 386)], trans = 52},
{fin = [(N 374),(N 386)], trans = 53},
{fin = [(N 386)], trans = 54},
{fin = [(N 386)], trans = 55},
{fin = [(N 386)], trans = 56},
{fin = [(N 383),(N 386)], trans = 45},
{fin = [(N 386)], trans = 58},
{fin = [(N 386)], trans = 59},
{fin = [(N 386)], trans = 60},
{fin = [(N 369),(N 386)], trans = 45},
{fin = [(N 386)], trans = 62},
{fin = [(N 386)], trans = 63},
{fin = [(N 363),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 65},
{fin = [(N 386)], trans = 66},
{fin = [(N 357),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 68},
{fin = [(N 386)], trans = 69},
{fin = [(N 386)], trans = 70},
{fin = [(N 353),(N 386)], trans = 45},
{fin = [(N 386)], trans = 72},
{fin = [(N 386)], trans = 73},
{fin = [(N 348),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 75},
{fin = [(N 386)], trans = 76},
{fin = [(N 386)], trans = 77},
{fin = [(N 386)], trans = 78},
{fin = [(N 386)], trans = 79},
{fin = [(N 333),(N 386)], trans = 80},
{fin = [(N 386)], trans = 81},
{fin = [(N 386)], trans = 82},
{fin = [(N 343),(N 386)], trans = 45},
{fin = [(N 386)], trans = 84},
{fin = [(N 316),(N 386)], trans = 85},
{fin = [(N 386)], trans = 86},
{fin = [(N 386)], trans = 87},
{fin = [(N 386)], trans = 88},
{fin = [(N 386)], trans = 89},
{fin = [(N 386)], trans = 90},
{fin = [(N 326),(N 386)], trans = 45},
{fin = [(N 386)], trans = 92},
{fin = [(N 386)], trans = 93},
{fin = [(N 386)], trans = 94},
{fin = [(N 386)], trans = 95},
{fin = [(N 386)], trans = 96},
{fin = [(N 312),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 98},
{fin = [(N 386)], trans = 99},
{fin = [(N 304),(N 386)], trans = 45},
{fin = [(N 386)], trans = 101},
{fin = [(N 386)], trans = 102},
{fin = [(N 386)], trans = 103},
{fin = [(N 300),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 105},
{fin = [(N 386)], trans = 106},
{fin = [(N 386)], trans = 107},
{fin = [(N 386)], trans = 108},
{fin = [(N 386)], trans = 109},
{fin = [(N 294),(N 386)], trans = 45},
{fin = [(N 282),(N 386)], trans = 111},
{fin = [(N 386)], trans = 112},
{fin = [(N 287),(N 386)], trans = 45},
{fin = [(N 279),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 115},
{fin = [(N 386)], trans = 116},
{fin = [(N 386)], trans = 117},
{fin = [(N 386)], trans = 118},
{fin = [(N 386)], trans = 119},
{fin = [(N 276),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 121},
{fin = [(N 386)], trans = 122},
{fin = [(N 386)], trans = 123},
{fin = [(N 386)], trans = 124},
{fin = [(N 269),(N 386)], trans = 45},
{fin = [(N 386)], trans = 126},
{fin = [(N 263),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 128},
{fin = [(N 238),(N 386)], trans = 129},
{fin = [(N 386)], trans = 130},
{fin = [(N 386)], trans = 131},
{fin = [(N 252),(N 386)], trans = 132},
{fin = [(N 259),(N 386)], trans = 45},
{fin = [(N 386)], trans = 134},
{fin = [(N 386)], trans = 135},
{fin = [(N 386)], trans = 136},
{fin = [(N 386)], trans = 137},
{fin = [(N 246),(N 386)], trans = 45},
{fin = [(N 235),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 140},
{fin = [(N 386)], trans = 141},
{fin = [(N 386)], trans = 142},
{fin = [(N 386)], trans = 143},
{fin = [(N 386)], trans = 144},
{fin = [(N 232),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 146},
{fin = [(N 386)], trans = 147},
{fin = [(N 217),(N 386)], trans = 148},
{fin = [(N 386)], trans = 149},
{fin = [(N 386)], trans = 150},
{fin = [(N 386)], trans = 151},
{fin = [(N 225),(N 386)], trans = 45},
{fin = [(N 213),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 154},
{fin = [(N 386)], trans = 155},
{fin = [(N 386)], trans = 156},
{fin = [(N 386)], trans = 157},
{fin = [(N 386)], trans = 158},
{fin = [(N 386)], trans = 159},
{fin = [(N 386)], trans = 160},
{fin = [(N 386)], trans = 161},
{fin = [(N 210),(N 386)], trans = 45},
{fin = [(N 386)], trans = 163},
{fin = [(N 386)], trans = 164},
{fin = [(N 386)], trans = 165},
{fin = [(N 386)], trans = 166},
{fin = [(N 200),(N 386)], trans = 45},
{fin = [(N 386)], trans = 168},
{fin = [(N 193),(N 386)], trans = 45},
{fin = [(N 386)], trans = 170},
{fin = [(N 386)], trans = 171},
{fin = [(N 189),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 173},
{fin = [(N 184),(N 386)], trans = 45},
{fin = [(N 386)], trans = 175},
{fin = [(N 386)], trans = 176},
{fin = [(N 386)], trans = 177},
{fin = [(N 386)], trans = 178},
{fin = [(N 386)], trans = 179},
{fin = [(N 386)], trans = 180},
{fin = [(N 181),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 182},
{fin = [(N 386)], trans = 183},
{fin = [(N 386)], trans = 184},
{fin = [(N 172),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 186},
{fin = [(N 167),(N 386)], trans = 45},
{fin = [(N 386)], trans = 188},
{fin = [(N 156),(N 386)], trans = 189},
{fin = [(N 386)], trans = 190},
{fin = [(N 386)], trans = 191},
{fin = [(N 386)], trans = 192},
{fin = [(N 164),(N 386)], trans = 45},
{fin = [(N 386)], trans = 194},
{fin = [(N 386)], trans = 195},
{fin = [(N 386)], trans = 196},
{fin = [(N 386)], trans = 197},
{fin = [(N 386)], trans = 198},
{fin = [(N 152),(N 386)], trans = 45},
{fin = [(N 427),(N 799)], trans = 21},
{fin = [(N 138),(N 799)], trans = 201},
{fin = [], trans = 202},
{fin = [], trans = 203},
{fin = [], trans = 204},
{fin = [], trans = 205},
{fin = [], trans = 206},
{fin = [(N 102)], trans = 0},
{fin = [], trans = 208},
{fin = [], trans = 209},
{fin = [], trans = 210},
{fin = [(N 94)], trans = 0},
{fin = [], trans = 212},
{fin = [], trans = 213},
{fin = [], trans = 214},
{fin = [], trans = 215},
{fin = [], trans = 216},
{fin = [], trans = 217},
{fin = [], trans = 218},
{fin = [(N 88)], trans = 0},
{fin = [], trans = 220},
{fin = [], trans = 221},
{fin = [], trans = 222},
{fin = [], trans = 223},
{fin = [], trans = 224},
{fin = [(N 78)], trans = 0},
{fin = [], trans = 226},
{fin = [], trans = 227},
{fin = [], trans = 228},
{fin = [], trans = 229},
{fin = [], trans = 230},
{fin = [(N 70)], trans = 0},
{fin = [], trans = 232},
{fin = [], trans = 233},
{fin = [], trans = 234},
{fin = [], trans = 235},
{fin = [(N 62)], trans = 0},
{fin = [], trans = 237},
{fin = [], trans = 238},
{fin = [], trans = 239},
{fin = [], trans = 240},
{fin = [], trans = 241},
{fin = [], trans = 242},
{fin = [], trans = 243},
{fin = [], trans = 244},
{fin = [], trans = 245},
{fin = [], trans = 246},
{fin = [], trans = 247},
{fin = [], trans = 248},
{fin = [], trans = 249},
{fin = [], trans = 250},
{fin = [], trans = 251},
{fin = [(N 55)], trans = 0},
{fin = [], trans = 253},
{fin = [], trans = 254},
{fin = [], trans = 255},
{fin = [], trans = 256},
{fin = [], trans = 257},
{fin = [], trans = 258},
{fin = [], trans = 259},
{fin = [], trans = 260},
{fin = [], trans = 261},
{fin = [], trans = 262},
{fin = [(N 35)], trans = 0},
{fin = [], trans = 264},
{fin = [], trans = 265},
{fin = [], trans = 266},
{fin = [], trans = 267},
{fin = [], trans = 268},
{fin = [], trans = 269},
{fin = [(N 22)], trans = 0},
{fin = [(N 136),(N 799)], trans = 0},
{fin = [(N 134),(N 799)], trans = 0},
{fin = [(N 129),(N 427),(N 799)], trans = 273},
{fin = [(N 132),(N 427)], trans = 21},
{fin = [(N 127),(N 799)], trans = 0},
{fin = [(N 122),(N 427),(N 799)], trans = 276},
{fin = [(N 125),(N 427)], trans = 21},
{fin = [(N 516),(N 799)], trans = 278},
{fin = [], trans = 279},
{fin = [(N 516)], trans = 278},
{fin = [(N 516),(N 799)], trans = 281},
{fin = [], trans = 282},
{fin = [(N 527)], trans = 283},
{fin = [], trans = 283},
{fin = [], trans = 285},
{fin = [], trans = 286},
{fin = [(N 560)], trans = 287},
{fin = [], trans = 287},
{fin = [], trans = 289},
{fin = [(N 567)], trans = 290},
{fin = [], trans = 290},
{fin = [(N 553)], trans = 292},
{fin = [], trans = 292},
{fin = [], trans = 294},
{fin = [(N 540)], trans = 295},
{fin = [], trans = 295},
{fin = [(N 799)], trans = 297},
{fin = [], trans = 298},
{fin = [(N 120)], trans = 0},
{fin = [(N 427),(N 799)], trans = 300},
{fin = [(N 116),(N 427)], trans = 21},
{fin = [(N 113),(N 799)], trans = 0},
{fin = [(N 111),(N 799)], trans = 0},
{fin = [(N 109),(N 799)], trans = 304},
{fin = [(N 699)], trans = 305},
{fin = [(N 696)], trans = 0},
{fin = [], trans = 307},
{fin = [], trans = 308},
{fin = [], trans = 309},
{fin = [], trans = 310},
{fin = [], trans = 311},
{fin = [], trans = 312},
{fin = [], trans = 313},
{fin = [], trans = 314},
{fin = [], trans = 315},
{fin = [], trans = 316},
{fin = [], trans = 317},
{fin = [], trans = 318},
{fin = [], trans = 319},
{fin = [], trans = 320},
{fin = [(N 797)], trans = 0},
{fin = [], trans = 322},
{fin = [], trans = 323},
{fin = [], trans = 324},
{fin = [], trans = 325},
{fin = [(N 739)], trans = 325},
{fin = [(N 430),(N 799)], trans = 327},
{fin = [(N 430)], trans = 327},
{fin = [(N 104),(N 427),(N 799)], trans = 329},
{fin = [(N 107)], trans = 0},
{fin = [(N 572)], trans = 0},
{fin = [(N 569),(N 799)], trans = 0},
{fin = [(N 8),(N 799)], trans = 333},
{fin = [(N 8)], trans = 333},
{fin = [(N 13),(N 799)], trans = 335},
{fin = [(N 13)], trans = 0},
{fin = [(N 674)], trans = 0},
{fin = [(N 674)], trans = 338},
{fin = [], trans = 339},
{fin = [], trans = 340},
{fin = [(N 591)], trans = 0},
{fin = [(N 674)], trans = 342},
{fin = [], trans = 343},
{fin = [(N 586)], trans = 0},
{fin = [(N 674)], trans = 345},
{fin = [(N 582)], trans = 0},
{fin = [(N 579),(N 674)], trans = 0},
{fin = [(N 667),(N 674)], trans = 348},
{fin = [(N 606)], trans = 0},
{fin = [], trans = 350},
{fin = [], trans = 351},
{fin = [], trans = 352},
{fin = [], trans = 353},
{fin = [(N 632)], trans = 0},
{fin = [(N 600)], trans = 0},
{fin = [(N 612)], trans = 0},
{fin = [(N 603)], trans = 0},
{fin = [(N 609)], trans = 0},
{fin = [(N 597)], trans = 0},
{fin = [(N 594)], trans = 0},
{fin = [], trans = 361},
{fin = [(N 620)], trans = 0},
{fin = [(N 616),(N 620)], trans = 0},
{fin = [(N 649)], trans = 0},
{fin = [], trans = 365},
{fin = [], trans = 366},
{fin = [], trans = 367},
{fin = [], trans = 368},
{fin = [], trans = 369},
{fin = [], trans = 370},
{fin = [], trans = 371},
{fin = [], trans = 372},
{fin = [(N 643)], trans = 0},
{fin = [], trans = 374},
{fin = [], trans = 375},
{fin = [(N 625)], trans = 0},
{fin = [(N 646)], trans = 0},
{fin = [(N 659)], trans = 378},
{fin = [(N 665)], trans = 379},
{fin = [(N 665)], trans = 0},
{fin = [(N 574),(N 674)], trans = 0},
{fin = [(N 672),(N 674)], trans = 382},
{fin = [(N 672)], trans = 0},
{fin = [(N 692)], trans = 0},
{fin = [(N 690),(N 692)], trans = 0},
{fin = [(N 683),(N 692)], trans = 386},
{fin = [(N 683)], trans = 386},
{fin = [(N 688),(N 692)], trans = 388},
{fin = [(N 688)], trans = 0},
{fin = [(N 723)], trans = 0},
{fin = [(N 723)], trans = 391},
{fin = [(N 716)], trans = 0},
{fin = [(N 723)], trans = 393},
{fin = [(N 713)], trans = 394},
{fin = [(N 710)], trans = 0},
{fin = [(N 721),(N 723)], trans = 396},
{fin = [(N 721)], trans = 0},
{fin = [(N 706)], trans = 0},
{fin = [(N 704),(N 706)], trans = 399},
{fin = [(N 704)], trans = 0},
{fin = [(N 767)], trans = 0},
{fin = [(N 767)], trans = 402},
{fin = [], trans = 402},
{fin = [], trans = 404},
{fin = [(N 745)], trans = 404},
{fin = [(N 767)], trans = 406},
{fin = [(N 765)], trans = 0},
{fin = [(N 767)], trans = 408},
{fin = [], trans = 406},
{fin = [(N 755)], trans = 0},
{fin = [], trans = 408},
{fin = [(N 767)], trans = 412},
{fin = [], trans = 412},
{fin = [(N 758)], trans = 0},
{fin = [(N 758),(N 767)], trans = 0},
{fin = [(N 767)], trans = 416},
{fin = [], trans = 416}])
end
structure StartStates =
struct
datatype yystartstate = STARTSTATE of int
(* start state definitions *)
val BLOCK_COMMENT = STARTSTATE 7;
val INITIAL = STARTSTATE 1;
val LINE_COMMENT = STARTSTATE 9;
val LINE_DIR1 = STARTSTATE 11;
val LINE_DIR2 = STARTSTATE 13;
val LINE_DIR3 = STARTSTATE 15;
val LINE_DIR4 = STARTSTATE 17;
val TEXT = STARTSTATE 3;
val TEXT_FMT = STARTSTATE 5;
end
type result = UserDeclarations.lexresult
exception LexerError (* raised if illegal leaf action tried *)
end
structure YYPosInt : INTEGER = Int
fun makeLexer yyinput =
let val yygone0= YYPosInt.fromInt ~1
val yyb = ref "\n" (* buffer *)
val yybl = ref 1 (*buffer length *)
val yybufpos = ref 1 (* location of next character to use *)
val yygone = ref yygone0 (* position in file of beginning of buffer *)
val yydone = ref false (* eof found yet? *)
val yybegin = ref 1 (*Current 'start state' for lexer *)
val YYBEGIN = fn (Internal.StartStates.STARTSTATE x) =>
yybegin := x
fun lex (yyarg as ((*#line 257.7 "ml.lex"*){source}(*#line 10593.1 "ml.lex.sml"*)
)) =
let fun continue() : Internal.result =
let fun scan (s,AcceptingLeaves : Internal.yyfinstate list list,l,i0) =
let fun action (i,nil) = raise LexError
| action (i,nil::l) = action (i-1,l)
| action (i,(node::acts)::l) =
case node of
Internal.N yyk =>
(let fun yymktext() = String.substring(!yyb,i0,i-i0)
val yypos = YYPosInt.+(YYPosInt.fromInt i0, !yygone)
open UserDeclarations Internal.StartStates
in (yybufpos := i; case yyk of
(* Application actions *)
102 => let val yytext=yymktext() in (*#line 296.24 "ml.lex"*)tok (Tokens.SYMBOL, yytext, source, yypos)(*#line 10609.1 "ml.lex.sml"*)
end
| 104 => let val yytext=yymktext() in (*#line 298.18 "ml.lex"*)tok (Tokens.HASH, yytext, source, yypos)(*#line 10611.1 "ml.lex.sml"*)
end
| 107 => let val yytext=yymktext() in (*#line 299.19 "ml.lex"*)tok (Tokens.HASHLBRACKET, yytext, source, yypos)(*#line 10613.1 "ml.lex.sml"*)
end
| 109 => let val yytext=yymktext() in (*#line 300.18 "ml.lex"*)tok (Tokens.LPAREN, yytext, source, yypos)(*#line 10615.1 "ml.lex.sml"*)
end
| 111 => let val yytext=yymktext() in (*#line 301.18 "ml.lex"*)tok (Tokens.RPAREN, yytext, source, yypos)(*#line 10617.1 "ml.lex.sml"*)
end
| 113 => let val yytext=yymktext() in (*#line 302.18 "ml.lex"*)tok (Tokens.COMMA, yytext, source, yypos)(*#line 10619.1 "ml.lex.sml"*)
end
| 116 => let val yytext=yymktext() in (*#line 303.19 "ml.lex"*)tok (Tokens.ARROW, yytext, source, yypos)(*#line 10621.1 "ml.lex.sml"*)
end
| 120 => let val yytext=yymktext() in (*#line 304.20 "ml.lex"*)tok (Tokens.DOTDOTDOT, yytext, source, yypos)(*#line 10623.1 "ml.lex.sml"*)
end
| 122 => let val yytext=yymktext() in (*#line 305.18 "ml.lex"*)tok (Tokens.COLON, yytext, source, yypos)(*#line 10625.1 "ml.lex.sml"*)
end
| 125 => let val yytext=yymktext() in (*#line 306.19 "ml.lex"*)tok (Tokens.COLONGT, yytext, source, yypos)(*#line 10627.1 "ml.lex.sml"*)
end
| 127 => let val yytext=yymktext() in (*#line 307.18 "ml.lex"*)tok (Tokens.SEMICOLON, yytext, source, yypos)(*#line 10629.1 "ml.lex.sml"*)
end
| 129 => let val yytext=yymktext() in (*#line 308.18 "ml.lex"*)tok (Tokens.EQUALOP, yytext, source, yypos)(*#line 10631.1 "ml.lex.sml"*)
end
| 13 => let val yytext=yymktext() in (*#line 285.21 "ml.lex"*)Source.newline (source, lastPos (yypos, yytext)); continue ()(*#line 10633.1 "ml.lex.sml"*)
end
| 132 => let val yytext=yymktext() in (*#line 309.19 "ml.lex"*)tok (Tokens.DARROW, yytext, source, yypos)(*#line 10635.1 "ml.lex.sml"*)
end
| 134 => let val yytext=yymktext() in (*#line 310.18 "ml.lex"*)tok (Tokens.LBRACKET, yytext, source, yypos)(*#line 10637.1 "ml.lex.sml"*)
end
| 136 => let val yytext=yymktext() in (*#line 311.18 "ml.lex"*)tok (Tokens.RBRACKET, yytext, source, yypos)(*#line 10639.1 "ml.lex.sml"*)
end
| 138 => let val yytext=yymktext() in (*#line 312.18 "ml.lex"*)tok (Tokens.WILD, yytext, source, yypos)(*#line 10641.1 "ml.lex.sml"*)
end
| 140 => let val yytext=yymktext() in (*#line 313.18 "ml.lex"*)tok (Tokens.LBRACE, yytext, source, yypos)(*#line 10643.1 "ml.lex.sml"*)
end
| 142 => let val yytext=yymktext() in (*#line 314.18 "ml.lex"*)tok (Tokens.BAR, yytext, source, yypos)(*#line 10645.1 "ml.lex.sml"*)
end
| 144 => let val yytext=yymktext() in (*#line 315.18 "ml.lex"*)tok (Tokens.RBRACE, yytext, source, yypos)(*#line 10647.1 "ml.lex.sml"*)
end
| 152 => let val yytext=yymktext() in (*#line 317.24 "ml.lex"*)tok (Tokens.ABSTYPE, yytext, source, yypos)(*#line 10649.1 "ml.lex.sml"*)
end
| 156 => let val yytext=yymktext() in (*#line 318.20 "ml.lex"*)tok (Tokens.AND, yytext, source, yypos)(*#line 10651.1 "ml.lex.sml"*)
end
| 164 => let val yytext=yymktext() in (*#line 319.24 "ml.lex"*)tok (Tokens.ANDALSO, yytext, source, yypos)(*#line 10653.1 "ml.lex.sml"*)
end
| 167 => let val yytext=yymktext() in (*#line 320.19 "ml.lex"*)tok (Tokens.AS, yytext, source, yypos)(*#line 10655.1 "ml.lex.sml"*)
end
| 172 => let val yytext=yymktext() in (*#line 321.21 "ml.lex"*)tok (Tokens.CASE, yytext, source, yypos)(*#line 10657.1 "ml.lex.sml"*)
end
| 181 => let val yytext=yymktext() in (*#line 322.25 "ml.lex"*)tok (Tokens.DATATYPE, yytext, source, yypos)(*#line 10659.1 "ml.lex.sml"*)
end
| 184 => let val yytext=yymktext() in (*#line 323.19 "ml.lex"*)tok (Tokens.DO, yytext, source, yypos)(*#line 10661.1 "ml.lex.sml"*)
end
| 189 => let val yytext=yymktext() in (*#line 324.21 "ml.lex"*)tok (Tokens.ELSE, yytext, source, yypos)(*#line 10663.1 "ml.lex.sml"*)
end
| 193 => let val yytext=yymktext() in (*#line 325.20 "ml.lex"*)tok (Tokens.END, yytext, source, yypos)(*#line 10665.1 "ml.lex.sml"*)
end
| 200 => let val yytext=yymktext() in (*#line 326.23 "ml.lex"*)tok (Tokens.EQTYPE, yytext, source, yypos)(*#line 10667.1 "ml.lex.sml"*)
end
| 210 => let val yytext=yymktext() in (*#line 327.26 "ml.lex"*)tok (Tokens.EXCEPTION, yytext, source, yypos)(*#line 10669.1 "ml.lex.sml"*)
end
| 213 => let val yytext=yymktext() in (*#line 328.19 "ml.lex"*)tok (Tokens.FN, yytext, source, yypos)(*#line 10671.1 "ml.lex.sml"*)
end
| 217 => let val yytext=yymktext() in (*#line 329.20 "ml.lex"*)tok (Tokens.FUN, yytext, source, yypos)(*#line 10673.1 "ml.lex.sml"*)
end
| 22 => let val yytext=yymktext() in (*#line 288.25 "ml.lex"*)tok (Tokens.ADDRESS, yytext, source, yypos)(*#line 10675.1 "ml.lex.sml"*)
end
| 225 => let val yytext=yymktext() in (*#line 330.24 "ml.lex"*)tok (Tokens.FUNCTOR, yytext, source, yypos)(*#line 10677.1 "ml.lex.sml"*)
end
| 232 => let val yytext=yymktext() in (*#line 331.23 "ml.lex"*)tok (Tokens.HANDLE, yytext, source, yypos)(*#line 10679.1 "ml.lex.sml"*)
end
| 235 => let val yytext=yymktext() in (*#line 332.19 "ml.lex"*)tok (Tokens.IF, yytext, source, yypos)(*#line 10681.1 "ml.lex.sml"*)
end
| 238 => let val yytext=yymktext() in (*#line 333.19 "ml.lex"*)tok (Tokens.IN, yytext, source, yypos)(*#line 10683.1 "ml.lex.sml"*)
end
| 246 => let val yytext=yymktext() in (*#line 334.24 "ml.lex"*)tok (Tokens.INCLUDE, yytext, source, yypos)(*#line 10685.1 "ml.lex.sml"*)
end
| 252 => let val yytext=yymktext() in (*#line 335.22 "ml.lex"*)tok (Tokens.INFIX, yytext, source, yypos)(*#line 10687.1 "ml.lex.sml"*)
end
| 259 => let val yytext=yymktext() in (*#line 336.23 "ml.lex"*)tok (Tokens.INFIXR, yytext, source, yypos)(*#line 10689.1 "ml.lex.sml"*)
end
| 263 => let val yytext=yymktext() in (*#line 337.20 "ml.lex"*)tok (Tokens.LET, yytext, source, yypos)(*#line 10691.1 "ml.lex.sml"*)
end
| 269 => let val yytext=yymktext() in (*#line 338.22 "ml.lex"*)tok (Tokens.LOCAL, yytext, source, yypos)(*#line 10693.1 "ml.lex.sml"*)
end
| 276 => let val yytext=yymktext() in (*#line 339.23 "ml.lex"*)tok (Tokens.NONFIX, yytext, source, yypos)(*#line 10695.1 "ml.lex.sml"*)
end
| 279 => let val yytext=yymktext() in (*#line 340.19 "ml.lex"*)tok (Tokens.OF, yytext, source, yypos)(*#line 10697.1 "ml.lex.sml"*)
end
| 282 => let val yytext=yymktext() in (*#line 341.19 "ml.lex"*)tok (Tokens.OP, yytext, source, yypos)(*#line 10699.1 "ml.lex.sml"*)
end
| 287 => let val yytext=yymktext() in (*#line 342.21 "ml.lex"*)tok (Tokens.OPEN, yytext, source, yypos)(*#line 10701.1 "ml.lex.sml"*)
end
| 294 => let val yytext=yymktext() in (*#line 343.23 "ml.lex"*)tok (Tokens.ORELSE, yytext, source, yypos)(*#line 10703.1 "ml.lex.sml"*)
end
| 300 => let val yytext=yymktext() in (*#line 344.22 "ml.lex"*)tok (Tokens.RAISE, yytext, source, yypos)(*#line 10705.1 "ml.lex.sml"*)
end
| 304 => let val yytext=yymktext() in (*#line 345.20 "ml.lex"*)tok (Tokens.REC, yytext, source, yypos)(*#line 10707.1 "ml.lex.sml"*)
end
| 312 => let val yytext=yymktext() in (*#line 346.24 "ml.lex"*)tok (Tokens.SHARING, yytext, source, yypos)(*#line 10709.1 "ml.lex.sml"*)
end
| 316 => let val yytext=yymktext() in (*#line 347.20 "ml.lex"*)tok (Tokens.SIG, yytext, source, yypos)(*#line 10711.1 "ml.lex.sml"*)
end
| 326 => let val yytext=yymktext() in (*#line 348.26 "ml.lex"*)tok (Tokens.SIGNATURE, yytext, source, yypos)(*#line 10713.1 "ml.lex.sml"*)
end
| 333 => let val yytext=yymktext() in (*#line 349.23 "ml.lex"*)tok (Tokens.STRUCT, yytext, source, yypos)(*#line 10715.1 "ml.lex.sml"*)
end
| 343 => let val yytext=yymktext() in (*#line 350.26 "ml.lex"*)tok (Tokens.STRUCTURE, yytext, source, yypos)(*#line 10717.1 "ml.lex.sml"*)
end
| 348 => let val yytext=yymktext() in (*#line 351.21 "ml.lex"*)tok (Tokens.THEN, yytext, source, yypos)(*#line 10719.1 "ml.lex.sml"*)
end
| 35 => let val yytext=yymktext() in (*#line 289.29 "ml.lex"*)tok (Tokens.BUILD_CONST, yytext, source, yypos)(*#line 10721.1 "ml.lex.sml"*)
end
| 353 => let val yytext=yymktext() in (*#line 352.21 "ml.lex"*)tok (Tokens.TYPE, yytext, source, yypos)(*#line 10723.1 "ml.lex.sml"*)
end
| 357 => let val yytext=yymktext() in (*#line 353.20 "ml.lex"*)tok (Tokens.VAL, yytext, source, yypos)(*#line 10725.1 "ml.lex.sml"*)
end
| 363 => let val yytext=yymktext() in (*#line 354.22 "ml.lex"*)tok (Tokens.WHERE, yytext, source, yypos)(*#line 10727.1 "ml.lex.sml"*)
end
| 369 => let val yytext=yymktext() in (*#line 355.22 "ml.lex"*)tok (Tokens.WHILE, yytext, source, yypos)(*#line 10729.1 "ml.lex.sml"*)
end
| 374 => let val yytext=yymktext() in (*#line 356.21 "ml.lex"*)tok (Tokens.WITH, yytext, source, yypos)(*#line 10731.1 "ml.lex.sml"*)
end
| 383 => let val yytext=yymktext() in (*#line 357.25 "ml.lex"*)tok (Tokens.WITHTYPE, yytext, source, yypos)(*#line 10733.1 "ml.lex.sml"*)
end
| 386 => let val yytext=yymktext() in (*#line 360.27 "ml.lex"*)tok' (Tokens.SHORTALPHANUMID, yytext, source, yypos)(*#line 10735.1 "ml.lex.sml"*)
end
| 427 => let val yytext=yymktext() in (*#line 362.5 "ml.lex"*)case yytext of
"*" => tok (Tokens.ASTERISK, yytext, source, yypos)
| _ => tok' (Tokens.SHORTSYMID, yytext, source, yypos)(*#line 10739.1 "ml.lex.sml"*)
end
| 430 => let val yytext=yymktext() in (*#line 365.24 "ml.lex"*)tok' (Tokens.TYVAR, yytext, source, yypos)(*#line 10741.1 "ml.lex.sml"*)
end
| 439 => let val yytext=yymktext() in (*#line 366.31 "ml.lex"*)tok' (Tokens.LONGALPHANUMID, yytext, source, yypos)(*#line 10743.1 "ml.lex.sml"*)
end
| 486 => let val yytext=yymktext() in (*#line 367.26 "ml.lex"*)tok' (Tokens.LONGSYMID, yytext, source, yypos)(*#line 10745.1 "ml.lex.sml"*)
end
| 512 => let val yytext=yymktext() in (*#line 371.5 "ml.lex"*)real (source, yypos, yytext)(*#line 10747.1 "ml.lex.sml"*)
end
| 516 => let val yytext=yymktext() in (*#line 373.5 "ml.lex"*)int (source, yypos, yytext, 0, {extended = NONE}, {negate = false}, StringCvt.DEC)(*#line 10749.1 "ml.lex.sml"*)
end
| 521 => let val yytext=yymktext() in (*#line 375.5 "ml.lex"*)int (source, yypos, yytext, 1, {extended = NONE}, {negate = true}, StringCvt.DEC)(*#line 10751.1 "ml.lex.sml"*)
end
| 527 => let val yytext=yymktext() in (*#line 377.5 "ml.lex"*)int (source, yypos, yytext, 2, {extended = NONE}, {negate = false}, StringCvt.HEX)(*#line 10753.1 "ml.lex.sml"*)
end
| 534 => let val yytext=yymktext() in (*#line 379.5 "ml.lex"*)int (source, yypos, yytext, 3, {extended = NONE}, {negate = true}, StringCvt.HEX)(*#line 10755.1 "ml.lex.sml"*)
end
| 540 => let val yytext=yymktext() in (*#line 381.5 "ml.lex"*)int (source, yypos, yytext, 2, {extended = SOME "binary notation"}, {negate = false}, StringCvt.BIN)(*#line 10757.1 "ml.lex.sml"*)
end
| 547 => let val yytext=yymktext() in (*#line 383.5 "ml.lex"*)int (source, yypos, yytext, 3, {extended = SOME "binary notation"}, {negate = true}, StringCvt.BIN)(*#line 10759.1 "ml.lex.sml"*)
end
| 55 => let val yytext=yymktext() in (*#line 290.36 "ml.lex"*)tok (Tokens.COMMAND_LINE_CONST, yytext, source, yypos)(*#line 10761.1 "ml.lex.sml"*)
end
| 553 => let val yytext=yymktext() in (*#line 385.5 "ml.lex"*)word (source, yypos, yytext, 2, {extended = NONE}, StringCvt.DEC)(*#line 10763.1 "ml.lex.sml"*)
end
| 560 => let val yytext=yymktext() in (*#line 387.5 "ml.lex"*)word (source, yypos, yytext, 3, {extended = NONE}, StringCvt.HEX)(*#line 10765.1 "ml.lex.sml"*)
end
| 567 => let val yytext=yymktext() in (*#line 389.5 "ml.lex"*)word (source, yypos, yytext, 3, {extended = SOME "binary notation"}, StringCvt.BIN)(*#line 10767.1 "ml.lex.sml"*)
end
| 569 => ((*#line 392.5 "ml.lex"*)startText (Source.getPos (source, yypos), fn (cs, l, r) =>
(YYBEGIN INITIAL;
Tokens.STRING (cs, l, r)))
; YYBEGIN TEXT
; continue ()(*#line 10773.1 "ml.lex.sml"*)
)
| 572 => ((*#line 398.5 "ml.lex"*)startText (Source.getPos (source, yypos), fn (cs, l, r) =>
let
fun err () =
error' (l, r, "character constant not of size 1")
val c =
case Int.compare (Vector.length cs, 1) of
LESS => (err (); 0)
| EQUAL => Vector.sub (cs, 0)
| GREATER => (err (); Vector.sub (cs, 0))
in
YYBEGIN INITIAL;
Tokens.CHAR (c, l, r)
end)
; YYBEGIN TEXT
; continue ()(*#line 10789.1 "ml.lex.sml"*)
)
| 574 => let val yytext=yymktext() in (*#line 414.22 "ml.lex"*)finishText (Source.getPos (source, lastPos (yypos, yytext)))(*#line 10791.1 "ml.lex.sml"*)
end
| 579 => let val yytext=yymktext() in (*#line 416.22 "ml.lex"*)addTextString yytext; continue ()(*#line 10793.1 "ml.lex.sml"*)
end
| 582 => let val yytext=yymktext() in (*#line 418.22 "ml.lex"*)addTextUTF8 (source, yypos, yytext); continue()(*#line 10795.1 "ml.lex.sml"*)
end
| 586 => let val yytext=yymktext() in (*#line 420.22 "ml.lex"*)addTextUTF8 (source, yypos, yytext); continue()(*#line 10797.1 "ml.lex.sml"*)
end
| 591 => let val yytext=yymktext() in (*#line 422.22 "ml.lex"*)addTextUTF8 (source, yypos, yytext); continue()(*#line 10799.1 "ml.lex.sml"*)
end
| 594 => ((*#line 423.22 "ml.lex"*)addTextChar #"\a"; continue ()(*#line 10801.1 "ml.lex.sml"*)
)
| 597 => ((*#line 424.22 "ml.lex"*)addTextChar #"\b"; continue ()(*#line 10803.1 "ml.lex.sml"*)
)
| 600 => ((*#line 425.22 "ml.lex"*)addTextChar #"\t"; continue ()(*#line 10805.1 "ml.lex.sml"*)
)
| 603 => ((*#line 426.22 "ml.lex"*)addTextChar #"\n"; continue ()(*#line 10807.1 "ml.lex.sml"*)
)
| 606 => ((*#line 427.22 "ml.lex"*)addTextChar #"\v"; continue ()(*#line 10809.1 "ml.lex.sml"*)
)
| 609 => ((*#line 428.22 "ml.lex"*)addTextChar #"\f"; continue ()(*#line 10811.1 "ml.lex.sml"*)
)
| 612 => ((*#line 429.22 "ml.lex"*)addTextChar #"\r"; continue ()(*#line 10813.1 "ml.lex.sml"*)
)
| 616 => let val yytext=yymktext() in (*#line 430.22 "ml.lex"*)addTextChar (Char.chr(Char.ord(String.sub(yytext, 2)) - Char.ord #"@"));
continue ()(*#line 10816.1 "ml.lex.sml"*)
end
| 62 => let val yytext=yymktext() in (*#line 291.23 "ml.lex"*)tok (Tokens.CONST, yytext, source, yypos)(*#line 10818.1 "ml.lex.sml"*)
end
| 620 => ((*#line 432.22 "ml.lex"*)error (source, yypos, yypos + 2, "Illegal control escape in text constant; must be one of @ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_");
continue ()(*#line 10821.1 "ml.lex.sml"*)
)
| 625 => let val yytext=yymktext() in (*#line 434.22 "ml.lex"*)addTextNumEsc (source, yypos, yytext, 1,
{extended = NONE}, StringCvt.DEC)
; continue ()(*#line 10825.1 "ml.lex.sml"*)
end
| 632 => let val yytext=yymktext() in (*#line 438.22 "ml.lex"*)addTextNumEsc (source, yypos, yytext, 2,
{extended = NONE}, StringCvt.HEX)
; continue ()(*#line 10829.1 "ml.lex.sml"*)
end
| 643 => let val yytext=yymktext() in (*#line 442.22 "ml.lex"*)addTextNumEsc (source, yypos, yytext, 2,
{extended = SOME "\\Uxxxxxxxx numeric escapes"},
StringCvt.HEX)
; continue ()(*#line 10834.1 "ml.lex.sml"*)
end
| 646 => ((*#line 446.22 "ml.lex"*)addTextString "\""; continue ()(*#line 10836.1 "ml.lex.sml"*)
)
| 649 => ((*#line 447.22 "ml.lex"*)addTextString "\\"; continue ()(*#line 10838.1 "ml.lex.sml"*)
)
| 659 => ((*#line 448.22 "ml.lex"*)YYBEGIN TEXT_FMT; continue ()(*#line 10840.1 "ml.lex.sml"*)
)
| 665 => let val yytext=yymktext() in (*#line 449.22 "ml.lex"*)Source.newline (source, lastPos (yypos, yytext)); YYBEGIN TEXT_FMT; continue ()(*#line 10842.1 "ml.lex.sml"*)
end
| 667 => ((*#line 450.22 "ml.lex"*)error (source, yypos, yypos + 1, "Illegal escape in text constant")
; continue ()(*#line 10845.1 "ml.lex.sml"*)
)
| 672 => let val yytext=yymktext() in (*#line 452.22 "ml.lex"*)error (source, yypos, lastPos (yypos, yytext), "Unclosed text constant at end of line")
; Source.newline (source, lastPos (yypos, yytext))
; continue ()(*#line 10849.1 "ml.lex.sml"*)
end
| 674 => ((*#line 455.22 "ml.lex"*)error (source, yypos, yypos, "Illegal character in text constant")
; continue ()(*#line 10852.1 "ml.lex.sml"*)
)
| 683 => ((*#line 458.22 "ml.lex"*)continue ()(*#line 10854.1 "ml.lex.sml"*)
)
| 688 => let val yytext=yymktext() in (*#line 459.22 "ml.lex"*)Source.newline (source, lastPos (yypos, yytext)); continue ()(*#line 10856.1 "ml.lex.sml"*)
end
| 690 => ((*#line 460.22 "ml.lex"*)YYBEGIN TEXT; continue ()(*#line 10858.1 "ml.lex.sml"*)
)
| 692 => ((*#line 461.22 "ml.lex"*)error (source, yypos, yypos, "Illegal formatting character in text continuation")
; continue ()(*#line 10861.1 "ml.lex.sml"*)
)
| 696 => let val yytext=yymktext() in (*#line 466.5 "ml.lex"*)if allowLineComments ()
then ()
else error (source, yypos, lastPos (yypos, yytext),
"Line comments disallowed, compile with -default-ann 'allowLineComments true'")
; startComment (source, yypos, fn () =>
YYBEGIN INITIAL)
; YYBEGIN LINE_COMMENT
; continue ()(*#line 10870.1 "ml.lex.sml"*)
end
| 699 => ((*#line 475.5 "ml.lex"*)startComment (source, yypos, fn () =>
YYBEGIN INITIAL)
; YYBEGIN BLOCK_COMMENT
; continue ()(*#line 10875.1 "ml.lex.sml"*)
)
| 70 => let val yytext=yymktext() in (*#line 292.24 "ml.lex"*)tok (Tokens.EXPORT, yytext, source, yypos)(*#line 10877.1 "ml.lex.sml"*)
end
| 704 => let val yytext=yymktext() in (*#line 481.5 "ml.lex"*)finishComment (lastPos (yypos, yytext))
; Source.newline (source, lastPos (yypos, yytext))
; continue ()(*#line 10881.1 "ml.lex.sml"*)
end
| 706 => ((*#line 485.5 "ml.lex"*)continue ()(*#line 10883.1 "ml.lex.sml"*)
)
| 710 => let val yytext=yymktext() in (*#line 488.5 "ml.lex"*)if allowLineComments ()
then ()
else error (source, yypos, lastPos (yypos, yytext),
"Line comments disallowed, compile with -default-ann 'allowLineComments true'")
; startComment (source, yypos, fn () =>
YYBEGIN BLOCK_COMMENT)
; YYBEGIN LINE_COMMENT
; continue ()(*#line 10892.1 "ml.lex.sml"*)
end
| 713 => ((*#line 497.5 "ml.lex"*)startComment (source, yypos, fn () =>
YYBEGIN BLOCK_COMMENT)
; YYBEGIN BLOCK_COMMENT
; continue ()(*#line 10897.1 "ml.lex.sml"*)
)
| 716 => let val yytext=yymktext() in (*#line 502.5 "ml.lex"*)finishComment (lastPos (yypos,yytext))
; continue ()(*#line 10900.1 "ml.lex.sml"*)
end
| 721 => let val yytext=yymktext() in (*#line 505.5 "ml.lex"*)Source.newline (source, lastPos (yypos, yytext))
; continue ()(*#line 10903.1 "ml.lex.sml"*)
end
| 723 => ((*#line 508.5 "ml.lex"*)continue ()(*#line 10905.1 "ml.lex.sml"*)
)
| 739 => ((*#line 512.5 "ml.lex"*)startLineDir (source, yypos, fn () =>
YYBEGIN INITIAL)
; YYBEGIN LINE_DIR1
; continue ()(*#line 10910.1 "ml.lex.sml"*)
)
| 745 => let val yytext=yymktext() in (*#line 518.5 "ml.lex"*)let
fun err () =
(addCommentError "Illegal line directive"
; YYBEGIN BLOCK_COMMENT)
in
case String.split (yytext, #".") of
[line, col] =>
(YYBEGIN LINE_DIR2
; addLineDirLineCol (valOf (Int.fromString line), valOf (Int.fromString col))
handle Overflow => err () | Option => err ()
; continue ())
| _ => (err (); continue ())
end(*#line 10924.1 "ml.lex.sml"*)
end
| 755 => ((*#line 532.5 "ml.lex"*)YYBEGIN LINE_DIR3
; continue ()(*#line 10927.1 "ml.lex.sml"*)
)
| 758 => let val yytext=yymktext() in (*#line 535.5 "ml.lex"*)addLineDirFile (String.dropLast yytext)
; YYBEGIN LINE_DIR4
; continue ()(*#line 10931.1 "ml.lex.sml"*)
end
| 765 => let val yytext=yymktext() in (*#line 539.5 "ml.lex"*)finishLineDir (source, lastPos (yypos, yytext))
; continue ()(*#line 10934.1 "ml.lex.sml"*)
end
| 767 => ((*#line 542.5 "ml.lex"*)addCommentError "Illegal line directive"
; YYBEGIN BLOCK_COMMENT
; continue ()(*#line 10938.1 "ml.lex.sml"*)
)
| 78 => let val yytext=yymktext() in (*#line 293.24 "ml.lex"*)tok (Tokens.IMPORT, yytext, source, yypos)(*#line 10940.1 "ml.lex.sml"*)
end
| 797 => let val yytext=yymktext() in (*#line 548.5 "ml.lex"*)let
val file = List.nth (String.split (yytext, #"\""), 1)
val file =
if OS.Path.isAbsolute file
then file
else OS.Path.mkCanonical (OS.Path.concat (OS.Path.dir (Source.name source), file))
in
tok' (fn (_, l, r) => Tokens.SHOW_BASIS (file, l, r), yytext, source, yypos)
end(*#line 10950.1 "ml.lex.sml"*)
end
| 799 => ((*#line 560.5 "ml.lex"*)error (source, yypos, yypos, "Illegal token")
; continue ()(*#line 10953.1 "ml.lex.sml"*)
)
| 8 => ((*#line 284.21 "ml.lex"*)continue ()(*#line 10955.1 "ml.lex.sml"*)
)
| 88 => let val yytext=yymktext() in (*#line 294.26 "ml.lex"*)tok (Tokens.OVERLOAD, yytext, source, yypos)(*#line 10957.1 "ml.lex.sml"*)
end
| 94 => let val yytext=yymktext() in (*#line 295.22 "ml.lex"*)tok (Tokens.PRIM, yytext, source, yypos)(*#line 10959.1 "ml.lex.sml"*)
end
| _ => raise Internal.LexerError
) end )
val {fin,trans} = Vector.sub(Internal.tab, s)
val NewAcceptingLeaves = fin::AcceptingLeaves
in if l = !yybl then
if trans = #trans(Vector.sub(Internal.tab,0))
then action(l,NewAcceptingLeaves
) else let val newchars= if !yydone then "" else yyinput 1024
in if (String.size newchars)=0
then (yydone := true;
if (l=i0) then UserDeclarations.eof yyarg
else action(l,NewAcceptingLeaves))
else (if i0=l then yyb := newchars
else yyb := String.substring(!yyb,i0,l-i0)^newchars;
yygone := YYPosInt.+(!yygone, YYPosInt.fromInt i0);
yybl := String.size (!yyb);
scan (s,AcceptingLeaves,l-i0,0))
end
else let val NewChar = Char.ord(CharVector.sub(!yyb,l))
val NewState = Vector.sub(trans, NewChar)
in if NewState=0 then action(l,NewAcceptingLeaves)
else scan(NewState,NewAcceptingLeaves,l+1,i0)
end
end
(*
val start= if String.substring(!yyb,!yybufpos-1,1)="\n"
then !yybegin+1 else !yybegin
*)
in scan(!yybegin (* start *),nil,!yybufpos,!yybufpos)
end
in continue end
in lex
end
end
|
67693
|
(*#line 256.10 "ml.lex"*)functor MLLexFun (structure Tokens : ML_TOKENS)(*#line 1.1 "ml.lex.sml"*)
=
struct
structure UserDeclarations =
struct
(*#line 1.1 "ml.lex"*)(* Heavily modified from SML/NJ sources. *)
(* ml.lex
*
* Copyright 1989 by AT&T Bell Laboratories
*
* SML/NJ is released under a HPND-style license.
* See the file NJ-LICENSE for details.
*)
(* Copyright (C) 2009,2016-2017 <NAME>.
* Copyright (C) 1999-2006 <NAME>, <NAME>, <NAME>
* <NAME>, and <NAME>.
* Copyright (C) 1997-2000 NEC Research Institute.
*
* MLton is released under a HPND-style license.
* See the file MLton-LICENSE for details.
*)
type svalue = Tokens.svalue
type pos = SourcePos.t
type lexresult = (svalue, pos) Tokens.token
type lexarg = {source: Source.t}
type arg = lexarg
type ('a,'b) token = ('a,'b) Tokens.token
local
open Control.Elaborate
in
val allowLineComments = fn () => current allowLineComments
val allowExtendedNumConsts = fn () => current allowExtendedNumConsts
val allowExtendedTextConsts = fn () => current allowExtendedTextConsts
end
fun lastPos (yypos, yytext) = yypos + size yytext - 1
fun tok (t, x, s, l) =
let
val left = Source.getPos (s, l)
val right = Source.getPos (s, lastPos (l, x))
in
t (left, right)
end
fun tok' (t, x, s, l) = tok (fn (l, r) => t (x, l, r), x, s, l)
fun error' (left, right, msg) =
Control.errorStr (Region.make {left = left, right = right}, msg)
fun error (source, left, right, msg) =
error' (Source.getPos (source, left), Source.getPos (source, right), msg)
(* Comments *)
local
val commentErrors: string list ref = ref []
val commentLeft = ref SourcePos.bogus
val commentStack: (int -> unit) list ref = ref []
in
fun addCommentError msg =
List.push (commentErrors, msg)
val inComment = fn () => not (List.isEmpty (!commentStack))
fun startComment (source, yypos, th) =
if inComment ()
then List.push (commentStack, fn _ => th ())
else (commentErrors := []
; commentLeft := Source.getPos (source, yypos)
; List.push (commentStack, fn yypos =>
(List.foreach (!commentErrors, fn msg =>
error' (!commentLeft,
Source.getPos (source, yypos),
msg))
; th ())))
fun finishComment yypos =
(List.pop commentStack) yypos
end
(* Line Directives *)
local
val lineDirCol: int ref = ref ~1
val lineDirFile: File.t option ref = ref NONE
val lineDirLine: int ref = ref ~1
in
fun startLineDir (source, yypos, th) =
let
val _ = lineDirCol := ~1
val _ = lineDirFile := NONE
val _ = lineDirLine := ~1
in
startComment (source, yypos, th)
end
fun addLineDirLineCol (line, col) =
let
val _ = lineDirLine := line
val _ = lineDirCol := col
in
()
end
fun addLineDirFile file =
let
val _ = lineDirFile := SOME file
in
()
end
fun finishLineDir (source, yypos) =
let
val col = !lineDirCol
val file = !lineDirFile
val line = !lineDirLine
val _ = lineDirCol := ~1
val _ = lineDirFile := NONE
val _ = lineDirLine := ~1
in
finishComment yypos
; Source.lineDirective (source, file,
{lineNum = line,
lineStart = yypos + 1 - col})
end
end
(* Numeric Constants *)
local
fun doit (source, yypos, yytext, drop, {extended: string option}, mkTok) =
let
val left = yypos
val right = lastPos (yypos, yytext)
val extended =
if String.contains (yytext, #"_")
then SOME (Option.fold
(extended, "'_' separators", fn (msg1, msg2) =>
msg1 ^ " and " ^ msg2))
else extended
val _ =
case extended of
NONE => ()
| SOME msg =>
if allowExtendedNumConsts ()
then ()
else error (source, left, right,
concat ["Extended numeric constants (using ", msg,
") disallowed, compile with -default-ann 'allowExtendedNumConsts true'"])
in
mkTok (String.keepAll (String.dropPrefix (yytext, drop), fn c => not (c = #"_")),
{extended = Option.isSome extended},
Source.getPos (source, left), Source.getPos (source, right))
end
in
fun real (source, yypos, yytext) =
doit (source, yypos, yytext, 0, {extended = NONE}, fn (digits, {extended: bool}, l, r) =>
Tokens.REAL (digits, l, r))
fun int (source, yypos, yytext, drop, {extended: string option}, {negate: bool}, radix) =
doit (source, yypos, yytext, drop, {extended = extended}, fn (digits, {extended: bool}, l, r) =>
Tokens.INT ({digits = digits,
extended = extended,
negate = negate,
radix = radix},
l, r))
fun word (source, yypos, yytext, drop, {extended: string option}, radix) =
doit (source, yypos, yytext, drop, {extended = extended}, fn (digits, {extended: bool}, l, r) =>
Tokens.WORD ({digits = digits,
radix = radix},
l, r))
end
(* Text Constants *)
local
val chars: IntInf.t list ref = ref []
val inText = ref false
val textLeft = ref SourcePos.bogus
val textFinishFn: (IntInf.t vector * SourcePos.t * SourcePos.t -> lexresult) ref = ref (fn _ => raise Fail "textFinish")
in
fun startText (tl, tf) =
let
val _ = chars := []
val _ = inText := true
val _ = textLeft := tl
val _ = textFinishFn := tf
in
()
end
fun finishText textRight =
let
val cs = Vector.fromListRev (!chars)
val tl = !textLeft
val tr = textRight
val tf = !textFinishFn
val _ = chars := []
val _ = inText := false
val _ = textLeft := SourcePos.bogus
val _ = textFinishFn := (fn _ => raise Fail "textFinish")
in
tf (cs, tl, tr)
end
val inText = fn () => !inText
fun addTextString (s: string) =
chars := String.fold (s, !chars, fn (c, ac) => Int.toIntInf (Char.ord c) :: ac)
fun addTextCharCode (i: IntInf.int) = List.push (chars, i)
end
fun addTextChar (c: char) = addTextString (String.fromChar c)
fun addTextNumEsc (source, yypos, yytext, drop, {extended: string option}, radix): unit =
let
val left = yypos
val right = lastPos (yypos, yytext)
val _ =
case extended of
NONE => ()
| SOME msg =>
if allowExtendedTextConsts ()
then ()
else error (source, left, right,
concat ["Extended text constants (using ", msg,
") disallowed, compile with -default-ann 'allowExtendedTextConsts true'"])
in
case StringCvt.scanString (fn r => IntInf.scan (radix, r)) (String.dropPrefix (yytext, drop)) of
NONE => error (source, left, right, "Illegal numeric escape in text constant")
| SOME i => addTextCharCode i
end
fun addTextUTF8 (source, yypos, yytext): unit =
let
val left = yypos
val right = lastPos (yypos, yytext)
in
if not (allowExtendedTextConsts ())
then error (source, left, right,
"Extended text constants (using UTF-8 byte sequences) disallowed, compile with -default-ann 'allowExtendedTextConsts true'")
else addTextString yytext
end
(* EOF *)
val eof: lexarg -> lexresult =
fn {source, ...} =>
let
val _ = Source.newline (source, ~1)
val pos = Source.getPos (source, ~1)
val _ =
if inComment ()
then error' (pos, SourcePos.bogus, "Unclosed comment at end of file")
else ()
val _ =
if inText ()
then error' (pos, SourcePos.bogus, "Unclosed text constant at end of file")
else ()
in
Tokens.EOF (pos, SourcePos.bogus)
end
(*#line 256.1 "ml.lex.sml"*)
end (* end of user routines *)
exception LexError (* raised if illegal leaf action tried *)
structure Internal =
struct
datatype yyfinstate = N of int
type statedata = {fin : yyfinstate list, trans: int Vector.vector}
(* transition & final state table *)
val tab = let
fun decode s k =
let val k' = k + k
val hi = Char.ord(String.sub(s, k'))
val lo = Char.ord(String.sub(s, k' + 1))
in hi * 256 + lo end
val s = [
(0,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(1,256,
"\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\001\077\001\080\001\077\001\077\001\079\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\001\077\000\200\001\076\001\073\000\200\000\200\000\200\001\071\
\\001\048\001\047\000\200\000\200\001\046\001\044\001\041\000\200\
\\001\025\001\022\001\022\001\022\001\022\001\022\001\022\001\022\
\\001\022\001\022\001\020\001\019\000\200\001\017\000\200\000\200\
\\000\200\000\045\000\045\000\045\000\045\000\045\000\045\000\045\
\\000\045\000\045\000\045\000\045\000\045\000\045\000\045\000\045\
\\000\045\000\045\000\045\000\045\000\045\000\045\000\045\000\045\
\\000\045\000\045\000\045\001\016\000\200\001\015\000\200\000\201\
\\000\200\000\186\000\045\000\182\000\173\000\154\000\146\000\045\
\\000\140\000\128\000\045\000\045\000\121\000\045\000\115\000\105\
\\000\045\000\045\000\098\000\075\000\068\000\045\000\065\000\050\
\\000\045\000\045\000\045\000\044\000\043\000\042\000\020\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019"
),
(3,256,
"\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\127\001\081\001\081\001\126\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\091\001\091\001\125\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\092\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\089\001\089\001\089\001\089\001\089\001\089\001\089\001\089\
\\001\089\001\089\001\089\001\089\001\089\001\089\001\089\001\089\
\\001\089\001\089\001\089\001\089\001\089\001\089\001\089\001\089\
\\001\089\001\089\001\089\001\089\001\089\001\089\001\089\001\089\
\\001\086\001\086\001\086\001\086\001\086\001\086\001\086\001\086\
\\001\086\001\086\001\086\001\086\001\086\001\086\001\086\001\086\
\\001\082\001\082\001\082\001\082\001\082\001\082\001\082\001\082\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081"
),
(5,256,
"\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\130\001\133\001\130\001\130\001\132\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\130\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\129\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128"
),
(7,256,
"\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\141\001\134\001\134\001\140\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\137\001\134\001\135\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134"
),
(9,256,
"\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\144\001\142\001\142\001\143\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142"
),
(11,256,
"\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\000\000\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\146\001\146\001\146\001\146\001\146\001\146\001\146\001\146\
\\001\146\001\146\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145"
),
(13,256,
"\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\152\000\000\001\152\001\152\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\152\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\150\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145"
),
(15,256,
"\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\157\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\159\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156"
),
(17,256,
"\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\160\000\000\001\160\001\160\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\160\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\150\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145"
),
(20,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\021\000\000\000\021\000\021\000\021\000\021\000\000\
\\000\000\000\000\000\021\000\021\000\000\000\021\000\000\000\021\
\\000\035\000\022\000\022\000\022\000\022\000\022\000\022\000\022\
\\000\022\000\022\000\021\000\000\000\021\000\021\000\021\000\021\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(21,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\021\000\000\000\021\000\021\000\021\000\021\000\000\
\\000\000\000\000\000\021\000\021\000\000\000\021\000\000\000\021\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\021\000\000\000\021\000\021\000\021\000\021\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(22,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\028\000\000\
\\000\022\000\022\000\022\000\022\000\022\000\022\000\022\000\022\
\\000\022\000\022\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\023\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\027\
\\000\000\000\000\000\000\000\000\000\000\000\023\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(23,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\025\000\025\000\025\000\025\000\025\000\025\000\025\000\025\
\\000\025\000\025\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\024\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(24,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\025\000\025\000\025\000\025\000\025\000\025\000\025\000\025\
\\000\025\000\025\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(25,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\025\000\025\000\025\000\025\000\025\000\025\000\025\000\025\
\\000\025\000\025\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\026\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(27,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\022\000\022\000\022\000\022\000\022\000\022\000\022\000\022\
\\000\022\000\022\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\027\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(28,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\029\000\029\000\029\000\029\000\029\000\029\000\029\000\029\
\\000\029\000\029\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(29,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\029\000\029\000\029\000\029\000\029\000\029\000\029\000\029\
\\000\029\000\029\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\030\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\034\
\\000\000\000\000\000\000\000\000\000\000\000\030\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(30,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\032\000\032\000\032\000\032\000\032\000\032\000\032\000\032\
\\000\032\000\032\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\031\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(31,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\032\000\032\000\032\000\032\000\032\000\032\000\032\000\032\
\\000\032\000\032\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(32,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\032\000\032\000\032\000\032\000\032\000\032\000\032\000\032\
\\000\032\000\032\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\033\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(34,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\029\000\029\000\029\000\029\000\029\000\029\000\029\000\029\
\\000\029\000\029\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\034\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(35,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\028\000\000\
\\000\022\000\022\000\022\000\022\000\022\000\022\000\022\000\022\
\\000\022\000\022\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\023\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\027\
\\000\000\000\000\000\039\000\000\000\000\000\023\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\036\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(36,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\037\000\037\000\037\000\037\000\037\000\037\000\037\000\037\
\\000\037\000\037\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\037\000\037\000\037\000\037\000\037\000\037\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\037\000\037\000\037\000\037\000\037\000\037\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(37,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\037\000\037\000\037\000\037\000\037\000\037\000\037\000\037\
\\000\037\000\037\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\037\000\037\000\037\000\037\000\037\000\037\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\038\
\\000\000\000\037\000\037\000\037\000\037\000\037\000\037\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(39,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\040\000\040\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(40,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\040\000\040\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\041\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(45,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(47,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\048\000\000\000\048\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\048\000\048\000\000\000\048\000\000\000\048\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\048\000\048\000\048\
\\000\048\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\000\000\048\000\000\000\048\000\000\
\\000\048\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(48,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\048\000\000\000\048\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\048\000\048\000\000\000\048\000\000\000\048\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\048\000\048\000\048\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(49,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\049\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\000\000\000\000\000\000\000\000\049\
\\000\000\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(50,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\058\000\051\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(51,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\052\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(52,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\053\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(53,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\054\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(54,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\055\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(55,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\056\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(56,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\057\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(58,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\062\000\046\000\046\
\\000\046\000\059\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(59,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\060\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(60,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\061\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(62,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\063\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(63,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\064\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(65,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\066\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(66,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\067\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(68,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\072\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\069\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(69,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\070\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(70,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\071\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(72,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\073\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(73,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\074\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(75,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\092\000\084\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\076\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(76,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\077\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(77,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\078\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(78,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\079\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(79,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\080\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(80,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\081\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(81,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\082\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(82,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\083\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(84,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\085\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(85,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\086\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(86,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\087\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(87,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\088\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(88,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\089\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(89,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\090\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(90,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\091\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(92,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\093\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(93,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\094\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(94,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\095\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(95,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\096\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(96,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\097\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(98,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\101\000\046\000\046\000\046\000\099\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(99,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\100\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(101,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\102\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(102,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\103\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(103,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\104\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(105,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\114\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\111\000\046\000\106\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(106,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\107\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(107,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\108\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(108,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\109\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(109,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\110\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(111,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\112\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(112,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\113\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(115,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\116\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(116,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\117\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(117,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\118\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(118,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\119\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(119,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\120\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(121,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\126\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\122\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(122,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\123\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(123,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\124\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(124,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\125\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(126,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\127\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(128,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\139\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\129\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(129,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\134\000\046\000\046\000\130\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(130,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\131\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(131,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\132\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(132,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\133\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(134,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\135\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(135,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\136\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(136,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\137\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(137,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\138\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(140,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\141\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(141,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\142\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(142,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\143\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(143,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\144\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(144,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\145\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(146,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\153\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\147\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(147,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\148\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(148,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\149\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(149,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\150\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(150,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\151\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(151,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\152\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(154,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\170\000\046\000\168\000\046\
\\000\046\000\163\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\155\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(155,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\156\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(156,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\157\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(157,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\158\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(158,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\159\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(159,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\160\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(160,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\161\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(161,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\162\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(163,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\164\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(164,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\165\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(165,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\166\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(166,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\167\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(168,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\169\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(170,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\171\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(171,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\172\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(173,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\175\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\174\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(175,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\176\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(176,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\177\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(177,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\178\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(178,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\179\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(179,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\180\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(180,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\181\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(182,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\183\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(183,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\184\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(184,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\185\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(186,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\194\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\188\000\046\
\\000\046\000\046\000\046\000\187\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(188,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\189\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(189,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\190\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(190,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\191\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(191,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\192\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(192,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\193\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(194,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\195\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(195,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\196\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(196,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\197\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(197,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\198\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(198,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\199\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(201,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\008\000\253\000\232\000\000\000\226\000\000\000\000\
\\000\000\000\220\000\000\000\000\000\000\000\000\000\000\000\212\
\\000\208\000\000\000\000\000\202\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(202,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\203\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(203,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\204\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(204,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\205\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(205,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\206\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(206,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\207\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(208,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\209\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(209,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\210\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(210,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\211\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(212,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\213\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(213,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\214\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(214,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\215\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(215,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\216\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(216,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\217\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(217,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\218\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(218,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\219\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(220,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\221\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(221,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\222\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(222,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\223\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(223,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\224\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(224,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\225\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(226,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\227\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(227,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\228\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(228,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\229\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(229,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\230\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(230,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\231\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(232,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\233\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(233,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\237\000\234\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(234,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\235\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(235,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\236\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(237,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\238\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(238,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\239\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(239,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\240\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(240,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\241\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(241,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\242\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(242,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\243\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(243,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\244\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(244,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\245\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(245,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\246\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(246,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\247\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(247,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\248\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(248,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\249\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(249,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\250\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(250,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\251\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(251,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\252\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(253,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\254\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(254,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\255\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(255,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(256,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\001\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(257,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\002\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(258,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\003\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(259,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\004\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(260,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\001\005\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(261,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\006\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(262,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\007\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(264,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\009\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(265,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\010\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(266,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\011\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(267,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\001\012\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(268,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\013\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(269,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\014\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(273,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\021\000\000\000\021\000\021\000\021\000\021\000\000\
\\000\000\000\000\000\021\000\021\000\000\000\021\000\000\000\021\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\021\000\000\000\021\000\021\001\018\000\021\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(276,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\021\000\000\000\021\000\021\000\021\000\021\000\000\
\\000\000\000\000\000\021\000\021\000\000\000\021\000\000\000\021\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\021\000\000\000\021\000\021\001\021\000\021\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(278,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\028\000\000\
\\001\024\001\024\001\024\001\024\001\024\001\024\001\024\001\024\
\\001\024\001\024\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\023\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\023\
\\000\000\000\000\000\000\000\000\000\000\000\023\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(279,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\024\001\024\001\024\001\024\001\024\001\024\001\024\001\024\
\\001\024\001\024\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\023\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(281,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\028\000\000\
\\001\024\001\024\001\024\001\024\001\024\001\024\001\024\001\024\
\\001\024\001\024\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\023\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\023\
\\000\000\000\000\001\038\000\000\000\000\000\023\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\029\
\\001\026\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(282,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\027\001\027\001\027\001\027\001\027\001\027\001\027\001\027\
\\001\027\001\027\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\027\001\027\001\027\001\027\001\027\001\027\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\027\001\027\001\027\001\027\001\027\001\027\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(283,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\027\001\027\001\027\001\027\001\027\001\027\001\027\001\027\
\\001\027\001\027\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\027\001\027\001\027\001\027\001\027\001\027\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\028\
\\000\000\001\027\001\027\001\027\001\027\001\027\001\027\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(285,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\036\001\036\001\036\001\036\001\036\001\036\001\036\001\036\
\\001\036\001\036\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\033\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\030\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(286,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\031\001\031\001\031\001\031\001\031\001\031\001\031\001\031\
\\001\031\001\031\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\031\001\031\001\031\001\031\001\031\001\031\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\031\001\031\001\031\001\031\001\031\001\031\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(287,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\031\001\031\001\031\001\031\001\031\001\031\001\031\001\031\
\\001\031\001\031\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\031\001\031\001\031\001\031\001\031\001\031\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\032\
\\000\000\001\031\001\031\001\031\001\031\001\031\001\031\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(289,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\034\001\034\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(290,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\034\001\034\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\035\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(292,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\036\001\036\001\036\001\036\001\036\001\036\001\036\001\036\
\\001\036\001\036\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\037\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(294,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\039\001\039\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(295,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\039\001\039\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\040\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(297,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\001\042\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(298,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\001\043\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(300,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\021\000\000\000\021\000\021\000\021\000\021\000\000\
\\000\000\000\000\000\021\000\021\000\000\000\021\000\000\000\021\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\021\000\000\000\021\000\021\001\045\000\021\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(304,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\049\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(305,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\051\000\000\000\000\000\000\000\000\
\\000\000\001\050\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(307,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\066\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\052\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(308,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\053\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(309,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\054\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(310,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\055\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(311,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\056\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(312,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\057\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(313,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\058\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(314,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\059\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(315,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\060\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(316,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\061\000\000\001\061\001\061\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\061\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(317,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\061\000\000\001\061\001\061\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\061\000\000\001\062\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(318,256,
"\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\063\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062"
),
(319,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\063\000\000\001\063\001\063\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\063\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\064\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(320,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\065\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(322,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\067\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(323,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\001\068\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(324,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\001\069\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(325,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\070\000\000\001\070\001\070\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\070\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(327,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\072\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\072\001\072\001\072\001\072\001\072\001\072\001\072\001\072\
\\001\072\001\072\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\072\001\072\001\072\001\072\001\072\001\072\001\072\
\\001\072\001\072\001\072\001\072\001\072\001\072\001\072\001\072\
\\001\072\001\072\001\072\001\072\001\072\001\072\001\072\001\072\
\\001\072\001\072\001\072\000\000\000\000\000\000\000\000\001\072\
\\000\000\001\072\001\072\001\072\001\072\001\072\001\072\001\072\
\\001\072\001\072\001\072\001\072\001\072\001\072\001\072\001\072\
\\001\072\001\072\001\072\001\072\001\072\001\072\001\072\001\072\
\\001\072\001\072\001\072\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(329,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\021\001\075\000\021\000\021\000\021\000\021\000\000\
\\000\000\000\000\000\021\000\021\000\000\000\021\000\000\000\021\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\021\000\000\000\021\000\021\000\021\000\021\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\074\000\021\000\000\000\021\000\000\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(333,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\078\000\000\001\078\001\078\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\078\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(335,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\080\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(338,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\083\001\083\001\083\001\083\001\083\001\083\001\083\001\083\
\\001\083\001\083\001\083\001\083\001\083\001\083\001\083\001\083\
\\001\083\001\083\001\083\001\083\001\083\001\083\001\083\001\083\
\\001\083\001\083\001\083\001\083\001\083\001\083\001\083\001\083\
\\001\083\001\083\001\083\001\083\001\083\001\083\001\083\001\083\
\\001\083\001\083\001\083\001\083\001\083\001\083\001\083\001\083\
\\001\083\001\083\001\083\001\083\001\083\001\083\001\083\001\083\
\\001\083\001\083\001\083\001\083\001\083\001\083\001\083\001\083\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(339,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\084\001\084\001\084\001\084\001\084\001\084\001\084\001\084\
\\001\084\001\084\001\084\001\084\001\084\001\084\001\084\001\084\
\\001\084\001\084\001\084\001\084\001\084\001\084\001\084\001\084\
\\001\084\001\084\001\084\001\084\001\084\001\084\001\084\001\084\
\\001\084\001\084\001\084\001\084\001\084\001\084\001\084\001\084\
\\001\084\001\084\001\084\001\084\001\084\001\084\001\084\001\084\
\\001\084\001\084\001\084\001\084\001\084\001\084\001\084\001\084\
\\001\084\001\084\001\084\001\084\001\084\001\084\001\084\001\084\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(340,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\085\001\085\001\085\001\085\001\085\001\085\001\085\001\085\
\\001\085\001\085\001\085\001\085\001\085\001\085\001\085\001\085\
\\001\085\001\085\001\085\001\085\001\085\001\085\001\085\001\085\
\\001\085\001\085\001\085\001\085\001\085\001\085\001\085\001\085\
\\001\085\001\085\001\085\001\085\001\085\001\085\001\085\001\085\
\\001\085\001\085\001\085\001\085\001\085\001\085\001\085\001\085\
\\001\085\001\085\001\085\001\085\001\085\001\085\001\085\001\085\
\\001\085\001\085\001\085\001\085\001\085\001\085\001\085\001\085\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(342,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\087\001\087\001\087\001\087\001\087\001\087\001\087\001\087\
\\001\087\001\087\001\087\001\087\001\087\001\087\001\087\001\087\
\\001\087\001\087\001\087\001\087\001\087\001\087\001\087\001\087\
\\001\087\001\087\001\087\001\087\001\087\001\087\001\087\001\087\
\\001\087\001\087\001\087\001\087\001\087\001\087\001\087\001\087\
\\001\087\001\087\001\087\001\087\001\087\001\087\001\087\001\087\
\\001\087\001\087\001\087\001\087\001\087\001\087\001\087\001\087\
\\001\087\001\087\001\087\001\087\001\087\001\087\001\087\001\087\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(343,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\088\001\088\001\088\001\088\001\088\001\088\001\088\001\088\
\\001\088\001\088\001\088\001\088\001\088\001\088\001\088\001\088\
\\001\088\001\088\001\088\001\088\001\088\001\088\001\088\001\088\
\\001\088\001\088\001\088\001\088\001\088\001\088\001\088\001\088\
\\001\088\001\088\001\088\001\088\001\088\001\088\001\088\001\088\
\\001\088\001\088\001\088\001\088\001\088\001\088\001\088\001\088\
\\001\088\001\088\001\088\001\088\001\088\001\088\001\088\001\088\
\\001\088\001\088\001\088\001\088\001\088\001\088\001\088\001\088\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(345,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\090\001\090\001\090\001\090\001\090\001\090\001\090\001\090\
\\001\090\001\090\001\090\001\090\001\090\001\090\001\090\001\090\
\\001\090\001\090\001\090\001\090\001\090\001\090\001\090\001\090\
\\001\090\001\090\001\090\001\090\001\090\001\090\001\090\001\090\
\\001\090\001\090\001\090\001\090\001\090\001\090\001\090\001\090\
\\001\090\001\090\001\090\001\090\001\090\001\090\001\090\001\090\
\\001\090\001\090\001\090\001\090\001\090\001\090\001\090\001\090\
\\001\090\001\090\001\090\001\090\001\090\001\090\001\090\001\090\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(348,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\122\001\124\001\122\001\122\001\123\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\122\000\000\001\121\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\118\001\118\001\118\001\118\001\118\001\118\001\118\001\118\
\\001\118\001\118\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\001\109\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\108\000\000\001\105\000\000\
\\000\000\001\104\001\103\000\000\000\000\000\000\001\102\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\001\101\000\000\
\\000\000\000\000\001\100\000\000\001\099\001\094\001\093\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(350,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
\\001\095\001\095\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\095\001\095\001\095\001\095\001\095\001\095\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\095\001\095\001\095\001\095\001\095\001\095\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(351,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\096\001\096\001\096\001\096\001\096\001\096\001\096\001\096\
\\001\096\001\096\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\096\001\096\001\096\001\096\001\096\001\096\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\096\001\096\001\096\001\096\001\096\001\096\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(352,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\097\001\097\001\097\001\097\001\097\001\097\001\097\001\097\
\\001\097\001\097\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\097\001\097\001\097\001\097\001\097\001\097\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\097\001\097\001\097\001\097\001\097\001\097\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(353,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\098\001\098\001\098\001\098\001\098\001\098\001\098\001\098\
\\001\098\001\098\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\098\001\098\001\098\001\098\001\098\001\098\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\098\001\098\001\098\001\098\001\098\001\098\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(361,256,
"\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\000\000\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\107\001\107\001\107\001\107\001\107\001\107\001\107\001\107\
\\001\107\001\107\001\107\001\107\001\107\001\107\001\107\001\107\
\\001\107\001\107\001\107\001\107\001\107\001\107\001\107\001\107\
\\001\107\001\107\001\107\001\107\001\107\001\107\001\107\001\107\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106"
),
(365,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\110\001\110\001\110\001\110\001\110\001\110\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\110\001\110\001\110\001\110\001\110\001\110\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(366,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
\\001\111\001\111\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\111\001\111\001\111\001\111\001\111\001\111\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\111\001\111\001\111\001\111\001\111\001\111\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(367,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\112\001\112\001\112\001\112\001\112\001\112\001\112\001\112\
\\001\112\001\112\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\112\001\112\001\112\001\112\001\112\001\112\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\112\001\112\001\112\001\112\001\112\001\112\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(368,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\113\001\113\001\113\001\113\001\113\001\113\001\113\001\113\
\\001\113\001\113\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\113\001\113\001\113\001\113\001\113\001\113\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\113\001\113\001\113\001\113\001\113\001\113\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(369,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\114\001\114\001\114\001\114\001\114\001\114\001\114\001\114\
\\001\114\001\114\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\114\001\114\001\114\001\114\001\114\001\114\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\114\001\114\001\114\001\114\001\114\001\114\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(370,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\115\001\115\001\115\001\115\001\115\001\115\001\115\001\115\
\\001\115\001\115\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\115\001\115\001\115\001\115\001\115\001\115\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\115\001\115\001\115\001\115\001\115\001\115\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(371,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\116\001\116\001\116\001\116\001\116\001\116\001\116\001\116\
\\001\116\001\116\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\116\001\116\001\116\001\116\001\116\001\116\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\116\001\116\001\116\001\116\001\116\001\116\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(372,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\117\001\117\001\117\001\117\001\117\001\117\001\117\001\117\
\\001\117\001\117\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\117\001\117\001\117\001\117\001\117\001\117\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\117\001\117\001\117\001\117\001\117\001\117\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(374,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\119\001\119\001\119\001\119\001\119\001\119\001\119\001\119\
\\001\119\001\119\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(375,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\120\001\120\001\120\001\120\001\120\001\120\001\120\001\120\
\\001\120\001\120\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(378,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\122\000\000\001\122\001\122\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\122\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(379,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\124\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(382,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\127\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(386,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\131\000\000\001\131\001\131\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\131\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(388,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\133\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(391,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\136\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(393,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\138\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(394,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\139\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(396,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\141\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(399,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\144\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(402,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\001\148\000\000\
\\001\147\001\147\001\147\001\147\001\147\001\147\001\147\001\147\
\\001\147\001\147\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(404,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\149\001\149\001\149\001\149\001\149\001\149\001\149\001\149\
\\001\149\001\149\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(406,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\151\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(408,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\155\000\000\001\155\001\155\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\155\000\000\001\154\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\153\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(412,256,
"\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\158\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157"
),
(416,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\161\000\000\001\161\001\161\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\161\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\153\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(0, 0, "")]
fun f(n, i, x) = (n, Vector.tabulate(i, decode x))
val s = Pervasive.List.map f (Pervasive.List.rev (tl (Pervasive.List.rev s)))
exception LexHackingError
fun look ((j,x)::r, i: int) = if i = j then x else look(r, i)
| look ([], i) = raise LexHackingError
fun g {fin=x, trans=i} = {fin=x, trans=look(s,i)}
in Vector.fromList(Pervasive.List.map g
[{fin = [], trans = 0},
{fin = [], trans = 1},
{fin = [], trans = 1},
{fin = [], trans = 3},
{fin = [], trans = 3},
{fin = [], trans = 5},
{fin = [], trans = 5},
{fin = [], trans = 7},
{fin = [], trans = 7},
{fin = [], trans = 9},
{fin = [], trans = 9},
{fin = [], trans = 11},
{fin = [], trans = 11},
{fin = [], trans = 13},
{fin = [], trans = 13},
{fin = [], trans = 15},
{fin = [], trans = 15},
{fin = [], trans = 17},
{fin = [], trans = 17},
{fin = [(N 799)], trans = 0},
{fin = [(N 427),(N 799)], trans = 20},
{fin = [(N 427)], trans = 21},
{fin = [(N 521)], trans = 22},
{fin = [], trans = 23},
{fin = [], trans = 24},
{fin = [(N 512)], trans = 25},
{fin = [], trans = 25},
{fin = [], trans = 27},
{fin = [], trans = 28},
{fin = [(N 512)], trans = 29},
{fin = [], trans = 30},
{fin = [], trans = 31},
{fin = [(N 512)], trans = 32},
{fin = [], trans = 32},
{fin = [], trans = 34},
{fin = [(N 521)], trans = 35},
{fin = [], trans = 36},
{fin = [(N 534)], trans = 37},
{fin = [], trans = 37},
{fin = [], trans = 39},
{fin = [(N 547)], trans = 40},
{fin = [], trans = 40},
{fin = [(N 144),(N 799)], trans = 0},
{fin = [(N 142),(N 427),(N 799)], trans = 21},
{fin = [(N 140),(N 799)], trans = 0},
{fin = [(N 386),(N 799)], trans = 45},
{fin = [(N 386)], trans = 45},
{fin = [], trans = 47},
{fin = [(N 486)], trans = 48},
{fin = [(N 439)], trans = 49},
{fin = [(N 386),(N 799)], trans = 50},
{fin = [(N 386)], trans = 51},
{fin = [(N 386)], trans = 52},
{fin = [(N 374),(N 386)], trans = 53},
{fin = [(N 386)], trans = 54},
{fin = [(N 386)], trans = 55},
{fin = [(N 386)], trans = 56},
{fin = [(N 383),(N 386)], trans = 45},
{fin = [(N 386)], trans = 58},
{fin = [(N 386)], trans = 59},
{fin = [(N 386)], trans = 60},
{fin = [(N 369),(N 386)], trans = 45},
{fin = [(N 386)], trans = 62},
{fin = [(N 386)], trans = 63},
{fin = [(N 363),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 65},
{fin = [(N 386)], trans = 66},
{fin = [(N 357),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 68},
{fin = [(N 386)], trans = 69},
{fin = [(N 386)], trans = 70},
{fin = [(N 353),(N 386)], trans = 45},
{fin = [(N 386)], trans = 72},
{fin = [(N 386)], trans = 73},
{fin = [(N 348),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 75},
{fin = [(N 386)], trans = 76},
{fin = [(N 386)], trans = 77},
{fin = [(N 386)], trans = 78},
{fin = [(N 386)], trans = 79},
{fin = [(N 333),(N 386)], trans = 80},
{fin = [(N 386)], trans = 81},
{fin = [(N 386)], trans = 82},
{fin = [(N 343),(N 386)], trans = 45},
{fin = [(N 386)], trans = 84},
{fin = [(N 316),(N 386)], trans = 85},
{fin = [(N 386)], trans = 86},
{fin = [(N 386)], trans = 87},
{fin = [(N 386)], trans = 88},
{fin = [(N 386)], trans = 89},
{fin = [(N 386)], trans = 90},
{fin = [(N 326),(N 386)], trans = 45},
{fin = [(N 386)], trans = 92},
{fin = [(N 386)], trans = 93},
{fin = [(N 386)], trans = 94},
{fin = [(N 386)], trans = 95},
{fin = [(N 386)], trans = 96},
{fin = [(N 312),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 98},
{fin = [(N 386)], trans = 99},
{fin = [(N 304),(N 386)], trans = 45},
{fin = [(N 386)], trans = 101},
{fin = [(N 386)], trans = 102},
{fin = [(N 386)], trans = 103},
{fin = [(N 300),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 105},
{fin = [(N 386)], trans = 106},
{fin = [(N 386)], trans = 107},
{fin = [(N 386)], trans = 108},
{fin = [(N 386)], trans = 109},
{fin = [(N 294),(N 386)], trans = 45},
{fin = [(N 282),(N 386)], trans = 111},
{fin = [(N 386)], trans = 112},
{fin = [(N 287),(N 386)], trans = 45},
{fin = [(N 279),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 115},
{fin = [(N 386)], trans = 116},
{fin = [(N 386)], trans = 117},
{fin = [(N 386)], trans = 118},
{fin = [(N 386)], trans = 119},
{fin = [(N 276),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 121},
{fin = [(N 386)], trans = 122},
{fin = [(N 386)], trans = 123},
{fin = [(N 386)], trans = 124},
{fin = [(N 269),(N 386)], trans = 45},
{fin = [(N 386)], trans = 126},
{fin = [(N 263),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 128},
{fin = [(N 238),(N 386)], trans = 129},
{fin = [(N 386)], trans = 130},
{fin = [(N 386)], trans = 131},
{fin = [(N 252),(N 386)], trans = 132},
{fin = [(N 259),(N 386)], trans = 45},
{fin = [(N 386)], trans = 134},
{fin = [(N 386)], trans = 135},
{fin = [(N 386)], trans = 136},
{fin = [(N 386)], trans = 137},
{fin = [(N 246),(N 386)], trans = 45},
{fin = [(N 235),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 140},
{fin = [(N 386)], trans = 141},
{fin = [(N 386)], trans = 142},
{fin = [(N 386)], trans = 143},
{fin = [(N 386)], trans = 144},
{fin = [(N 232),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 146},
{fin = [(N 386)], trans = 147},
{fin = [(N 217),(N 386)], trans = 148},
{fin = [(N 386)], trans = 149},
{fin = [(N 386)], trans = 150},
{fin = [(N 386)], trans = 151},
{fin = [(N 225),(N 386)], trans = 45},
{fin = [(N 213),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 154},
{fin = [(N 386)], trans = 155},
{fin = [(N 386)], trans = 156},
{fin = [(N 386)], trans = 157},
{fin = [(N 386)], trans = 158},
{fin = [(N 386)], trans = 159},
{fin = [(N 386)], trans = 160},
{fin = [(N 386)], trans = 161},
{fin = [(N 210),(N 386)], trans = 45},
{fin = [(N 386)], trans = 163},
{fin = [(N 386)], trans = 164},
{fin = [(N 386)], trans = 165},
{fin = [(N 386)], trans = 166},
{fin = [(N 200),(N 386)], trans = 45},
{fin = [(N 386)], trans = 168},
{fin = [(N 193),(N 386)], trans = 45},
{fin = [(N 386)], trans = 170},
{fin = [(N 386)], trans = 171},
{fin = [(N 189),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 173},
{fin = [(N 184),(N 386)], trans = 45},
{fin = [(N 386)], trans = 175},
{fin = [(N 386)], trans = 176},
{fin = [(N 386)], trans = 177},
{fin = [(N 386)], trans = 178},
{fin = [(N 386)], trans = 179},
{fin = [(N 386)], trans = 180},
{fin = [(N 181),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 182},
{fin = [(N 386)], trans = 183},
{fin = [(N 386)], trans = 184},
{fin = [(N 172),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 186},
{fin = [(N 167),(N 386)], trans = 45},
{fin = [(N 386)], trans = 188},
{fin = [(N 156),(N 386)], trans = 189},
{fin = [(N 386)], trans = 190},
{fin = [(N 386)], trans = 191},
{fin = [(N 386)], trans = 192},
{fin = [(N 164),(N 386)], trans = 45},
{fin = [(N 386)], trans = 194},
{fin = [(N 386)], trans = 195},
{fin = [(N 386)], trans = 196},
{fin = [(N 386)], trans = 197},
{fin = [(N 386)], trans = 198},
{fin = [(N 152),(N 386)], trans = 45},
{fin = [(N 427),(N 799)], trans = 21},
{fin = [(N 138),(N 799)], trans = 201},
{fin = [], trans = 202},
{fin = [], trans = 203},
{fin = [], trans = 204},
{fin = [], trans = 205},
{fin = [], trans = 206},
{fin = [(N 102)], trans = 0},
{fin = [], trans = 208},
{fin = [], trans = 209},
{fin = [], trans = 210},
{fin = [(N 94)], trans = 0},
{fin = [], trans = 212},
{fin = [], trans = 213},
{fin = [], trans = 214},
{fin = [], trans = 215},
{fin = [], trans = 216},
{fin = [], trans = 217},
{fin = [], trans = 218},
{fin = [(N 88)], trans = 0},
{fin = [], trans = 220},
{fin = [], trans = 221},
{fin = [], trans = 222},
{fin = [], trans = 223},
{fin = [], trans = 224},
{fin = [(N 78)], trans = 0},
{fin = [], trans = 226},
{fin = [], trans = 227},
{fin = [], trans = 228},
{fin = [], trans = 229},
{fin = [], trans = 230},
{fin = [(N 70)], trans = 0},
{fin = [], trans = 232},
{fin = [], trans = 233},
{fin = [], trans = 234},
{fin = [], trans = 235},
{fin = [(N 62)], trans = 0},
{fin = [], trans = 237},
{fin = [], trans = 238},
{fin = [], trans = 239},
{fin = [], trans = 240},
{fin = [], trans = 241},
{fin = [], trans = 242},
{fin = [], trans = 243},
{fin = [], trans = 244},
{fin = [], trans = 245},
{fin = [], trans = 246},
{fin = [], trans = 247},
{fin = [], trans = 248},
{fin = [], trans = 249},
{fin = [], trans = 250},
{fin = [], trans = 251},
{fin = [(N 55)], trans = 0},
{fin = [], trans = 253},
{fin = [], trans = 254},
{fin = [], trans = 255},
{fin = [], trans = 256},
{fin = [], trans = 257},
{fin = [], trans = 258},
{fin = [], trans = 259},
{fin = [], trans = 260},
{fin = [], trans = 261},
{fin = [], trans = 262},
{fin = [(N 35)], trans = 0},
{fin = [], trans = 264},
{fin = [], trans = 265},
{fin = [], trans = 266},
{fin = [], trans = 267},
{fin = [], trans = 268},
{fin = [], trans = 269},
{fin = [(N 22)], trans = 0},
{fin = [(N 136),(N 799)], trans = 0},
{fin = [(N 134),(N 799)], trans = 0},
{fin = [(N 129),(N 427),(N 799)], trans = 273},
{fin = [(N 132),(N 427)], trans = 21},
{fin = [(N 127),(N 799)], trans = 0},
{fin = [(N 122),(N 427),(N 799)], trans = 276},
{fin = [(N 125),(N 427)], trans = 21},
{fin = [(N 516),(N 799)], trans = 278},
{fin = [], trans = 279},
{fin = [(N 516)], trans = 278},
{fin = [(N 516),(N 799)], trans = 281},
{fin = [], trans = 282},
{fin = [(N 527)], trans = 283},
{fin = [], trans = 283},
{fin = [], trans = 285},
{fin = [], trans = 286},
{fin = [(N 560)], trans = 287},
{fin = [], trans = 287},
{fin = [], trans = 289},
{fin = [(N 567)], trans = 290},
{fin = [], trans = 290},
{fin = [(N 553)], trans = 292},
{fin = [], trans = 292},
{fin = [], trans = 294},
{fin = [(N 540)], trans = 295},
{fin = [], trans = 295},
{fin = [(N 799)], trans = 297},
{fin = [], trans = 298},
{fin = [(N 120)], trans = 0},
{fin = [(N 427),(N 799)], trans = 300},
{fin = [(N 116),(N 427)], trans = 21},
{fin = [(N 113),(N 799)], trans = 0},
{fin = [(N 111),(N 799)], trans = 0},
{fin = [(N 109),(N 799)], trans = 304},
{fin = [(N 699)], trans = 305},
{fin = [(N 696)], trans = 0},
{fin = [], trans = 307},
{fin = [], trans = 308},
{fin = [], trans = 309},
{fin = [], trans = 310},
{fin = [], trans = 311},
{fin = [], trans = 312},
{fin = [], trans = 313},
{fin = [], trans = 314},
{fin = [], trans = 315},
{fin = [], trans = 316},
{fin = [], trans = 317},
{fin = [], trans = 318},
{fin = [], trans = 319},
{fin = [], trans = 320},
{fin = [(N 797)], trans = 0},
{fin = [], trans = 322},
{fin = [], trans = 323},
{fin = [], trans = 324},
{fin = [], trans = 325},
{fin = [(N 739)], trans = 325},
{fin = [(N 430),(N 799)], trans = 327},
{fin = [(N 430)], trans = 327},
{fin = [(N 104),(N 427),(N 799)], trans = 329},
{fin = [(N 107)], trans = 0},
{fin = [(N 572)], trans = 0},
{fin = [(N 569),(N 799)], trans = 0},
{fin = [(N 8),(N 799)], trans = 333},
{fin = [(N 8)], trans = 333},
{fin = [(N 13),(N 799)], trans = 335},
{fin = [(N 13)], trans = 0},
{fin = [(N 674)], trans = 0},
{fin = [(N 674)], trans = 338},
{fin = [], trans = 339},
{fin = [], trans = 340},
{fin = [(N 591)], trans = 0},
{fin = [(N 674)], trans = 342},
{fin = [], trans = 343},
{fin = [(N 586)], trans = 0},
{fin = [(N 674)], trans = 345},
{fin = [(N 582)], trans = 0},
{fin = [(N 579),(N 674)], trans = 0},
{fin = [(N 667),(N 674)], trans = 348},
{fin = [(N 606)], trans = 0},
{fin = [], trans = 350},
{fin = [], trans = 351},
{fin = [], trans = 352},
{fin = [], trans = 353},
{fin = [(N 632)], trans = 0},
{fin = [(N 600)], trans = 0},
{fin = [(N 612)], trans = 0},
{fin = [(N 603)], trans = 0},
{fin = [(N 609)], trans = 0},
{fin = [(N 597)], trans = 0},
{fin = [(N 594)], trans = 0},
{fin = [], trans = 361},
{fin = [(N 620)], trans = 0},
{fin = [(N 616),(N 620)], trans = 0},
{fin = [(N 649)], trans = 0},
{fin = [], trans = 365},
{fin = [], trans = 366},
{fin = [], trans = 367},
{fin = [], trans = 368},
{fin = [], trans = 369},
{fin = [], trans = 370},
{fin = [], trans = 371},
{fin = [], trans = 372},
{fin = [(N 643)], trans = 0},
{fin = [], trans = 374},
{fin = [], trans = 375},
{fin = [(N 625)], trans = 0},
{fin = [(N 646)], trans = 0},
{fin = [(N 659)], trans = 378},
{fin = [(N 665)], trans = 379},
{fin = [(N 665)], trans = 0},
{fin = [(N 574),(N 674)], trans = 0},
{fin = [(N 672),(N 674)], trans = 382},
{fin = [(N 672)], trans = 0},
{fin = [(N 692)], trans = 0},
{fin = [(N 690),(N 692)], trans = 0},
{fin = [(N 683),(N 692)], trans = 386},
{fin = [(N 683)], trans = 386},
{fin = [(N 688),(N 692)], trans = 388},
{fin = [(N 688)], trans = 0},
{fin = [(N 723)], trans = 0},
{fin = [(N 723)], trans = 391},
{fin = [(N 716)], trans = 0},
{fin = [(N 723)], trans = 393},
{fin = [(N 713)], trans = 394},
{fin = [(N 710)], trans = 0},
{fin = [(N 721),(N 723)], trans = 396},
{fin = [(N 721)], trans = 0},
{fin = [(N 706)], trans = 0},
{fin = [(N 704),(N 706)], trans = 399},
{fin = [(N 704)], trans = 0},
{fin = [(N 767)], trans = 0},
{fin = [(N 767)], trans = 402},
{fin = [], trans = 402},
{fin = [], trans = 404},
{fin = [(N 745)], trans = 404},
{fin = [(N 767)], trans = 406},
{fin = [(N 765)], trans = 0},
{fin = [(N 767)], trans = 408},
{fin = [], trans = 406},
{fin = [(N 755)], trans = 0},
{fin = [], trans = 408},
{fin = [(N 767)], trans = 412},
{fin = [], trans = 412},
{fin = [(N 758)], trans = 0},
{fin = [(N 758),(N 767)], trans = 0},
{fin = [(N 767)], trans = 416},
{fin = [], trans = 416}])
end
structure StartStates =
struct
datatype yystartstate = STARTSTATE of int
(* start state definitions *)
val BLOCK_COMMENT = STARTSTATE 7;
val INITIAL = STARTSTATE 1;
val LINE_COMMENT = STARTSTATE 9;
val LINE_DIR1 = STARTSTATE 11;
val LINE_DIR2 = STARTSTATE 13;
val LINE_DIR3 = STARTSTATE 15;
val LINE_DIR4 = STARTSTATE 17;
val TEXT = STARTSTATE 3;
val TEXT_FMT = STARTSTATE 5;
end
type result = UserDeclarations.lexresult
exception LexerError (* raised if illegal leaf action tried *)
end
structure YYPosInt : INTEGER = Int
fun makeLexer yyinput =
let val yygone0= YYPosInt.fromInt ~1
val yyb = ref "\n" (* buffer *)
val yybl = ref 1 (*buffer length *)
val yybufpos = ref 1 (* location of next character to use *)
val yygone = ref yygone0 (* position in file of beginning of buffer *)
val yydone = ref false (* eof found yet? *)
val yybegin = ref 1 (*Current 'start state' for lexer *)
val YYBEGIN = fn (Internal.StartStates.STARTSTATE x) =>
yybegin := x
fun lex (yyarg as ((*#line 257.7 "ml.lex"*){source}(*#line 10593.1 "ml.lex.sml"*)
)) =
let fun continue() : Internal.result =
let fun scan (s,AcceptingLeaves : Internal.yyfinstate list list,l,i0) =
let fun action (i,nil) = raise LexError
| action (i,nil::l) = action (i-1,l)
| action (i,(node::acts)::l) =
case node of
Internal.N yyk =>
(let fun yymktext() = String.substring(!yyb,i0,i-i0)
val yypos = YYPosInt.+(YYPosInt.fromInt i0, !yygone)
open UserDeclarations Internal.StartStates
in (yybufpos := i; case yyk of
(* Application actions *)
102 => let val yytext=yymktext() in (*#line 296.24 "ml.lex"*)tok (Tokens.SYMBOL, yytext, source, yypos)(*#line 10609.1 "ml.lex.sml"*)
end
| 104 => let val yytext=yymktext() in (*#line 298.18 "ml.lex"*)tok (Tokens.HASH, yytext, source, yypos)(*#line 10611.1 "ml.lex.sml"*)
end
| 107 => let val yytext=yymktext() in (*#line 299.19 "ml.lex"*)tok (Tokens.HASHLBRACKET, yytext, source, yypos)(*#line 10613.1 "ml.lex.sml"*)
end
| 109 => let val yytext=yymktext() in (*#line 300.18 "ml.lex"*)tok (Tokens.LPAREN, yytext, source, yypos)(*#line 10615.1 "ml.lex.sml"*)
end
| 111 => let val yytext=yymktext() in (*#line 301.18 "ml.lex"*)tok (Tokens.RPAREN, yytext, source, yypos)(*#line 10617.1 "ml.lex.sml"*)
end
| 113 => let val yytext=yymktext() in (*#line 302.18 "ml.lex"*)tok (Tokens.COMMA, yytext, source, yypos)(*#line 10619.1 "ml.lex.sml"*)
end
| 116 => let val yytext=yymktext() in (*#line 303.19 "ml.lex"*)tok (Tokens.ARROW, yytext, source, yypos)(*#line 10621.1 "ml.lex.sml"*)
end
| 120 => let val yytext=yymktext() in (*#line 304.20 "ml.lex"*)tok (Tokens.DOTDOTDOT, yytext, source, yypos)(*#line 10623.1 "ml.lex.sml"*)
end
| 122 => let val yytext=yymktext() in (*#line 305.18 "ml.lex"*)tok (Tokens.COLON, yytext, source, yypos)(*#line 10625.1 "ml.lex.sml"*)
end
| 125 => let val yytext=yymktext() in (*#line 306.19 "ml.lex"*)tok (Tokens.COLONGT, yytext, source, yypos)(*#line 10627.1 "ml.lex.sml"*)
end
| 127 => let val yytext=yymktext() in (*#line 307.18 "ml.lex"*)tok (Tokens.SEMICOLON, yytext, source, yypos)(*#line 10629.1 "ml.lex.sml"*)
end
| 129 => let val yytext=yymktext() in (*#line 308.18 "ml.lex"*)tok (Tokens.EQUALOP, yytext, source, yypos)(*#line 10631.1 "ml.lex.sml"*)
end
| 13 => let val yytext=yymktext() in (*#line 285.21 "ml.lex"*)Source.newline (source, lastPos (yypos, yytext)); continue ()(*#line 10633.1 "ml.lex.sml"*)
end
| 132 => let val yytext=yymktext() in (*#line 309.19 "ml.lex"*)tok (Tokens.DARROW, yytext, source, yypos)(*#line 10635.1 "ml.lex.sml"*)
end
| 134 => let val yytext=yymktext() in (*#line 310.18 "ml.lex"*)tok (Tokens.LBRACKET, yytext, source, yypos)(*#line 10637.1 "ml.lex.sml"*)
end
| 136 => let val yytext=yymktext() in (*#line 311.18 "ml.lex"*)tok (Tokens.RBRACKET, yytext, source, yypos)(*#line 10639.1 "ml.lex.sml"*)
end
| 138 => let val yytext=yymktext() in (*#line 312.18 "ml.lex"*)tok (Tokens.WILD, yytext, source, yypos)(*#line 10641.1 "ml.lex.sml"*)
end
| 140 => let val yytext=yymktext() in (*#line 313.18 "ml.lex"*)tok (Tokens.LBRACE, yytext, source, yypos)(*#line 10643.1 "ml.lex.sml"*)
end
| 142 => let val yytext=yymktext() in (*#line 314.18 "ml.lex"*)tok (Tokens.BAR, yytext, source, yypos)(*#line 10645.1 "ml.lex.sml"*)
end
| 144 => let val yytext=yymktext() in (*#line 315.18 "ml.lex"*)tok (Tokens.RBRACE, yytext, source, yypos)(*#line 10647.1 "ml.lex.sml"*)
end
| 152 => let val yytext=yymktext() in (*#line 317.24 "ml.lex"*)tok (Tokens.ABSTYPE, yytext, source, yypos)(*#line 10649.1 "ml.lex.sml"*)
end
| 156 => let val yytext=yymktext() in (*#line 318.20 "ml.lex"*)tok (Tokens.AND, yytext, source, yypos)(*#line 10651.1 "ml.lex.sml"*)
end
| 164 => let val yytext=yymktext() in (*#line 319.24 "ml.lex"*)tok (Tokens.ANDALSO, yytext, source, yypos)(*#line 10653.1 "ml.lex.sml"*)
end
| 167 => let val yytext=yymktext() in (*#line 320.19 "ml.lex"*)tok (Tokens.AS, yytext, source, yypos)(*#line 10655.1 "ml.lex.sml"*)
end
| 172 => let val yytext=yymktext() in (*#line 321.21 "ml.lex"*)tok (Tokens.CASE, yytext, source, yypos)(*#line 10657.1 "ml.lex.sml"*)
end
| 181 => let val yytext=yymktext() in (*#line 322.25 "ml.lex"*)tok (Tokens.DATATYPE, yytext, source, yypos)(*#line 10659.1 "ml.lex.sml"*)
end
| 184 => let val yytext=yymktext() in (*#line 323.19 "ml.lex"*)tok (Tokens.DO, yytext, source, yypos)(*#line 10661.1 "ml.lex.sml"*)
end
| 189 => let val yytext=yymktext() in (*#line 324.21 "ml.lex"*)tok (Tokens.ELSE, yytext, source, yypos)(*#line 10663.1 "ml.lex.sml"*)
end
| 193 => let val yytext=yymktext() in (*#line 325.20 "ml.lex"*)tok (Tokens.END, yytext, source, yypos)(*#line 10665.1 "ml.lex.sml"*)
end
| 200 => let val yytext=yymktext() in (*#line 326.23 "ml.lex"*)tok (Tokens.EQTYPE, yytext, source, yypos)(*#line 10667.1 "ml.lex.sml"*)
end
| 210 => let val yytext=yymktext() in (*#line 327.26 "ml.lex"*)tok (Tokens.EXCEPTION, yytext, source, yypos)(*#line 10669.1 "ml.lex.sml"*)
end
| 213 => let val yytext=yymktext() in (*#line 328.19 "ml.lex"*)tok (Tokens.FN, yytext, source, yypos)(*#line 10671.1 "ml.lex.sml"*)
end
| 217 => let val yytext=yymktext() in (*#line 329.20 "ml.lex"*)tok (Tokens.FUN, yytext, source, yypos)(*#line 10673.1 "ml.lex.sml"*)
end
| 22 => let val yytext=yymktext() in (*#line 288.25 "ml.lex"*)tok (Tokens.ADDRESS, yytext, source, yypos)(*#line 10675.1 "ml.lex.sml"*)
end
| 225 => let val yytext=yymktext() in (*#line 330.24 "ml.lex"*)tok (Tokens.FUNCTOR, yytext, source, yypos)(*#line 10677.1 "ml.lex.sml"*)
end
| 232 => let val yytext=yymktext() in (*#line 331.23 "ml.lex"*)tok (Tokens.HANDLE, yytext, source, yypos)(*#line 10679.1 "ml.lex.sml"*)
end
| 235 => let val yytext=yymktext() in (*#line 332.19 "ml.lex"*)tok (Tokens.IF, yytext, source, yypos)(*#line 10681.1 "ml.lex.sml"*)
end
| 238 => let val yytext=yymktext() in (*#line 333.19 "ml.lex"*)tok (Tokens.IN, yytext, source, yypos)(*#line 10683.1 "ml.lex.sml"*)
end
| 246 => let val yytext=yymktext() in (*#line 334.24 "ml.lex"*)tok (Tokens.INCLUDE, yytext, source, yypos)(*#line 10685.1 "ml.lex.sml"*)
end
| 252 => let val yytext=yymktext() in (*#line 335.22 "ml.lex"*)tok (Tokens.INFIX, yytext, source, yypos)(*#line 10687.1 "ml.lex.sml"*)
end
| 259 => let val yytext=yymktext() in (*#line 336.23 "ml.lex"*)tok (Tokens.INFIXR, yytext, source, yypos)(*#line 10689.1 "ml.lex.sml"*)
end
| 263 => let val yytext=yymktext() in (*#line 337.20 "ml.lex"*)tok (Tokens.LET, yytext, source, yypos)(*#line 10691.1 "ml.lex.sml"*)
end
| 269 => let val yytext=yymktext() in (*#line 338.22 "ml.lex"*)tok (Tokens.LOCAL, yytext, source, yypos)(*#line 10693.1 "ml.lex.sml"*)
end
| 276 => let val yytext=yymktext() in (*#line 339.23 "ml.lex"*)tok (Tokens.NONFIX, yytext, source, yypos)(*#line 10695.1 "ml.lex.sml"*)
end
| 279 => let val yytext=yymktext() in (*#line 340.19 "ml.lex"*)tok (Tokens.OF, yytext, source, yypos)(*#line 10697.1 "ml.lex.sml"*)
end
| 282 => let val yytext=yymktext() in (*#line 341.19 "ml.lex"*)tok (Tokens.OP, yytext, source, yypos)(*#line 10699.1 "ml.lex.sml"*)
end
| 287 => let val yytext=yymktext() in (*#line 342.21 "ml.lex"*)tok (Tokens.OPEN, yytext, source, yypos)(*#line 10701.1 "ml.lex.sml"*)
end
| 294 => let val yytext=yymktext() in (*#line 343.23 "ml.lex"*)tok (Tokens.ORELSE, yytext, source, yypos)(*#line 10703.1 "ml.lex.sml"*)
end
| 300 => let val yytext=yymktext() in (*#line 344.22 "ml.lex"*)tok (Tokens.RAISE, yytext, source, yypos)(*#line 10705.1 "ml.lex.sml"*)
end
| 304 => let val yytext=yymktext() in (*#line 345.20 "ml.lex"*)tok (Tokens.REC, yytext, source, yypos)(*#line 10707.1 "ml.lex.sml"*)
end
| 312 => let val yytext=yymktext() in (*#line 346.24 "ml.lex"*)tok (Tokens.SHARING, yytext, source, yypos)(*#line 10709.1 "ml.lex.sml"*)
end
| 316 => let val yytext=yymktext() in (*#line 347.20 "ml.lex"*)tok (Tokens.SIG, yytext, source, yypos)(*#line 10711.1 "ml.lex.sml"*)
end
| 326 => let val yytext=yymktext() in (*#line 348.26 "ml.lex"*)tok (Tokens.SIGNATURE, yytext, source, yypos)(*#line 10713.1 "ml.lex.sml"*)
end
| 333 => let val yytext=yymktext() in (*#line 349.23 "ml.lex"*)tok (Tokens.STRUCT, yytext, source, yypos)(*#line 10715.1 "ml.lex.sml"*)
end
| 343 => let val yytext=yymktext() in (*#line 350.26 "ml.lex"*)tok (Tokens.STRUCTURE, yytext, source, yypos)(*#line 10717.1 "ml.lex.sml"*)
end
| 348 => let val yytext=yymktext() in (*#line 351.21 "ml.lex"*)tok (Tokens.THEN, yytext, source, yypos)(*#line 10719.1 "ml.lex.sml"*)
end
| 35 => let val yytext=yymktext() in (*#line 289.29 "ml.lex"*)tok (Tokens.BUILD_CONST, yytext, source, yypos)(*#line 10721.1 "ml.lex.sml"*)
end
| 353 => let val yytext=yymktext() in (*#line 352.21 "ml.lex"*)tok (Tokens.TYPE, yytext, source, yypos)(*#line 10723.1 "ml.lex.sml"*)
end
| 357 => let val yytext=yymktext() in (*#line 353.20 "ml.lex"*)tok (Tokens.VAL, yytext, source, yypos)(*#line 10725.1 "ml.lex.sml"*)
end
| 363 => let val yytext=yymktext() in (*#line 354.22 "ml.lex"*)tok (Tokens.WHERE, yytext, source, yypos)(*#line 10727.1 "ml.lex.sml"*)
end
| 369 => let val yytext=yymktext() in (*#line 355.22 "ml.lex"*)tok (Tokens.WHILE, yytext, source, yypos)(*#line 10729.1 "ml.lex.sml"*)
end
| 374 => let val yytext=yymktext() in (*#line 356.21 "ml.lex"*)tok (Tokens.WITH, yytext, source, yypos)(*#line 10731.1 "ml.lex.sml"*)
end
| 383 => let val yytext=yymktext() in (*#line 357.25 "ml.lex"*)tok (Tokens.WITHTYPE, yytext, source, yypos)(*#line 10733.1 "ml.lex.sml"*)
end
| 386 => let val yytext=yymktext() in (*#line 360.27 "ml.lex"*)tok' (Tokens.SHORTALPHANUMID, yytext, source, yypos)(*#line 10735.1 "ml.lex.sml"*)
end
| 427 => let val yytext=yymktext() in (*#line 362.5 "ml.lex"*)case yytext of
"*" => tok (Tokens.ASTERISK, yytext, source, yypos)
| _ => tok' (Tokens.SHORTSYMID, yytext, source, yypos)(*#line 10739.1 "ml.lex.sml"*)
end
| 430 => let val yytext=yymktext() in (*#line 365.24 "ml.lex"*)tok' (Tokens.TYVAR, yytext, source, yypos)(*#line 10741.1 "ml.lex.sml"*)
end
| 439 => let val yytext=yymktext() in (*#line 366.31 "ml.lex"*)tok' (Tokens.LONGALPHANUMID, yytext, source, yypos)(*#line 10743.1 "ml.lex.sml"*)
end
| 486 => let val yytext=yymktext() in (*#line 367.26 "ml.lex"*)tok' (Tokens.LONGSYMID, yytext, source, yypos)(*#line 10745.1 "ml.lex.sml"*)
end
| 512 => let val yytext=yymktext() in (*#line 371.5 "ml.lex"*)real (source, yypos, yytext)(*#line 10747.1 "ml.lex.sml"*)
end
| 516 => let val yytext=yymktext() in (*#line 373.5 "ml.lex"*)int (source, yypos, yytext, 0, {extended = NONE}, {negate = false}, StringCvt.DEC)(*#line 10749.1 "ml.lex.sml"*)
end
| 521 => let val yytext=yymktext() in (*#line 375.5 "ml.lex"*)int (source, yypos, yytext, 1, {extended = NONE}, {negate = true}, StringCvt.DEC)(*#line 10751.1 "ml.lex.sml"*)
end
| 527 => let val yytext=yymktext() in (*#line 377.5 "ml.lex"*)int (source, yypos, yytext, 2, {extended = NONE}, {negate = false}, StringCvt.HEX)(*#line 10753.1 "ml.lex.sml"*)
end
| 534 => let val yytext=yymktext() in (*#line 379.5 "ml.lex"*)int (source, yypos, yytext, 3, {extended = NONE}, {negate = true}, StringCvt.HEX)(*#line 10755.1 "ml.lex.sml"*)
end
| 540 => let val yytext=yymktext() in (*#line 381.5 "ml.lex"*)int (source, yypos, yytext, 2, {extended = SOME "binary notation"}, {negate = false}, StringCvt.BIN)(*#line 10757.1 "ml.lex.sml"*)
end
| 547 => let val yytext=yymktext() in (*#line 383.5 "ml.lex"*)int (source, yypos, yytext, 3, {extended = SOME "binary notation"}, {negate = true}, StringCvt.BIN)(*#line 10759.1 "ml.lex.sml"*)
end
| 55 => let val yytext=yymktext() in (*#line 290.36 "ml.lex"*)tok (Tokens.COMMAND_LINE_CONST, yytext, source, yypos)(*#line 10761.1 "ml.lex.sml"*)
end
| 553 => let val yytext=yymktext() in (*#line 385.5 "ml.lex"*)word (source, yypos, yytext, 2, {extended = NONE}, StringCvt.DEC)(*#line 10763.1 "ml.lex.sml"*)
end
| 560 => let val yytext=yymktext() in (*#line 387.5 "ml.lex"*)word (source, yypos, yytext, 3, {extended = NONE}, StringCvt.HEX)(*#line 10765.1 "ml.lex.sml"*)
end
| 567 => let val yytext=yymktext() in (*#line 389.5 "ml.lex"*)word (source, yypos, yytext, 3, {extended = SOME "binary notation"}, StringCvt.BIN)(*#line 10767.1 "ml.lex.sml"*)
end
| 569 => ((*#line 392.5 "ml.lex"*)startText (Source.getPos (source, yypos), fn (cs, l, r) =>
(YYBEGIN INITIAL;
Tokens.STRING (cs, l, r)))
; YYBEGIN TEXT
; continue ()(*#line 10773.1 "ml.lex.sml"*)
)
| 572 => ((*#line 398.5 "ml.lex"*)startText (Source.getPos (source, yypos), fn (cs, l, r) =>
let
fun err () =
error' (l, r, "character constant not of size 1")
val c =
case Int.compare (Vector.length cs, 1) of
LESS => (err (); 0)
| EQUAL => Vector.sub (cs, 0)
| GREATER => (err (); Vector.sub (cs, 0))
in
YYBEGIN INITIAL;
Tokens.CHAR (c, l, r)
end)
; YYBEGIN TEXT
; continue ()(*#line 10789.1 "ml.lex.sml"*)
)
| 574 => let val yytext=yymktext() in (*#line 414.22 "ml.lex"*)finishText (Source.getPos (source, lastPos (yypos, yytext)))(*#line 10791.1 "ml.lex.sml"*)
end
| 579 => let val yytext=yymktext() in (*#line 416.22 "ml.lex"*)addTextString yytext; continue ()(*#line 10793.1 "ml.lex.sml"*)
end
| 582 => let val yytext=yymktext() in (*#line 418.22 "ml.lex"*)addTextUTF8 (source, yypos, yytext); continue()(*#line 10795.1 "ml.lex.sml"*)
end
| 586 => let val yytext=yymktext() in (*#line 420.22 "ml.lex"*)addTextUTF8 (source, yypos, yytext); continue()(*#line 10797.1 "ml.lex.sml"*)
end
| 591 => let val yytext=yymktext() in (*#line 422.22 "ml.lex"*)addTextUTF8 (source, yypos, yytext); continue()(*#line 10799.1 "ml.lex.sml"*)
end
| 594 => ((*#line 423.22 "ml.lex"*)addTextChar #"\a"; continue ()(*#line 10801.1 "ml.lex.sml"*)
)
| 597 => ((*#line 424.22 "ml.lex"*)addTextChar #"\b"; continue ()(*#line 10803.1 "ml.lex.sml"*)
)
| 600 => ((*#line 425.22 "ml.lex"*)addTextChar #"\t"; continue ()(*#line 10805.1 "ml.lex.sml"*)
)
| 603 => ((*#line 426.22 "ml.lex"*)addTextChar #"\n"; continue ()(*#line 10807.1 "ml.lex.sml"*)
)
| 606 => ((*#line 427.22 "ml.lex"*)addTextChar #"\v"; continue ()(*#line 10809.1 "ml.lex.sml"*)
)
| 609 => ((*#line 428.22 "ml.lex"*)addTextChar #"\f"; continue ()(*#line 10811.1 "ml.lex.sml"*)
)
| 612 => ((*#line 429.22 "ml.lex"*)addTextChar #"\r"; continue ()(*#line 10813.1 "ml.lex.sml"*)
)
| 616 => let val yytext=yymktext() in (*#line 430.22 "ml.lex"*)addTextChar (Char.chr(Char.ord(String.sub(yytext, 2)) - Char.ord #"@"));
continue ()(*#line 10816.1 "ml.lex.sml"*)
end
| 62 => let val yytext=yymktext() in (*#line 291.23 "ml.lex"*)tok (Tokens.CONST, yytext, source, yypos)(*#line 10818.1 "ml.lex.sml"*)
end
| 620 => ((*#line 432.22 "ml.lex"*)error (source, yypos, yypos + 2, "Illegal control escape in text constant; must be one of @ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_");
continue ()(*#line 10821.1 "ml.lex.sml"*)
)
| 625 => let val yytext=yymktext() in (*#line 434.22 "ml.lex"*)addTextNumEsc (source, yypos, yytext, 1,
{extended = NONE}, StringCvt.DEC)
; continue ()(*#line 10825.1 "ml.lex.sml"*)
end
| 632 => let val yytext=yymktext() in (*#line 438.22 "ml.lex"*)addTextNumEsc (source, yypos, yytext, 2,
{extended = NONE}, StringCvt.HEX)
; continue ()(*#line 10829.1 "ml.lex.sml"*)
end
| 643 => let val yytext=yymktext() in (*#line 442.22 "ml.lex"*)addTextNumEsc (source, yypos, yytext, 2,
{extended = SOME "\\Uxxxxxxxx numeric escapes"},
StringCvt.HEX)
; continue ()(*#line 10834.1 "ml.lex.sml"*)
end
| 646 => ((*#line 446.22 "ml.lex"*)addTextString "\""; continue ()(*#line 10836.1 "ml.lex.sml"*)
)
| 649 => ((*#line 447.22 "ml.lex"*)addTextString "\\"; continue ()(*#line 10838.1 "ml.lex.sml"*)
)
| 659 => ((*#line 448.22 "ml.lex"*)YYBEGIN TEXT_FMT; continue ()(*#line 10840.1 "ml.lex.sml"*)
)
| 665 => let val yytext=yymktext() in (*#line 449.22 "ml.lex"*)Source.newline (source, lastPos (yypos, yytext)); YYBEGIN TEXT_FMT; continue ()(*#line 10842.1 "ml.lex.sml"*)
end
| 667 => ((*#line 450.22 "ml.lex"*)error (source, yypos, yypos + 1, "Illegal escape in text constant")
; continue ()(*#line 10845.1 "ml.lex.sml"*)
)
| 672 => let val yytext=yymktext() in (*#line 452.22 "ml.lex"*)error (source, yypos, lastPos (yypos, yytext), "Unclosed text constant at end of line")
; Source.newline (source, lastPos (yypos, yytext))
; continue ()(*#line 10849.1 "ml.lex.sml"*)
end
| 674 => ((*#line 455.22 "ml.lex"*)error (source, yypos, yypos, "Illegal character in text constant")
; continue ()(*#line 10852.1 "ml.lex.sml"*)
)
| 683 => ((*#line 458.22 "ml.lex"*)continue ()(*#line 10854.1 "ml.lex.sml"*)
)
| 688 => let val yytext=yymktext() in (*#line 459.22 "ml.lex"*)Source.newline (source, lastPos (yypos, yytext)); continue ()(*#line 10856.1 "ml.lex.sml"*)
end
| 690 => ((*#line 460.22 "ml.lex"*)YYBEGIN TEXT; continue ()(*#line 10858.1 "ml.lex.sml"*)
)
| 692 => ((*#line 461.22 "ml.lex"*)error (source, yypos, yypos, "Illegal formatting character in text continuation")
; continue ()(*#line 10861.1 "ml.lex.sml"*)
)
| 696 => let val yytext=yymktext() in (*#line 466.5 "ml.lex"*)if allowLineComments ()
then ()
else error (source, yypos, lastPos (yypos, yytext),
"Line comments disallowed, compile with -default-ann 'allowLineComments true'")
; startComment (source, yypos, fn () =>
YYBEGIN INITIAL)
; YYBEGIN LINE_COMMENT
; continue ()(*#line 10870.1 "ml.lex.sml"*)
end
| 699 => ((*#line 475.5 "ml.lex"*)startComment (source, yypos, fn () =>
YYBEGIN INITIAL)
; YYBEGIN BLOCK_COMMENT
; continue ()(*#line 10875.1 "ml.lex.sml"*)
)
| 70 => let val yytext=yymktext() in (*#line 292.24 "ml.lex"*)tok (Tokens.EXPORT, yytext, source, yypos)(*#line 10877.1 "ml.lex.sml"*)
end
| 704 => let val yytext=yymktext() in (*#line 481.5 "ml.lex"*)finishComment (lastPos (yypos, yytext))
; Source.newline (source, lastPos (yypos, yytext))
; continue ()(*#line 10881.1 "ml.lex.sml"*)
end
| 706 => ((*#line 485.5 "ml.lex"*)continue ()(*#line 10883.1 "ml.lex.sml"*)
)
| 710 => let val yytext=yymktext() in (*#line 488.5 "ml.lex"*)if allowLineComments ()
then ()
else error (source, yypos, lastPos (yypos, yytext),
"Line comments disallowed, compile with -default-ann 'allowLineComments true'")
; startComment (source, yypos, fn () =>
YYBEGIN BLOCK_COMMENT)
; YYBEGIN LINE_COMMENT
; continue ()(*#line 10892.1 "ml.lex.sml"*)
end
| 713 => ((*#line 497.5 "ml.lex"*)startComment (source, yypos, fn () =>
YYBEGIN BLOCK_COMMENT)
; YYBEGIN BLOCK_COMMENT
; continue ()(*#line 10897.1 "ml.lex.sml"*)
)
| 716 => let val yytext=yymktext() in (*#line 502.5 "ml.lex"*)finishComment (lastPos (yypos,yytext))
; continue ()(*#line 10900.1 "ml.lex.sml"*)
end
| 721 => let val yytext=yymktext() in (*#line 505.5 "ml.lex"*)Source.newline (source, lastPos (yypos, yytext))
; continue ()(*#line 10903.1 "ml.lex.sml"*)
end
| 723 => ((*#line 508.5 "ml.lex"*)continue ()(*#line 10905.1 "ml.lex.sml"*)
)
| 739 => ((*#line 512.5 "ml.lex"*)startLineDir (source, yypos, fn () =>
YYBEGIN INITIAL)
; YYBEGIN LINE_DIR1
; continue ()(*#line 10910.1 "ml.lex.sml"*)
)
| 745 => let val yytext=yymktext() in (*#line 518.5 "ml.lex"*)let
fun err () =
(addCommentError "Illegal line directive"
; YYBEGIN BLOCK_COMMENT)
in
case String.split (yytext, #".") of
[line, col] =>
(YYBEGIN LINE_DIR2
; addLineDirLineCol (valOf (Int.fromString line), valOf (Int.fromString col))
handle Overflow => err () | Option => err ()
; continue ())
| _ => (err (); continue ())
end(*#line 10924.1 "ml.lex.sml"*)
end
| 755 => ((*#line 532.5 "ml.lex"*)YYBEGIN LINE_DIR3
; continue ()(*#line 10927.1 "ml.lex.sml"*)
)
| 758 => let val yytext=yymktext() in (*#line 535.5 "ml.lex"*)addLineDirFile (String.dropLast yytext)
; YYBEGIN LINE_DIR4
; continue ()(*#line 10931.1 "ml.lex.sml"*)
end
| 765 => let val yytext=yymktext() in (*#line 539.5 "ml.lex"*)finishLineDir (source, lastPos (yypos, yytext))
; continue ()(*#line 10934.1 "ml.lex.sml"*)
end
| 767 => ((*#line 542.5 "ml.lex"*)addCommentError "Illegal line directive"
; YYBEGIN BLOCK_COMMENT
; continue ()(*#line 10938.1 "ml.lex.sml"*)
)
| 78 => let val yytext=yymktext() in (*#line 293.24 "ml.lex"*)tok (Tokens.IMPORT, yytext, source, yypos)(*#line 10940.1 "ml.lex.sml"*)
end
| 797 => let val yytext=yymktext() in (*#line 548.5 "ml.lex"*)let
val file = List.nth (String.split (yytext, #"\""), 1)
val file =
if OS.Path.isAbsolute file
then file
else OS.Path.mkCanonical (OS.Path.concat (OS.Path.dir (Source.name source), file))
in
tok' (fn (_, l, r) => Tokens.SHOW_BASIS (file, l, r), yytext, source, yypos)
end(*#line 10950.1 "ml.lex.sml"*)
end
| 799 => ((*#line 560.5 "ml.lex"*)error (source, yypos, yypos, "Illegal token")
; continue ()(*#line 10953.1 "ml.lex.sml"*)
)
| 8 => ((*#line 284.21 "ml.lex"*)continue ()(*#line 10955.1 "ml.lex.sml"*)
)
| 88 => let val yytext=yymktext() in (*#line 294.26 "ml.lex"*)tok (Tokens.OVERLOAD, yytext, source, yypos)(*#line 10957.1 "ml.lex.sml"*)
end
| 94 => let val yytext=yymktext() in (*#line 295.22 "ml.lex"*)tok (Tokens.PRIM, yytext, source, yypos)(*#line 10959.1 "ml.lex.sml"*)
end
| _ => raise Internal.LexerError
) end )
val {fin,trans} = Vector.sub(Internal.tab, s)
val NewAcceptingLeaves = fin::AcceptingLeaves
in if l = !yybl then
if trans = #trans(Vector.sub(Internal.tab,0))
then action(l,NewAcceptingLeaves
) else let val newchars= if !yydone then "" else yyinput 1024
in if (String.size newchars)=0
then (yydone := true;
if (l=i0) then UserDeclarations.eof yyarg
else action(l,NewAcceptingLeaves))
else (if i0=l then yyb := newchars
else yyb := String.substring(!yyb,i0,l-i0)^newchars;
yygone := YYPosInt.+(!yygone, YYPosInt.fromInt i0);
yybl := String.size (!yyb);
scan (s,AcceptingLeaves,l-i0,0))
end
else let val NewChar = Char.ord(CharVector.sub(!yyb,l))
val NewState = Vector.sub(trans, NewChar)
in if NewState=0 then action(l,NewAcceptingLeaves)
else scan(NewState,NewAcceptingLeaves,l+1,i0)
end
end
(*
val start= if String.substring(!yyb,!yybufpos-1,1)="\n"
then !yybegin+1 else !yybegin
*)
in scan(!yybegin (* start *),nil,!yybufpos,!yybufpos)
end
in continue end
in lex
end
end
| true |
(*#line 256.10 "ml.lex"*)functor MLLexFun (structure Tokens : ML_TOKENS)(*#line 1.1 "ml.lex.sml"*)
=
struct
structure UserDeclarations =
struct
(*#line 1.1 "ml.lex"*)(* Heavily modified from SML/NJ sources. *)
(* ml.lex
*
* Copyright 1989 by AT&T Bell Laboratories
*
* SML/NJ is released under a HPND-style license.
* See the file NJ-LICENSE for details.
*)
(* Copyright (C) 2009,2016-2017 PI:NAME:<NAME>END_PI.
* Copyright (C) 1999-2006 PI:NAME:<NAME>END_PI, PI:NAME:<NAME>END_PI, PI:NAME:<NAME>END_PI
* PI:NAME:<NAME>END_PI, and PI:NAME:<NAME>END_PI.
* Copyright (C) 1997-2000 NEC Research Institute.
*
* MLton is released under a HPND-style license.
* See the file MLton-LICENSE for details.
*)
type svalue = Tokens.svalue
type pos = SourcePos.t
type lexresult = (svalue, pos) Tokens.token
type lexarg = {source: Source.t}
type arg = lexarg
type ('a,'b) token = ('a,'b) Tokens.token
local
open Control.Elaborate
in
val allowLineComments = fn () => current allowLineComments
val allowExtendedNumConsts = fn () => current allowExtendedNumConsts
val allowExtendedTextConsts = fn () => current allowExtendedTextConsts
end
fun lastPos (yypos, yytext) = yypos + size yytext - 1
fun tok (t, x, s, l) =
let
val left = Source.getPos (s, l)
val right = Source.getPos (s, lastPos (l, x))
in
t (left, right)
end
fun tok' (t, x, s, l) = tok (fn (l, r) => t (x, l, r), x, s, l)
fun error' (left, right, msg) =
Control.errorStr (Region.make {left = left, right = right}, msg)
fun error (source, left, right, msg) =
error' (Source.getPos (source, left), Source.getPos (source, right), msg)
(* Comments *)
local
val commentErrors: string list ref = ref []
val commentLeft = ref SourcePos.bogus
val commentStack: (int -> unit) list ref = ref []
in
fun addCommentError msg =
List.push (commentErrors, msg)
val inComment = fn () => not (List.isEmpty (!commentStack))
fun startComment (source, yypos, th) =
if inComment ()
then List.push (commentStack, fn _ => th ())
else (commentErrors := []
; commentLeft := Source.getPos (source, yypos)
; List.push (commentStack, fn yypos =>
(List.foreach (!commentErrors, fn msg =>
error' (!commentLeft,
Source.getPos (source, yypos),
msg))
; th ())))
fun finishComment yypos =
(List.pop commentStack) yypos
end
(* Line Directives *)
local
val lineDirCol: int ref = ref ~1
val lineDirFile: File.t option ref = ref NONE
val lineDirLine: int ref = ref ~1
in
fun startLineDir (source, yypos, th) =
let
val _ = lineDirCol := ~1
val _ = lineDirFile := NONE
val _ = lineDirLine := ~1
in
startComment (source, yypos, th)
end
fun addLineDirLineCol (line, col) =
let
val _ = lineDirLine := line
val _ = lineDirCol := col
in
()
end
fun addLineDirFile file =
let
val _ = lineDirFile := SOME file
in
()
end
fun finishLineDir (source, yypos) =
let
val col = !lineDirCol
val file = !lineDirFile
val line = !lineDirLine
val _ = lineDirCol := ~1
val _ = lineDirFile := NONE
val _ = lineDirLine := ~1
in
finishComment yypos
; Source.lineDirective (source, file,
{lineNum = line,
lineStart = yypos + 1 - col})
end
end
(* Numeric Constants *)
local
fun doit (source, yypos, yytext, drop, {extended: string option}, mkTok) =
let
val left = yypos
val right = lastPos (yypos, yytext)
val extended =
if String.contains (yytext, #"_")
then SOME (Option.fold
(extended, "'_' separators", fn (msg1, msg2) =>
msg1 ^ " and " ^ msg2))
else extended
val _ =
case extended of
NONE => ()
| SOME msg =>
if allowExtendedNumConsts ()
then ()
else error (source, left, right,
concat ["Extended numeric constants (using ", msg,
") disallowed, compile with -default-ann 'allowExtendedNumConsts true'"])
in
mkTok (String.keepAll (String.dropPrefix (yytext, drop), fn c => not (c = #"_")),
{extended = Option.isSome extended},
Source.getPos (source, left), Source.getPos (source, right))
end
in
fun real (source, yypos, yytext) =
doit (source, yypos, yytext, 0, {extended = NONE}, fn (digits, {extended: bool}, l, r) =>
Tokens.REAL (digits, l, r))
fun int (source, yypos, yytext, drop, {extended: string option}, {negate: bool}, radix) =
doit (source, yypos, yytext, drop, {extended = extended}, fn (digits, {extended: bool}, l, r) =>
Tokens.INT ({digits = digits,
extended = extended,
negate = negate,
radix = radix},
l, r))
fun word (source, yypos, yytext, drop, {extended: string option}, radix) =
doit (source, yypos, yytext, drop, {extended = extended}, fn (digits, {extended: bool}, l, r) =>
Tokens.WORD ({digits = digits,
radix = radix},
l, r))
end
(* Text Constants *)
local
val chars: IntInf.t list ref = ref []
val inText = ref false
val textLeft = ref SourcePos.bogus
val textFinishFn: (IntInf.t vector * SourcePos.t * SourcePos.t -> lexresult) ref = ref (fn _ => raise Fail "textFinish")
in
fun startText (tl, tf) =
let
val _ = chars := []
val _ = inText := true
val _ = textLeft := tl
val _ = textFinishFn := tf
in
()
end
fun finishText textRight =
let
val cs = Vector.fromListRev (!chars)
val tl = !textLeft
val tr = textRight
val tf = !textFinishFn
val _ = chars := []
val _ = inText := false
val _ = textLeft := SourcePos.bogus
val _ = textFinishFn := (fn _ => raise Fail "textFinish")
in
tf (cs, tl, tr)
end
val inText = fn () => !inText
fun addTextString (s: string) =
chars := String.fold (s, !chars, fn (c, ac) => Int.toIntInf (Char.ord c) :: ac)
fun addTextCharCode (i: IntInf.int) = List.push (chars, i)
end
fun addTextChar (c: char) = addTextString (String.fromChar c)
fun addTextNumEsc (source, yypos, yytext, drop, {extended: string option}, radix): unit =
let
val left = yypos
val right = lastPos (yypos, yytext)
val _ =
case extended of
NONE => ()
| SOME msg =>
if allowExtendedTextConsts ()
then ()
else error (source, left, right,
concat ["Extended text constants (using ", msg,
") disallowed, compile with -default-ann 'allowExtendedTextConsts true'"])
in
case StringCvt.scanString (fn r => IntInf.scan (radix, r)) (String.dropPrefix (yytext, drop)) of
NONE => error (source, left, right, "Illegal numeric escape in text constant")
| SOME i => addTextCharCode i
end
fun addTextUTF8 (source, yypos, yytext): unit =
let
val left = yypos
val right = lastPos (yypos, yytext)
in
if not (allowExtendedTextConsts ())
then error (source, left, right,
"Extended text constants (using UTF-8 byte sequences) disallowed, compile with -default-ann 'allowExtendedTextConsts true'")
else addTextString yytext
end
(* EOF *)
val eof: lexarg -> lexresult =
fn {source, ...} =>
let
val _ = Source.newline (source, ~1)
val pos = Source.getPos (source, ~1)
val _ =
if inComment ()
then error' (pos, SourcePos.bogus, "Unclosed comment at end of file")
else ()
val _ =
if inText ()
then error' (pos, SourcePos.bogus, "Unclosed text constant at end of file")
else ()
in
Tokens.EOF (pos, SourcePos.bogus)
end
(*#line 256.1 "ml.lex.sml"*)
end (* end of user routines *)
exception LexError (* raised if illegal leaf action tried *)
structure Internal =
struct
datatype yyfinstate = N of int
type statedata = {fin : yyfinstate list, trans: int Vector.vector}
(* transition & final state table *)
val tab = let
fun decode s k =
let val k' = k + k
val hi = Char.ord(String.sub(s, k'))
val lo = Char.ord(String.sub(s, k' + 1))
in hi * 256 + lo end
val s = [
(0,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(1,256,
"\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\001\077\001\080\001\077\001\077\001\079\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\001\077\000\200\001\076\001\073\000\200\000\200\000\200\001\071\
\\001\048\001\047\000\200\000\200\001\046\001\044\001\041\000\200\
\\001\025\001\022\001\022\001\022\001\022\001\022\001\022\001\022\
\\001\022\001\022\001\020\001\019\000\200\001\017\000\200\000\200\
\\000\200\000\045\000\045\000\045\000\045\000\045\000\045\000\045\
\\000\045\000\045\000\045\000\045\000\045\000\045\000\045\000\045\
\\000\045\000\045\000\045\000\045\000\045\000\045\000\045\000\045\
\\000\045\000\045\000\045\001\016\000\200\001\015\000\200\000\201\
\\000\200\000\186\000\045\000\182\000\173\000\154\000\146\000\045\
\\000\140\000\128\000\045\000\045\000\121\000\045\000\115\000\105\
\\000\045\000\045\000\098\000\075\000\068\000\045\000\065\000\050\
\\000\045\000\045\000\045\000\044\000\043\000\042\000\020\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019\
\\000\019\000\019\000\019\000\019\000\019\000\019\000\019\000\019"
),
(3,256,
"\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\127\001\081\001\081\001\126\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\091\001\091\001\125\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\092\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\091\
\\001\091\001\091\001\091\001\091\001\091\001\091\001\091\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081\
\\001\089\001\089\001\089\001\089\001\089\001\089\001\089\001\089\
\\001\089\001\089\001\089\001\089\001\089\001\089\001\089\001\089\
\\001\089\001\089\001\089\001\089\001\089\001\089\001\089\001\089\
\\001\089\001\089\001\089\001\089\001\089\001\089\001\089\001\089\
\\001\086\001\086\001\086\001\086\001\086\001\086\001\086\001\086\
\\001\086\001\086\001\086\001\086\001\086\001\086\001\086\001\086\
\\001\082\001\082\001\082\001\082\001\082\001\082\001\082\001\082\
\\001\081\001\081\001\081\001\081\001\081\001\081\001\081\001\081"
),
(5,256,
"\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\130\001\133\001\130\001\130\001\132\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\130\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\129\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128\
\\001\128\001\128\001\128\001\128\001\128\001\128\001\128\001\128"
),
(7,256,
"\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\141\001\134\001\134\001\140\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\137\001\134\001\135\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134\
\\001\134\001\134\001\134\001\134\001\134\001\134\001\134\001\134"
),
(9,256,
"\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\144\001\142\001\142\001\143\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142\
\\001\142\001\142\001\142\001\142\001\142\001\142\001\142\001\142"
),
(11,256,
"\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\000\000\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\146\001\146\001\146\001\146\001\146\001\146\001\146\001\146\
\\001\146\001\146\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145"
),
(13,256,
"\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\152\000\000\001\152\001\152\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\152\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\150\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145"
),
(15,256,
"\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\157\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\159\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156\
\\001\156\001\156\001\156\001\156\001\156\001\156\001\156\001\156"
),
(17,256,
"\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\160\000\000\001\160\001\160\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\160\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\150\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145\
\\001\145\001\145\001\145\001\145\001\145\001\145\001\145\001\145"
),
(20,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\021\000\000\000\021\000\021\000\021\000\021\000\000\
\\000\000\000\000\000\021\000\021\000\000\000\021\000\000\000\021\
\\000\035\000\022\000\022\000\022\000\022\000\022\000\022\000\022\
\\000\022\000\022\000\021\000\000\000\021\000\021\000\021\000\021\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(21,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\021\000\000\000\021\000\021\000\021\000\021\000\000\
\\000\000\000\000\000\021\000\021\000\000\000\021\000\000\000\021\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\021\000\000\000\021\000\021\000\021\000\021\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(22,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\028\000\000\
\\000\022\000\022\000\022\000\022\000\022\000\022\000\022\000\022\
\\000\022\000\022\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\023\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\027\
\\000\000\000\000\000\000\000\000\000\000\000\023\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(23,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\025\000\025\000\025\000\025\000\025\000\025\000\025\000\025\
\\000\025\000\025\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\024\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(24,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\025\000\025\000\025\000\025\000\025\000\025\000\025\000\025\
\\000\025\000\025\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(25,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\025\000\025\000\025\000\025\000\025\000\025\000\025\000\025\
\\000\025\000\025\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\026\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(27,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\022\000\022\000\022\000\022\000\022\000\022\000\022\000\022\
\\000\022\000\022\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\027\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(28,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\029\000\029\000\029\000\029\000\029\000\029\000\029\000\029\
\\000\029\000\029\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(29,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\029\000\029\000\029\000\029\000\029\000\029\000\029\000\029\
\\000\029\000\029\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\030\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\034\
\\000\000\000\000\000\000\000\000\000\000\000\030\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(30,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\032\000\032\000\032\000\032\000\032\000\032\000\032\000\032\
\\000\032\000\032\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\031\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(31,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\032\000\032\000\032\000\032\000\032\000\032\000\032\000\032\
\\000\032\000\032\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(32,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\032\000\032\000\032\000\032\000\032\000\032\000\032\000\032\
\\000\032\000\032\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\033\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(34,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\029\000\029\000\029\000\029\000\029\000\029\000\029\000\029\
\\000\029\000\029\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\034\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(35,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\028\000\000\
\\000\022\000\022\000\022\000\022\000\022\000\022\000\022\000\022\
\\000\022\000\022\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\023\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\027\
\\000\000\000\000\000\039\000\000\000\000\000\023\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\036\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(36,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\037\000\037\000\037\000\037\000\037\000\037\000\037\000\037\
\\000\037\000\037\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\037\000\037\000\037\000\037\000\037\000\037\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\037\000\037\000\037\000\037\000\037\000\037\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(37,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\037\000\037\000\037\000\037\000\037\000\037\000\037\000\037\
\\000\037\000\037\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\037\000\037\000\037\000\037\000\037\000\037\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\038\
\\000\000\000\037\000\037\000\037\000\037\000\037\000\037\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(39,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\040\000\040\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(40,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\040\000\040\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\041\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(45,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(47,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\048\000\000\000\048\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\048\000\048\000\000\000\048\000\000\000\048\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\048\000\048\000\048\
\\000\048\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\000\000\048\000\000\000\048\000\000\
\\000\048\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(48,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\048\000\000\000\048\000\048\000\048\000\048\000\000\
\\000\000\000\000\000\048\000\048\000\000\000\048\000\000\000\048\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\048\000\000\000\048\000\048\000\048\000\048\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\048\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\048\000\000\000\048\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(49,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\049\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\000\000\000\000\000\000\000\000\049\
\\000\000\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\049\000\049\000\049\000\049\000\049\
\\000\049\000\049\000\049\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(50,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\058\000\051\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(51,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\052\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(52,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\053\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(53,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\054\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(54,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\055\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(55,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\056\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(56,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\057\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(58,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\062\000\046\000\046\
\\000\046\000\059\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(59,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\060\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(60,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\061\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(62,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\063\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(63,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\064\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(65,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\066\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(66,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\067\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(68,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\072\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\069\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(69,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\070\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(70,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\071\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(72,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\073\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(73,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\074\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(75,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\092\000\084\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\076\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(76,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\077\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(77,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\078\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(78,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\079\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(79,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\080\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(80,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\081\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(81,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\082\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(82,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\083\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(84,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\085\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(85,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\086\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(86,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\087\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(87,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\088\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(88,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\089\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(89,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\090\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(90,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\091\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(92,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\093\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(93,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\094\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(94,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\095\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(95,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\096\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(96,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\097\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(98,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\101\000\046\000\046\000\046\000\099\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(99,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\100\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(101,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\102\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(102,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\103\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(103,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\104\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(105,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\114\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\111\000\046\000\106\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(106,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\107\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(107,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\108\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(108,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\109\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(109,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\110\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(111,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\112\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(112,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\113\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(115,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\116\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(116,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\117\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(117,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\118\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(118,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\119\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(119,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\120\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(121,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\126\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\122\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(122,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\123\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(123,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\124\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(124,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\125\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(126,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\127\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(128,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\139\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\129\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(129,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\134\000\046\000\046\000\130\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(130,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\131\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(131,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\132\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(132,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\133\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(134,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\135\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(135,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\136\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(136,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\137\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(137,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\138\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(140,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\141\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(141,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\142\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(142,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\143\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(143,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\144\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(144,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\145\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(146,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\153\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\147\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(147,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\148\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(148,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\149\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(149,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\150\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(150,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\151\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(151,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\152\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(154,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\170\000\046\000\168\000\046\
\\000\046\000\163\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\155\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(155,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\156\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(156,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\157\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(157,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\158\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(158,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\159\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(159,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\160\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(160,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\161\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(161,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\162\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(163,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\164\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(164,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\165\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(165,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\166\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(166,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\167\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(168,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\169\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(170,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\171\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(171,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\172\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(173,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\175\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\174\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(175,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\176\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(176,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\177\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(177,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\178\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(178,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\179\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(179,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\180\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(180,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\181\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(182,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\183\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(183,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\184\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(184,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\185\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(186,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\194\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\188\000\046\
\\000\046\000\046\000\046\000\187\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(188,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\189\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(189,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\190\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(190,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\191\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(191,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\192\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(192,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\193\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(194,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\195\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(195,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\196\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(196,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\197\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(197,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\198\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(198,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\047\000\000\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\046\
\\000\000\000\046\000\046\000\046\000\046\000\199\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\046\000\046\000\046\000\046\000\046\
\\000\046\000\046\000\046\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(201,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\008\000\253\000\232\000\000\000\226\000\000\000\000\
\\000\000\000\220\000\000\000\000\000\000\000\000\000\000\000\212\
\\000\208\000\000\000\000\000\202\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(202,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\203\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(203,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\204\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(204,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\205\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(205,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\206\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(206,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\207\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(208,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\209\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(209,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\210\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(210,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\211\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(212,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\213\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(213,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\214\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(214,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\215\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(215,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\216\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(216,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\217\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(217,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\218\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(218,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\219\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(220,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\221\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(221,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\222\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(222,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\223\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(223,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\224\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(224,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\225\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(226,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\227\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(227,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\228\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(228,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\229\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(229,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\230\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(230,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\231\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(232,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\233\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(233,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\237\000\234\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(234,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\235\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(235,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\236\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(237,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\238\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(238,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\239\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(239,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\240\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(240,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\241\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(241,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\242\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(242,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\243\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(243,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\244\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(244,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\245\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(245,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\246\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(246,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\247\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(247,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\248\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(248,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\249\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(249,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\250\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(250,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\251\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(251,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\252\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(253,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\254\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(254,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\255\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(255,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(256,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\001\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(257,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\002\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(258,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\003\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(259,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\004\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(260,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\001\005\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(261,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\006\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(262,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\007\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(264,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\009\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(265,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\010\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(266,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\011\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(267,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\001\012\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(268,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\013\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(269,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\014\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(273,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\021\000\000\000\021\000\021\000\021\000\021\000\000\
\\000\000\000\000\000\021\000\021\000\000\000\021\000\000\000\021\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\021\000\000\000\021\000\021\001\018\000\021\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(276,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\021\000\000\000\021\000\021\000\021\000\021\000\000\
\\000\000\000\000\000\021\000\021\000\000\000\021\000\000\000\021\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\021\000\000\000\021\000\021\001\021\000\021\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(278,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\028\000\000\
\\001\024\001\024\001\024\001\024\001\024\001\024\001\024\001\024\
\\001\024\001\024\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\023\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\023\
\\000\000\000\000\000\000\000\000\000\000\000\023\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(279,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\024\001\024\001\024\001\024\001\024\001\024\001\024\001\024\
\\001\024\001\024\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\023\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(281,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\028\000\000\
\\001\024\001\024\001\024\001\024\001\024\001\024\001\024\001\024\
\\001\024\001\024\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\023\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\023\
\\000\000\000\000\001\038\000\000\000\000\000\023\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\029\
\\001\026\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(282,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\027\001\027\001\027\001\027\001\027\001\027\001\027\001\027\
\\001\027\001\027\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\027\001\027\001\027\001\027\001\027\001\027\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\027\001\027\001\027\001\027\001\027\001\027\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(283,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\027\001\027\001\027\001\027\001\027\001\027\001\027\001\027\
\\001\027\001\027\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\027\001\027\001\027\001\027\001\027\001\027\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\028\
\\000\000\001\027\001\027\001\027\001\027\001\027\001\027\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(285,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\036\001\036\001\036\001\036\001\036\001\036\001\036\001\036\
\\001\036\001\036\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\033\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\030\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(286,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\031\001\031\001\031\001\031\001\031\001\031\001\031\001\031\
\\001\031\001\031\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\031\001\031\001\031\001\031\001\031\001\031\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\031\001\031\001\031\001\031\001\031\001\031\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(287,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\031\001\031\001\031\001\031\001\031\001\031\001\031\001\031\
\\001\031\001\031\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\031\001\031\001\031\001\031\001\031\001\031\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\032\
\\000\000\001\031\001\031\001\031\001\031\001\031\001\031\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(289,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\034\001\034\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(290,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\034\001\034\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\035\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(292,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\036\001\036\001\036\001\036\001\036\001\036\001\036\001\036\
\\001\036\001\036\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\037\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(294,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\039\001\039\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(295,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\039\001\039\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\040\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(297,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\001\042\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(298,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\001\043\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(300,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\021\000\000\000\021\000\021\000\021\000\021\000\000\
\\000\000\000\000\000\021\000\021\000\000\000\021\000\000\000\021\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\021\000\000\000\021\000\021\001\045\000\021\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(304,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\049\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(305,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\051\000\000\000\000\000\000\000\000\
\\000\000\001\050\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(307,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\066\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\052\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(308,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\053\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(309,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\054\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(310,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\055\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(311,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\056\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(312,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\057\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(313,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\058\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(314,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\059\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(315,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\060\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(316,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\061\000\000\001\061\001\061\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\061\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(317,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\061\000\000\001\061\001\061\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\061\000\000\001\062\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(318,256,
"\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\063\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062\
\\001\062\001\062\001\062\001\062\001\062\001\062\001\062\001\062"
),
(319,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\063\000\000\001\063\001\063\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\063\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\064\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(320,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\065\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(322,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\067\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(323,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\001\068\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(324,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\001\069\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(325,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\070\000\000\001\070\001\070\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\070\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(327,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\001\072\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\072\001\072\001\072\001\072\001\072\001\072\001\072\001\072\
\\001\072\001\072\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\072\001\072\001\072\001\072\001\072\001\072\001\072\
\\001\072\001\072\001\072\001\072\001\072\001\072\001\072\001\072\
\\001\072\001\072\001\072\001\072\001\072\001\072\001\072\001\072\
\\001\072\001\072\001\072\000\000\000\000\000\000\000\000\001\072\
\\000\000\001\072\001\072\001\072\001\072\001\072\001\072\001\072\
\\001\072\001\072\001\072\001\072\001\072\001\072\001\072\001\072\
\\001\072\001\072\001\072\001\072\001\072\001\072\001\072\001\072\
\\001\072\001\072\001\072\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(329,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\021\001\075\000\021\000\021\000\021\000\021\000\000\
\\000\000\000\000\000\021\000\021\000\000\000\021\000\000\000\021\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\021\000\000\000\021\000\021\000\021\000\021\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\001\074\000\021\000\000\000\021\000\000\
\\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\021\000\000\000\021\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(333,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\078\000\000\001\078\001\078\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\078\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(335,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\080\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(338,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\083\001\083\001\083\001\083\001\083\001\083\001\083\001\083\
\\001\083\001\083\001\083\001\083\001\083\001\083\001\083\001\083\
\\001\083\001\083\001\083\001\083\001\083\001\083\001\083\001\083\
\\001\083\001\083\001\083\001\083\001\083\001\083\001\083\001\083\
\\001\083\001\083\001\083\001\083\001\083\001\083\001\083\001\083\
\\001\083\001\083\001\083\001\083\001\083\001\083\001\083\001\083\
\\001\083\001\083\001\083\001\083\001\083\001\083\001\083\001\083\
\\001\083\001\083\001\083\001\083\001\083\001\083\001\083\001\083\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(339,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\084\001\084\001\084\001\084\001\084\001\084\001\084\001\084\
\\001\084\001\084\001\084\001\084\001\084\001\084\001\084\001\084\
\\001\084\001\084\001\084\001\084\001\084\001\084\001\084\001\084\
\\001\084\001\084\001\084\001\084\001\084\001\084\001\084\001\084\
\\001\084\001\084\001\084\001\084\001\084\001\084\001\084\001\084\
\\001\084\001\084\001\084\001\084\001\084\001\084\001\084\001\084\
\\001\084\001\084\001\084\001\084\001\084\001\084\001\084\001\084\
\\001\084\001\084\001\084\001\084\001\084\001\084\001\084\001\084\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(340,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\085\001\085\001\085\001\085\001\085\001\085\001\085\001\085\
\\001\085\001\085\001\085\001\085\001\085\001\085\001\085\001\085\
\\001\085\001\085\001\085\001\085\001\085\001\085\001\085\001\085\
\\001\085\001\085\001\085\001\085\001\085\001\085\001\085\001\085\
\\001\085\001\085\001\085\001\085\001\085\001\085\001\085\001\085\
\\001\085\001\085\001\085\001\085\001\085\001\085\001\085\001\085\
\\001\085\001\085\001\085\001\085\001\085\001\085\001\085\001\085\
\\001\085\001\085\001\085\001\085\001\085\001\085\001\085\001\085\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(342,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\087\001\087\001\087\001\087\001\087\001\087\001\087\001\087\
\\001\087\001\087\001\087\001\087\001\087\001\087\001\087\001\087\
\\001\087\001\087\001\087\001\087\001\087\001\087\001\087\001\087\
\\001\087\001\087\001\087\001\087\001\087\001\087\001\087\001\087\
\\001\087\001\087\001\087\001\087\001\087\001\087\001\087\001\087\
\\001\087\001\087\001\087\001\087\001\087\001\087\001\087\001\087\
\\001\087\001\087\001\087\001\087\001\087\001\087\001\087\001\087\
\\001\087\001\087\001\087\001\087\001\087\001\087\001\087\001\087\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(343,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\088\001\088\001\088\001\088\001\088\001\088\001\088\001\088\
\\001\088\001\088\001\088\001\088\001\088\001\088\001\088\001\088\
\\001\088\001\088\001\088\001\088\001\088\001\088\001\088\001\088\
\\001\088\001\088\001\088\001\088\001\088\001\088\001\088\001\088\
\\001\088\001\088\001\088\001\088\001\088\001\088\001\088\001\088\
\\001\088\001\088\001\088\001\088\001\088\001\088\001\088\001\088\
\\001\088\001\088\001\088\001\088\001\088\001\088\001\088\001\088\
\\001\088\001\088\001\088\001\088\001\088\001\088\001\088\001\088\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(345,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\090\001\090\001\090\001\090\001\090\001\090\001\090\001\090\
\\001\090\001\090\001\090\001\090\001\090\001\090\001\090\001\090\
\\001\090\001\090\001\090\001\090\001\090\001\090\001\090\001\090\
\\001\090\001\090\001\090\001\090\001\090\001\090\001\090\001\090\
\\001\090\001\090\001\090\001\090\001\090\001\090\001\090\001\090\
\\001\090\001\090\001\090\001\090\001\090\001\090\001\090\001\090\
\\001\090\001\090\001\090\001\090\001\090\001\090\001\090\001\090\
\\001\090\001\090\001\090\001\090\001\090\001\090\001\090\001\090\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(348,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\122\001\124\001\122\001\122\001\123\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\122\000\000\001\121\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\118\001\118\001\118\001\118\001\118\001\118\001\118\001\118\
\\001\118\001\118\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\001\109\000\000\000\000\
\\000\000\000\000\000\000\000\000\001\108\000\000\001\105\000\000\
\\000\000\001\104\001\103\000\000\000\000\000\000\001\102\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\001\101\000\000\
\\000\000\000\000\001\100\000\000\001\099\001\094\001\093\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(350,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\095\001\095\001\095\001\095\001\095\001\095\001\095\001\095\
\\001\095\001\095\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\095\001\095\001\095\001\095\001\095\001\095\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\095\001\095\001\095\001\095\001\095\001\095\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(351,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\096\001\096\001\096\001\096\001\096\001\096\001\096\001\096\
\\001\096\001\096\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\096\001\096\001\096\001\096\001\096\001\096\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\096\001\096\001\096\001\096\001\096\001\096\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(352,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\097\001\097\001\097\001\097\001\097\001\097\001\097\001\097\
\\001\097\001\097\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\097\001\097\001\097\001\097\001\097\001\097\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\097\001\097\001\097\001\097\001\097\001\097\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(353,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\098\001\098\001\098\001\098\001\098\001\098\001\098\001\098\
\\001\098\001\098\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\098\001\098\001\098\001\098\001\098\001\098\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\098\001\098\001\098\001\098\001\098\001\098\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(361,256,
"\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\000\000\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\107\001\107\001\107\001\107\001\107\001\107\001\107\001\107\
\\001\107\001\107\001\107\001\107\001\107\001\107\001\107\001\107\
\\001\107\001\107\001\107\001\107\001\107\001\107\001\107\001\107\
\\001\107\001\107\001\107\001\107\001\107\001\107\001\107\001\107\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106\
\\001\106\001\106\001\106\001\106\001\106\001\106\001\106\001\106"
),
(365,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\110\001\110\001\110\001\110\001\110\001\110\001\110\001\110\
\\001\110\001\110\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\110\001\110\001\110\001\110\001\110\001\110\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\110\001\110\001\110\001\110\001\110\001\110\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(366,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\111\001\111\001\111\001\111\001\111\001\111\001\111\001\111\
\\001\111\001\111\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\111\001\111\001\111\001\111\001\111\001\111\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\111\001\111\001\111\001\111\001\111\001\111\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(367,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\112\001\112\001\112\001\112\001\112\001\112\001\112\001\112\
\\001\112\001\112\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\112\001\112\001\112\001\112\001\112\001\112\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\112\001\112\001\112\001\112\001\112\001\112\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(368,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\113\001\113\001\113\001\113\001\113\001\113\001\113\001\113\
\\001\113\001\113\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\113\001\113\001\113\001\113\001\113\001\113\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\113\001\113\001\113\001\113\001\113\001\113\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(369,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\114\001\114\001\114\001\114\001\114\001\114\001\114\001\114\
\\001\114\001\114\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\114\001\114\001\114\001\114\001\114\001\114\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\114\001\114\001\114\001\114\001\114\001\114\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(370,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\115\001\115\001\115\001\115\001\115\001\115\001\115\001\115\
\\001\115\001\115\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\115\001\115\001\115\001\115\001\115\001\115\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\115\001\115\001\115\001\115\001\115\001\115\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(371,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\116\001\116\001\116\001\116\001\116\001\116\001\116\001\116\
\\001\116\001\116\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\116\001\116\001\116\001\116\001\116\001\116\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\116\001\116\001\116\001\116\001\116\001\116\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(372,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\117\001\117\001\117\001\117\001\117\001\117\001\117\001\117\
\\001\117\001\117\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\117\001\117\001\117\001\117\001\117\001\117\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\117\001\117\001\117\001\117\001\117\001\117\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(374,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\119\001\119\001\119\001\119\001\119\001\119\001\119\001\119\
\\001\119\001\119\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(375,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\120\001\120\001\120\001\120\001\120\001\120\001\120\001\120\
\\001\120\001\120\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(378,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\122\000\000\001\122\001\122\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\122\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(379,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\124\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(382,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\127\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(386,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\131\000\000\001\131\001\131\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\131\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(388,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\133\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(391,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\136\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(393,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\138\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(394,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\139\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(396,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\141\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(399,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\144\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(402,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\001\148\000\000\
\\001\147\001\147\001\147\001\147\001\147\001\147\001\147\001\147\
\\001\147\001\147\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(404,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\149\001\149\001\149\001\149\001\149\001\149\001\149\001\149\
\\001\149\001\149\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(406,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\151\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(408,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\155\000\000\001\155\001\155\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\155\000\000\001\154\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\153\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(412,256,
"\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\158\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157\
\\001\157\001\157\001\157\001\157\001\157\001\157\001\157\001\157"
),
(416,256,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\001\161\000\000\001\161\001\161\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\001\161\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\001\153\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\
\\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
),
(0, 0, "")]
fun f(n, i, x) = (n, Vector.tabulate(i, decode x))
val s = Pervasive.List.map f (Pervasive.List.rev (tl (Pervasive.List.rev s)))
exception LexHackingError
fun look ((j,x)::r, i: int) = if i = j then x else look(r, i)
| look ([], i) = raise LexHackingError
fun g {fin=x, trans=i} = {fin=x, trans=look(s,i)}
in Vector.fromList(Pervasive.List.map g
[{fin = [], trans = 0},
{fin = [], trans = 1},
{fin = [], trans = 1},
{fin = [], trans = 3},
{fin = [], trans = 3},
{fin = [], trans = 5},
{fin = [], trans = 5},
{fin = [], trans = 7},
{fin = [], trans = 7},
{fin = [], trans = 9},
{fin = [], trans = 9},
{fin = [], trans = 11},
{fin = [], trans = 11},
{fin = [], trans = 13},
{fin = [], trans = 13},
{fin = [], trans = 15},
{fin = [], trans = 15},
{fin = [], trans = 17},
{fin = [], trans = 17},
{fin = [(N 799)], trans = 0},
{fin = [(N 427),(N 799)], trans = 20},
{fin = [(N 427)], trans = 21},
{fin = [(N 521)], trans = 22},
{fin = [], trans = 23},
{fin = [], trans = 24},
{fin = [(N 512)], trans = 25},
{fin = [], trans = 25},
{fin = [], trans = 27},
{fin = [], trans = 28},
{fin = [(N 512)], trans = 29},
{fin = [], trans = 30},
{fin = [], trans = 31},
{fin = [(N 512)], trans = 32},
{fin = [], trans = 32},
{fin = [], trans = 34},
{fin = [(N 521)], trans = 35},
{fin = [], trans = 36},
{fin = [(N 534)], trans = 37},
{fin = [], trans = 37},
{fin = [], trans = 39},
{fin = [(N 547)], trans = 40},
{fin = [], trans = 40},
{fin = [(N 144),(N 799)], trans = 0},
{fin = [(N 142),(N 427),(N 799)], trans = 21},
{fin = [(N 140),(N 799)], trans = 0},
{fin = [(N 386),(N 799)], trans = 45},
{fin = [(N 386)], trans = 45},
{fin = [], trans = 47},
{fin = [(N 486)], trans = 48},
{fin = [(N 439)], trans = 49},
{fin = [(N 386),(N 799)], trans = 50},
{fin = [(N 386)], trans = 51},
{fin = [(N 386)], trans = 52},
{fin = [(N 374),(N 386)], trans = 53},
{fin = [(N 386)], trans = 54},
{fin = [(N 386)], trans = 55},
{fin = [(N 386)], trans = 56},
{fin = [(N 383),(N 386)], trans = 45},
{fin = [(N 386)], trans = 58},
{fin = [(N 386)], trans = 59},
{fin = [(N 386)], trans = 60},
{fin = [(N 369),(N 386)], trans = 45},
{fin = [(N 386)], trans = 62},
{fin = [(N 386)], trans = 63},
{fin = [(N 363),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 65},
{fin = [(N 386)], trans = 66},
{fin = [(N 357),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 68},
{fin = [(N 386)], trans = 69},
{fin = [(N 386)], trans = 70},
{fin = [(N 353),(N 386)], trans = 45},
{fin = [(N 386)], trans = 72},
{fin = [(N 386)], trans = 73},
{fin = [(N 348),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 75},
{fin = [(N 386)], trans = 76},
{fin = [(N 386)], trans = 77},
{fin = [(N 386)], trans = 78},
{fin = [(N 386)], trans = 79},
{fin = [(N 333),(N 386)], trans = 80},
{fin = [(N 386)], trans = 81},
{fin = [(N 386)], trans = 82},
{fin = [(N 343),(N 386)], trans = 45},
{fin = [(N 386)], trans = 84},
{fin = [(N 316),(N 386)], trans = 85},
{fin = [(N 386)], trans = 86},
{fin = [(N 386)], trans = 87},
{fin = [(N 386)], trans = 88},
{fin = [(N 386)], trans = 89},
{fin = [(N 386)], trans = 90},
{fin = [(N 326),(N 386)], trans = 45},
{fin = [(N 386)], trans = 92},
{fin = [(N 386)], trans = 93},
{fin = [(N 386)], trans = 94},
{fin = [(N 386)], trans = 95},
{fin = [(N 386)], trans = 96},
{fin = [(N 312),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 98},
{fin = [(N 386)], trans = 99},
{fin = [(N 304),(N 386)], trans = 45},
{fin = [(N 386)], trans = 101},
{fin = [(N 386)], trans = 102},
{fin = [(N 386)], trans = 103},
{fin = [(N 300),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 105},
{fin = [(N 386)], trans = 106},
{fin = [(N 386)], trans = 107},
{fin = [(N 386)], trans = 108},
{fin = [(N 386)], trans = 109},
{fin = [(N 294),(N 386)], trans = 45},
{fin = [(N 282),(N 386)], trans = 111},
{fin = [(N 386)], trans = 112},
{fin = [(N 287),(N 386)], trans = 45},
{fin = [(N 279),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 115},
{fin = [(N 386)], trans = 116},
{fin = [(N 386)], trans = 117},
{fin = [(N 386)], trans = 118},
{fin = [(N 386)], trans = 119},
{fin = [(N 276),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 121},
{fin = [(N 386)], trans = 122},
{fin = [(N 386)], trans = 123},
{fin = [(N 386)], trans = 124},
{fin = [(N 269),(N 386)], trans = 45},
{fin = [(N 386)], trans = 126},
{fin = [(N 263),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 128},
{fin = [(N 238),(N 386)], trans = 129},
{fin = [(N 386)], trans = 130},
{fin = [(N 386)], trans = 131},
{fin = [(N 252),(N 386)], trans = 132},
{fin = [(N 259),(N 386)], trans = 45},
{fin = [(N 386)], trans = 134},
{fin = [(N 386)], trans = 135},
{fin = [(N 386)], trans = 136},
{fin = [(N 386)], trans = 137},
{fin = [(N 246),(N 386)], trans = 45},
{fin = [(N 235),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 140},
{fin = [(N 386)], trans = 141},
{fin = [(N 386)], trans = 142},
{fin = [(N 386)], trans = 143},
{fin = [(N 386)], trans = 144},
{fin = [(N 232),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 146},
{fin = [(N 386)], trans = 147},
{fin = [(N 217),(N 386)], trans = 148},
{fin = [(N 386)], trans = 149},
{fin = [(N 386)], trans = 150},
{fin = [(N 386)], trans = 151},
{fin = [(N 225),(N 386)], trans = 45},
{fin = [(N 213),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 154},
{fin = [(N 386)], trans = 155},
{fin = [(N 386)], trans = 156},
{fin = [(N 386)], trans = 157},
{fin = [(N 386)], trans = 158},
{fin = [(N 386)], trans = 159},
{fin = [(N 386)], trans = 160},
{fin = [(N 386)], trans = 161},
{fin = [(N 210),(N 386)], trans = 45},
{fin = [(N 386)], trans = 163},
{fin = [(N 386)], trans = 164},
{fin = [(N 386)], trans = 165},
{fin = [(N 386)], trans = 166},
{fin = [(N 200),(N 386)], trans = 45},
{fin = [(N 386)], trans = 168},
{fin = [(N 193),(N 386)], trans = 45},
{fin = [(N 386)], trans = 170},
{fin = [(N 386)], trans = 171},
{fin = [(N 189),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 173},
{fin = [(N 184),(N 386)], trans = 45},
{fin = [(N 386)], trans = 175},
{fin = [(N 386)], trans = 176},
{fin = [(N 386)], trans = 177},
{fin = [(N 386)], trans = 178},
{fin = [(N 386)], trans = 179},
{fin = [(N 386)], trans = 180},
{fin = [(N 181),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 182},
{fin = [(N 386)], trans = 183},
{fin = [(N 386)], trans = 184},
{fin = [(N 172),(N 386)], trans = 45},
{fin = [(N 386),(N 799)], trans = 186},
{fin = [(N 167),(N 386)], trans = 45},
{fin = [(N 386)], trans = 188},
{fin = [(N 156),(N 386)], trans = 189},
{fin = [(N 386)], trans = 190},
{fin = [(N 386)], trans = 191},
{fin = [(N 386)], trans = 192},
{fin = [(N 164),(N 386)], trans = 45},
{fin = [(N 386)], trans = 194},
{fin = [(N 386)], trans = 195},
{fin = [(N 386)], trans = 196},
{fin = [(N 386)], trans = 197},
{fin = [(N 386)], trans = 198},
{fin = [(N 152),(N 386)], trans = 45},
{fin = [(N 427),(N 799)], trans = 21},
{fin = [(N 138),(N 799)], trans = 201},
{fin = [], trans = 202},
{fin = [], trans = 203},
{fin = [], trans = 204},
{fin = [], trans = 205},
{fin = [], trans = 206},
{fin = [(N 102)], trans = 0},
{fin = [], trans = 208},
{fin = [], trans = 209},
{fin = [], trans = 210},
{fin = [(N 94)], trans = 0},
{fin = [], trans = 212},
{fin = [], trans = 213},
{fin = [], trans = 214},
{fin = [], trans = 215},
{fin = [], trans = 216},
{fin = [], trans = 217},
{fin = [], trans = 218},
{fin = [(N 88)], trans = 0},
{fin = [], trans = 220},
{fin = [], trans = 221},
{fin = [], trans = 222},
{fin = [], trans = 223},
{fin = [], trans = 224},
{fin = [(N 78)], trans = 0},
{fin = [], trans = 226},
{fin = [], trans = 227},
{fin = [], trans = 228},
{fin = [], trans = 229},
{fin = [], trans = 230},
{fin = [(N 70)], trans = 0},
{fin = [], trans = 232},
{fin = [], trans = 233},
{fin = [], trans = 234},
{fin = [], trans = 235},
{fin = [(N 62)], trans = 0},
{fin = [], trans = 237},
{fin = [], trans = 238},
{fin = [], trans = 239},
{fin = [], trans = 240},
{fin = [], trans = 241},
{fin = [], trans = 242},
{fin = [], trans = 243},
{fin = [], trans = 244},
{fin = [], trans = 245},
{fin = [], trans = 246},
{fin = [], trans = 247},
{fin = [], trans = 248},
{fin = [], trans = 249},
{fin = [], trans = 250},
{fin = [], trans = 251},
{fin = [(N 55)], trans = 0},
{fin = [], trans = 253},
{fin = [], trans = 254},
{fin = [], trans = 255},
{fin = [], trans = 256},
{fin = [], trans = 257},
{fin = [], trans = 258},
{fin = [], trans = 259},
{fin = [], trans = 260},
{fin = [], trans = 261},
{fin = [], trans = 262},
{fin = [(N 35)], trans = 0},
{fin = [], trans = 264},
{fin = [], trans = 265},
{fin = [], trans = 266},
{fin = [], trans = 267},
{fin = [], trans = 268},
{fin = [], trans = 269},
{fin = [(N 22)], trans = 0},
{fin = [(N 136),(N 799)], trans = 0},
{fin = [(N 134),(N 799)], trans = 0},
{fin = [(N 129),(N 427),(N 799)], trans = 273},
{fin = [(N 132),(N 427)], trans = 21},
{fin = [(N 127),(N 799)], trans = 0},
{fin = [(N 122),(N 427),(N 799)], trans = 276},
{fin = [(N 125),(N 427)], trans = 21},
{fin = [(N 516),(N 799)], trans = 278},
{fin = [], trans = 279},
{fin = [(N 516)], trans = 278},
{fin = [(N 516),(N 799)], trans = 281},
{fin = [], trans = 282},
{fin = [(N 527)], trans = 283},
{fin = [], trans = 283},
{fin = [], trans = 285},
{fin = [], trans = 286},
{fin = [(N 560)], trans = 287},
{fin = [], trans = 287},
{fin = [], trans = 289},
{fin = [(N 567)], trans = 290},
{fin = [], trans = 290},
{fin = [(N 553)], trans = 292},
{fin = [], trans = 292},
{fin = [], trans = 294},
{fin = [(N 540)], trans = 295},
{fin = [], trans = 295},
{fin = [(N 799)], trans = 297},
{fin = [], trans = 298},
{fin = [(N 120)], trans = 0},
{fin = [(N 427),(N 799)], trans = 300},
{fin = [(N 116),(N 427)], trans = 21},
{fin = [(N 113),(N 799)], trans = 0},
{fin = [(N 111),(N 799)], trans = 0},
{fin = [(N 109),(N 799)], trans = 304},
{fin = [(N 699)], trans = 305},
{fin = [(N 696)], trans = 0},
{fin = [], trans = 307},
{fin = [], trans = 308},
{fin = [], trans = 309},
{fin = [], trans = 310},
{fin = [], trans = 311},
{fin = [], trans = 312},
{fin = [], trans = 313},
{fin = [], trans = 314},
{fin = [], trans = 315},
{fin = [], trans = 316},
{fin = [], trans = 317},
{fin = [], trans = 318},
{fin = [], trans = 319},
{fin = [], trans = 320},
{fin = [(N 797)], trans = 0},
{fin = [], trans = 322},
{fin = [], trans = 323},
{fin = [], trans = 324},
{fin = [], trans = 325},
{fin = [(N 739)], trans = 325},
{fin = [(N 430),(N 799)], trans = 327},
{fin = [(N 430)], trans = 327},
{fin = [(N 104),(N 427),(N 799)], trans = 329},
{fin = [(N 107)], trans = 0},
{fin = [(N 572)], trans = 0},
{fin = [(N 569),(N 799)], trans = 0},
{fin = [(N 8),(N 799)], trans = 333},
{fin = [(N 8)], trans = 333},
{fin = [(N 13),(N 799)], trans = 335},
{fin = [(N 13)], trans = 0},
{fin = [(N 674)], trans = 0},
{fin = [(N 674)], trans = 338},
{fin = [], trans = 339},
{fin = [], trans = 340},
{fin = [(N 591)], trans = 0},
{fin = [(N 674)], trans = 342},
{fin = [], trans = 343},
{fin = [(N 586)], trans = 0},
{fin = [(N 674)], trans = 345},
{fin = [(N 582)], trans = 0},
{fin = [(N 579),(N 674)], trans = 0},
{fin = [(N 667),(N 674)], trans = 348},
{fin = [(N 606)], trans = 0},
{fin = [], trans = 350},
{fin = [], trans = 351},
{fin = [], trans = 352},
{fin = [], trans = 353},
{fin = [(N 632)], trans = 0},
{fin = [(N 600)], trans = 0},
{fin = [(N 612)], trans = 0},
{fin = [(N 603)], trans = 0},
{fin = [(N 609)], trans = 0},
{fin = [(N 597)], trans = 0},
{fin = [(N 594)], trans = 0},
{fin = [], trans = 361},
{fin = [(N 620)], trans = 0},
{fin = [(N 616),(N 620)], trans = 0},
{fin = [(N 649)], trans = 0},
{fin = [], trans = 365},
{fin = [], trans = 366},
{fin = [], trans = 367},
{fin = [], trans = 368},
{fin = [], trans = 369},
{fin = [], trans = 370},
{fin = [], trans = 371},
{fin = [], trans = 372},
{fin = [(N 643)], trans = 0},
{fin = [], trans = 374},
{fin = [], trans = 375},
{fin = [(N 625)], trans = 0},
{fin = [(N 646)], trans = 0},
{fin = [(N 659)], trans = 378},
{fin = [(N 665)], trans = 379},
{fin = [(N 665)], trans = 0},
{fin = [(N 574),(N 674)], trans = 0},
{fin = [(N 672),(N 674)], trans = 382},
{fin = [(N 672)], trans = 0},
{fin = [(N 692)], trans = 0},
{fin = [(N 690),(N 692)], trans = 0},
{fin = [(N 683),(N 692)], trans = 386},
{fin = [(N 683)], trans = 386},
{fin = [(N 688),(N 692)], trans = 388},
{fin = [(N 688)], trans = 0},
{fin = [(N 723)], trans = 0},
{fin = [(N 723)], trans = 391},
{fin = [(N 716)], trans = 0},
{fin = [(N 723)], trans = 393},
{fin = [(N 713)], trans = 394},
{fin = [(N 710)], trans = 0},
{fin = [(N 721),(N 723)], trans = 396},
{fin = [(N 721)], trans = 0},
{fin = [(N 706)], trans = 0},
{fin = [(N 704),(N 706)], trans = 399},
{fin = [(N 704)], trans = 0},
{fin = [(N 767)], trans = 0},
{fin = [(N 767)], trans = 402},
{fin = [], trans = 402},
{fin = [], trans = 404},
{fin = [(N 745)], trans = 404},
{fin = [(N 767)], trans = 406},
{fin = [(N 765)], trans = 0},
{fin = [(N 767)], trans = 408},
{fin = [], trans = 406},
{fin = [(N 755)], trans = 0},
{fin = [], trans = 408},
{fin = [(N 767)], trans = 412},
{fin = [], trans = 412},
{fin = [(N 758)], trans = 0},
{fin = [(N 758),(N 767)], trans = 0},
{fin = [(N 767)], trans = 416},
{fin = [], trans = 416}])
end
structure StartStates =
struct
datatype yystartstate = STARTSTATE of int
(* start state definitions *)
val BLOCK_COMMENT = STARTSTATE 7;
val INITIAL = STARTSTATE 1;
val LINE_COMMENT = STARTSTATE 9;
val LINE_DIR1 = STARTSTATE 11;
val LINE_DIR2 = STARTSTATE 13;
val LINE_DIR3 = STARTSTATE 15;
val LINE_DIR4 = STARTSTATE 17;
val TEXT = STARTSTATE 3;
val TEXT_FMT = STARTSTATE 5;
end
type result = UserDeclarations.lexresult
exception LexerError (* raised if illegal leaf action tried *)
end
structure YYPosInt : INTEGER = Int
fun makeLexer yyinput =
let val yygone0= YYPosInt.fromInt ~1
val yyb = ref "\n" (* buffer *)
val yybl = ref 1 (*buffer length *)
val yybufpos = ref 1 (* location of next character to use *)
val yygone = ref yygone0 (* position in file of beginning of buffer *)
val yydone = ref false (* eof found yet? *)
val yybegin = ref 1 (*Current 'start state' for lexer *)
val YYBEGIN = fn (Internal.StartStates.STARTSTATE x) =>
yybegin := x
fun lex (yyarg as ((*#line 257.7 "ml.lex"*){source}(*#line 10593.1 "ml.lex.sml"*)
)) =
let fun continue() : Internal.result =
let fun scan (s,AcceptingLeaves : Internal.yyfinstate list list,l,i0) =
let fun action (i,nil) = raise LexError
| action (i,nil::l) = action (i-1,l)
| action (i,(node::acts)::l) =
case node of
Internal.N yyk =>
(let fun yymktext() = String.substring(!yyb,i0,i-i0)
val yypos = YYPosInt.+(YYPosInt.fromInt i0, !yygone)
open UserDeclarations Internal.StartStates
in (yybufpos := i; case yyk of
(* Application actions *)
102 => let val yytext=yymktext() in (*#line 296.24 "ml.lex"*)tok (Tokens.SYMBOL, yytext, source, yypos)(*#line 10609.1 "ml.lex.sml"*)
end
| 104 => let val yytext=yymktext() in (*#line 298.18 "ml.lex"*)tok (Tokens.HASH, yytext, source, yypos)(*#line 10611.1 "ml.lex.sml"*)
end
| 107 => let val yytext=yymktext() in (*#line 299.19 "ml.lex"*)tok (Tokens.HASHLBRACKET, yytext, source, yypos)(*#line 10613.1 "ml.lex.sml"*)
end
| 109 => let val yytext=yymktext() in (*#line 300.18 "ml.lex"*)tok (Tokens.LPAREN, yytext, source, yypos)(*#line 10615.1 "ml.lex.sml"*)
end
| 111 => let val yytext=yymktext() in (*#line 301.18 "ml.lex"*)tok (Tokens.RPAREN, yytext, source, yypos)(*#line 10617.1 "ml.lex.sml"*)
end
| 113 => let val yytext=yymktext() in (*#line 302.18 "ml.lex"*)tok (Tokens.COMMA, yytext, source, yypos)(*#line 10619.1 "ml.lex.sml"*)
end
| 116 => let val yytext=yymktext() in (*#line 303.19 "ml.lex"*)tok (Tokens.ARROW, yytext, source, yypos)(*#line 10621.1 "ml.lex.sml"*)
end
| 120 => let val yytext=yymktext() in (*#line 304.20 "ml.lex"*)tok (Tokens.DOTDOTDOT, yytext, source, yypos)(*#line 10623.1 "ml.lex.sml"*)
end
| 122 => let val yytext=yymktext() in (*#line 305.18 "ml.lex"*)tok (Tokens.COLON, yytext, source, yypos)(*#line 10625.1 "ml.lex.sml"*)
end
| 125 => let val yytext=yymktext() in (*#line 306.19 "ml.lex"*)tok (Tokens.COLONGT, yytext, source, yypos)(*#line 10627.1 "ml.lex.sml"*)
end
| 127 => let val yytext=yymktext() in (*#line 307.18 "ml.lex"*)tok (Tokens.SEMICOLON, yytext, source, yypos)(*#line 10629.1 "ml.lex.sml"*)
end
| 129 => let val yytext=yymktext() in (*#line 308.18 "ml.lex"*)tok (Tokens.EQUALOP, yytext, source, yypos)(*#line 10631.1 "ml.lex.sml"*)
end
| 13 => let val yytext=yymktext() in (*#line 285.21 "ml.lex"*)Source.newline (source, lastPos (yypos, yytext)); continue ()(*#line 10633.1 "ml.lex.sml"*)
end
| 132 => let val yytext=yymktext() in (*#line 309.19 "ml.lex"*)tok (Tokens.DARROW, yytext, source, yypos)(*#line 10635.1 "ml.lex.sml"*)
end
| 134 => let val yytext=yymktext() in (*#line 310.18 "ml.lex"*)tok (Tokens.LBRACKET, yytext, source, yypos)(*#line 10637.1 "ml.lex.sml"*)
end
| 136 => let val yytext=yymktext() in (*#line 311.18 "ml.lex"*)tok (Tokens.RBRACKET, yytext, source, yypos)(*#line 10639.1 "ml.lex.sml"*)
end
| 138 => let val yytext=yymktext() in (*#line 312.18 "ml.lex"*)tok (Tokens.WILD, yytext, source, yypos)(*#line 10641.1 "ml.lex.sml"*)
end
| 140 => let val yytext=yymktext() in (*#line 313.18 "ml.lex"*)tok (Tokens.LBRACE, yytext, source, yypos)(*#line 10643.1 "ml.lex.sml"*)
end
| 142 => let val yytext=yymktext() in (*#line 314.18 "ml.lex"*)tok (Tokens.BAR, yytext, source, yypos)(*#line 10645.1 "ml.lex.sml"*)
end
| 144 => let val yytext=yymktext() in (*#line 315.18 "ml.lex"*)tok (Tokens.RBRACE, yytext, source, yypos)(*#line 10647.1 "ml.lex.sml"*)
end
| 152 => let val yytext=yymktext() in (*#line 317.24 "ml.lex"*)tok (Tokens.ABSTYPE, yytext, source, yypos)(*#line 10649.1 "ml.lex.sml"*)
end
| 156 => let val yytext=yymktext() in (*#line 318.20 "ml.lex"*)tok (Tokens.AND, yytext, source, yypos)(*#line 10651.1 "ml.lex.sml"*)
end
| 164 => let val yytext=yymktext() in (*#line 319.24 "ml.lex"*)tok (Tokens.ANDALSO, yytext, source, yypos)(*#line 10653.1 "ml.lex.sml"*)
end
| 167 => let val yytext=yymktext() in (*#line 320.19 "ml.lex"*)tok (Tokens.AS, yytext, source, yypos)(*#line 10655.1 "ml.lex.sml"*)
end
| 172 => let val yytext=yymktext() in (*#line 321.21 "ml.lex"*)tok (Tokens.CASE, yytext, source, yypos)(*#line 10657.1 "ml.lex.sml"*)
end
| 181 => let val yytext=yymktext() in (*#line 322.25 "ml.lex"*)tok (Tokens.DATATYPE, yytext, source, yypos)(*#line 10659.1 "ml.lex.sml"*)
end
| 184 => let val yytext=yymktext() in (*#line 323.19 "ml.lex"*)tok (Tokens.DO, yytext, source, yypos)(*#line 10661.1 "ml.lex.sml"*)
end
| 189 => let val yytext=yymktext() in (*#line 324.21 "ml.lex"*)tok (Tokens.ELSE, yytext, source, yypos)(*#line 10663.1 "ml.lex.sml"*)
end
| 193 => let val yytext=yymktext() in (*#line 325.20 "ml.lex"*)tok (Tokens.END, yytext, source, yypos)(*#line 10665.1 "ml.lex.sml"*)
end
| 200 => let val yytext=yymktext() in (*#line 326.23 "ml.lex"*)tok (Tokens.EQTYPE, yytext, source, yypos)(*#line 10667.1 "ml.lex.sml"*)
end
| 210 => let val yytext=yymktext() in (*#line 327.26 "ml.lex"*)tok (Tokens.EXCEPTION, yytext, source, yypos)(*#line 10669.1 "ml.lex.sml"*)
end
| 213 => let val yytext=yymktext() in (*#line 328.19 "ml.lex"*)tok (Tokens.FN, yytext, source, yypos)(*#line 10671.1 "ml.lex.sml"*)
end
| 217 => let val yytext=yymktext() in (*#line 329.20 "ml.lex"*)tok (Tokens.FUN, yytext, source, yypos)(*#line 10673.1 "ml.lex.sml"*)
end
| 22 => let val yytext=yymktext() in (*#line 288.25 "ml.lex"*)tok (Tokens.ADDRESS, yytext, source, yypos)(*#line 10675.1 "ml.lex.sml"*)
end
| 225 => let val yytext=yymktext() in (*#line 330.24 "ml.lex"*)tok (Tokens.FUNCTOR, yytext, source, yypos)(*#line 10677.1 "ml.lex.sml"*)
end
| 232 => let val yytext=yymktext() in (*#line 331.23 "ml.lex"*)tok (Tokens.HANDLE, yytext, source, yypos)(*#line 10679.1 "ml.lex.sml"*)
end
| 235 => let val yytext=yymktext() in (*#line 332.19 "ml.lex"*)tok (Tokens.IF, yytext, source, yypos)(*#line 10681.1 "ml.lex.sml"*)
end
| 238 => let val yytext=yymktext() in (*#line 333.19 "ml.lex"*)tok (Tokens.IN, yytext, source, yypos)(*#line 10683.1 "ml.lex.sml"*)
end
| 246 => let val yytext=yymktext() in (*#line 334.24 "ml.lex"*)tok (Tokens.INCLUDE, yytext, source, yypos)(*#line 10685.1 "ml.lex.sml"*)
end
| 252 => let val yytext=yymktext() in (*#line 335.22 "ml.lex"*)tok (Tokens.INFIX, yytext, source, yypos)(*#line 10687.1 "ml.lex.sml"*)
end
| 259 => let val yytext=yymktext() in (*#line 336.23 "ml.lex"*)tok (Tokens.INFIXR, yytext, source, yypos)(*#line 10689.1 "ml.lex.sml"*)
end
| 263 => let val yytext=yymktext() in (*#line 337.20 "ml.lex"*)tok (Tokens.LET, yytext, source, yypos)(*#line 10691.1 "ml.lex.sml"*)
end
| 269 => let val yytext=yymktext() in (*#line 338.22 "ml.lex"*)tok (Tokens.LOCAL, yytext, source, yypos)(*#line 10693.1 "ml.lex.sml"*)
end
| 276 => let val yytext=yymktext() in (*#line 339.23 "ml.lex"*)tok (Tokens.NONFIX, yytext, source, yypos)(*#line 10695.1 "ml.lex.sml"*)
end
| 279 => let val yytext=yymktext() in (*#line 340.19 "ml.lex"*)tok (Tokens.OF, yytext, source, yypos)(*#line 10697.1 "ml.lex.sml"*)
end
| 282 => let val yytext=yymktext() in (*#line 341.19 "ml.lex"*)tok (Tokens.OP, yytext, source, yypos)(*#line 10699.1 "ml.lex.sml"*)
end
| 287 => let val yytext=yymktext() in (*#line 342.21 "ml.lex"*)tok (Tokens.OPEN, yytext, source, yypos)(*#line 10701.1 "ml.lex.sml"*)
end
| 294 => let val yytext=yymktext() in (*#line 343.23 "ml.lex"*)tok (Tokens.ORELSE, yytext, source, yypos)(*#line 10703.1 "ml.lex.sml"*)
end
| 300 => let val yytext=yymktext() in (*#line 344.22 "ml.lex"*)tok (Tokens.RAISE, yytext, source, yypos)(*#line 10705.1 "ml.lex.sml"*)
end
| 304 => let val yytext=yymktext() in (*#line 345.20 "ml.lex"*)tok (Tokens.REC, yytext, source, yypos)(*#line 10707.1 "ml.lex.sml"*)
end
| 312 => let val yytext=yymktext() in (*#line 346.24 "ml.lex"*)tok (Tokens.SHARING, yytext, source, yypos)(*#line 10709.1 "ml.lex.sml"*)
end
| 316 => let val yytext=yymktext() in (*#line 347.20 "ml.lex"*)tok (Tokens.SIG, yytext, source, yypos)(*#line 10711.1 "ml.lex.sml"*)
end
| 326 => let val yytext=yymktext() in (*#line 348.26 "ml.lex"*)tok (Tokens.SIGNATURE, yytext, source, yypos)(*#line 10713.1 "ml.lex.sml"*)
end
| 333 => let val yytext=yymktext() in (*#line 349.23 "ml.lex"*)tok (Tokens.STRUCT, yytext, source, yypos)(*#line 10715.1 "ml.lex.sml"*)
end
| 343 => let val yytext=yymktext() in (*#line 350.26 "ml.lex"*)tok (Tokens.STRUCTURE, yytext, source, yypos)(*#line 10717.1 "ml.lex.sml"*)
end
| 348 => let val yytext=yymktext() in (*#line 351.21 "ml.lex"*)tok (Tokens.THEN, yytext, source, yypos)(*#line 10719.1 "ml.lex.sml"*)
end
| 35 => let val yytext=yymktext() in (*#line 289.29 "ml.lex"*)tok (Tokens.BUILD_CONST, yytext, source, yypos)(*#line 10721.1 "ml.lex.sml"*)
end
| 353 => let val yytext=yymktext() in (*#line 352.21 "ml.lex"*)tok (Tokens.TYPE, yytext, source, yypos)(*#line 10723.1 "ml.lex.sml"*)
end
| 357 => let val yytext=yymktext() in (*#line 353.20 "ml.lex"*)tok (Tokens.VAL, yytext, source, yypos)(*#line 10725.1 "ml.lex.sml"*)
end
| 363 => let val yytext=yymktext() in (*#line 354.22 "ml.lex"*)tok (Tokens.WHERE, yytext, source, yypos)(*#line 10727.1 "ml.lex.sml"*)
end
| 369 => let val yytext=yymktext() in (*#line 355.22 "ml.lex"*)tok (Tokens.WHILE, yytext, source, yypos)(*#line 10729.1 "ml.lex.sml"*)
end
| 374 => let val yytext=yymktext() in (*#line 356.21 "ml.lex"*)tok (Tokens.WITH, yytext, source, yypos)(*#line 10731.1 "ml.lex.sml"*)
end
| 383 => let val yytext=yymktext() in (*#line 357.25 "ml.lex"*)tok (Tokens.WITHTYPE, yytext, source, yypos)(*#line 10733.1 "ml.lex.sml"*)
end
| 386 => let val yytext=yymktext() in (*#line 360.27 "ml.lex"*)tok' (Tokens.SHORTALPHANUMID, yytext, source, yypos)(*#line 10735.1 "ml.lex.sml"*)
end
| 427 => let val yytext=yymktext() in (*#line 362.5 "ml.lex"*)case yytext of
"*" => tok (Tokens.ASTERISK, yytext, source, yypos)
| _ => tok' (Tokens.SHORTSYMID, yytext, source, yypos)(*#line 10739.1 "ml.lex.sml"*)
end
| 430 => let val yytext=yymktext() in (*#line 365.24 "ml.lex"*)tok' (Tokens.TYVAR, yytext, source, yypos)(*#line 10741.1 "ml.lex.sml"*)
end
| 439 => let val yytext=yymktext() in (*#line 366.31 "ml.lex"*)tok' (Tokens.LONGALPHANUMID, yytext, source, yypos)(*#line 10743.1 "ml.lex.sml"*)
end
| 486 => let val yytext=yymktext() in (*#line 367.26 "ml.lex"*)tok' (Tokens.LONGSYMID, yytext, source, yypos)(*#line 10745.1 "ml.lex.sml"*)
end
| 512 => let val yytext=yymktext() in (*#line 371.5 "ml.lex"*)real (source, yypos, yytext)(*#line 10747.1 "ml.lex.sml"*)
end
| 516 => let val yytext=yymktext() in (*#line 373.5 "ml.lex"*)int (source, yypos, yytext, 0, {extended = NONE}, {negate = false}, StringCvt.DEC)(*#line 10749.1 "ml.lex.sml"*)
end
| 521 => let val yytext=yymktext() in (*#line 375.5 "ml.lex"*)int (source, yypos, yytext, 1, {extended = NONE}, {negate = true}, StringCvt.DEC)(*#line 10751.1 "ml.lex.sml"*)
end
| 527 => let val yytext=yymktext() in (*#line 377.5 "ml.lex"*)int (source, yypos, yytext, 2, {extended = NONE}, {negate = false}, StringCvt.HEX)(*#line 10753.1 "ml.lex.sml"*)
end
| 534 => let val yytext=yymktext() in (*#line 379.5 "ml.lex"*)int (source, yypos, yytext, 3, {extended = NONE}, {negate = true}, StringCvt.HEX)(*#line 10755.1 "ml.lex.sml"*)
end
| 540 => let val yytext=yymktext() in (*#line 381.5 "ml.lex"*)int (source, yypos, yytext, 2, {extended = SOME "binary notation"}, {negate = false}, StringCvt.BIN)(*#line 10757.1 "ml.lex.sml"*)
end
| 547 => let val yytext=yymktext() in (*#line 383.5 "ml.lex"*)int (source, yypos, yytext, 3, {extended = SOME "binary notation"}, {negate = true}, StringCvt.BIN)(*#line 10759.1 "ml.lex.sml"*)
end
| 55 => let val yytext=yymktext() in (*#line 290.36 "ml.lex"*)tok (Tokens.COMMAND_LINE_CONST, yytext, source, yypos)(*#line 10761.1 "ml.lex.sml"*)
end
| 553 => let val yytext=yymktext() in (*#line 385.5 "ml.lex"*)word (source, yypos, yytext, 2, {extended = NONE}, StringCvt.DEC)(*#line 10763.1 "ml.lex.sml"*)
end
| 560 => let val yytext=yymktext() in (*#line 387.5 "ml.lex"*)word (source, yypos, yytext, 3, {extended = NONE}, StringCvt.HEX)(*#line 10765.1 "ml.lex.sml"*)
end
| 567 => let val yytext=yymktext() in (*#line 389.5 "ml.lex"*)word (source, yypos, yytext, 3, {extended = SOME "binary notation"}, StringCvt.BIN)(*#line 10767.1 "ml.lex.sml"*)
end
| 569 => ((*#line 392.5 "ml.lex"*)startText (Source.getPos (source, yypos), fn (cs, l, r) =>
(YYBEGIN INITIAL;
Tokens.STRING (cs, l, r)))
; YYBEGIN TEXT
; continue ()(*#line 10773.1 "ml.lex.sml"*)
)
| 572 => ((*#line 398.5 "ml.lex"*)startText (Source.getPos (source, yypos), fn (cs, l, r) =>
let
fun err () =
error' (l, r, "character constant not of size 1")
val c =
case Int.compare (Vector.length cs, 1) of
LESS => (err (); 0)
| EQUAL => Vector.sub (cs, 0)
| GREATER => (err (); Vector.sub (cs, 0))
in
YYBEGIN INITIAL;
Tokens.CHAR (c, l, r)
end)
; YYBEGIN TEXT
; continue ()(*#line 10789.1 "ml.lex.sml"*)
)
| 574 => let val yytext=yymktext() in (*#line 414.22 "ml.lex"*)finishText (Source.getPos (source, lastPos (yypos, yytext)))(*#line 10791.1 "ml.lex.sml"*)
end
| 579 => let val yytext=yymktext() in (*#line 416.22 "ml.lex"*)addTextString yytext; continue ()(*#line 10793.1 "ml.lex.sml"*)
end
| 582 => let val yytext=yymktext() in (*#line 418.22 "ml.lex"*)addTextUTF8 (source, yypos, yytext); continue()(*#line 10795.1 "ml.lex.sml"*)
end
| 586 => let val yytext=yymktext() in (*#line 420.22 "ml.lex"*)addTextUTF8 (source, yypos, yytext); continue()(*#line 10797.1 "ml.lex.sml"*)
end
| 591 => let val yytext=yymktext() in (*#line 422.22 "ml.lex"*)addTextUTF8 (source, yypos, yytext); continue()(*#line 10799.1 "ml.lex.sml"*)
end
| 594 => ((*#line 423.22 "ml.lex"*)addTextChar #"\a"; continue ()(*#line 10801.1 "ml.lex.sml"*)
)
| 597 => ((*#line 424.22 "ml.lex"*)addTextChar #"\b"; continue ()(*#line 10803.1 "ml.lex.sml"*)
)
| 600 => ((*#line 425.22 "ml.lex"*)addTextChar #"\t"; continue ()(*#line 10805.1 "ml.lex.sml"*)
)
| 603 => ((*#line 426.22 "ml.lex"*)addTextChar #"\n"; continue ()(*#line 10807.1 "ml.lex.sml"*)
)
| 606 => ((*#line 427.22 "ml.lex"*)addTextChar #"\v"; continue ()(*#line 10809.1 "ml.lex.sml"*)
)
| 609 => ((*#line 428.22 "ml.lex"*)addTextChar #"\f"; continue ()(*#line 10811.1 "ml.lex.sml"*)
)
| 612 => ((*#line 429.22 "ml.lex"*)addTextChar #"\r"; continue ()(*#line 10813.1 "ml.lex.sml"*)
)
| 616 => let val yytext=yymktext() in (*#line 430.22 "ml.lex"*)addTextChar (Char.chr(Char.ord(String.sub(yytext, 2)) - Char.ord #"@"));
continue ()(*#line 10816.1 "ml.lex.sml"*)
end
| 62 => let val yytext=yymktext() in (*#line 291.23 "ml.lex"*)tok (Tokens.CONST, yytext, source, yypos)(*#line 10818.1 "ml.lex.sml"*)
end
| 620 => ((*#line 432.22 "ml.lex"*)error (source, yypos, yypos + 2, "Illegal control escape in text constant; must be one of @ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_");
continue ()(*#line 10821.1 "ml.lex.sml"*)
)
| 625 => let val yytext=yymktext() in (*#line 434.22 "ml.lex"*)addTextNumEsc (source, yypos, yytext, 1,
{extended = NONE}, StringCvt.DEC)
; continue ()(*#line 10825.1 "ml.lex.sml"*)
end
| 632 => let val yytext=yymktext() in (*#line 438.22 "ml.lex"*)addTextNumEsc (source, yypos, yytext, 2,
{extended = NONE}, StringCvt.HEX)
; continue ()(*#line 10829.1 "ml.lex.sml"*)
end
| 643 => let val yytext=yymktext() in (*#line 442.22 "ml.lex"*)addTextNumEsc (source, yypos, yytext, 2,
{extended = SOME "\\Uxxxxxxxx numeric escapes"},
StringCvt.HEX)
; continue ()(*#line 10834.1 "ml.lex.sml"*)
end
| 646 => ((*#line 446.22 "ml.lex"*)addTextString "\""; continue ()(*#line 10836.1 "ml.lex.sml"*)
)
| 649 => ((*#line 447.22 "ml.lex"*)addTextString "\\"; continue ()(*#line 10838.1 "ml.lex.sml"*)
)
| 659 => ((*#line 448.22 "ml.lex"*)YYBEGIN TEXT_FMT; continue ()(*#line 10840.1 "ml.lex.sml"*)
)
| 665 => let val yytext=yymktext() in (*#line 449.22 "ml.lex"*)Source.newline (source, lastPos (yypos, yytext)); YYBEGIN TEXT_FMT; continue ()(*#line 10842.1 "ml.lex.sml"*)
end
| 667 => ((*#line 450.22 "ml.lex"*)error (source, yypos, yypos + 1, "Illegal escape in text constant")
; continue ()(*#line 10845.1 "ml.lex.sml"*)
)
| 672 => let val yytext=yymktext() in (*#line 452.22 "ml.lex"*)error (source, yypos, lastPos (yypos, yytext), "Unclosed text constant at end of line")
; Source.newline (source, lastPos (yypos, yytext))
; continue ()(*#line 10849.1 "ml.lex.sml"*)
end
| 674 => ((*#line 455.22 "ml.lex"*)error (source, yypos, yypos, "Illegal character in text constant")
; continue ()(*#line 10852.1 "ml.lex.sml"*)
)
| 683 => ((*#line 458.22 "ml.lex"*)continue ()(*#line 10854.1 "ml.lex.sml"*)
)
| 688 => let val yytext=yymktext() in (*#line 459.22 "ml.lex"*)Source.newline (source, lastPos (yypos, yytext)); continue ()(*#line 10856.1 "ml.lex.sml"*)
end
| 690 => ((*#line 460.22 "ml.lex"*)YYBEGIN TEXT; continue ()(*#line 10858.1 "ml.lex.sml"*)
)
| 692 => ((*#line 461.22 "ml.lex"*)error (source, yypos, yypos, "Illegal formatting character in text continuation")
; continue ()(*#line 10861.1 "ml.lex.sml"*)
)
| 696 => let val yytext=yymktext() in (*#line 466.5 "ml.lex"*)if allowLineComments ()
then ()
else error (source, yypos, lastPos (yypos, yytext),
"Line comments disallowed, compile with -default-ann 'allowLineComments true'")
; startComment (source, yypos, fn () =>
YYBEGIN INITIAL)
; YYBEGIN LINE_COMMENT
; continue ()(*#line 10870.1 "ml.lex.sml"*)
end
| 699 => ((*#line 475.5 "ml.lex"*)startComment (source, yypos, fn () =>
YYBEGIN INITIAL)
; YYBEGIN BLOCK_COMMENT
; continue ()(*#line 10875.1 "ml.lex.sml"*)
)
| 70 => let val yytext=yymktext() in (*#line 292.24 "ml.lex"*)tok (Tokens.EXPORT, yytext, source, yypos)(*#line 10877.1 "ml.lex.sml"*)
end
| 704 => let val yytext=yymktext() in (*#line 481.5 "ml.lex"*)finishComment (lastPos (yypos, yytext))
; Source.newline (source, lastPos (yypos, yytext))
; continue ()(*#line 10881.1 "ml.lex.sml"*)
end
| 706 => ((*#line 485.5 "ml.lex"*)continue ()(*#line 10883.1 "ml.lex.sml"*)
)
| 710 => let val yytext=yymktext() in (*#line 488.5 "ml.lex"*)if allowLineComments ()
then ()
else error (source, yypos, lastPos (yypos, yytext),
"Line comments disallowed, compile with -default-ann 'allowLineComments true'")
; startComment (source, yypos, fn () =>
YYBEGIN BLOCK_COMMENT)
; YYBEGIN LINE_COMMENT
; continue ()(*#line 10892.1 "ml.lex.sml"*)
end
| 713 => ((*#line 497.5 "ml.lex"*)startComment (source, yypos, fn () =>
YYBEGIN BLOCK_COMMENT)
; YYBEGIN BLOCK_COMMENT
; continue ()(*#line 10897.1 "ml.lex.sml"*)
)
| 716 => let val yytext=yymktext() in (*#line 502.5 "ml.lex"*)finishComment (lastPos (yypos,yytext))
; continue ()(*#line 10900.1 "ml.lex.sml"*)
end
| 721 => let val yytext=yymktext() in (*#line 505.5 "ml.lex"*)Source.newline (source, lastPos (yypos, yytext))
; continue ()(*#line 10903.1 "ml.lex.sml"*)
end
| 723 => ((*#line 508.5 "ml.lex"*)continue ()(*#line 10905.1 "ml.lex.sml"*)
)
| 739 => ((*#line 512.5 "ml.lex"*)startLineDir (source, yypos, fn () =>
YYBEGIN INITIAL)
; YYBEGIN LINE_DIR1
; continue ()(*#line 10910.1 "ml.lex.sml"*)
)
| 745 => let val yytext=yymktext() in (*#line 518.5 "ml.lex"*)let
fun err () =
(addCommentError "Illegal line directive"
; YYBEGIN BLOCK_COMMENT)
in
case String.split (yytext, #".") of
[line, col] =>
(YYBEGIN LINE_DIR2
; addLineDirLineCol (valOf (Int.fromString line), valOf (Int.fromString col))
handle Overflow => err () | Option => err ()
; continue ())
| _ => (err (); continue ())
end(*#line 10924.1 "ml.lex.sml"*)
end
| 755 => ((*#line 532.5 "ml.lex"*)YYBEGIN LINE_DIR3
; continue ()(*#line 10927.1 "ml.lex.sml"*)
)
| 758 => let val yytext=yymktext() in (*#line 535.5 "ml.lex"*)addLineDirFile (String.dropLast yytext)
; YYBEGIN LINE_DIR4
; continue ()(*#line 10931.1 "ml.lex.sml"*)
end
| 765 => let val yytext=yymktext() in (*#line 539.5 "ml.lex"*)finishLineDir (source, lastPos (yypos, yytext))
; continue ()(*#line 10934.1 "ml.lex.sml"*)
end
| 767 => ((*#line 542.5 "ml.lex"*)addCommentError "Illegal line directive"
; YYBEGIN BLOCK_COMMENT
; continue ()(*#line 10938.1 "ml.lex.sml"*)
)
| 78 => let val yytext=yymktext() in (*#line 293.24 "ml.lex"*)tok (Tokens.IMPORT, yytext, source, yypos)(*#line 10940.1 "ml.lex.sml"*)
end
| 797 => let val yytext=yymktext() in (*#line 548.5 "ml.lex"*)let
val file = List.nth (String.split (yytext, #"\""), 1)
val file =
if OS.Path.isAbsolute file
then file
else OS.Path.mkCanonical (OS.Path.concat (OS.Path.dir (Source.name source), file))
in
tok' (fn (_, l, r) => Tokens.SHOW_BASIS (file, l, r), yytext, source, yypos)
end(*#line 10950.1 "ml.lex.sml"*)
end
| 799 => ((*#line 560.5 "ml.lex"*)error (source, yypos, yypos, "Illegal token")
; continue ()(*#line 10953.1 "ml.lex.sml"*)
)
| 8 => ((*#line 284.21 "ml.lex"*)continue ()(*#line 10955.1 "ml.lex.sml"*)
)
| 88 => let val yytext=yymktext() in (*#line 294.26 "ml.lex"*)tok (Tokens.OVERLOAD, yytext, source, yypos)(*#line 10957.1 "ml.lex.sml"*)
end
| 94 => let val yytext=yymktext() in (*#line 295.22 "ml.lex"*)tok (Tokens.PRIM, yytext, source, yypos)(*#line 10959.1 "ml.lex.sml"*)
end
| _ => raise Internal.LexerError
) end )
val {fin,trans} = Vector.sub(Internal.tab, s)
val NewAcceptingLeaves = fin::AcceptingLeaves
in if l = !yybl then
if trans = #trans(Vector.sub(Internal.tab,0))
then action(l,NewAcceptingLeaves
) else let val newchars= if !yydone then "" else yyinput 1024
in if (String.size newchars)=0
then (yydone := true;
if (l=i0) then UserDeclarations.eof yyarg
else action(l,NewAcceptingLeaves))
else (if i0=l then yyb := newchars
else yyb := String.substring(!yyb,i0,l-i0)^newchars;
yygone := YYPosInt.+(!yygone, YYPosInt.fromInt i0);
yybl := String.size (!yyb);
scan (s,AcceptingLeaves,l-i0,0))
end
else let val NewChar = Char.ord(CharVector.sub(!yyb,l))
val NewState = Vector.sub(trans, NewChar)
in if NewState=0 then action(l,NewAcceptingLeaves)
else scan(NewState,NewAcceptingLeaves,l+1,i0)
end
end
(*
val start= if String.substring(!yyb,!yybufpos-1,1)="\n"
then !yybegin+1 else !yybegin
*)
in scan(!yybegin (* start *),nil,!yybufpos,!yybufpos)
end
in continue end
in lex
end
end
|
[
{
"context": " the pretty printer for Clojure\n\n; Copyright (c) Rich Hickey. All rights reserved.\n; The use and distributio",
"end": 92,
"score": 0.9998717308044434,
"start": 81,
"tag": "NAME",
"value": "Rich Hickey"
},
{
"context": "ice, or any other, from this software.\n\n;; Author: Tom Faulhaber\n;; April 3, 2009\n\n\n;; This is just a macro to mak",
"end": 551,
"score": 0.9998977780342102,
"start": 538,
"tag": "NAME",
"value": "Tom Faulhaber"
}
] |
Chapter 07 Code/niko/clojure/test/clojure/test_clojure/pprint/test_helper.clj
|
PacktPublishing/Clojure-Programming-Cookbook
| 14 |
;;; test_helper.clj -- part of the pretty printer for Clojure
; Copyright (c) Rich Hickey. All rights reserved.
; The use and distribution terms for this software are covered by the
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
; which can be found in the file epl-v10.html at the root of this distribution.
; By using this software in any fashion, you are agreeing to be bound by
; the terms of this license.
; You must not remove this notice, or any other, from this software.
;; Author: Tom Faulhaber
;; April 3, 2009
;; This is just a macro to make my tests a little cleaner
(ns clojure.test-clojure.pprint.test-helper
(:use [clojure.test :only (deftest is)]
[clojure.test-helper :only [platform-newlines]]))
(defn- back-match [x y] (re-matches y x))
(defmacro simple-tests [name & test-pairs]
`(deftest ~name
~@(for [[x y] (partition 2 test-pairs)]
(cond
(instance? java.util.regex.Pattern y)
`(is (#'clojure.test-clojure.pprint.test-helper/back-match ~x ~y))
(instance? java.lang.String y) `(is (= ~x (platform-newlines ~y)))
:else `(is (= ~x ~y))))))
|
49553
|
;;; test_helper.clj -- part of the pretty printer for Clojure
; Copyright (c) <NAME>. All rights reserved.
; The use and distribution terms for this software are covered by the
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
; which can be found in the file epl-v10.html at the root of this distribution.
; By using this software in any fashion, you are agreeing to be bound by
; the terms of this license.
; You must not remove this notice, or any other, from this software.
;; Author: <NAME>
;; April 3, 2009
;; This is just a macro to make my tests a little cleaner
(ns clojure.test-clojure.pprint.test-helper
(:use [clojure.test :only (deftest is)]
[clojure.test-helper :only [platform-newlines]]))
(defn- back-match [x y] (re-matches y x))
(defmacro simple-tests [name & test-pairs]
`(deftest ~name
~@(for [[x y] (partition 2 test-pairs)]
(cond
(instance? java.util.regex.Pattern y)
`(is (#'clojure.test-clojure.pprint.test-helper/back-match ~x ~y))
(instance? java.lang.String y) `(is (= ~x (platform-newlines ~y)))
:else `(is (= ~x ~y))))))
| true |
;;; test_helper.clj -- part of the pretty printer for Clojure
; Copyright (c) PI:NAME:<NAME>END_PI. All rights reserved.
; The use and distribution terms for this software are covered by the
; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
; which can be found in the file epl-v10.html at the root of this distribution.
; By using this software in any fashion, you are agreeing to be bound by
; the terms of this license.
; You must not remove this notice, or any other, from this software.
;; Author: PI:NAME:<NAME>END_PI
;; April 3, 2009
;; This is just a macro to make my tests a little cleaner
(ns clojure.test-clojure.pprint.test-helper
(:use [clojure.test :only (deftest is)]
[clojure.test-helper :only [platform-newlines]]))
(defn- back-match [x y] (re-matches y x))
(defmacro simple-tests [name & test-pairs]
`(deftest ~name
~@(for [[x y] (partition 2 test-pairs)]
(cond
(instance? java.util.regex.Pattern y)
`(is (#'clojure.test-clojure.pprint.test-helper/back-match ~x ~y))
(instance? java.lang.String y) `(is (= ~x (platform-newlines ~y)))
:else `(is (= ~x ~y))))))
|
[
{
"context": "ts/\"}\n :autodoc {:web-src-dir \"http://github.com/neotyk/http.async.client/blob/\"\n :web-home \"h",
"end": 982,
"score": 0.7722432017326355,
"start": 976,
"tag": "USERNAME",
"value": "neotyk"
},
{
"context": "t/autodoc/\"\n :copyright \"Copyright 2011 Hubert Iwaniuk\"})\n",
"end": 1137,
"score": 0.9998464584350586,
"start": 1123,
"tag": "NAME",
"value": "Hubert Iwaniuk"
}
] |
project.clj
|
pelerkejepit/async
| 0 |
(defproject http.async.client "0.4.2"
:name "http.async.client"
:description "Asynchronous HTTP Client for Clojure"
:url "http://neotyk.github.com/http.async.client/"
:source-path "src/clj"
:java-source-path "src/jvm"
:javac-options {:deprecation "true"}
:dependencies [[org.clojure/clojure "1.3.0"]
[com.ning/async-http-client "1.7.0"]]
:dev-dependencies [[codox "0.4.0"]
[org.eclipse.jetty/jetty-server "7.1.4.v20100610"]
[org.eclipse.jetty/jetty-security "7.1.4.v20100610"]
[lein-difftest "1.3.3" :exclusions [org.clojure/clojure
org.clojure/clojure-contrib]]
[log4j "1.2.13"]
[org.slf4j/slf4j-log4j12 "1.6.4"]]
;; :repositories {"snapshots" "http://oss.sonatype.org/content/repositories/snapshots/"}
:autodoc {:web-src-dir "http://github.com/neotyk/http.async.client/blob/"
:web-home "http://neotyk.github.com/http.async.client/autodoc/"
:copyright "Copyright 2011 Hubert Iwaniuk"})
|
4952
|
(defproject http.async.client "0.4.2"
:name "http.async.client"
:description "Asynchronous HTTP Client for Clojure"
:url "http://neotyk.github.com/http.async.client/"
:source-path "src/clj"
:java-source-path "src/jvm"
:javac-options {:deprecation "true"}
:dependencies [[org.clojure/clojure "1.3.0"]
[com.ning/async-http-client "1.7.0"]]
:dev-dependencies [[codox "0.4.0"]
[org.eclipse.jetty/jetty-server "7.1.4.v20100610"]
[org.eclipse.jetty/jetty-security "7.1.4.v20100610"]
[lein-difftest "1.3.3" :exclusions [org.clojure/clojure
org.clojure/clojure-contrib]]
[log4j "1.2.13"]
[org.slf4j/slf4j-log4j12 "1.6.4"]]
;; :repositories {"snapshots" "http://oss.sonatype.org/content/repositories/snapshots/"}
:autodoc {:web-src-dir "http://github.com/neotyk/http.async.client/blob/"
:web-home "http://neotyk.github.com/http.async.client/autodoc/"
:copyright "Copyright 2011 <NAME>"})
| true |
(defproject http.async.client "0.4.2"
:name "http.async.client"
:description "Asynchronous HTTP Client for Clojure"
:url "http://neotyk.github.com/http.async.client/"
:source-path "src/clj"
:java-source-path "src/jvm"
:javac-options {:deprecation "true"}
:dependencies [[org.clojure/clojure "1.3.0"]
[com.ning/async-http-client "1.7.0"]]
:dev-dependencies [[codox "0.4.0"]
[org.eclipse.jetty/jetty-server "7.1.4.v20100610"]
[org.eclipse.jetty/jetty-security "7.1.4.v20100610"]
[lein-difftest "1.3.3" :exclusions [org.clojure/clojure
org.clojure/clojure-contrib]]
[log4j "1.2.13"]
[org.slf4j/slf4j-log4j12 "1.6.4"]]
;; :repositories {"snapshots" "http://oss.sonatype.org/content/repositories/snapshots/"}
:autodoc {:web-src-dir "http://github.com/neotyk/http.async.client/blob/"
:web-home "http://neotyk.github.com/http.async.client/autodoc/"
:copyright "Copyright 2011 PI:NAME:<NAME>END_PI"})
|
[
{
"context": "\"Biggin\") 0\n (g/lit \"Nelson\") 1\n (g/lit \"Jellis\")",
"end": 2390,
"score": 0.9056075215339661,
"start": 2385,
"tag": "NAME",
"value": "elson"
},
{
"context": "\"Nelson\") 1\n (g/lit \"Jellis\") 2))\n (g/select :SellerG :case)\n g/col",
"end": 2438,
"score": 0.9584004282951355,
"start": 2433,
"tag": "NAME",
"value": "ellis"
},
{
"context": ":case)\n g/collect\n set) => #{{:SellerG \"Biggin\" :case 0}\n {:SellerG \"Jellis\" :cas",
"end": 2526,
"score": 0.9845094680786133,
"start": 2520,
"tag": "NAME",
"value": "Biggin"
},
{
"context": "lerG \"Biggin\" :case 0}\n {:SellerG \"Jellis\" :case 2}\n {:SellerG \"Nelson\" :cas",
"end": 2570,
"score": 0.9997079372406006,
"start": 2564,
"tag": "NAME",
"value": "Jellis"
},
{
"context": "lerG \"Jellis\" :case 2}\n {:SellerG \"Nelson\" :case 1}}\n (-> (df-20)\n (g/limit 10)\n ",
"end": 2614,
"score": 0.9997629523277283,
"start": 2608,
"tag": "NAME",
"value": "Nelson"
},
{
"context": "iggin\") 0\n (g/lit \"Nelson\") 1))\n (g/select :SellerG :case)\n g/col",
"end": 2794,
"score": 0.5345033407211304,
"start": 2791,
"tag": "NAME",
"value": "son"
},
{
"context": ":case)\n g/collect\n set) => #{{:SellerG \"Biggin\" :case 0}\n {:SellerG \"Jellis\" :cas",
"end": 2882,
"score": 0.9615219831466675,
"start": 2876,
"tag": "NAME",
"value": "Biggin"
},
{
"context": "lerG \"Biggin\" :case 0}\n {:SellerG \"Jellis\" :case nil}\n {:SellerG \"Nelson\" :c",
"end": 2926,
"score": 0.9997444152832031,
"start": 2920,
"tag": "NAME",
"value": "Jellis"
},
{
"context": "rG \"Jellis\" :case nil}\n {:SellerG \"Nelson\" :case 1}}\n (-> (df-20)\n (g/limit 10)\n ",
"end": 2972,
"score": 0.9997646808624268,
"start": 2966,
"tag": "NAME",
"value": "Nelson"
},
{
"context": "ase :SellerG\n (g/lit \"Jellis\") 0\n (g/lit \"Nelson\")",
"end": 3104,
"score": 0.9997943043708801,
"start": 3098,
"tag": "NAME",
"value": "Jellis"
},
{
"context": " \"Jellis\") 0\n (g/lit \"Nelson\") 1\n 123))\n (g/s",
"end": 3152,
"score": 0.9996631741523743,
"start": 3146,
"tag": "NAME",
"value": "Nelson"
},
{
"context": ":case)\n g/collect\n set) => #{{:SellerG \"Biggin\" :case 123}\n {:SellerG \"Jellis\" :c",
"end": 3273,
"score": 0.9997779726982117,
"start": 3267,
"tag": "NAME",
"value": "Biggin"
},
{
"context": "rG \"Biggin\" :case 123}\n {:SellerG \"Jellis\" :case 0}\n {:SellerG \"Nelson\" :cas",
"end": 3319,
"score": 0.9998324513435364,
"start": 3313,
"tag": "NAME",
"value": "Jellis"
},
{
"context": "lerG \"Jellis\" :case 0}\n {:SellerG \"Nelson\" :case 1}})\n\n(fact \"On if\" :slow\n (-> (df-20)\n ",
"end": 3363,
"score": 0.9998257756233215,
"start": 3357,
"tag": "NAME",
"value": "Nelson"
}
] |
test/zero_one/geni/clojure_idioms_test.clj
|
WaqasAliAbbasi/geni
| 233 |
(ns zero-one.geni.clojure-idioms-test
(:require
[midje.sweet :refer [fact =>]]
[zero-one.geni.core :as g]
[zero-one.geni.test-resources :refer [spark df-20]]))
(fact "On update"
(-> (g/table->dataset @spark (mapv vector (range 5)) [:i])
(g/update :i g/+ 1 2 3)
(g/collect-col :i)) => [6 7 8 9 10])
(fact "On cond" :slow
(-> (df-20)
(g/with-column :cond (g/cond
(g/< :Price 8e5) (g/lit "low")
(g/< :Price 1e6) (g/lit "medium")
:else (g/lit "high")))
(g/collect-col :cond)
set) => #{"high" "medium" "low"})
(fact "On condp" :slow
(-> (g/table->dataset @spark (mapv vector (range 1 16)) [:idx])
(g/with-column :fb (g/condp #(g/zero? (g/mod %2 %1)) :idx
15 (g/lit "fizzbuzz")
5 (g/lit "buzz")
3 (g/lit "fizz")
(g/str :idx)))
g/collect) => [{:idx 1, :fb "1"}
{:idx 2, :fb "2"}
{:idx 3, :fb "fizz"}
{:idx 4, :fb "4"}
{:idx 5, :fb "buzz"}
{:idx 6, :fb "fizz"}
{:idx 7, :fb "7"}
{:idx 8, :fb "8"}
{:idx 9, :fb "fizz"}
{:idx 10, :fb "buzz"}
{:idx 11, :fb "11"}
{:idx 12, :fb "fizz"}
{:idx 13, :fb "13"}
{:idx 14, :fb "14"}
{:idx 15, :fb "fizzbuzz"}]
(-> (g/table->dataset @spark (mapv vector (range 1 16)) [:idx])
(g/with-column :fb (g/condp #(g/zero? (g/mod %2 %1)) :idx
15 (g/lit "fizzbuzz")
5 (g/lit "buzz")
3 (g/lit "fizz")))
(g/remove (g/null? :fb))
g/collect) => [{:fb "fizz" :idx 3}
{:fb "buzz" :idx 5}
{:fb "fizz" :idx 6}
{:fb "fizz" :idx 9}
{:fb "buzz" :idx 10}
{:fb "fizz" :idx 12}
{:fb "fizzbuzz" :idx 15}])
(fact "On case" :slow
(-> (df-20)
(g/limit 10)
(g/with-column :case (g/case :SellerG
(g/lit "Biggin") 0
(g/lit "Nelson") 1
(g/lit "Jellis") 2))
(g/select :SellerG :case)
g/collect
set) => #{{:SellerG "Biggin" :case 0}
{:SellerG "Jellis" :case 2}
{:SellerG "Nelson" :case 1}}
(-> (df-20)
(g/limit 10)
(g/with-column :case (g/case :SellerG
(g/lit "Biggin") 0
(g/lit "Nelson") 1))
(g/select :SellerG :case)
g/collect
set) => #{{:SellerG "Biggin" :case 0}
{:SellerG "Jellis" :case nil}
{:SellerG "Nelson" :case 1}}
(-> (df-20)
(g/limit 10)
(g/with-column :case (g/case :SellerG
(g/lit "Jellis") 0
(g/lit "Nelson") 1
123))
(g/select :SellerG :case)
g/collect
set) => #{{:SellerG "Biggin" :case 123}
{:SellerG "Jellis" :case 0}
{:SellerG "Nelson" :case 1}})
(fact "On if" :slow
(-> (df-20)
(g/with-column :if (g/if (g/< :Price 1e6)
(g/lit "high")
(g/lit "low")))
(g/collect-col :if)
set) => #{"high" "low"})
|
5745
|
(ns zero-one.geni.clojure-idioms-test
(:require
[midje.sweet :refer [fact =>]]
[zero-one.geni.core :as g]
[zero-one.geni.test-resources :refer [spark df-20]]))
(fact "On update"
(-> (g/table->dataset @spark (mapv vector (range 5)) [:i])
(g/update :i g/+ 1 2 3)
(g/collect-col :i)) => [6 7 8 9 10])
(fact "On cond" :slow
(-> (df-20)
(g/with-column :cond (g/cond
(g/< :Price 8e5) (g/lit "low")
(g/< :Price 1e6) (g/lit "medium")
:else (g/lit "high")))
(g/collect-col :cond)
set) => #{"high" "medium" "low"})
(fact "On condp" :slow
(-> (g/table->dataset @spark (mapv vector (range 1 16)) [:idx])
(g/with-column :fb (g/condp #(g/zero? (g/mod %2 %1)) :idx
15 (g/lit "fizzbuzz")
5 (g/lit "buzz")
3 (g/lit "fizz")
(g/str :idx)))
g/collect) => [{:idx 1, :fb "1"}
{:idx 2, :fb "2"}
{:idx 3, :fb "fizz"}
{:idx 4, :fb "4"}
{:idx 5, :fb "buzz"}
{:idx 6, :fb "fizz"}
{:idx 7, :fb "7"}
{:idx 8, :fb "8"}
{:idx 9, :fb "fizz"}
{:idx 10, :fb "buzz"}
{:idx 11, :fb "11"}
{:idx 12, :fb "fizz"}
{:idx 13, :fb "13"}
{:idx 14, :fb "14"}
{:idx 15, :fb "fizzbuzz"}]
(-> (g/table->dataset @spark (mapv vector (range 1 16)) [:idx])
(g/with-column :fb (g/condp #(g/zero? (g/mod %2 %1)) :idx
15 (g/lit "fizzbuzz")
5 (g/lit "buzz")
3 (g/lit "fizz")))
(g/remove (g/null? :fb))
g/collect) => [{:fb "fizz" :idx 3}
{:fb "buzz" :idx 5}
{:fb "fizz" :idx 6}
{:fb "fizz" :idx 9}
{:fb "buzz" :idx 10}
{:fb "fizz" :idx 12}
{:fb "fizzbuzz" :idx 15}])
(fact "On case" :slow
(-> (df-20)
(g/limit 10)
(g/with-column :case (g/case :SellerG
(g/lit "Biggin") 0
(g/lit "N<NAME>") 1
(g/lit "J<NAME>") 2))
(g/select :SellerG :case)
g/collect
set) => #{{:SellerG "<NAME>" :case 0}
{:SellerG "<NAME>" :case 2}
{:SellerG "<NAME>" :case 1}}
(-> (df-20)
(g/limit 10)
(g/with-column :case (g/case :SellerG
(g/lit "Biggin") 0
(g/lit "Nel<NAME>") 1))
(g/select :SellerG :case)
g/collect
set) => #{{:SellerG "<NAME>" :case 0}
{:SellerG "<NAME>" :case nil}
{:SellerG "<NAME>" :case 1}}
(-> (df-20)
(g/limit 10)
(g/with-column :case (g/case :SellerG
(g/lit "<NAME>") 0
(g/lit "<NAME>") 1
123))
(g/select :SellerG :case)
g/collect
set) => #{{:SellerG "<NAME>" :case 123}
{:SellerG "<NAME>" :case 0}
{:SellerG "<NAME>" :case 1}})
(fact "On if" :slow
(-> (df-20)
(g/with-column :if (g/if (g/< :Price 1e6)
(g/lit "high")
(g/lit "low")))
(g/collect-col :if)
set) => #{"high" "low"})
| true |
(ns zero-one.geni.clojure-idioms-test
(:require
[midje.sweet :refer [fact =>]]
[zero-one.geni.core :as g]
[zero-one.geni.test-resources :refer [spark df-20]]))
(fact "On update"
(-> (g/table->dataset @spark (mapv vector (range 5)) [:i])
(g/update :i g/+ 1 2 3)
(g/collect-col :i)) => [6 7 8 9 10])
(fact "On cond" :slow
(-> (df-20)
(g/with-column :cond (g/cond
(g/< :Price 8e5) (g/lit "low")
(g/< :Price 1e6) (g/lit "medium")
:else (g/lit "high")))
(g/collect-col :cond)
set) => #{"high" "medium" "low"})
(fact "On condp" :slow
(-> (g/table->dataset @spark (mapv vector (range 1 16)) [:idx])
(g/with-column :fb (g/condp #(g/zero? (g/mod %2 %1)) :idx
15 (g/lit "fizzbuzz")
5 (g/lit "buzz")
3 (g/lit "fizz")
(g/str :idx)))
g/collect) => [{:idx 1, :fb "1"}
{:idx 2, :fb "2"}
{:idx 3, :fb "fizz"}
{:idx 4, :fb "4"}
{:idx 5, :fb "buzz"}
{:idx 6, :fb "fizz"}
{:idx 7, :fb "7"}
{:idx 8, :fb "8"}
{:idx 9, :fb "fizz"}
{:idx 10, :fb "buzz"}
{:idx 11, :fb "11"}
{:idx 12, :fb "fizz"}
{:idx 13, :fb "13"}
{:idx 14, :fb "14"}
{:idx 15, :fb "fizzbuzz"}]
(-> (g/table->dataset @spark (mapv vector (range 1 16)) [:idx])
(g/with-column :fb (g/condp #(g/zero? (g/mod %2 %1)) :idx
15 (g/lit "fizzbuzz")
5 (g/lit "buzz")
3 (g/lit "fizz")))
(g/remove (g/null? :fb))
g/collect) => [{:fb "fizz" :idx 3}
{:fb "buzz" :idx 5}
{:fb "fizz" :idx 6}
{:fb "fizz" :idx 9}
{:fb "buzz" :idx 10}
{:fb "fizz" :idx 12}
{:fb "fizzbuzz" :idx 15}])
(fact "On case" :slow
(-> (df-20)
(g/limit 10)
(g/with-column :case (g/case :SellerG
(g/lit "Biggin") 0
(g/lit "NPI:NAME:<NAME>END_PI") 1
(g/lit "JPI:NAME:<NAME>END_PI") 2))
(g/select :SellerG :case)
g/collect
set) => #{{:SellerG "PI:NAME:<NAME>END_PI" :case 0}
{:SellerG "PI:NAME:<NAME>END_PI" :case 2}
{:SellerG "PI:NAME:<NAME>END_PI" :case 1}}
(-> (df-20)
(g/limit 10)
(g/with-column :case (g/case :SellerG
(g/lit "Biggin") 0
(g/lit "NelPI:NAME:<NAME>END_PI") 1))
(g/select :SellerG :case)
g/collect
set) => #{{:SellerG "PI:NAME:<NAME>END_PI" :case 0}
{:SellerG "PI:NAME:<NAME>END_PI" :case nil}
{:SellerG "PI:NAME:<NAME>END_PI" :case 1}}
(-> (df-20)
(g/limit 10)
(g/with-column :case (g/case :SellerG
(g/lit "PI:NAME:<NAME>END_PI") 0
(g/lit "PI:NAME:<NAME>END_PI") 1
123))
(g/select :SellerG :case)
g/collect
set) => #{{:SellerG "PI:NAME:<NAME>END_PI" :case 123}
{:SellerG "PI:NAME:<NAME>END_PI" :case 0}
{:SellerG "PI:NAME:<NAME>END_PI" :case 1}})
(fact "On if" :slow
(-> (df-20)
(g/with-column :if (g/if (g/< :Price 1e6)
(g/lit "high")
(g/lit "low")))
(g/collect-col :if)
set) => #{"high" "low"})
|
[
{
"context": "alue nil\n :placeholder \"Foobar\"\n :class \"form-error\"}\n ",
"end": 3161,
"score": 0.5296621322631836,
"start": 3158,
"tag": "NAME",
"value": "bar"
}
] |
test/cljs/chronograph_web/components/form_test.cljs
|
nilenso/chronograph
| 3 |
(ns chronograph-web.components.form-test
(:require [cljs.test :refer-macros [deftest is testing run-tests use-fixtures]]
[chronograph-web.components.form :as form]
[chronograph-web.test-utils :as tu]
[re-frame.core :as rf]
[chronograph-web.fixtures :as fixtures]))
(use-fixtures :once fixtures/silence-logging)
(defn- event-with-value
[v]
(clj->js {:currentTarget {:value v}}))
(def fake-event (clj->js {:preventDefault (constantly nil)}))
(deftest sentence-case-test
(testing "it returns hypenated strings in sentence case"
(is (= "Sentence case" (form/sentence-case "sentence-case"))))
(testing "it returns underscored strings in sentence case"
(is (= "Sentence case" (form/sentence-case "sentence_case"))))
(testing "it returns hypenated keywords in sentence case"
(is (= "Sentence case" (form/sentence-case :sentence-case))))
(testing "it returns underscored keywords in sentence case"
(is (= "Sentence case" (form/sentence-case :sentence_case)))))
(deftest set-values-test
(tu/rf-test "It should set the form's values"
(let [{::form/keys [get-input-attributes]} (form/form {:form-key ::form-key
:initial-values {:foobar "baz"}
:request-builder (constantly {})})]
(rf/dispatch [::form/set-values ::form-key {:foobar "quux"}])
(is (= "quux"
(:value (get-input-attributes :foobar)))
"The value of the input should be changed"))))
(deftest form-attributes-test
(testing "Input attributes builder"
(tu/rf-test "When initial values are passed"
(let [{::form/keys [get-input-attributes]} (form/form {:form-key ::form-key
:initial-values {:foobar "baz"}
:request-builder (constantly {})})]
(is (= "baz"
(:value (get-input-attributes :foobar)))
"The value of the input should be set to its initial value")))
(tu/rf-test "When only an input key is passed"
(let [{::form/keys [get-input-attributes]} (form/form {:form-key ::form-key
:request-builder (constantly {})})
{:keys [onChange]} (get-input-attributes :foobar)]
(onChange (event-with-value "new-value"))
(is (= {:value "new-value"
:placeholder "Foobar"}
(select-keys (get-input-attributes :foobar) [:value :placeholder]))
"The value of the input should change after calling onChange")))
(testing "When a spec is passed"
(tu/rf-test "When the spec fails"
(let [{::form/keys [get-input-attributes]} (form/form {:form-key ::form-key
:specs {:foobar int?}
:request-builder (constantly {})})]
(is (= {:value nil
:placeholder "Foobar"
:class "form-error"}
(select-keys (get-input-attributes :foobar
{:spec int?})
[:value :placeholder :class]))
"The form-error class should be set")))))
(testing "Submit attributes builder"
(tu/rf-test "Button should be disabled if there is a spec error"
(let [{::form/keys [get-submit-attributes]} (form/form {:form-key ::form-key
:specs {:foobar int?}
:initial-values {:foobar "not-an-int"}
:request-builder (constantly {})})]
(is (:disabled (get-submit-attributes)))))
(tu/rf-test "Button should be set to loading while submitting"
(let [{::form/keys [get-submit-attributes]} (form/form {:form-key ::form-key
:request-builder (constantly {})})
{:keys [onClick]} (get-submit-attributes)]
(rf/reg-fx :http-xhrio (constantly nil))
(onClick fake-event)
(is (:loading (get-submit-attributes)))))))
(deftest form-submission-test
(tu/rf-test "The built request should be supplied to the http-xhrio effect"
(let [xhrio-effect (tu/stub-xhrio {} true)
{::form/keys [get-submit-attributes
get-input-attributes]} (form/form {:form-key ::form-key
:request-builder (fn [form-params]
{:uri "/api/foo"
:method :post
:params form-params
:on-success [::foo-event "bar"]
:on-failure [::baz-event "quux"]})})
{:keys [onChange]} (get-input-attributes :foobar)
{:keys [onClick]} (get-submit-attributes)]
(onChange (event-with-value "new-value"))
(onClick fake-event)
(is (= {:uri "/api/foo"
:method :post
:params {:foobar "new-value"}
:on-success [::form/submit-form-success ::form-key [::foo-event "bar"]]
:on-failure [::form/submit-form-failure ::form-key [::baz-event "quux"]]}
@xhrio-effect))))
(tu/rf-test "When form submission succeeds"
(let [dispatched-event (tu/stub-event ::foo-event)
{::form/keys [get-submit-attributes
get-input-attributes]} (form/form {:form-key ::form-key
:request-builder (constantly
{:on-success [::foo-event "bar"]})})
{:keys [onChange]} (get-input-attributes :foobar)
{:keys [onClick]} (get-submit-attributes)]
(onChange (event-with-value "new-value"))
(tu/stub-xhrio {:fake "response"} true)
(onClick fake-event)
(is (= [::foo-event "bar" {:fake "response"}]
@dispatched-event)
"The on-success event should be dispatched with the received response")))
(tu/rf-test "When form submission fails"
(let [dispatched-event (tu/stub-event ::baz-event)
{::form/keys [get-submit-attributes
get-input-attributes]} (form/form {:form-key ::form-key
:request-builder (constantly
{:on-failure [::baz-event "quux"]})})
{:keys [onChange]} (get-input-attributes :foobar)
{:keys [onClick]} (get-submit-attributes)]
(onChange (event-with-value "new-value"))
(tu/stub-xhrio {:fake "response"} false)
(onClick fake-event)
(is (= [::baz-event "quux" {:fake "response"}]
@dispatched-event)
"The on-failure event should be dispatched with the received response"))))
|
99150
|
(ns chronograph-web.components.form-test
(:require [cljs.test :refer-macros [deftest is testing run-tests use-fixtures]]
[chronograph-web.components.form :as form]
[chronograph-web.test-utils :as tu]
[re-frame.core :as rf]
[chronograph-web.fixtures :as fixtures]))
(use-fixtures :once fixtures/silence-logging)
(defn- event-with-value
[v]
(clj->js {:currentTarget {:value v}}))
(def fake-event (clj->js {:preventDefault (constantly nil)}))
(deftest sentence-case-test
(testing "it returns hypenated strings in sentence case"
(is (= "Sentence case" (form/sentence-case "sentence-case"))))
(testing "it returns underscored strings in sentence case"
(is (= "Sentence case" (form/sentence-case "sentence_case"))))
(testing "it returns hypenated keywords in sentence case"
(is (= "Sentence case" (form/sentence-case :sentence-case))))
(testing "it returns underscored keywords in sentence case"
(is (= "Sentence case" (form/sentence-case :sentence_case)))))
(deftest set-values-test
(tu/rf-test "It should set the form's values"
(let [{::form/keys [get-input-attributes]} (form/form {:form-key ::form-key
:initial-values {:foobar "baz"}
:request-builder (constantly {})})]
(rf/dispatch [::form/set-values ::form-key {:foobar "quux"}])
(is (= "quux"
(:value (get-input-attributes :foobar)))
"The value of the input should be changed"))))
(deftest form-attributes-test
(testing "Input attributes builder"
(tu/rf-test "When initial values are passed"
(let [{::form/keys [get-input-attributes]} (form/form {:form-key ::form-key
:initial-values {:foobar "baz"}
:request-builder (constantly {})})]
(is (= "baz"
(:value (get-input-attributes :foobar)))
"The value of the input should be set to its initial value")))
(tu/rf-test "When only an input key is passed"
(let [{::form/keys [get-input-attributes]} (form/form {:form-key ::form-key
:request-builder (constantly {})})
{:keys [onChange]} (get-input-attributes :foobar)]
(onChange (event-with-value "new-value"))
(is (= {:value "new-value"
:placeholder "Foobar"}
(select-keys (get-input-attributes :foobar) [:value :placeholder]))
"The value of the input should change after calling onChange")))
(testing "When a spec is passed"
(tu/rf-test "When the spec fails"
(let [{::form/keys [get-input-attributes]} (form/form {:form-key ::form-key
:specs {:foobar int?}
:request-builder (constantly {})})]
(is (= {:value nil
:placeholder "Foo<NAME>"
:class "form-error"}
(select-keys (get-input-attributes :foobar
{:spec int?})
[:value :placeholder :class]))
"The form-error class should be set")))))
(testing "Submit attributes builder"
(tu/rf-test "Button should be disabled if there is a spec error"
(let [{::form/keys [get-submit-attributes]} (form/form {:form-key ::form-key
:specs {:foobar int?}
:initial-values {:foobar "not-an-int"}
:request-builder (constantly {})})]
(is (:disabled (get-submit-attributes)))))
(tu/rf-test "Button should be set to loading while submitting"
(let [{::form/keys [get-submit-attributes]} (form/form {:form-key ::form-key
:request-builder (constantly {})})
{:keys [onClick]} (get-submit-attributes)]
(rf/reg-fx :http-xhrio (constantly nil))
(onClick fake-event)
(is (:loading (get-submit-attributes)))))))
(deftest form-submission-test
(tu/rf-test "The built request should be supplied to the http-xhrio effect"
(let [xhrio-effect (tu/stub-xhrio {} true)
{::form/keys [get-submit-attributes
get-input-attributes]} (form/form {:form-key ::form-key
:request-builder (fn [form-params]
{:uri "/api/foo"
:method :post
:params form-params
:on-success [::foo-event "bar"]
:on-failure [::baz-event "quux"]})})
{:keys [onChange]} (get-input-attributes :foobar)
{:keys [onClick]} (get-submit-attributes)]
(onChange (event-with-value "new-value"))
(onClick fake-event)
(is (= {:uri "/api/foo"
:method :post
:params {:foobar "new-value"}
:on-success [::form/submit-form-success ::form-key [::foo-event "bar"]]
:on-failure [::form/submit-form-failure ::form-key [::baz-event "quux"]]}
@xhrio-effect))))
(tu/rf-test "When form submission succeeds"
(let [dispatched-event (tu/stub-event ::foo-event)
{::form/keys [get-submit-attributes
get-input-attributes]} (form/form {:form-key ::form-key
:request-builder (constantly
{:on-success [::foo-event "bar"]})})
{:keys [onChange]} (get-input-attributes :foobar)
{:keys [onClick]} (get-submit-attributes)]
(onChange (event-with-value "new-value"))
(tu/stub-xhrio {:fake "response"} true)
(onClick fake-event)
(is (= [::foo-event "bar" {:fake "response"}]
@dispatched-event)
"The on-success event should be dispatched with the received response")))
(tu/rf-test "When form submission fails"
(let [dispatched-event (tu/stub-event ::baz-event)
{::form/keys [get-submit-attributes
get-input-attributes]} (form/form {:form-key ::form-key
:request-builder (constantly
{:on-failure [::baz-event "quux"]})})
{:keys [onChange]} (get-input-attributes :foobar)
{:keys [onClick]} (get-submit-attributes)]
(onChange (event-with-value "new-value"))
(tu/stub-xhrio {:fake "response"} false)
(onClick fake-event)
(is (= [::baz-event "quux" {:fake "response"}]
@dispatched-event)
"The on-failure event should be dispatched with the received response"))))
| true |
(ns chronograph-web.components.form-test
(:require [cljs.test :refer-macros [deftest is testing run-tests use-fixtures]]
[chronograph-web.components.form :as form]
[chronograph-web.test-utils :as tu]
[re-frame.core :as rf]
[chronograph-web.fixtures :as fixtures]))
(use-fixtures :once fixtures/silence-logging)
(defn- event-with-value
[v]
(clj->js {:currentTarget {:value v}}))
(def fake-event (clj->js {:preventDefault (constantly nil)}))
(deftest sentence-case-test
(testing "it returns hypenated strings in sentence case"
(is (= "Sentence case" (form/sentence-case "sentence-case"))))
(testing "it returns underscored strings in sentence case"
(is (= "Sentence case" (form/sentence-case "sentence_case"))))
(testing "it returns hypenated keywords in sentence case"
(is (= "Sentence case" (form/sentence-case :sentence-case))))
(testing "it returns underscored keywords in sentence case"
(is (= "Sentence case" (form/sentence-case :sentence_case)))))
(deftest set-values-test
(tu/rf-test "It should set the form's values"
(let [{::form/keys [get-input-attributes]} (form/form {:form-key ::form-key
:initial-values {:foobar "baz"}
:request-builder (constantly {})})]
(rf/dispatch [::form/set-values ::form-key {:foobar "quux"}])
(is (= "quux"
(:value (get-input-attributes :foobar)))
"The value of the input should be changed"))))
(deftest form-attributes-test
(testing "Input attributes builder"
(tu/rf-test "When initial values are passed"
(let [{::form/keys [get-input-attributes]} (form/form {:form-key ::form-key
:initial-values {:foobar "baz"}
:request-builder (constantly {})})]
(is (= "baz"
(:value (get-input-attributes :foobar)))
"The value of the input should be set to its initial value")))
(tu/rf-test "When only an input key is passed"
(let [{::form/keys [get-input-attributes]} (form/form {:form-key ::form-key
:request-builder (constantly {})})
{:keys [onChange]} (get-input-attributes :foobar)]
(onChange (event-with-value "new-value"))
(is (= {:value "new-value"
:placeholder "Foobar"}
(select-keys (get-input-attributes :foobar) [:value :placeholder]))
"The value of the input should change after calling onChange")))
(testing "When a spec is passed"
(tu/rf-test "When the spec fails"
(let [{::form/keys [get-input-attributes]} (form/form {:form-key ::form-key
:specs {:foobar int?}
:request-builder (constantly {})})]
(is (= {:value nil
:placeholder "FooPI:NAME:<NAME>END_PI"
:class "form-error"}
(select-keys (get-input-attributes :foobar
{:spec int?})
[:value :placeholder :class]))
"The form-error class should be set")))))
(testing "Submit attributes builder"
(tu/rf-test "Button should be disabled if there is a spec error"
(let [{::form/keys [get-submit-attributes]} (form/form {:form-key ::form-key
:specs {:foobar int?}
:initial-values {:foobar "not-an-int"}
:request-builder (constantly {})})]
(is (:disabled (get-submit-attributes)))))
(tu/rf-test "Button should be set to loading while submitting"
(let [{::form/keys [get-submit-attributes]} (form/form {:form-key ::form-key
:request-builder (constantly {})})
{:keys [onClick]} (get-submit-attributes)]
(rf/reg-fx :http-xhrio (constantly nil))
(onClick fake-event)
(is (:loading (get-submit-attributes)))))))
(deftest form-submission-test
(tu/rf-test "The built request should be supplied to the http-xhrio effect"
(let [xhrio-effect (tu/stub-xhrio {} true)
{::form/keys [get-submit-attributes
get-input-attributes]} (form/form {:form-key ::form-key
:request-builder (fn [form-params]
{:uri "/api/foo"
:method :post
:params form-params
:on-success [::foo-event "bar"]
:on-failure [::baz-event "quux"]})})
{:keys [onChange]} (get-input-attributes :foobar)
{:keys [onClick]} (get-submit-attributes)]
(onChange (event-with-value "new-value"))
(onClick fake-event)
(is (= {:uri "/api/foo"
:method :post
:params {:foobar "new-value"}
:on-success [::form/submit-form-success ::form-key [::foo-event "bar"]]
:on-failure [::form/submit-form-failure ::form-key [::baz-event "quux"]]}
@xhrio-effect))))
(tu/rf-test "When form submission succeeds"
(let [dispatched-event (tu/stub-event ::foo-event)
{::form/keys [get-submit-attributes
get-input-attributes]} (form/form {:form-key ::form-key
:request-builder (constantly
{:on-success [::foo-event "bar"]})})
{:keys [onChange]} (get-input-attributes :foobar)
{:keys [onClick]} (get-submit-attributes)]
(onChange (event-with-value "new-value"))
(tu/stub-xhrio {:fake "response"} true)
(onClick fake-event)
(is (= [::foo-event "bar" {:fake "response"}]
@dispatched-event)
"The on-success event should be dispatched with the received response")))
(tu/rf-test "When form submission fails"
(let [dispatched-event (tu/stub-event ::baz-event)
{::form/keys [get-submit-attributes
get-input-attributes]} (form/form {:form-key ::form-key
:request-builder (constantly
{:on-failure [::baz-event "quux"]})})
{:keys [onChange]} (get-input-attributes :foobar)
{:keys [onClick]} (get-submit-attributes)]
(onChange (event-with-value "new-value"))
(tu/stub-xhrio {:fake "response"} false)
(onClick fake-event)
(is (= [::baz-event "quux" {:fake "response"}]
@dispatched-event)
"The on-failure event should be dispatched with the received response"))))
|
[
{
"context": " :employee/first-name \"Test\"\n :employee/last-n",
"end": 5330,
"score": 0.9997966885566711,
"start": 5326,
"tag": "NAME",
"value": "Test"
},
{
"context": " :employee/last-name \"Person\"}\n {:db/id \"store\"\n",
"end": 5391,
"score": 0.99977046251297,
"start": 5385,
"tag": "NAME",
"value": "Person"
},
{
"context": " :licensed-retailer/employees [\"employee\"]}\n {:sale/id #uuid",
"end": 6098,
"score": 0.865093469619751,
"start": 6090,
"tag": "USERNAME",
"value": "employee"
}
] |
resources/unannotated_test_schema.clj
|
mprokopov/schema-cartographer
| 144 |
(ns unannotated-test-schema)
(defn valid-last-name? [s]
true)
(defn valid-employee-name? [s]
true)
(def unannotated-ice-cream-shop-schema [;; --- Cone Enumerations ---------------------------
{:db/ident :cone-type/waffle}
{:db/ident :cone-type/sugar}
;; --- Flavor Enumerations -------------------------
{:db/ident :ice-cream-flavor/strawberry}
{:db/ident :ice-cream-flavor/chocolate}
{:db/ident :ice-cream-flavor/vanilla}
;; --- Employee ------------------------------------
{:db/ident :employee/first-name
:db/valueType :db.type/string
:db/cardinality :db.cardinality/one}
{:db/ident :employee/last-name
:db/valueType :db.type/string
:db/cardinality :db.cardinality/one
:db.attr/preds 'unannotated-test-schema/valid-last-name?}
{:db/ident :employee/name
:db/valueType :db.type/tuple
:db/tupleAttrs [:employee/first-name :employee/last-name]
:db/cardinality :db.cardinality/one
:db/unique :db.unique/identity}
{:db/ident :employee/validate
:db.entity/attrs [:employee/first-name :employee/last-name]
:db.entity/preds 'unannotated-test-schema/valid-employee-name?}
;; --- Stores --------------------------------------
{:db/ident :store/id
:db/valueType :db.type/uuid
:db/cardinality :db.cardinality/one
:db/unique :db.unique/identity}
{:db/ident :store/address
:db/valueType :db.type/string
:db/cardinality :db.cardinality/one}
{:db/ident :store/employees
:db/valueType :db.type/ref
;; references-namespaces ["employee"]
:db/isComponent true
:db/cardinality :db.cardinality/many}
{:db/ident :store/capricious-accounting-id
:db/valueType :db.type/string
:db/cardinality :db.cardinality/one
:db/noHistory true}
;; --- License Retailer ----------------------------
{:db/ident :licensed-retailer/id
:db/valueType :db.type/uuid
:db/cardinality :db.cardinality/one
:db/unique :db.unique/identity}
{:db/ident :licensed-retailer/address
:db/valueType :db.type/string
:db/cardinality :db.cardinality/one}
{:db/ident :licensed-retailer/employees
:db/valueType :db.type/ref
; references-namespaces ["employee"]
:db/cardinality :db.cardinality/many}
;; --- Sales ---------------------------------------
{:db/ident :sale/id
:db/valueType :db.type/uuid
:db/cardinality :db.cardinality/one
:db/unique :db.unique/identity}
{:db/ident :sale/cone
:db/valueType :db.type/ref
; references-namespaces ["cone-type"]
:db/cardinality :db.cardinality/one}
{:db/ident :sale/location
:db/valueType :db.type/ref
; references-namespaces ["store" "licensed retailer"]
:db/cardinality :db.cardinality/one}])
(def unannotated-transactions [{:db/id "employee"
:employee/first-name "Test"
:employee/last-name "Person"}
{:db/id "store"
:store/id #uuid "02EC6029-4A47-49DB-975C-CAAB9C73528B"
:store/employees ["employee"]}
{:sale/id #uuid "02EC6029-4A47-49DB-975C-C45731B7999A"
:sale/cone :cone-type/waffle
:sale/location "store"}
{:db/id "licensed-retailer"
:licensed-retailer/id #uuid "565E871-4A47-71A2-435C-C45731B7999A"
:licensed-retailer/address "123 Any Street"
:licensed-retailer/employees ["employee"]}
{:sale/id #uuid "02EC6029-4A47-999B-975C-C45731B7999A"
:sale/cone :cone-type/waffle
:sale/location "store"}
{:sale/id #uuid "876A87C2-4A47-999B-975C-C45731B7999A"
:sale/cone :cone-type/sugar
:sale/location "licensed-retailer"}])
|
13674
|
(ns unannotated-test-schema)
(defn valid-last-name? [s]
true)
(defn valid-employee-name? [s]
true)
(def unannotated-ice-cream-shop-schema [;; --- Cone Enumerations ---------------------------
{:db/ident :cone-type/waffle}
{:db/ident :cone-type/sugar}
;; --- Flavor Enumerations -------------------------
{:db/ident :ice-cream-flavor/strawberry}
{:db/ident :ice-cream-flavor/chocolate}
{:db/ident :ice-cream-flavor/vanilla}
;; --- Employee ------------------------------------
{:db/ident :employee/first-name
:db/valueType :db.type/string
:db/cardinality :db.cardinality/one}
{:db/ident :employee/last-name
:db/valueType :db.type/string
:db/cardinality :db.cardinality/one
:db.attr/preds 'unannotated-test-schema/valid-last-name?}
{:db/ident :employee/name
:db/valueType :db.type/tuple
:db/tupleAttrs [:employee/first-name :employee/last-name]
:db/cardinality :db.cardinality/one
:db/unique :db.unique/identity}
{:db/ident :employee/validate
:db.entity/attrs [:employee/first-name :employee/last-name]
:db.entity/preds 'unannotated-test-schema/valid-employee-name?}
;; --- Stores --------------------------------------
{:db/ident :store/id
:db/valueType :db.type/uuid
:db/cardinality :db.cardinality/one
:db/unique :db.unique/identity}
{:db/ident :store/address
:db/valueType :db.type/string
:db/cardinality :db.cardinality/one}
{:db/ident :store/employees
:db/valueType :db.type/ref
;; references-namespaces ["employee"]
:db/isComponent true
:db/cardinality :db.cardinality/many}
{:db/ident :store/capricious-accounting-id
:db/valueType :db.type/string
:db/cardinality :db.cardinality/one
:db/noHistory true}
;; --- License Retailer ----------------------------
{:db/ident :licensed-retailer/id
:db/valueType :db.type/uuid
:db/cardinality :db.cardinality/one
:db/unique :db.unique/identity}
{:db/ident :licensed-retailer/address
:db/valueType :db.type/string
:db/cardinality :db.cardinality/one}
{:db/ident :licensed-retailer/employees
:db/valueType :db.type/ref
; references-namespaces ["employee"]
:db/cardinality :db.cardinality/many}
;; --- Sales ---------------------------------------
{:db/ident :sale/id
:db/valueType :db.type/uuid
:db/cardinality :db.cardinality/one
:db/unique :db.unique/identity}
{:db/ident :sale/cone
:db/valueType :db.type/ref
; references-namespaces ["cone-type"]
:db/cardinality :db.cardinality/one}
{:db/ident :sale/location
:db/valueType :db.type/ref
; references-namespaces ["store" "licensed retailer"]
:db/cardinality :db.cardinality/one}])
(def unannotated-transactions [{:db/id "employee"
:employee/first-name "<NAME>"
:employee/last-name "<NAME>"}
{:db/id "store"
:store/id #uuid "02EC6029-4A47-49DB-975C-CAAB9C73528B"
:store/employees ["employee"]}
{:sale/id #uuid "02EC6029-4A47-49DB-975C-C45731B7999A"
:sale/cone :cone-type/waffle
:sale/location "store"}
{:db/id "licensed-retailer"
:licensed-retailer/id #uuid "565E871-4A47-71A2-435C-C45731B7999A"
:licensed-retailer/address "123 Any Street"
:licensed-retailer/employees ["employee"]}
{:sale/id #uuid "02EC6029-4A47-999B-975C-C45731B7999A"
:sale/cone :cone-type/waffle
:sale/location "store"}
{:sale/id #uuid "876A87C2-4A47-999B-975C-C45731B7999A"
:sale/cone :cone-type/sugar
:sale/location "licensed-retailer"}])
| true |
(ns unannotated-test-schema)
(defn valid-last-name? [s]
true)
(defn valid-employee-name? [s]
true)
(def unannotated-ice-cream-shop-schema [;; --- Cone Enumerations ---------------------------
{:db/ident :cone-type/waffle}
{:db/ident :cone-type/sugar}
;; --- Flavor Enumerations -------------------------
{:db/ident :ice-cream-flavor/strawberry}
{:db/ident :ice-cream-flavor/chocolate}
{:db/ident :ice-cream-flavor/vanilla}
;; --- Employee ------------------------------------
{:db/ident :employee/first-name
:db/valueType :db.type/string
:db/cardinality :db.cardinality/one}
{:db/ident :employee/last-name
:db/valueType :db.type/string
:db/cardinality :db.cardinality/one
:db.attr/preds 'unannotated-test-schema/valid-last-name?}
{:db/ident :employee/name
:db/valueType :db.type/tuple
:db/tupleAttrs [:employee/first-name :employee/last-name]
:db/cardinality :db.cardinality/one
:db/unique :db.unique/identity}
{:db/ident :employee/validate
:db.entity/attrs [:employee/first-name :employee/last-name]
:db.entity/preds 'unannotated-test-schema/valid-employee-name?}
;; --- Stores --------------------------------------
{:db/ident :store/id
:db/valueType :db.type/uuid
:db/cardinality :db.cardinality/one
:db/unique :db.unique/identity}
{:db/ident :store/address
:db/valueType :db.type/string
:db/cardinality :db.cardinality/one}
{:db/ident :store/employees
:db/valueType :db.type/ref
;; references-namespaces ["employee"]
:db/isComponent true
:db/cardinality :db.cardinality/many}
{:db/ident :store/capricious-accounting-id
:db/valueType :db.type/string
:db/cardinality :db.cardinality/one
:db/noHistory true}
;; --- License Retailer ----------------------------
{:db/ident :licensed-retailer/id
:db/valueType :db.type/uuid
:db/cardinality :db.cardinality/one
:db/unique :db.unique/identity}
{:db/ident :licensed-retailer/address
:db/valueType :db.type/string
:db/cardinality :db.cardinality/one}
{:db/ident :licensed-retailer/employees
:db/valueType :db.type/ref
; references-namespaces ["employee"]
:db/cardinality :db.cardinality/many}
;; --- Sales ---------------------------------------
{:db/ident :sale/id
:db/valueType :db.type/uuid
:db/cardinality :db.cardinality/one
:db/unique :db.unique/identity}
{:db/ident :sale/cone
:db/valueType :db.type/ref
; references-namespaces ["cone-type"]
:db/cardinality :db.cardinality/one}
{:db/ident :sale/location
:db/valueType :db.type/ref
; references-namespaces ["store" "licensed retailer"]
:db/cardinality :db.cardinality/one}])
(def unannotated-transactions [{:db/id "employee"
:employee/first-name "PI:NAME:<NAME>END_PI"
:employee/last-name "PI:NAME:<NAME>END_PI"}
{:db/id "store"
:store/id #uuid "02EC6029-4A47-49DB-975C-CAAB9C73528B"
:store/employees ["employee"]}
{:sale/id #uuid "02EC6029-4A47-49DB-975C-C45731B7999A"
:sale/cone :cone-type/waffle
:sale/location "store"}
{:db/id "licensed-retailer"
:licensed-retailer/id #uuid "565E871-4A47-71A2-435C-C45731B7999A"
:licensed-retailer/address "123 Any Street"
:licensed-retailer/employees ["employee"]}
{:sale/id #uuid "02EC6029-4A47-999B-975C-C45731B7999A"
:sale/cone :cone-type/waffle
:sale/location "store"}
{:sale/id #uuid "876A87C2-4A47-999B-975C-C45731B7999A"
:sale/cone :cone-type/sugar
:sale/location "licensed-retailer"}])
|
[
{
"context": "#########\n\n(ns cljsearch.searchfile\n #^{:author \"Cary Clark\",\n :doc \"Encapsulates a file to be searched\"}",
"end": 282,
"score": 0.9998059272766113,
"start": 272,
"tag": "NAME",
"value": "Cary Clark"
}
] |
clojure/cljsearch/src/cljsearch/searchfile.clj
|
clarkcb/xsearch
| 5 |
;;; ############################################################################
;;;
;;; searchfile.clj
;;;
;;; Encapsulates a file to be searched
;;;
;;; ############################################################################
(ns cljsearch.searchfile
#^{:author "Cary Clark",
:doc "Encapsulates a file to be searched"}
(:use [clojure.string :as str :only (join trim trim-newline)]))
; record to hold a search-file (file is a File object)
(defrecord SearchFile [containers file filetype])
(defn new-search-file
([^java.io.File file filetype]
(new-search-file [] file filetype))
([containers file filetype]
(->SearchFile containers file filetype)))
(defn search-file-path [^SearchFile sf]
(str (if (empty? (:containers sf)) "" (str (str/join "!" (:containers sf)) "!"))
(.getPath (:file sf))))
|
11497
|
;;; ############################################################################
;;;
;;; searchfile.clj
;;;
;;; Encapsulates a file to be searched
;;;
;;; ############################################################################
(ns cljsearch.searchfile
#^{:author "<NAME>",
:doc "Encapsulates a file to be searched"}
(:use [clojure.string :as str :only (join trim trim-newline)]))
; record to hold a search-file (file is a File object)
(defrecord SearchFile [containers file filetype])
(defn new-search-file
([^java.io.File file filetype]
(new-search-file [] file filetype))
([containers file filetype]
(->SearchFile containers file filetype)))
(defn search-file-path [^SearchFile sf]
(str (if (empty? (:containers sf)) "" (str (str/join "!" (:containers sf)) "!"))
(.getPath (:file sf))))
| true |
;;; ############################################################################
;;;
;;; searchfile.clj
;;;
;;; Encapsulates a file to be searched
;;;
;;; ############################################################################
(ns cljsearch.searchfile
#^{:author "PI:NAME:<NAME>END_PI",
:doc "Encapsulates a file to be searched"}
(:use [clojure.string :as str :only (join trim trim-newline)]))
; record to hold a search-file (file is a File object)
(defrecord SearchFile [containers file filetype])
(defn new-search-file
([^java.io.File file filetype]
(new-search-file [] file filetype))
([containers file filetype]
(->SearchFile containers file filetype)))
(defn search-file-path [^SearchFile sf]
(str (if (empty? (:containers sf)) "" (str (str/join "!" (:containers sf)) "!"))
(.getPath (:file sf))))
|
[
{
"context": " #(comp/transact! this `[(player/login ~{:username username\n ",
"end": 2906,
"score": 0.5602872967720032,
"start": 2898,
"tag": "USERNAME",
"value": "username"
},
{
"context": " :password password})])]\n (dom/form\n {:onSubmit (fn [e]\n ",
"end": 2982,
"score": 0.8842382431030273,
"start": 2974,
"tag": "PASSWORD",
"value": "password"
},
{
"context": " (on-login))}\n (dom/label \"username\")\n (dom/input {:value username\n ",
"end": 3124,
"score": 0.5607923865318298,
"start": 3116,
"tag": "USERNAME",
"value": "username"
},
{
"context": "(dom/label \"username\")\n (dom/input {:value username\n :disabled loading?\n ",
"end": 3163,
"score": 0.9944291114807129,
"start": 3155,
"tag": "USERNAME",
"value": "username"
},
{
"context": "(dom/label \"password\")\n (dom/input {:value password\n :disabled loading?\n ",
"end": 3374,
"score": 0.5501641631126404,
"start": 3366,
"tag": "PASSWORD",
"value": "password"
}
] |
src/main/lava_jato_the_game/client.cljs
|
lava-jato-the-game/lava-jato-the-game
| 18 |
(ns lava-jato-the-game.client
(:require [com.fulcrologic.fulcro.components :as comp :refer [defsc]]
[com.fulcrologic.fulcro.application :as fa]
[goog.dom :as gdom]
[goog.object :as gobj]
[goog.events :as gevt]
[goog.history.EventType :as history.EventType]
[com.fulcrologic.fulcro.networking.http-remote :as fnh]
[com.fulcrologic.fulcro.dom :as dom]
[com.fulcrologic.fulcro.routing.dynamic-routing :as dr]
[com.fulcrologic.fulcro.data-fetch :as df]
[com.fulcrologic.fulcro.mutations :as fm]
[clojure.string :as string])
(:import (goog.history Html5History)))
(defsc Player [this {:player/keys [id name]}]
{:ident [:player/id :player/id]
:query [:player/id
:player/name]}
(dom/div
(dom/hr)
(dom/code "Player name: ") (dom/span name)
(dom/br)
(dom/code "ID: " (dom/code (str id)))
(dom/hr)))
(def ui-player (comp/factory Player {:keyfn :player/id}))
(defsc Party [this {:party/keys [id name description]}]
{:query [:party/id
:party/name
:party/description]
:ident [:party/id :party/id]}
(dom/div
(dom/h2 name)
(dom/code (str id))
(dom/div description)))
(def ui-party (comp/factory Party {:keyfn :party/id}))
(defsc Character [this {:character/keys [id name player party]}]
{:query [:character/id
:character/name
{:character/player (comp/get-query Player)}
{:character/party (comp/get-query Party)}]
:ident [:character/id :character/id]}
(dom/div
(dom/h2 name)
(dom/code (str id))
(ui-player player)
(ui-party party)))
(def ui-character (comp/factory Character {:keyfn :character/id}))
(fm/defmutation player/login
[_]
(action [{:keys [state]}]
(swap! state (fn [st]
(assoc-in st [::login ::login :ui/loading?] true))))
(remote [env]
(fm/returning env Player)))
(defsc Home [this {:ui/keys [profile]}]
{:query [{:ui/profile (comp/get-query Character)}]
:ident (fn [] [::home ::home])
:route-segment ["home"]
:initial-state (fn [_] {})}
(dom/div
(dom/button {:onClick #(df/load! this :lava-jato-the-game.api/me Character
{:target [::home ::home :ui/profile]})}
"load")
(when profile
(ui-character profile))))
(defsc Login [this {:player/keys [username password]
:ui/keys [loading?]}]
{:query [:player/username
:player/password
:ui/loading?]
:ident (fn [] [::login ::login])
:route-segment ["login"]
:initial-state {:player/username ""
:ui/loading? false
:player/password ""}}
(let [on-login #(comp/transact! this `[(player/login ~{:username username
:password password})])]
(dom/form
{:onSubmit (fn [e]
(.preventDefault e)
(on-login))}
(dom/label "username")
(dom/input {:value username
:disabled loading?
:onChange #(fm/set-value! this :player/username (-> % .-target .-value))})
(dom/br)
(dom/label "password")
(dom/input {:value password
:disabled loading?
:type "password"
:onChange #(fm/set-value! this :player/password (-> % .-target .-value))})
(dom/br)
(dom/button
{:disabled loading?
#_#_:onClick on-login}
"login"))))
(dr/defrouter RootRouter [this props]
{:router-targets [Home Login]})
(def ui-root-router (comp/factory RootRouter))
(defsc Root [this {:>/keys [root-router]}]
{:query [{:>/root-router (comp/get-query RootRouter)}]
:initial-state (fn [_]
{:>/root-router (comp/get-initial-state RootRouter _)})}
(ui-root-router root-router))
(defonce SPA (atom nil))
(defn ^:export main
[]
(let [csrf-token (-> (gdom/getDocument)
(gobj/getValueByKeys "body" "dataset" "csrfToken"))
history (new Html5History)
client-did-mount (fn [app]
(doto history
(gevt/listen history.EventType/NAVIGATE #(when-let [token (.-token %)]
(dr/change-route app (-> (string/split token #"/")
rest
vec))))
(.setEnabled true)))
app (fa/fulcro-app
{:client-did-mount client-did-mount
:remotes {:remote (fnh/fulcro-http-remote {:request-middleware (-> (fnh/wrap-csrf-token csrf-token)
(fnh/wrap-fulcro-request))})}})]
(fa/mount! app Root "app")
(reset! SPA app)))
|
44145
|
(ns lava-jato-the-game.client
(:require [com.fulcrologic.fulcro.components :as comp :refer [defsc]]
[com.fulcrologic.fulcro.application :as fa]
[goog.dom :as gdom]
[goog.object :as gobj]
[goog.events :as gevt]
[goog.history.EventType :as history.EventType]
[com.fulcrologic.fulcro.networking.http-remote :as fnh]
[com.fulcrologic.fulcro.dom :as dom]
[com.fulcrologic.fulcro.routing.dynamic-routing :as dr]
[com.fulcrologic.fulcro.data-fetch :as df]
[com.fulcrologic.fulcro.mutations :as fm]
[clojure.string :as string])
(:import (goog.history Html5History)))
(defsc Player [this {:player/keys [id name]}]
{:ident [:player/id :player/id]
:query [:player/id
:player/name]}
(dom/div
(dom/hr)
(dom/code "Player name: ") (dom/span name)
(dom/br)
(dom/code "ID: " (dom/code (str id)))
(dom/hr)))
(def ui-player (comp/factory Player {:keyfn :player/id}))
(defsc Party [this {:party/keys [id name description]}]
{:query [:party/id
:party/name
:party/description]
:ident [:party/id :party/id]}
(dom/div
(dom/h2 name)
(dom/code (str id))
(dom/div description)))
(def ui-party (comp/factory Party {:keyfn :party/id}))
(defsc Character [this {:character/keys [id name player party]}]
{:query [:character/id
:character/name
{:character/player (comp/get-query Player)}
{:character/party (comp/get-query Party)}]
:ident [:character/id :character/id]}
(dom/div
(dom/h2 name)
(dom/code (str id))
(ui-player player)
(ui-party party)))
(def ui-character (comp/factory Character {:keyfn :character/id}))
(fm/defmutation player/login
[_]
(action [{:keys [state]}]
(swap! state (fn [st]
(assoc-in st [::login ::login :ui/loading?] true))))
(remote [env]
(fm/returning env Player)))
(defsc Home [this {:ui/keys [profile]}]
{:query [{:ui/profile (comp/get-query Character)}]
:ident (fn [] [::home ::home])
:route-segment ["home"]
:initial-state (fn [_] {})}
(dom/div
(dom/button {:onClick #(df/load! this :lava-jato-the-game.api/me Character
{:target [::home ::home :ui/profile]})}
"load")
(when profile
(ui-character profile))))
(defsc Login [this {:player/keys [username password]
:ui/keys [loading?]}]
{:query [:player/username
:player/password
:ui/loading?]
:ident (fn [] [::login ::login])
:route-segment ["login"]
:initial-state {:player/username ""
:ui/loading? false
:player/password ""}}
(let [on-login #(comp/transact! this `[(player/login ~{:username username
:password <PASSWORD>})])]
(dom/form
{:onSubmit (fn [e]
(.preventDefault e)
(on-login))}
(dom/label "username")
(dom/input {:value username
:disabled loading?
:onChange #(fm/set-value! this :player/username (-> % .-target .-value))})
(dom/br)
(dom/label "password")
(dom/input {:value <PASSWORD>
:disabled loading?
:type "password"
:onChange #(fm/set-value! this :player/password (-> % .-target .-value))})
(dom/br)
(dom/button
{:disabled loading?
#_#_:onClick on-login}
"login"))))
(dr/defrouter RootRouter [this props]
{:router-targets [Home Login]})
(def ui-root-router (comp/factory RootRouter))
(defsc Root [this {:>/keys [root-router]}]
{:query [{:>/root-router (comp/get-query RootRouter)}]
:initial-state (fn [_]
{:>/root-router (comp/get-initial-state RootRouter _)})}
(ui-root-router root-router))
(defonce SPA (atom nil))
(defn ^:export main
[]
(let [csrf-token (-> (gdom/getDocument)
(gobj/getValueByKeys "body" "dataset" "csrfToken"))
history (new Html5History)
client-did-mount (fn [app]
(doto history
(gevt/listen history.EventType/NAVIGATE #(when-let [token (.-token %)]
(dr/change-route app (-> (string/split token #"/")
rest
vec))))
(.setEnabled true)))
app (fa/fulcro-app
{:client-did-mount client-did-mount
:remotes {:remote (fnh/fulcro-http-remote {:request-middleware (-> (fnh/wrap-csrf-token csrf-token)
(fnh/wrap-fulcro-request))})}})]
(fa/mount! app Root "app")
(reset! SPA app)))
| true |
(ns lava-jato-the-game.client
(:require [com.fulcrologic.fulcro.components :as comp :refer [defsc]]
[com.fulcrologic.fulcro.application :as fa]
[goog.dom :as gdom]
[goog.object :as gobj]
[goog.events :as gevt]
[goog.history.EventType :as history.EventType]
[com.fulcrologic.fulcro.networking.http-remote :as fnh]
[com.fulcrologic.fulcro.dom :as dom]
[com.fulcrologic.fulcro.routing.dynamic-routing :as dr]
[com.fulcrologic.fulcro.data-fetch :as df]
[com.fulcrologic.fulcro.mutations :as fm]
[clojure.string :as string])
(:import (goog.history Html5History)))
(defsc Player [this {:player/keys [id name]}]
{:ident [:player/id :player/id]
:query [:player/id
:player/name]}
(dom/div
(dom/hr)
(dom/code "Player name: ") (dom/span name)
(dom/br)
(dom/code "ID: " (dom/code (str id)))
(dom/hr)))
(def ui-player (comp/factory Player {:keyfn :player/id}))
(defsc Party [this {:party/keys [id name description]}]
{:query [:party/id
:party/name
:party/description]
:ident [:party/id :party/id]}
(dom/div
(dom/h2 name)
(dom/code (str id))
(dom/div description)))
(def ui-party (comp/factory Party {:keyfn :party/id}))
(defsc Character [this {:character/keys [id name player party]}]
{:query [:character/id
:character/name
{:character/player (comp/get-query Player)}
{:character/party (comp/get-query Party)}]
:ident [:character/id :character/id]}
(dom/div
(dom/h2 name)
(dom/code (str id))
(ui-player player)
(ui-party party)))
(def ui-character (comp/factory Character {:keyfn :character/id}))
(fm/defmutation player/login
[_]
(action [{:keys [state]}]
(swap! state (fn [st]
(assoc-in st [::login ::login :ui/loading?] true))))
(remote [env]
(fm/returning env Player)))
(defsc Home [this {:ui/keys [profile]}]
{:query [{:ui/profile (comp/get-query Character)}]
:ident (fn [] [::home ::home])
:route-segment ["home"]
:initial-state (fn [_] {})}
(dom/div
(dom/button {:onClick #(df/load! this :lava-jato-the-game.api/me Character
{:target [::home ::home :ui/profile]})}
"load")
(when profile
(ui-character profile))))
(defsc Login [this {:player/keys [username password]
:ui/keys [loading?]}]
{:query [:player/username
:player/password
:ui/loading?]
:ident (fn [] [::login ::login])
:route-segment ["login"]
:initial-state {:player/username ""
:ui/loading? false
:player/password ""}}
(let [on-login #(comp/transact! this `[(player/login ~{:username username
:password PI:PASSWORD:<PASSWORD>END_PI})])]
(dom/form
{:onSubmit (fn [e]
(.preventDefault e)
(on-login))}
(dom/label "username")
(dom/input {:value username
:disabled loading?
:onChange #(fm/set-value! this :player/username (-> % .-target .-value))})
(dom/br)
(dom/label "password")
(dom/input {:value PI:PASSWORD:<PASSWORD>END_PI
:disabled loading?
:type "password"
:onChange #(fm/set-value! this :player/password (-> % .-target .-value))})
(dom/br)
(dom/button
{:disabled loading?
#_#_:onClick on-login}
"login"))))
(dr/defrouter RootRouter [this props]
{:router-targets [Home Login]})
(def ui-root-router (comp/factory RootRouter))
(defsc Root [this {:>/keys [root-router]}]
{:query [{:>/root-router (comp/get-query RootRouter)}]
:initial-state (fn [_]
{:>/root-router (comp/get-initial-state RootRouter _)})}
(ui-root-router root-router))
(defonce SPA (atom nil))
(defn ^:export main
[]
(let [csrf-token (-> (gdom/getDocument)
(gobj/getValueByKeys "body" "dataset" "csrfToken"))
history (new Html5History)
client-did-mount (fn [app]
(doto history
(gevt/listen history.EventType/NAVIGATE #(when-let [token (.-token %)]
(dr/change-route app (-> (string/split token #"/")
rest
vec))))
(.setEnabled true)))
app (fa/fulcro-app
{:client-did-mount client-did-mount
:remotes {:remote (fnh/fulcro-http-remote {:request-middleware (-> (fnh/wrap-csrf-token csrf-token)
(fnh/wrap-fulcro-request))})}})]
(fa/mount! app Root "app")
(reset! SPA app)))
|
[
{
"context": " and Secret\"\n :username \"key\"\n :password \"secret\"\n ",
"end": 964,
"score": 0.8110021352767944,
"start": 961,
"tag": "USERNAME",
"value": "key"
},
{
"context": "ame \"key\"\n :password \"secret\"\n :acl p/resource-a",
"end": 1009,
"score": 0.9989945888519287,
"start": 1003,
"tag": "PASSWORD",
"value": "secret"
}
] |
cimi/src/com/sixsq/slipstream/ssclj/resources/session_template_api_key.clj
|
slipstream/SlipStreamServer
| 6 |
(ns com.sixsq.slipstream.ssclj.resources.session-template-api-key
"
Resource that is used to create a session from the provided API key-secret
pair.
"
(:require
[com.sixsq.slipstream.ssclj.resources.common.std-crud :as std-crud]
[com.sixsq.slipstream.ssclj.resources.common.utils :as u]
[com.sixsq.slipstream.ssclj.resources.resource-metadata :as md]
[com.sixsq.slipstream.ssclj.resources.session-template :as p]
[com.sixsq.slipstream.ssclj.resources.spec.session-template-api-key :as st-api-key]
[com.sixsq.slipstream.ssclj.util.metadata :as gen-md]))
(def ^:const authn-method "api-key")
(def ^:const resource-name "API Key")
(def ^:const resource-url authn-method)
(def default-template {:method authn-method
:instance authn-method
:name "API Key"
:description "Authentication with API Key and Secret"
:username "key"
:password "secret"
:acl p/resource-acl})
;;
;; description
;;
(def ^:const desc
(merge p/SessionTemplateDescription
{:key {:displayName "Key"
:category "general"
:description "API key"
:type "string"
:mandatory true
:readOnly false
:order 20}
:secret {:displayName "Secret"
:category "general"
:description "secret associated with API key"
:type "password"
:mandatory true
:readOnly false
:order 21}}))
;;
;; initialization: register this Session template
;;
(defn initialize
[]
(p/register authn-method desc)
(std-crud/initialize p/resource-url ::st-api-key/schema)
(md/register (gen-md/generate-metadata ::ns ::p/ns ::st-api-key/schema)))
;;
;; multimethods for validation
;;
(def validate-fn (u/create-spec-validation-fn ::st-api-key/schema))
(defmethod p/validate-subtype authn-method
[resource]
(validate-fn resource))
|
21933
|
(ns com.sixsq.slipstream.ssclj.resources.session-template-api-key
"
Resource that is used to create a session from the provided API key-secret
pair.
"
(:require
[com.sixsq.slipstream.ssclj.resources.common.std-crud :as std-crud]
[com.sixsq.slipstream.ssclj.resources.common.utils :as u]
[com.sixsq.slipstream.ssclj.resources.resource-metadata :as md]
[com.sixsq.slipstream.ssclj.resources.session-template :as p]
[com.sixsq.slipstream.ssclj.resources.spec.session-template-api-key :as st-api-key]
[com.sixsq.slipstream.ssclj.util.metadata :as gen-md]))
(def ^:const authn-method "api-key")
(def ^:const resource-name "API Key")
(def ^:const resource-url authn-method)
(def default-template {:method authn-method
:instance authn-method
:name "API Key"
:description "Authentication with API Key and Secret"
:username "key"
:password "<PASSWORD>"
:acl p/resource-acl})
;;
;; description
;;
(def ^:const desc
(merge p/SessionTemplateDescription
{:key {:displayName "Key"
:category "general"
:description "API key"
:type "string"
:mandatory true
:readOnly false
:order 20}
:secret {:displayName "Secret"
:category "general"
:description "secret associated with API key"
:type "password"
:mandatory true
:readOnly false
:order 21}}))
;;
;; initialization: register this Session template
;;
(defn initialize
[]
(p/register authn-method desc)
(std-crud/initialize p/resource-url ::st-api-key/schema)
(md/register (gen-md/generate-metadata ::ns ::p/ns ::st-api-key/schema)))
;;
;; multimethods for validation
;;
(def validate-fn (u/create-spec-validation-fn ::st-api-key/schema))
(defmethod p/validate-subtype authn-method
[resource]
(validate-fn resource))
| true |
(ns com.sixsq.slipstream.ssclj.resources.session-template-api-key
"
Resource that is used to create a session from the provided API key-secret
pair.
"
(:require
[com.sixsq.slipstream.ssclj.resources.common.std-crud :as std-crud]
[com.sixsq.slipstream.ssclj.resources.common.utils :as u]
[com.sixsq.slipstream.ssclj.resources.resource-metadata :as md]
[com.sixsq.slipstream.ssclj.resources.session-template :as p]
[com.sixsq.slipstream.ssclj.resources.spec.session-template-api-key :as st-api-key]
[com.sixsq.slipstream.ssclj.util.metadata :as gen-md]))
(def ^:const authn-method "api-key")
(def ^:const resource-name "API Key")
(def ^:const resource-url authn-method)
(def default-template {:method authn-method
:instance authn-method
:name "API Key"
:description "Authentication with API Key and Secret"
:username "key"
:password "PI:PASSWORD:<PASSWORD>END_PI"
:acl p/resource-acl})
;;
;; description
;;
(def ^:const desc
(merge p/SessionTemplateDescription
{:key {:displayName "Key"
:category "general"
:description "API key"
:type "string"
:mandatory true
:readOnly false
:order 20}
:secret {:displayName "Secret"
:category "general"
:description "secret associated with API key"
:type "password"
:mandatory true
:readOnly false
:order 21}}))
;;
;; initialization: register this Session template
;;
(defn initialize
[]
(p/register authn-method desc)
(std-crud/initialize p/resource-url ::st-api-key/schema)
(md/register (gen-md/generate-metadata ::ns ::p/ns ::st-api-key/schema)))
;;
;; multimethods for validation
;;
(def validate-fn (u/create-spec-validation-fn ::st-api-key/schema))
(defmethod p/validate-subtype authn-method
[resource]
(validate-fn resource))
|
[
{
"context": "c-tower \"0.0.4\"]\n ^{:voom {:repo \"[email protected]:onyx-platform/onyx.git\" :branch \"master\"}}\n ",
"end": 432,
"score": 0.9973828196525574,
"start": 418,
"tag": "EMAIL",
"value": "[email protected]"
}
] |
project.clj
|
c-sungho/clojask
| 0 |
(defproject clojask "1.0.0"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[clojure-csv "2.0.2"]
[org.clojure/clojure "1.10.1"]
[org.clojure/math.numeric-tower "0.0.4"]
^{:voom {:repo "[email protected]:onyx-platform/onyx.git" :branch "master"}}
[org.onyxplatform/onyx "0.14.5"]
[techascent/tech.ml.dataset "5.17" :exclusions [[ch.qos.logback/logback-classic][org.slf4j/slf4j-api]]]
[com.google.code.externalsortinginjava/externalsortinginjava "0.6.0"]]
:repl-options {:init-ns clojask.debug
:timeout 180000}
:plugins [[lein-update-dependency "0.1.2"]]
:main ^:skip-aot clojask.debug/-main
:source-paths ["src/main/clojure"]
:java-source-paths ["src/main/java"]
:test-paths ["test/clojask"]
;:java-test-paths ["test/java"]
;;:injections [(.. System (setProperty "clojure.core.async.pool-size" "8"))]
)
|
102077
|
(defproject clojask "1.0.0"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[clojure-csv "2.0.2"]
[org.clojure/clojure "1.10.1"]
[org.clojure/math.numeric-tower "0.0.4"]
^{:voom {:repo "<EMAIL>:onyx-platform/onyx.git" :branch "master"}}
[org.onyxplatform/onyx "0.14.5"]
[techascent/tech.ml.dataset "5.17" :exclusions [[ch.qos.logback/logback-classic][org.slf4j/slf4j-api]]]
[com.google.code.externalsortinginjava/externalsortinginjava "0.6.0"]]
:repl-options {:init-ns clojask.debug
:timeout 180000}
:plugins [[lein-update-dependency "0.1.2"]]
:main ^:skip-aot clojask.debug/-main
:source-paths ["src/main/clojure"]
:java-source-paths ["src/main/java"]
:test-paths ["test/clojask"]
;:java-test-paths ["test/java"]
;;:injections [(.. System (setProperty "clojure.core.async.pool-size" "8"))]
)
| true |
(defproject clojask "1.0.0"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[clojure-csv "2.0.2"]
[org.clojure/clojure "1.10.1"]
[org.clojure/math.numeric-tower "0.0.4"]
^{:voom {:repo "PI:EMAIL:<EMAIL>END_PI:onyx-platform/onyx.git" :branch "master"}}
[org.onyxplatform/onyx "0.14.5"]
[techascent/tech.ml.dataset "5.17" :exclusions [[ch.qos.logback/logback-classic][org.slf4j/slf4j-api]]]
[com.google.code.externalsortinginjava/externalsortinginjava "0.6.0"]]
:repl-options {:init-ns clojask.debug
:timeout 180000}
:plugins [[lein-update-dependency "0.1.2"]]
:main ^:skip-aot clojask.debug/-main
:source-paths ["src/main/clojure"]
:java-source-paths ["src/main/java"]
:test-paths ["test/clojask"]
;:java-test-paths ["test/java"]
;;:injections [(.. System (setProperty "clojure.core.async.pool-size" "8"))]
)
|
[
{
"context": "interna)}\n user-saved-bolha-key (str \"saved-\" (:spotify_access_token user) \"-\" (:id bolha))\n ",
"end": 1423,
"score": 0.7424282431602478,
"start": 1423,
"tag": "KEY",
"value": ""
},
{
"context": "lha-key (str \"saved-\" (:spotify_access_token user) \"-\" (:id bolha))\n votos-bolha-key (str \"playli",
"end": 1458,
"score": 0.6505464315414429,
"start": 1455,
"tag": "KEY",
"value": "\"-\""
},
{
"context": "r) \"-\" (:id bolha))\n votos-bolha-key (str \"playlist-bolha-votos-\" (:id bolha))]\n (when-not (= (:id bolha) (:bolh",
"end": 1524,
"score": 0.9205145835876465,
"start": 1502,
"tag": "KEY",
"value": "playlist-bolha-votos-\""
}
] |
src/bolha_musical_api/route_functions/bolha/votar_track_playlist.clj
|
LeafarDev/bolha-musical-api
| 1 |
(ns bolha-musical-api.route-functions.bolha.votar-track-playlist
(:require [clj-spotify.core :as sptfy]
[ring.util.http-response :refer :all]
[try-let :refer [try-let]]
[clojure.tools.logging :as log]
[bolha-musical-api.general-functions.date-formatters :as df]
[bolha-musical-api.general-functions.spotify.access-token :as sat]
[clojure.set :refer :all]
[bolha-musical-api.locale.dicts :refer [translate]]
[bolha-musical-api.query-defs :as query]
[bolha-musical-api.redis-defs :refer [wcar*]]
[taoensso.carmine :as car :refer (wcar)]))
(defn votar-track-playlist
"Sair da bolha atual do usuário"
[request]
(let [user (sat/extract-user request)
bolha (query/get-bolha-atual-usuario query/db {:user_id (:id user)})
data (:body-params request)
agora (df/nowMysqlFormat)
track-interna (query/get-track-by-id query/db {:id (:track_interno_id data)})
data-remove {:deleted_at agora, :track_interno_id (:id track-interna), :user_id (:id user)}
data-insert (-> data
(conj {:user_id (:id user), :created_by (:id user), :created_at agora})
(dissoc :refletir_spotify))
token (:spotify_access_token user) id-param-sptfy {:ids (:spotify_track_id track-interna)}
user-saved-bolha-key (str "saved-" (:spotify_access_token user) "-" (:id bolha))
votos-bolha-key (str "playlist-bolha-votos-" (:id bolha))]
(when-not (= (:id bolha) (:bolha_id track-interna))
(log/info id-param-sptfy)
(bad-request! {:message (str "hum?" (:id bolha) "/" track-interna)}))
(query/remover-voto-track-playlist query/db data-remove)
(wcar* (car/del votos-bolha-key))
(when-not (= -1 (:cimavoto data))
(log/info data-insert)
(query/adicionar-voto-track-playlist query/db data-insert)
(when (:refletir_spotify data)
(wcar* (car/del user-saved-bolha-key))
(if (:cimavoto data)
(sptfy/save-tracks-for-user id-param-sptfy token)
(sptfy/remove-users-saved-tracks id-param-sptfy token))))
(ok {:message (translate (read-string (:language_code user)) :done)})))
|
106958
|
(ns bolha-musical-api.route-functions.bolha.votar-track-playlist
(:require [clj-spotify.core :as sptfy]
[ring.util.http-response :refer :all]
[try-let :refer [try-let]]
[clojure.tools.logging :as log]
[bolha-musical-api.general-functions.date-formatters :as df]
[bolha-musical-api.general-functions.spotify.access-token :as sat]
[clojure.set :refer :all]
[bolha-musical-api.locale.dicts :refer [translate]]
[bolha-musical-api.query-defs :as query]
[bolha-musical-api.redis-defs :refer [wcar*]]
[taoensso.carmine :as car :refer (wcar)]))
(defn votar-track-playlist
"Sair da bolha atual do usuário"
[request]
(let [user (sat/extract-user request)
bolha (query/get-bolha-atual-usuario query/db {:user_id (:id user)})
data (:body-params request)
agora (df/nowMysqlFormat)
track-interna (query/get-track-by-id query/db {:id (:track_interno_id data)})
data-remove {:deleted_at agora, :track_interno_id (:id track-interna), :user_id (:id user)}
data-insert (-> data
(conj {:user_id (:id user), :created_by (:id user), :created_at agora})
(dissoc :refletir_spotify))
token (:spotify_access_token user) id-param-sptfy {:ids (:spotify_track_id track-interna)}
user-saved-bolha-key (str "saved<KEY>-" (:spotify_access_token user) <KEY> (:id bolha))
votos-bolha-key (str "<KEY> (:id bolha))]
(when-not (= (:id bolha) (:bolha_id track-interna))
(log/info id-param-sptfy)
(bad-request! {:message (str "hum?" (:id bolha) "/" track-interna)}))
(query/remover-voto-track-playlist query/db data-remove)
(wcar* (car/del votos-bolha-key))
(when-not (= -1 (:cimavoto data))
(log/info data-insert)
(query/adicionar-voto-track-playlist query/db data-insert)
(when (:refletir_spotify data)
(wcar* (car/del user-saved-bolha-key))
(if (:cimavoto data)
(sptfy/save-tracks-for-user id-param-sptfy token)
(sptfy/remove-users-saved-tracks id-param-sptfy token))))
(ok {:message (translate (read-string (:language_code user)) :done)})))
| true |
(ns bolha-musical-api.route-functions.bolha.votar-track-playlist
(:require [clj-spotify.core :as sptfy]
[ring.util.http-response :refer :all]
[try-let :refer [try-let]]
[clojure.tools.logging :as log]
[bolha-musical-api.general-functions.date-formatters :as df]
[bolha-musical-api.general-functions.spotify.access-token :as sat]
[clojure.set :refer :all]
[bolha-musical-api.locale.dicts :refer [translate]]
[bolha-musical-api.query-defs :as query]
[bolha-musical-api.redis-defs :refer [wcar*]]
[taoensso.carmine :as car :refer (wcar)]))
(defn votar-track-playlist
"Sair da bolha atual do usuário"
[request]
(let [user (sat/extract-user request)
bolha (query/get-bolha-atual-usuario query/db {:user_id (:id user)})
data (:body-params request)
agora (df/nowMysqlFormat)
track-interna (query/get-track-by-id query/db {:id (:track_interno_id data)})
data-remove {:deleted_at agora, :track_interno_id (:id track-interna), :user_id (:id user)}
data-insert (-> data
(conj {:user_id (:id user), :created_by (:id user), :created_at agora})
(dissoc :refletir_spotify))
token (:spotify_access_token user) id-param-sptfy {:ids (:spotify_track_id track-interna)}
user-saved-bolha-key (str "savedPI:KEY:<KEY>END_PI-" (:spotify_access_token user) PI:KEY:<KEY>END_PI (:id bolha))
votos-bolha-key (str "PI:KEY:<KEY>END_PI (:id bolha))]
(when-not (= (:id bolha) (:bolha_id track-interna))
(log/info id-param-sptfy)
(bad-request! {:message (str "hum?" (:id bolha) "/" track-interna)}))
(query/remover-voto-track-playlist query/db data-remove)
(wcar* (car/del votos-bolha-key))
(when-not (= -1 (:cimavoto data))
(log/info data-insert)
(query/adicionar-voto-track-playlist query/db data-insert)
(when (:refletir_spotify data)
(wcar* (car/del user-saved-bolha-key))
(if (:cimavoto data)
(sptfy/save-tracks-for-user id-param-sptfy token)
(sptfy/remove-users-saved-tracks id-param-sptfy token))))
(ok {:message (translate (read-string (:language_code user)) :done)})))
|
[
{
"context": "-resources/config/jetty/ssl/private_keys/localhost.pem\"\n :ssl-ca-cert \"./dev-resources/config/jetty/ss",
"end": 1390,
"score": 0.6321448087692261,
"start": 1387,
"tag": "KEY",
"value": "pem"
},
{
"context": "SLUtils/isFIPS) \"bcfks\" \"jks\"))\n :key-password \"Kq8lG9LkISky9cDIYysiadxRx\"\n :trust-password \"Kq8lG9LkISky9cDIYysiadxRx\"})",
"end": 1745,
"score": 0.7948712110519409,
"start": 1720,
"tag": "PASSWORD",
"value": "Kq8lG9LkISky9cDIYysiadxRx"
},
{
"context": "d \"Kq8lG9LkISky9cDIYysiadxRx\"\n :trust-password \"Kq8lG9LkISky9cDIYysiadxRx\"})\n\n(defn munge-actual-http-config\n [config]\n (",
"end": 1792,
"score": 0.9612200260162354,
"start": 1767,
"tag": "PASSWORD",
"value": "Kq8lG9LkISky9cDIYysiadxRx"
}
] |
test/clj/puppetlabs/trapperkeeper/services/webserver/jetty9_config_test.clj
|
threatgrid/trapperkeeper-webserver-jetty9
| 0 |
(ns puppetlabs.trapperkeeper.services.webserver.jetty9-config-test
(:import (clojure.lang ExceptionInfo)
(java.util Arrays)
(com.puppetlabs.ssl_utils SSLUtils))
(:require [clojure.test :refer :all]
[clojure.java.io :refer [resource]]
[me.raynes.fs :as fs]
[puppetlabs.ssl-utils.core :as ssl]
[puppetlabs.kitchensink.core :as ks]
[puppetlabs.trapperkeeper.services.webserver.jetty9-config :refer :all]
[puppetlabs.trapperkeeper.testutils.logging :refer [with-test-logging]]
[puppetlabs.trapperkeeper.services.webserver.jetty9-core :as jetty9]
[puppetlabs.trapperkeeper.services.webserver.jetty9-service
:refer [jetty9-service add-ring-handler]]
[puppetlabs.trapperkeeper.app :as tk-app]
[puppetlabs.trapperkeeper.testutils.bootstrap :refer [with-app-with-config]]
[puppetlabs.trapperkeeper.testutils.webserver.common :refer [http-get]]
[schema.test :as schema-test]
[puppetlabs.trapperkeeper.testutils.webserver :as testutils]))
(use-fixtures :once
schema-test/validate-schemas
testutils/assert-clean-shutdown)
(defn valid-ssl-pem-config
[]
{:ssl-cert "./dev-resources/config/jetty/ssl/certs/localhost.pem"
:ssl-key "./dev-resources/config/jetty/ssl/private_keys/localhost.pem"
:ssl-ca-cert "./dev-resources/config/jetty/ssl/certs/ca.pem"})
(defn valid-ssl-keystore-config
[]
{:keystore (str "./dev-resources/config/jetty/ssl/keystore." (if (SSLUtils/isFIPS) "bcfks" "jks"))
:truststore (str "./dev-resources/config/jetty/ssl/truststore." (if (SSLUtils/isFIPS) "bcfks" "jks"))
:key-password "Kq8lG9LkISky9cDIYysiadxRx"
:trust-password "Kq8lG9LkISky9cDIYysiadxRx"})
(defn munge-actual-http-config
[config]
(process-config config))
(defn munge-expected-common-config
[expected scheme]
(-> expected
(update-in [:max-threads] identity)
(update-in [:queue-max-size] identity)
(update-in [:jmx-enable] (fnil ks/parse-bool default-jmx-enable))
(update-in [scheme :request-header-max-size] identity)
(update-in [scheme :idle-timeout-milliseconds] identity)
(update-in [scheme :acceptor-threads] identity)
(update-in [scheme :selector-threads] identity)))
(defn munge-expected-http-config
[expected]
(munge-expected-common-config expected :http))
(defn munge-actual-https-config
[config]
(let [actual (process-config config)]
(-> actual
(update-in [:https] dissoc :keystore-config))))
(defn munge-expected-https-config
[expected]
(-> (munge-expected-common-config expected :https)
(update-in [:https :cipher-suites] (fnil identity (if (SSLUtils/isFIPS)
acceptable-ciphers-fips
acceptable-ciphers)))
(update-in [:https :protocols] (fnil identity default-protocols))
(update-in [:https :client-auth] (fnil identity default-client-auth))
(update-in [:https :allow-renegotiation] (fnil identity default-allow-renegotiation))
(update-in [:https :ssl-crl-path] identity)))
(deftest process-config-http-test
(testing "process-config successfully builds a WebserverConfig for plaintext connector"
(is (= (munge-actual-http-config
{:port 8000})
(munge-expected-http-config
{:http {:host default-host :port 8000}})))
(is (= (munge-actual-http-config
{:port 8000 :host "foo.local"})
(munge-expected-http-config
{:http {:host "foo.local" :port 8000}})))
(is (= (munge-actual-http-config
{:host "foo.local"})
(munge-expected-http-config
{:http {:host "foo.local" :port default-http-port}})))
(is (= (munge-actual-http-config
{:port 8000 :request-header-max-size 16192})
(munge-expected-http-config
{:http {:host default-host
:port 8000
:request-header-max-size 16192}})))
(is (= (munge-actual-http-config
{:port 8000 :max-threads 500})
(munge-expected-http-config
{:http {:host default-host :port 8000}
:max-threads 500})))
(is (= (munge-actual-http-config
{:port 8000 :queue-max-size 123})
(munge-expected-http-config
{:http {:host default-host :port 8000}
:queue-max-size 123})))
(is (= (munge-actual-http-config
{:port 8000 :idle-timeout-milliseconds 6000})
(munge-expected-http-config
{:http {:host default-host
:port 8000
:idle-timeout-milliseconds 6000}})))
(is (= (munge-actual-http-config
{:port 8000 :acceptor-threads 32})
(munge-expected-http-config
{:http {:host default-host
:port 8000
:acceptor-threads 32}})))
(is (= (munge-actual-http-config
{:port 8000 :selector-threads 52})
(munge-expected-http-config
{:http {:host default-host
:port 8000
:selector-threads 52}})))))
(deftest process-config-https-test
(testing "process-config successfully builds a WebserverConfig for ssl connector"
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"}))
(munge-expected-https-config
{:https {:host "foo.local"
:port default-https-port}})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-port 8001}))
(munge-expected-https-config
{:https {:host default-host
:port 8001}})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local" :ssl-port 8001}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001}})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"
:ssl-port 8001
:request-header-max-size 16192}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001
:request-header-max-size 16192}})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"
:ssl-port 8001
:max-threads 93}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001}
:max-threads 93})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"
:ssl-port 8001
:queue-max-size 99}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001}
:queue-max-size 99})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"
:ssl-port 8001
:idle-timeout-milliseconds 4200}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001
:idle-timeout-milliseconds 4200}})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"
:ssl-port 8001
:ssl-selector-threads 4242}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001
:selector-threads 4242}})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"
:ssl-port 8001
:allow-renegotiation true}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001
:allow-renegotiation true}})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"
:ssl-port 8001
:allow-renegotiation false}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001
:allow-renegotiation false}})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"
:ssl-port 8001
:ssl-acceptor-threads 9193}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001
:acceptor-threads 9193}})))))
(deftest process-config-jks-test
(testing "jks ssl config"
(is (= (munge-actual-https-config
(merge (valid-ssl-keystore-config)
{:ssl-port 8001}))
(munge-expected-https-config
{:https {:host default-host
:port 8001}})))))
(deftest process-config-ciphers-test
(testing "cipher suites"
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-port 8001 :cipher-suites ["FOO" "BAR"]}))
(munge-expected-https-config
{:https
{:host default-host
:port 8001
:cipher-suites ["FOO" "BAR"]}}))))
(testing "cipher suites as a comma and space-separated string"
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-port 8001 :cipher-suites "FOO, BAR"}))
(munge-expected-https-config
{:https
{:host default-host
:port 8001
:cipher-suites ["FOO" "BAR"]}})))))
(deftest process-config-protocols-test
(testing "protocols"
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-port 8001 :ssl-protocols ["FOO" "BAR"]}))
(munge-expected-https-config
{:https
{:host default-host
:port 8001
:protocols ["FOO" "BAR"]}}))))
(testing "protocols as a comma and space-separated string"
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-port 8001 :ssl-protocols "FOO, BAR"}))
(munge-expected-https-config
{:https
{:host default-host
:port 8001
:protocols ["FOO" "BAR"]}})))))
(deftest process-config-crl-test
(testing "ssl-crl-path"
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-port 8001
:ssl-crl-path
"./dev-resources/config/jetty/ssl/certs/ca.pem"}))
(munge-expected-https-config
{:https
{:host default-host
:port 8001
:ssl-crl-path "./dev-resources/config/jetty/ssl/certs/ca.pem"}})))))
(deftest process-config-client-auth-test
(testing "client auth"
(letfn [(get-client-auth [config]
(-> config
(merge (valid-ssl-pem-config))
process-config
(get-in [:https :client-auth])))]
(testing "configure-web-server should set client-auth to a value of :need
if not specified in options"
(is (= :need (get-client-auth {:ssl-port 8001}))))
(testing "configure-web-server should convert client-auth string to
appropriate corresponding keyword value in configure-web-server
options"
(is (= :need (get-client-auth {:ssl-port 8081 :client-auth "need"})))
(is (= :want (get-client-auth {:ssl-port 8081 :client-auth "want"})))
(is (= :none (get-client-auth {:ssl-port 8081 :client-auth "none"}))))
(testing "configure-web-server should throw IllegalArgumentException if an
unsupported value is specified for the client-auth option"
(is (thrown-with-msg? java.lang.IllegalArgumentException
#"Unexpected value found for client auth config option: bogus. Expected need, want, or none."
(get-client-auth {:ssl-port 8081 :client-auth "bogus"})))))))
(deftest process-config-http-plus-https-test
(testing "process-config successfully builds a WebserverConfig for plaintext+ssl"
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local" :port 8000}))
(munge-expected-https-config
{:http {:host default-host
:port 8000
:request-header-max-size nil
:idle-timeout-milliseconds nil
:acceptor-threads nil
:selector-threads nil}
:https {:host "foo.local"
:port default-https-port}})))))
(deftest process-config-invalid-test
(testing "process-config fails for invalid server config"
(are [config]
(thrown? ExceptionInfo
(process-config config))
{:port "foo"}
{:port 8000 :badkey "hi"}))
(testing "process-config fails for incomplete ssl context config"
(are [config]
(thrown? IllegalArgumentException
(process-config config))
{}
{:ssl-port 8001}
{:ssl-port 8001 :ssl-host "foo.local"}
{:ssl-host "foo.local"}
(valid-ssl-pem-config)
(merge {:ssl-port 8001} (dissoc (valid-ssl-pem-config) :ssl-key))
(merge {:ssl-port 8001} (dissoc (valid-ssl-keystore-config) :keystore))))
(testing "should warn if both keystore-based and PEM-based SSL settings are found"
(with-test-logging
(process-config (merge {:ssl-port 8001}
(valid-ssl-pem-config)
(valid-ssl-keystore-config)))
(is (logged? #"Found settings for both keystore-based and PEM-based SSL")))))
(defn- validate-cert-lists-equal
[pem-with-expected-certs ssl-cert ssl-cert-chain]
(let [expected-certs (ssl/pem->certs pem-with-expected-certs)
actual-certs (construct-ssl-x509-cert-chain ssl-cert ssl-cert-chain)]
(is (= (count expected-certs) (count actual-certs))
"Number of expected certs do not match number of actual certs")
(dotimes [n (count expected-certs)]
(is (Arrays/equals (.getEncoded (nth expected-certs n))
(.getEncoded (nth actual-certs n)))
(str "Expected cert # " n " from does not match actual cert")))))
(deftest construct-ssl-x509-cert-chain-test
(testing "non-existent ssl-cert throws expected exception"
(let [tmp-file (ks/temp-file)]
(fs/delete tmp-file)
(is (thrown-with-msg? IllegalArgumentException
#"^Unable to open 'ssl-cert' file:"
(construct-ssl-x509-cert-chain
(.getAbsolutePath tmp-file)
nil)))))
(testing "no content in ssl-cert throws expected exception"
(let [tmp-file (ks/temp-file)]
(is (thrown-with-msg? Exception
#"^No certs found in 'ssl-cert' file:"
(construct-ssl-x509-cert-chain
(.getAbsolutePath tmp-file)
nil)))))
(testing "non-existent ssl-cert-chain throws expected exception"
(let [tmp-file (ks/temp-file)]
(fs/delete tmp-file)
(is (thrown-with-msg? IllegalArgumentException
#"^Unable to open 'ssl-cert-chain' file:"
(construct-ssl-x509-cert-chain
"./dev-resources/config/jetty/ssl/certs/localhost.pem"
(.getAbsolutePath tmp-file))))))
(testing "ssl-cert with single cert loaded into list"
(validate-cert-lists-equal
"./dev-resources/config/jetty/ssl/certs/localhost.pem"
"./dev-resources/config/jetty/ssl/certs/localhost.pem"
nil))
(testing "ssl-cert with multiple certs loaded into list"
(validate-cert-lists-equal
"./dev-resources/config/jetty/ssl/certs/master-with-all-cas.pem"
"./dev-resources/config/jetty/ssl/certs/master-with-all-cas.pem"
nil))
(testing (str "ssl-cert with single cert and ssl-cert-chain with "
"multiple certs loaded into list")
(validate-cert-lists-equal
"./dev-resources/config/jetty/ssl/certs/master-with-all-cas.pem"
"./dev-resources/config/jetty/ssl/certs/master.pem"
"./dev-resources/config/jetty/ssl/certs/ca-master-intermediate-and-root.pem"))
(testing (str "for ssl-cert with multiple certs and ssl-cert-chain with "
"with one cert, only the first cert from ssl-cert is "
"loaded into list with cert from ssl-cert-chain")
(validate-cert-lists-equal
"./dev-resources/config/jetty/ssl/certs/master-with-root-ca.pem"
"./dev-resources/config/jetty/ssl/certs/master-with-intermediate-ca.pem"
"./dev-resources/config/jetty/ssl/certs/ca-root.pem")))
(deftest test-advanced-scripting-config
(testing "Verify that we can use scripting to handle advanced configuration scenarios"
(let [config {:webserver
{:port 9000
:host "localhost"
:post-config-script (str "import org.eclipse.jetty.server.ServerConnector;"
"ServerConnector c = (ServerConnector)(server.getConnectors()[0]);\n"
"c.setPort(10000);")}}]
(with-test-logging
(with-app-with-config app
[jetty9-service]
config
(let [s (tk-app/get-service app :WebserverService)
add-ring-handler (partial add-ring-handler s)
body "Hi World"
path "/hi_world"
ring-handler (fn [req] {:status 200 :body body})]
(testing "A warning is logged when using post-config-script"
(is (logged? #"The 'post-config-script' setting is for advanced use"
:warn)))
(testing "scripted changes are executed properly"
(add-ring-handler ring-handler path)
(let [response (http-get
(format "http://localhost:10000/%s" path))]
(is (= (:status response) 200))
(is (= (:body response) body)))))))))
(testing "Server fails to start with bad post-config-script"
(let [base-config {:port 9000
:host "localhost"}]
(testing "Throws an error if the script can't be compiled."
(is (thrown-with-msg?
IllegalArgumentException
#"Invalid script string in webserver 'post-config-script' configuration"
(let [context (jetty9/initialize-context)]
(with-test-logging
(try
(jetty9/start-webserver!
context
(merge base-config
{:post-config-script (str "AHAHHHGHAHAHAHEASD! OMG!")}))
(finally
(jetty9/shutdown context))))))))
(testing "Throws an error if the script can't be executed."
(is (thrown-with-msg?
IllegalArgumentException
#"Invalid script string in webserver 'post-config-script' configuration"
(let [context (jetty9/initialize-context)]
(with-test-logging
(try
(jetty9/start-webserver!
context
(merge base-config
{:post-config-script (str "Object x = null; x.toString();")}))
(finally
(jetty9/shutdown context)))))))))))
|
119027
|
(ns puppetlabs.trapperkeeper.services.webserver.jetty9-config-test
(:import (clojure.lang ExceptionInfo)
(java.util Arrays)
(com.puppetlabs.ssl_utils SSLUtils))
(:require [clojure.test :refer :all]
[clojure.java.io :refer [resource]]
[me.raynes.fs :as fs]
[puppetlabs.ssl-utils.core :as ssl]
[puppetlabs.kitchensink.core :as ks]
[puppetlabs.trapperkeeper.services.webserver.jetty9-config :refer :all]
[puppetlabs.trapperkeeper.testutils.logging :refer [with-test-logging]]
[puppetlabs.trapperkeeper.services.webserver.jetty9-core :as jetty9]
[puppetlabs.trapperkeeper.services.webserver.jetty9-service
:refer [jetty9-service add-ring-handler]]
[puppetlabs.trapperkeeper.app :as tk-app]
[puppetlabs.trapperkeeper.testutils.bootstrap :refer [with-app-with-config]]
[puppetlabs.trapperkeeper.testutils.webserver.common :refer [http-get]]
[schema.test :as schema-test]
[puppetlabs.trapperkeeper.testutils.webserver :as testutils]))
(use-fixtures :once
schema-test/validate-schemas
testutils/assert-clean-shutdown)
(defn valid-ssl-pem-config
[]
{:ssl-cert "./dev-resources/config/jetty/ssl/certs/localhost.pem"
:ssl-key "./dev-resources/config/jetty/ssl/private_keys/localhost.<KEY>"
:ssl-ca-cert "./dev-resources/config/jetty/ssl/certs/ca.pem"})
(defn valid-ssl-keystore-config
[]
{:keystore (str "./dev-resources/config/jetty/ssl/keystore." (if (SSLUtils/isFIPS) "bcfks" "jks"))
:truststore (str "./dev-resources/config/jetty/ssl/truststore." (if (SSLUtils/isFIPS) "bcfks" "jks"))
:key-password "<PASSWORD>"
:trust-password "<PASSWORD>"})
(defn munge-actual-http-config
[config]
(process-config config))
(defn munge-expected-common-config
[expected scheme]
(-> expected
(update-in [:max-threads] identity)
(update-in [:queue-max-size] identity)
(update-in [:jmx-enable] (fnil ks/parse-bool default-jmx-enable))
(update-in [scheme :request-header-max-size] identity)
(update-in [scheme :idle-timeout-milliseconds] identity)
(update-in [scheme :acceptor-threads] identity)
(update-in [scheme :selector-threads] identity)))
(defn munge-expected-http-config
[expected]
(munge-expected-common-config expected :http))
(defn munge-actual-https-config
[config]
(let [actual (process-config config)]
(-> actual
(update-in [:https] dissoc :keystore-config))))
(defn munge-expected-https-config
[expected]
(-> (munge-expected-common-config expected :https)
(update-in [:https :cipher-suites] (fnil identity (if (SSLUtils/isFIPS)
acceptable-ciphers-fips
acceptable-ciphers)))
(update-in [:https :protocols] (fnil identity default-protocols))
(update-in [:https :client-auth] (fnil identity default-client-auth))
(update-in [:https :allow-renegotiation] (fnil identity default-allow-renegotiation))
(update-in [:https :ssl-crl-path] identity)))
(deftest process-config-http-test
(testing "process-config successfully builds a WebserverConfig for plaintext connector"
(is (= (munge-actual-http-config
{:port 8000})
(munge-expected-http-config
{:http {:host default-host :port 8000}})))
(is (= (munge-actual-http-config
{:port 8000 :host "foo.local"})
(munge-expected-http-config
{:http {:host "foo.local" :port 8000}})))
(is (= (munge-actual-http-config
{:host "foo.local"})
(munge-expected-http-config
{:http {:host "foo.local" :port default-http-port}})))
(is (= (munge-actual-http-config
{:port 8000 :request-header-max-size 16192})
(munge-expected-http-config
{:http {:host default-host
:port 8000
:request-header-max-size 16192}})))
(is (= (munge-actual-http-config
{:port 8000 :max-threads 500})
(munge-expected-http-config
{:http {:host default-host :port 8000}
:max-threads 500})))
(is (= (munge-actual-http-config
{:port 8000 :queue-max-size 123})
(munge-expected-http-config
{:http {:host default-host :port 8000}
:queue-max-size 123})))
(is (= (munge-actual-http-config
{:port 8000 :idle-timeout-milliseconds 6000})
(munge-expected-http-config
{:http {:host default-host
:port 8000
:idle-timeout-milliseconds 6000}})))
(is (= (munge-actual-http-config
{:port 8000 :acceptor-threads 32})
(munge-expected-http-config
{:http {:host default-host
:port 8000
:acceptor-threads 32}})))
(is (= (munge-actual-http-config
{:port 8000 :selector-threads 52})
(munge-expected-http-config
{:http {:host default-host
:port 8000
:selector-threads 52}})))))
(deftest process-config-https-test
(testing "process-config successfully builds a WebserverConfig for ssl connector"
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"}))
(munge-expected-https-config
{:https {:host "foo.local"
:port default-https-port}})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-port 8001}))
(munge-expected-https-config
{:https {:host default-host
:port 8001}})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local" :ssl-port 8001}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001}})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"
:ssl-port 8001
:request-header-max-size 16192}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001
:request-header-max-size 16192}})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"
:ssl-port 8001
:max-threads 93}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001}
:max-threads 93})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"
:ssl-port 8001
:queue-max-size 99}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001}
:queue-max-size 99})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"
:ssl-port 8001
:idle-timeout-milliseconds 4200}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001
:idle-timeout-milliseconds 4200}})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"
:ssl-port 8001
:ssl-selector-threads 4242}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001
:selector-threads 4242}})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"
:ssl-port 8001
:allow-renegotiation true}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001
:allow-renegotiation true}})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"
:ssl-port 8001
:allow-renegotiation false}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001
:allow-renegotiation false}})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"
:ssl-port 8001
:ssl-acceptor-threads 9193}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001
:acceptor-threads 9193}})))))
(deftest process-config-jks-test
(testing "jks ssl config"
(is (= (munge-actual-https-config
(merge (valid-ssl-keystore-config)
{:ssl-port 8001}))
(munge-expected-https-config
{:https {:host default-host
:port 8001}})))))
(deftest process-config-ciphers-test
(testing "cipher suites"
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-port 8001 :cipher-suites ["FOO" "BAR"]}))
(munge-expected-https-config
{:https
{:host default-host
:port 8001
:cipher-suites ["FOO" "BAR"]}}))))
(testing "cipher suites as a comma and space-separated string"
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-port 8001 :cipher-suites "FOO, BAR"}))
(munge-expected-https-config
{:https
{:host default-host
:port 8001
:cipher-suites ["FOO" "BAR"]}})))))
(deftest process-config-protocols-test
(testing "protocols"
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-port 8001 :ssl-protocols ["FOO" "BAR"]}))
(munge-expected-https-config
{:https
{:host default-host
:port 8001
:protocols ["FOO" "BAR"]}}))))
(testing "protocols as a comma and space-separated string"
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-port 8001 :ssl-protocols "FOO, BAR"}))
(munge-expected-https-config
{:https
{:host default-host
:port 8001
:protocols ["FOO" "BAR"]}})))))
(deftest process-config-crl-test
(testing "ssl-crl-path"
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-port 8001
:ssl-crl-path
"./dev-resources/config/jetty/ssl/certs/ca.pem"}))
(munge-expected-https-config
{:https
{:host default-host
:port 8001
:ssl-crl-path "./dev-resources/config/jetty/ssl/certs/ca.pem"}})))))
(deftest process-config-client-auth-test
(testing "client auth"
(letfn [(get-client-auth [config]
(-> config
(merge (valid-ssl-pem-config))
process-config
(get-in [:https :client-auth])))]
(testing "configure-web-server should set client-auth to a value of :need
if not specified in options"
(is (= :need (get-client-auth {:ssl-port 8001}))))
(testing "configure-web-server should convert client-auth string to
appropriate corresponding keyword value in configure-web-server
options"
(is (= :need (get-client-auth {:ssl-port 8081 :client-auth "need"})))
(is (= :want (get-client-auth {:ssl-port 8081 :client-auth "want"})))
(is (= :none (get-client-auth {:ssl-port 8081 :client-auth "none"}))))
(testing "configure-web-server should throw IllegalArgumentException if an
unsupported value is specified for the client-auth option"
(is (thrown-with-msg? java.lang.IllegalArgumentException
#"Unexpected value found for client auth config option: bogus. Expected need, want, or none."
(get-client-auth {:ssl-port 8081 :client-auth "bogus"})))))))
(deftest process-config-http-plus-https-test
(testing "process-config successfully builds a WebserverConfig for plaintext+ssl"
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local" :port 8000}))
(munge-expected-https-config
{:http {:host default-host
:port 8000
:request-header-max-size nil
:idle-timeout-milliseconds nil
:acceptor-threads nil
:selector-threads nil}
:https {:host "foo.local"
:port default-https-port}})))))
(deftest process-config-invalid-test
(testing "process-config fails for invalid server config"
(are [config]
(thrown? ExceptionInfo
(process-config config))
{:port "foo"}
{:port 8000 :badkey "hi"}))
(testing "process-config fails for incomplete ssl context config"
(are [config]
(thrown? IllegalArgumentException
(process-config config))
{}
{:ssl-port 8001}
{:ssl-port 8001 :ssl-host "foo.local"}
{:ssl-host "foo.local"}
(valid-ssl-pem-config)
(merge {:ssl-port 8001} (dissoc (valid-ssl-pem-config) :ssl-key))
(merge {:ssl-port 8001} (dissoc (valid-ssl-keystore-config) :keystore))))
(testing "should warn if both keystore-based and PEM-based SSL settings are found"
(with-test-logging
(process-config (merge {:ssl-port 8001}
(valid-ssl-pem-config)
(valid-ssl-keystore-config)))
(is (logged? #"Found settings for both keystore-based and PEM-based SSL")))))
(defn- validate-cert-lists-equal
[pem-with-expected-certs ssl-cert ssl-cert-chain]
(let [expected-certs (ssl/pem->certs pem-with-expected-certs)
actual-certs (construct-ssl-x509-cert-chain ssl-cert ssl-cert-chain)]
(is (= (count expected-certs) (count actual-certs))
"Number of expected certs do not match number of actual certs")
(dotimes [n (count expected-certs)]
(is (Arrays/equals (.getEncoded (nth expected-certs n))
(.getEncoded (nth actual-certs n)))
(str "Expected cert # " n " from does not match actual cert")))))
(deftest construct-ssl-x509-cert-chain-test
(testing "non-existent ssl-cert throws expected exception"
(let [tmp-file (ks/temp-file)]
(fs/delete tmp-file)
(is (thrown-with-msg? IllegalArgumentException
#"^Unable to open 'ssl-cert' file:"
(construct-ssl-x509-cert-chain
(.getAbsolutePath tmp-file)
nil)))))
(testing "no content in ssl-cert throws expected exception"
(let [tmp-file (ks/temp-file)]
(is (thrown-with-msg? Exception
#"^No certs found in 'ssl-cert' file:"
(construct-ssl-x509-cert-chain
(.getAbsolutePath tmp-file)
nil)))))
(testing "non-existent ssl-cert-chain throws expected exception"
(let [tmp-file (ks/temp-file)]
(fs/delete tmp-file)
(is (thrown-with-msg? IllegalArgumentException
#"^Unable to open 'ssl-cert-chain' file:"
(construct-ssl-x509-cert-chain
"./dev-resources/config/jetty/ssl/certs/localhost.pem"
(.getAbsolutePath tmp-file))))))
(testing "ssl-cert with single cert loaded into list"
(validate-cert-lists-equal
"./dev-resources/config/jetty/ssl/certs/localhost.pem"
"./dev-resources/config/jetty/ssl/certs/localhost.pem"
nil))
(testing "ssl-cert with multiple certs loaded into list"
(validate-cert-lists-equal
"./dev-resources/config/jetty/ssl/certs/master-with-all-cas.pem"
"./dev-resources/config/jetty/ssl/certs/master-with-all-cas.pem"
nil))
(testing (str "ssl-cert with single cert and ssl-cert-chain with "
"multiple certs loaded into list")
(validate-cert-lists-equal
"./dev-resources/config/jetty/ssl/certs/master-with-all-cas.pem"
"./dev-resources/config/jetty/ssl/certs/master.pem"
"./dev-resources/config/jetty/ssl/certs/ca-master-intermediate-and-root.pem"))
(testing (str "for ssl-cert with multiple certs and ssl-cert-chain with "
"with one cert, only the first cert from ssl-cert is "
"loaded into list with cert from ssl-cert-chain")
(validate-cert-lists-equal
"./dev-resources/config/jetty/ssl/certs/master-with-root-ca.pem"
"./dev-resources/config/jetty/ssl/certs/master-with-intermediate-ca.pem"
"./dev-resources/config/jetty/ssl/certs/ca-root.pem")))
(deftest test-advanced-scripting-config
(testing "Verify that we can use scripting to handle advanced configuration scenarios"
(let [config {:webserver
{:port 9000
:host "localhost"
:post-config-script (str "import org.eclipse.jetty.server.ServerConnector;"
"ServerConnector c = (ServerConnector)(server.getConnectors()[0]);\n"
"c.setPort(10000);")}}]
(with-test-logging
(with-app-with-config app
[jetty9-service]
config
(let [s (tk-app/get-service app :WebserverService)
add-ring-handler (partial add-ring-handler s)
body "Hi World"
path "/hi_world"
ring-handler (fn [req] {:status 200 :body body})]
(testing "A warning is logged when using post-config-script"
(is (logged? #"The 'post-config-script' setting is for advanced use"
:warn)))
(testing "scripted changes are executed properly"
(add-ring-handler ring-handler path)
(let [response (http-get
(format "http://localhost:10000/%s" path))]
(is (= (:status response) 200))
(is (= (:body response) body)))))))))
(testing "Server fails to start with bad post-config-script"
(let [base-config {:port 9000
:host "localhost"}]
(testing "Throws an error if the script can't be compiled."
(is (thrown-with-msg?
IllegalArgumentException
#"Invalid script string in webserver 'post-config-script' configuration"
(let [context (jetty9/initialize-context)]
(with-test-logging
(try
(jetty9/start-webserver!
context
(merge base-config
{:post-config-script (str "AHAHHHGHAHAHAHEASD! OMG!")}))
(finally
(jetty9/shutdown context))))))))
(testing "Throws an error if the script can't be executed."
(is (thrown-with-msg?
IllegalArgumentException
#"Invalid script string in webserver 'post-config-script' configuration"
(let [context (jetty9/initialize-context)]
(with-test-logging
(try
(jetty9/start-webserver!
context
(merge base-config
{:post-config-script (str "Object x = null; x.toString();")}))
(finally
(jetty9/shutdown context)))))))))))
| true |
(ns puppetlabs.trapperkeeper.services.webserver.jetty9-config-test
(:import (clojure.lang ExceptionInfo)
(java.util Arrays)
(com.puppetlabs.ssl_utils SSLUtils))
(:require [clojure.test :refer :all]
[clojure.java.io :refer [resource]]
[me.raynes.fs :as fs]
[puppetlabs.ssl-utils.core :as ssl]
[puppetlabs.kitchensink.core :as ks]
[puppetlabs.trapperkeeper.services.webserver.jetty9-config :refer :all]
[puppetlabs.trapperkeeper.testutils.logging :refer [with-test-logging]]
[puppetlabs.trapperkeeper.services.webserver.jetty9-core :as jetty9]
[puppetlabs.trapperkeeper.services.webserver.jetty9-service
:refer [jetty9-service add-ring-handler]]
[puppetlabs.trapperkeeper.app :as tk-app]
[puppetlabs.trapperkeeper.testutils.bootstrap :refer [with-app-with-config]]
[puppetlabs.trapperkeeper.testutils.webserver.common :refer [http-get]]
[schema.test :as schema-test]
[puppetlabs.trapperkeeper.testutils.webserver :as testutils]))
(use-fixtures :once
schema-test/validate-schemas
testutils/assert-clean-shutdown)
(defn valid-ssl-pem-config
[]
{:ssl-cert "./dev-resources/config/jetty/ssl/certs/localhost.pem"
:ssl-key "./dev-resources/config/jetty/ssl/private_keys/localhost.PI:KEY:<KEY>END_PI"
:ssl-ca-cert "./dev-resources/config/jetty/ssl/certs/ca.pem"})
(defn valid-ssl-keystore-config
[]
{:keystore (str "./dev-resources/config/jetty/ssl/keystore." (if (SSLUtils/isFIPS) "bcfks" "jks"))
:truststore (str "./dev-resources/config/jetty/ssl/truststore." (if (SSLUtils/isFIPS) "bcfks" "jks"))
:key-password "PI:PASSWORD:<PASSWORD>END_PI"
:trust-password "PI:PASSWORD:<PASSWORD>END_PI"})
(defn munge-actual-http-config
[config]
(process-config config))
(defn munge-expected-common-config
[expected scheme]
(-> expected
(update-in [:max-threads] identity)
(update-in [:queue-max-size] identity)
(update-in [:jmx-enable] (fnil ks/parse-bool default-jmx-enable))
(update-in [scheme :request-header-max-size] identity)
(update-in [scheme :idle-timeout-milliseconds] identity)
(update-in [scheme :acceptor-threads] identity)
(update-in [scheme :selector-threads] identity)))
(defn munge-expected-http-config
[expected]
(munge-expected-common-config expected :http))
(defn munge-actual-https-config
[config]
(let [actual (process-config config)]
(-> actual
(update-in [:https] dissoc :keystore-config))))
(defn munge-expected-https-config
[expected]
(-> (munge-expected-common-config expected :https)
(update-in [:https :cipher-suites] (fnil identity (if (SSLUtils/isFIPS)
acceptable-ciphers-fips
acceptable-ciphers)))
(update-in [:https :protocols] (fnil identity default-protocols))
(update-in [:https :client-auth] (fnil identity default-client-auth))
(update-in [:https :allow-renegotiation] (fnil identity default-allow-renegotiation))
(update-in [:https :ssl-crl-path] identity)))
(deftest process-config-http-test
(testing "process-config successfully builds a WebserverConfig for plaintext connector"
(is (= (munge-actual-http-config
{:port 8000})
(munge-expected-http-config
{:http {:host default-host :port 8000}})))
(is (= (munge-actual-http-config
{:port 8000 :host "foo.local"})
(munge-expected-http-config
{:http {:host "foo.local" :port 8000}})))
(is (= (munge-actual-http-config
{:host "foo.local"})
(munge-expected-http-config
{:http {:host "foo.local" :port default-http-port}})))
(is (= (munge-actual-http-config
{:port 8000 :request-header-max-size 16192})
(munge-expected-http-config
{:http {:host default-host
:port 8000
:request-header-max-size 16192}})))
(is (= (munge-actual-http-config
{:port 8000 :max-threads 500})
(munge-expected-http-config
{:http {:host default-host :port 8000}
:max-threads 500})))
(is (= (munge-actual-http-config
{:port 8000 :queue-max-size 123})
(munge-expected-http-config
{:http {:host default-host :port 8000}
:queue-max-size 123})))
(is (= (munge-actual-http-config
{:port 8000 :idle-timeout-milliseconds 6000})
(munge-expected-http-config
{:http {:host default-host
:port 8000
:idle-timeout-milliseconds 6000}})))
(is (= (munge-actual-http-config
{:port 8000 :acceptor-threads 32})
(munge-expected-http-config
{:http {:host default-host
:port 8000
:acceptor-threads 32}})))
(is (= (munge-actual-http-config
{:port 8000 :selector-threads 52})
(munge-expected-http-config
{:http {:host default-host
:port 8000
:selector-threads 52}})))))
(deftest process-config-https-test
(testing "process-config successfully builds a WebserverConfig for ssl connector"
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"}))
(munge-expected-https-config
{:https {:host "foo.local"
:port default-https-port}})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-port 8001}))
(munge-expected-https-config
{:https {:host default-host
:port 8001}})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local" :ssl-port 8001}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001}})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"
:ssl-port 8001
:request-header-max-size 16192}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001
:request-header-max-size 16192}})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"
:ssl-port 8001
:max-threads 93}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001}
:max-threads 93})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"
:ssl-port 8001
:queue-max-size 99}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001}
:queue-max-size 99})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"
:ssl-port 8001
:idle-timeout-milliseconds 4200}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001
:idle-timeout-milliseconds 4200}})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"
:ssl-port 8001
:ssl-selector-threads 4242}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001
:selector-threads 4242}})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"
:ssl-port 8001
:allow-renegotiation true}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001
:allow-renegotiation true}})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"
:ssl-port 8001
:allow-renegotiation false}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001
:allow-renegotiation false}})))
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local"
:ssl-port 8001
:ssl-acceptor-threads 9193}))
(munge-expected-https-config
{:https {:host "foo.local"
:port 8001
:acceptor-threads 9193}})))))
(deftest process-config-jks-test
(testing "jks ssl config"
(is (= (munge-actual-https-config
(merge (valid-ssl-keystore-config)
{:ssl-port 8001}))
(munge-expected-https-config
{:https {:host default-host
:port 8001}})))))
(deftest process-config-ciphers-test
(testing "cipher suites"
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-port 8001 :cipher-suites ["FOO" "BAR"]}))
(munge-expected-https-config
{:https
{:host default-host
:port 8001
:cipher-suites ["FOO" "BAR"]}}))))
(testing "cipher suites as a comma and space-separated string"
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-port 8001 :cipher-suites "FOO, BAR"}))
(munge-expected-https-config
{:https
{:host default-host
:port 8001
:cipher-suites ["FOO" "BAR"]}})))))
(deftest process-config-protocols-test
(testing "protocols"
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-port 8001 :ssl-protocols ["FOO" "BAR"]}))
(munge-expected-https-config
{:https
{:host default-host
:port 8001
:protocols ["FOO" "BAR"]}}))))
(testing "protocols as a comma and space-separated string"
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-port 8001 :ssl-protocols "FOO, BAR"}))
(munge-expected-https-config
{:https
{:host default-host
:port 8001
:protocols ["FOO" "BAR"]}})))))
(deftest process-config-crl-test
(testing "ssl-crl-path"
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-port 8001
:ssl-crl-path
"./dev-resources/config/jetty/ssl/certs/ca.pem"}))
(munge-expected-https-config
{:https
{:host default-host
:port 8001
:ssl-crl-path "./dev-resources/config/jetty/ssl/certs/ca.pem"}})))))
(deftest process-config-client-auth-test
(testing "client auth"
(letfn [(get-client-auth [config]
(-> config
(merge (valid-ssl-pem-config))
process-config
(get-in [:https :client-auth])))]
(testing "configure-web-server should set client-auth to a value of :need
if not specified in options"
(is (= :need (get-client-auth {:ssl-port 8001}))))
(testing "configure-web-server should convert client-auth string to
appropriate corresponding keyword value in configure-web-server
options"
(is (= :need (get-client-auth {:ssl-port 8081 :client-auth "need"})))
(is (= :want (get-client-auth {:ssl-port 8081 :client-auth "want"})))
(is (= :none (get-client-auth {:ssl-port 8081 :client-auth "none"}))))
(testing "configure-web-server should throw IllegalArgumentException if an
unsupported value is specified for the client-auth option"
(is (thrown-with-msg? java.lang.IllegalArgumentException
#"Unexpected value found for client auth config option: bogus. Expected need, want, or none."
(get-client-auth {:ssl-port 8081 :client-auth "bogus"})))))))
(deftest process-config-http-plus-https-test
(testing "process-config successfully builds a WebserverConfig for plaintext+ssl"
(is (= (munge-actual-https-config
(merge (valid-ssl-pem-config)
{:ssl-host "foo.local" :port 8000}))
(munge-expected-https-config
{:http {:host default-host
:port 8000
:request-header-max-size nil
:idle-timeout-milliseconds nil
:acceptor-threads nil
:selector-threads nil}
:https {:host "foo.local"
:port default-https-port}})))))
(deftest process-config-invalid-test
(testing "process-config fails for invalid server config"
(are [config]
(thrown? ExceptionInfo
(process-config config))
{:port "foo"}
{:port 8000 :badkey "hi"}))
(testing "process-config fails for incomplete ssl context config"
(are [config]
(thrown? IllegalArgumentException
(process-config config))
{}
{:ssl-port 8001}
{:ssl-port 8001 :ssl-host "foo.local"}
{:ssl-host "foo.local"}
(valid-ssl-pem-config)
(merge {:ssl-port 8001} (dissoc (valid-ssl-pem-config) :ssl-key))
(merge {:ssl-port 8001} (dissoc (valid-ssl-keystore-config) :keystore))))
(testing "should warn if both keystore-based and PEM-based SSL settings are found"
(with-test-logging
(process-config (merge {:ssl-port 8001}
(valid-ssl-pem-config)
(valid-ssl-keystore-config)))
(is (logged? #"Found settings for both keystore-based and PEM-based SSL")))))
(defn- validate-cert-lists-equal
[pem-with-expected-certs ssl-cert ssl-cert-chain]
(let [expected-certs (ssl/pem->certs pem-with-expected-certs)
actual-certs (construct-ssl-x509-cert-chain ssl-cert ssl-cert-chain)]
(is (= (count expected-certs) (count actual-certs))
"Number of expected certs do not match number of actual certs")
(dotimes [n (count expected-certs)]
(is (Arrays/equals (.getEncoded (nth expected-certs n))
(.getEncoded (nth actual-certs n)))
(str "Expected cert # " n " from does not match actual cert")))))
(deftest construct-ssl-x509-cert-chain-test
(testing "non-existent ssl-cert throws expected exception"
(let [tmp-file (ks/temp-file)]
(fs/delete tmp-file)
(is (thrown-with-msg? IllegalArgumentException
#"^Unable to open 'ssl-cert' file:"
(construct-ssl-x509-cert-chain
(.getAbsolutePath tmp-file)
nil)))))
(testing "no content in ssl-cert throws expected exception"
(let [tmp-file (ks/temp-file)]
(is (thrown-with-msg? Exception
#"^No certs found in 'ssl-cert' file:"
(construct-ssl-x509-cert-chain
(.getAbsolutePath tmp-file)
nil)))))
(testing "non-existent ssl-cert-chain throws expected exception"
(let [tmp-file (ks/temp-file)]
(fs/delete tmp-file)
(is (thrown-with-msg? IllegalArgumentException
#"^Unable to open 'ssl-cert-chain' file:"
(construct-ssl-x509-cert-chain
"./dev-resources/config/jetty/ssl/certs/localhost.pem"
(.getAbsolutePath tmp-file))))))
(testing "ssl-cert with single cert loaded into list"
(validate-cert-lists-equal
"./dev-resources/config/jetty/ssl/certs/localhost.pem"
"./dev-resources/config/jetty/ssl/certs/localhost.pem"
nil))
(testing "ssl-cert with multiple certs loaded into list"
(validate-cert-lists-equal
"./dev-resources/config/jetty/ssl/certs/master-with-all-cas.pem"
"./dev-resources/config/jetty/ssl/certs/master-with-all-cas.pem"
nil))
(testing (str "ssl-cert with single cert and ssl-cert-chain with "
"multiple certs loaded into list")
(validate-cert-lists-equal
"./dev-resources/config/jetty/ssl/certs/master-with-all-cas.pem"
"./dev-resources/config/jetty/ssl/certs/master.pem"
"./dev-resources/config/jetty/ssl/certs/ca-master-intermediate-and-root.pem"))
(testing (str "for ssl-cert with multiple certs and ssl-cert-chain with "
"with one cert, only the first cert from ssl-cert is "
"loaded into list with cert from ssl-cert-chain")
(validate-cert-lists-equal
"./dev-resources/config/jetty/ssl/certs/master-with-root-ca.pem"
"./dev-resources/config/jetty/ssl/certs/master-with-intermediate-ca.pem"
"./dev-resources/config/jetty/ssl/certs/ca-root.pem")))
(deftest test-advanced-scripting-config
(testing "Verify that we can use scripting to handle advanced configuration scenarios"
(let [config {:webserver
{:port 9000
:host "localhost"
:post-config-script (str "import org.eclipse.jetty.server.ServerConnector;"
"ServerConnector c = (ServerConnector)(server.getConnectors()[0]);\n"
"c.setPort(10000);")}}]
(with-test-logging
(with-app-with-config app
[jetty9-service]
config
(let [s (tk-app/get-service app :WebserverService)
add-ring-handler (partial add-ring-handler s)
body "Hi World"
path "/hi_world"
ring-handler (fn [req] {:status 200 :body body})]
(testing "A warning is logged when using post-config-script"
(is (logged? #"The 'post-config-script' setting is for advanced use"
:warn)))
(testing "scripted changes are executed properly"
(add-ring-handler ring-handler path)
(let [response (http-get
(format "http://localhost:10000/%s" path))]
(is (= (:status response) 200))
(is (= (:body response) body)))))))))
(testing "Server fails to start with bad post-config-script"
(let [base-config {:port 9000
:host "localhost"}]
(testing "Throws an error if the script can't be compiled."
(is (thrown-with-msg?
IllegalArgumentException
#"Invalid script string in webserver 'post-config-script' configuration"
(let [context (jetty9/initialize-context)]
(with-test-logging
(try
(jetty9/start-webserver!
context
(merge base-config
{:post-config-script (str "AHAHHHGHAHAHAHEASD! OMG!")}))
(finally
(jetty9/shutdown context))))))))
(testing "Throws an error if the script can't be executed."
(is (thrown-with-msg?
IllegalArgumentException
#"Invalid script string in webserver 'post-config-script' configuration"
(let [context (jetty9/initialize-context)]
(with-test-logging
(try
(jetty9/start-webserver!
context
(merge base-config
{:post-config-script (str "Object x = null; x.toString();")}))
(finally
(jetty9/shutdown context)))))))))))
|
[
{
"context": "999999999999.111111111111M)\n\n(def persons {:name \"hubert\" :city \"linz\"})\n(println (:name persons))\n\n(print",
"end": 529,
"score": 0.9995743036270142,
"start": 523,
"tag": "NAME",
"value": "hubert"
}
] |
clojure-sandbox/src/clojure_noob/misc.clj
|
guenhter/clojurescript-vs-javascript
| 0 |
(ns clojure-noob.misc)
(defn separator
[title]
(println)
(println (list "#########" title "#############")))
(println (type 999888777666555444333222111))
(println (* 999888777666555444333222111000 999888777666555444333222111000))
(println (+ 1N 0x7fffffffffffffff))
(println 0x7fffffffffffffff)
(println "hallo
asldjf
alsdjf")
(println "Hallo\"World")
(println 9999999999999999999.111111111111)
(println (type 9999999999999999999.111111111111))
(println 9999999999999999999.111111111111M)
(def persons {:name "hubert" :city "linz"})
(println (:name persons))
(println (:notexisting persons))
(separator "Symbols")
(def sym1 "sym1")
(println sym1)
(def sym1 "othersum")
(println sym1)
(separator "PI")
(def pi 3.1416)
(def pi? #(= % pi))
(println pi)
(println (pi? 3.1416))
(println (pi? 3.1417))
(println (count (time (for [x (range (* 900 700))] x))))
(println (count (time (doall (for [x (range (* 900 700))] x)))))
(println (count (time (vec (for [x (range (* 900 700))] x)))))
(do (println "111")
(println "222")
(println "333"))
(let [x 5] (println x))
(println true)
(println ({:a 1} :a))
(println {:alpha {:beta {:gamma {:delta {:epsilon {:zeta 1234}}}}}})
(println (get-in {:alpha {:beta {:gamma {:delta {:epsilon {:zeta 1234}}}}}} [:alpha :beta :gamma]))
(println (and true true))
(println (and true false))
(println (and (:c {:c true}) (not (:d {:d false}))))
(println "end")
|
88559
|
(ns clojure-noob.misc)
(defn separator
[title]
(println)
(println (list "#########" title "#############")))
(println (type 999888777666555444333222111))
(println (* 999888777666555444333222111000 999888777666555444333222111000))
(println (+ 1N 0x7fffffffffffffff))
(println 0x7fffffffffffffff)
(println "hallo
asldjf
alsdjf")
(println "Hallo\"World")
(println 9999999999999999999.111111111111)
(println (type 9999999999999999999.111111111111))
(println 9999999999999999999.111111111111M)
(def persons {:name "<NAME>" :city "linz"})
(println (:name persons))
(println (:notexisting persons))
(separator "Symbols")
(def sym1 "sym1")
(println sym1)
(def sym1 "othersum")
(println sym1)
(separator "PI")
(def pi 3.1416)
(def pi? #(= % pi))
(println pi)
(println (pi? 3.1416))
(println (pi? 3.1417))
(println (count (time (for [x (range (* 900 700))] x))))
(println (count (time (doall (for [x (range (* 900 700))] x)))))
(println (count (time (vec (for [x (range (* 900 700))] x)))))
(do (println "111")
(println "222")
(println "333"))
(let [x 5] (println x))
(println true)
(println ({:a 1} :a))
(println {:alpha {:beta {:gamma {:delta {:epsilon {:zeta 1234}}}}}})
(println (get-in {:alpha {:beta {:gamma {:delta {:epsilon {:zeta 1234}}}}}} [:alpha :beta :gamma]))
(println (and true true))
(println (and true false))
(println (and (:c {:c true}) (not (:d {:d false}))))
(println "end")
| true |
(ns clojure-noob.misc)
(defn separator
[title]
(println)
(println (list "#########" title "#############")))
(println (type 999888777666555444333222111))
(println (* 999888777666555444333222111000 999888777666555444333222111000))
(println (+ 1N 0x7fffffffffffffff))
(println 0x7fffffffffffffff)
(println "hallo
asldjf
alsdjf")
(println "Hallo\"World")
(println 9999999999999999999.111111111111)
(println (type 9999999999999999999.111111111111))
(println 9999999999999999999.111111111111M)
(def persons {:name "PI:NAME:<NAME>END_PI" :city "linz"})
(println (:name persons))
(println (:notexisting persons))
(separator "Symbols")
(def sym1 "sym1")
(println sym1)
(def sym1 "othersum")
(println sym1)
(separator "PI")
(def pi 3.1416)
(def pi? #(= % pi))
(println pi)
(println (pi? 3.1416))
(println (pi? 3.1417))
(println (count (time (for [x (range (* 900 700))] x))))
(println (count (time (doall (for [x (range (* 900 700))] x)))))
(println (count (time (vec (for [x (range (* 900 700))] x)))))
(do (println "111")
(println "222")
(println "333"))
(let [x 5] (println x))
(println true)
(println ({:a 1} :a))
(println {:alpha {:beta {:gamma {:delta {:epsilon {:zeta 1234}}}}}})
(println (get-in {:alpha {:beta {:gamma {:delta {:epsilon {:zeta 1234}}}}}} [:alpha :beta :gamma]))
(println (and true true))
(println (and true false))
(println (and (:c {:c true}) (not (:d {:d false}))))
(println "end")
|
[
{
"context": " (reduce str)))\n; END clj_process_thread\n\n;; Smith,Moqi,Tom,Jack\n(def a_list (list \"smith\" \"moqi\" \"t",
"end": 567,
"score": 0.9997937083244324,
"start": 562,
"tag": "NAME",
"value": "Smith"
},
{
"context": "(reduce str)))\n; END clj_process_thread\n\n;; Smith,Moqi,Tom,Jack\n(def a_list (list \"smith\" \"moqi\" \"tom\" \"",
"end": 572,
"score": 0.9994566440582275,
"start": 568,
"tag": "NAME",
"value": "Moqi"
},
{
"context": "ce str)))\n; END clj_process_thread\n\n;; Smith,Moqi,Tom,Jack\n(def a_list (list \"smith\" \"moqi\" \"tom\" \"jack",
"end": 576,
"score": 0.9996434450149536,
"start": 573,
"tag": "NAME",
"value": "Tom"
},
{
"context": "tr)))\n; END clj_process_thread\n\n;; Smith,Moqi,Tom,Jack\n(def a_list (list \"smith\" \"moqi\" \"tom\" \"jack\"))\n(",
"end": 581,
"score": 0.9992298483848572,
"start": 577,
"tag": "NAME",
"value": "Jack"
},
{
"context": "thread\n\n;; Smith,Moqi,Tom,Jack\n(def a_list (list \"smith\" \"moqi\" \"tom\" \"jack\"))\n(println (process2 a_list)",
"end": 606,
"score": 0.999309778213501,
"start": 601,
"tag": "NAME",
"value": "smith"
},
{
"context": ";; Smith,Moqi,Tom,Jack\n(def a_list (list \"smith\" \"moqi\" \"tom\" \"jack\"))\n(println (process2 a_list))\n",
"end": 613,
"score": 0.9995901584625244,
"start": 609,
"tag": "NAME",
"value": "moqi"
},
{
"context": "h,Moqi,Tom,Jack\n(def a_list (list \"smith\" \"moqi\" \"tom\" \"jack\"))\n(println (process2 a_list))\n",
"end": 619,
"score": 0.998939573764801,
"start": 616,
"tag": "NAME",
"value": "tom"
},
{
"context": ",Tom,Jack\n(def a_list (list \"smith\" \"moqi\" \"tom\" \"jack\"))\n(println (process2 a_list))\n",
"end": 626,
"score": 0.9982271790504456,
"start": 622,
"tag": "NAME",
"value": "jack"
}
] |
src/main/clojure/com/moqi/clojure/a02/a0205_the_company_precess/core.clj
|
moqimoqidea/functional-programming
| 0 |
(ns com.moqi.clojure.a02.a0205_the_company_precess.core
(:require [clojure.string :as s]))
; 通过 Clojure 实现 Process 过程
; BEGIN clj_process
(defn process [list-of-employees]
(reduce str (interpose ","
(map s/capitalize (filter #(< 1 (count %)) list-of-employees)))))
; END clj_process
; 通过 Thread-last 宏改善代码的可读性
; BEGIN clj_process_thread
(defn process2 [list-of-employees]
(->> list-of-employees
(filter #(< 1 (count %)))
(map s/capitalize)
(interpose ",")
(reduce str)))
; END clj_process_thread
;; Smith,Moqi,Tom,Jack
(def a_list (list "smith" "moqi" "tom" "jack"))
(println (process2 a_list))
|
22505
|
(ns com.moqi.clojure.a02.a0205_the_company_precess.core
(:require [clojure.string :as s]))
; 通过 Clojure 实现 Process 过程
; BEGIN clj_process
(defn process [list-of-employees]
(reduce str (interpose ","
(map s/capitalize (filter #(< 1 (count %)) list-of-employees)))))
; END clj_process
; 通过 Thread-last 宏改善代码的可读性
; BEGIN clj_process_thread
(defn process2 [list-of-employees]
(->> list-of-employees
(filter #(< 1 (count %)))
(map s/capitalize)
(interpose ",")
(reduce str)))
; END clj_process_thread
;; <NAME>,<NAME>,<NAME>,<NAME>
(def a_list (list "<NAME>" "<NAME>" "<NAME>" "<NAME>"))
(println (process2 a_list))
| true |
(ns com.moqi.clojure.a02.a0205_the_company_precess.core
(:require [clojure.string :as s]))
; 通过 Clojure 实现 Process 过程
; BEGIN clj_process
(defn process [list-of-employees]
(reduce str (interpose ","
(map s/capitalize (filter #(< 1 (count %)) list-of-employees)))))
; END clj_process
; 通过 Thread-last 宏改善代码的可读性
; BEGIN clj_process_thread
(defn process2 [list-of-employees]
(->> list-of-employees
(filter #(< 1 (count %)))
(map s/capitalize)
(interpose ",")
(reduce str)))
; END clj_process_thread
;; PI:NAME:<NAME>END_PI,PI:NAME:<NAME>END_PI,PI:NAME:<NAME>END_PI,PI:NAME:<NAME>END_PI
(def a_list (list "PI:NAME:<NAME>END_PI" "PI:NAME:<NAME>END_PI" "PI:NAME:<NAME>END_PI" "PI:NAME:<NAME>END_PI"))
(println (process2 a_list))
|
[
{
"context": ":export run\n []\n (reagent/render\n [:p \"Hello, Reagent!\"]\n (js/document.getElementById \"app\")))\n",
"end": 147,
"score": 0.9763340950012207,
"start": 140,
"tag": "NAME",
"value": "Reagent"
}
] |
src/cljs/mvxcvi/body/main.cljs
|
greglook/body-app
| 1 |
(ns mvxcvi.body.main
(:require
[reagent.core :as reagent :refer [atom]]))
(defn ^:export run
[]
(reagent/render
[:p "Hello, Reagent!"]
(js/document.getElementById "app")))
|
86411
|
(ns mvxcvi.body.main
(:require
[reagent.core :as reagent :refer [atom]]))
(defn ^:export run
[]
(reagent/render
[:p "Hello, <NAME>!"]
(js/document.getElementById "app")))
| true |
(ns mvxcvi.body.main
(:require
[reagent.core :as reagent :refer [atom]]))
(defn ^:export run
[]
(reagent/render
[:p "Hello, PI:NAME:<NAME>END_PI!"]
(js/document.getElementById "app")))
|
[
{
"context": ":groups first .toLowerCase))\n (get {\"zwanzig\" 20 \"dreissig\" 30 \"vierzig\" 40 \"fünfzig\" 50\n ",
"end": 2464,
"score": 0.6910919547080994,
"start": 2461,
"tag": "NAME",
"value": "anz"
},
{
"context": "st .toLowerCase))\n (get {\"zwanzig\" 20 \"dreissig\" 30 \"vierzig\" 40 \"fünfzig\" 50\n \"",
"end": 2480,
"score": 0.7428352236747742,
"start": 2472,
"tag": "NAME",
"value": "dreissig"
},
{
"context": "))\n (get {\"zwanzig\" 20 \"dreissig\" 30 \"vierzig\" 40 \"fünfzig\" 50\n \"sechzig\" 6",
"end": 2490,
"score": 0.5605003833770752,
"start": 2487,
"tag": "NAME",
"value": "ier"
},
{
"context": "ünfzehnter\" 15 \"sechzehnter\" 16\n \"siebzehnter\" 17 \"achtzehnter\" 18 \"neunzehnter\" 19}\n ",
"end": 6566,
"score": 0.9019075632095337,
"start": 6555,
"tag": "NAME",
"value": "siebzehnter"
},
{
"context": "echzehnter\" 16\n \"siebzehnter\" 17 \"achtzehnter\" 18 \"neunzehnter\" 19}\n (-> %1 :grou",
"end": 6583,
"score": 0.7961461544036865,
"start": 6572,
"tag": "NAME",
"value": "achtzehnter"
},
{
"context": " \"siebzehnter\" 17 \"achtzehnter\" 18 \"neunzehnter\" 19}\n (-> %1 :groups first .toLower",
"end": 6600,
"score": 0.8057274222373962,
"start": 6591,
"tag": "NAME",
"value": "unzehnter"
}
] |
resources/languages/de/rules/numbers.clj
|
irvingflores/duckling
| 0 |
( "intersect" ;handles things like hundert zwei
[(dim :number :grain #(> (:grain %) 1)) (dim :number)] ; grain 1 are taken care of by specific rule
(compose-numbers %1 %2)
"numbers und"
[(integer 1 9) #"und" (integer 20 90 #(#{20 30 40 50 60 70 80 90} (:value %)))]
{:dim :number
:integer true
:value (+ (:value %1) (:value %3))}
;;
;; Integers
;;
"integer (0..19)"
#"(?i)(keine?|keine?s|keiner?|keinen|null|nichts|eins?(er)?|zwei|dreizehn|drei|vierzehn|vier|fünf|sechzehn|sechs|siebzehn|sieben|achtzehn|acht|neunzehn|neun|elf|zwölf|füfzehn)"
; fourteen must be before four, or it won't work because the regex will stop at four
{:dim :number
:integer true
:value (get {"keines" 0 "keiner" 0 "keinen" 0 "null" 0 "nichts" 0 "ein" 1 "eins" 1 "eine" 1 "einer" 1 "zwei" 2 "drei" 3 "vier" 4 "fünf" 5
"sechs" 6 "sieben" 7 "acht" 8 "neun" 9 "zehn" 10 "elf" 11
"zwölf" 12 "dreizehn" 13 "vierzehn" 14 "fünfzehn" 15 "sechzehn" 16
"siebzehn" 17 "achtzehn" 18 "neunzehn" 19}
(-> %1 :groups first .toLowerCase))}
"ten"
#"(?i)zehn"
{:dim :number :integer true :value 10 :grain 1}
"dozen"
#"(?i)dutzend"
{:dim :number :integer true :value 12 :grain 1 :grouping true} ;;restrict composition and prevent "2 12"
"hundred"
#"(?i)hunderte?"
{:dim :number :integer true :value 100 :grain 2}
"thousand"
#"(?i)tausende?"
{:dim :number :integer true :value 1000 :grain 3}
"million"
#"(?i)million(en)?"
{:dim :number :integer true :value 1000000 :grain 6}
"couple"
#"(?i)(ein )?paar"
{:dim :number :integer true :value 2}
"few" ; TODO set assumption
#"(?i)mehrere"
{:dim :number :integer true :precision :approximate :value 3}
"integer (20..90)"
#"(?i)(zwanzig|dreissig|vierzig|fünfzig|sechzig|siebzig|achtzig|neunzig)"
{:dim :number
:integer true
:value (get {"zwanzig" 20 "dreissig" 30 "vierzig" 40 "fünfzig" 50 "sechzig" 60
"siebzig" 70 "achtzig" 80 "neunzig" 90}
(-> %1 :groups first .toLowerCase))
:grain 1}
"integer ([2-9][1-9])"
#"(?i)(ein|zwei|drei|vier|fünf|sechs|sieben|acht|neun)und(zwanzig|dreissig|vierzig|fünfzig|sechzig|siebzig|achtzig|neunzig)"
{:dim :number
:integer true
:value (+ (get {"ein" 1 "zwei" 2 "drei" 3 "vier" 4 "fünf" 5
"sechs" 6 "sieben" 7 "acht" 8 "neun" 9}
(-> %1 :groups first .toLowerCase))
(get {"zwanzig" 20 "dreissig" 30 "vierzig" 40 "fünfzig" 50
"sechzig" 60 "siebzig" 70 "achtzig" 80 "neunzig" 90}
(-> %1 :groups second .toLowerCase)))}
; "integer 21..99"
; [(integer 10 90 #(#{20 30 40 50 60 70 80 90} (:value %))) (integer 1 9)]
; {:dim :number
; :integer true
; :value (+ (:value %1) (:value %2))}
"integer (numeric)"
#"(\d{1,18})"
{:dim :number
:integer true
:value (Long/parseLong (first (:groups %1)))}
"integer with thousands separator ."
#"(\d{1,3}(\.\d\d\d){1,5})"
{:dim :number
:integer true
:value (-> (:groups %1)
first
(clojure.string/replace #"\." "")
Long/parseLong)}
; composition
; "number dozen"
; [(integer 1 10) (dim :number #(:grouping %))]
; {:dim :number
; :integer true
; :value (* (:value %1) (:value %2))
; :grain (:grain %2)}
"number hundreds"
[(integer 1 99) (integer 100 100)]
{:dim :number
:integer true
:value (* (:value %1) (:value %2))
:grain (:grain %2)}
"number thousands"
[(integer 1 999) (integer 1000 1000)]
{:dim :number
:integer true
:value (* (:value %1) (:value %2))
:grain (:grain %2)}
"number millions"
[(integer 1 99) (integer 1000000 1000000)]
{:dim :number
:integer true
:value (* (:value %1) (:value %2))
:grain (:grain %2)}
;;
;; Decimals
;;
"decimal number"
#"(\d*,\d+)"
{:dim :number
:value (-> (:groups %1)
first
(clojure.string/replace #"," ".")
Double/parseDouble)}
"number dot number"
[(dim :number #(not (:number-prefixed %))) #"(?i)komma" (dim :number #(not (:number-suffixed %)))]
{:dim :number
:value (+ (* 0.1 (:value %3)) (:value %1))}
"decimal with thousands separator"
#"(\d+(\.\d\d\d)+\,\d+)"
{:dim :number
:value (-> (:groups %1)
first
(clojure.string/replace #"\." "")
Double/parseDouble)}
;; negative number
"numbers prefix with -, negative or minus"
[#"(?i)-|minus|negativ" (dim :number #(not (:number-prefixed %)))]
(let [multiplier -1
value (* (:value %2) multiplier)
int? (zero? (mod value 1)) ; often true, but we could have 1.1111K
value (if int? (long value) value)] ; cleaner if we have the right type
(assoc %2 :value value
:integer int?
:number-prefixed true)) ; prevent "- -3km" to be 3 billions
;; suffixes
; note that we check for a space-like char after the M, K or G
; to avoid matching 3 Mandarins
"numbers suffixes (K, M, G)"
[(dim :number #(not (:number-suffixed %))) #"(?i)([kmg])(?=[\W\$€]|$)"]
(let [multiplier (get {"k" 1000 "m" 1000000 "g" 1000000000}
(-> %2 :groups first .toLowerCase))
value (* (:value %1) multiplier)
int? (zero? (mod value 1)) ; often true, but we could have 1.1111K
value (if int? (long value) value)] ; cleaner if we have the right type
(assoc %1 :value value
:integer int?
:number-suffixed true)) ; prevent "3km" to be 3 billions
;;
;; Ordinal numbers
;;
"ordinals (first..19th)"
#"(?i)(erste(r|s)?|zweite(r|s)|dritte(r|s)|vierte(r|s)|fuenfte(r|s)|sechste(r|s)|siebte(r|s)|achte(r|s)|neunte(r|s)|zehnte(r|s)|elfter|zwölfter|dreizenter|vierzehnter|fünfzehnter|sechzenter|siebzehnter|achtzehnter|neunzehnter)"
{:dim :ordinal
:value (get {"erste" 1 "erster" 1 "erstes" 1
"zweite" 2 "zweiter" 2 "zweites" 2
"dritte" 3 "dritter" 3 "drittes" 3
"vierte" 4 "vierter" 4 "viertes" 4
"fünfte" 5 "fünfter" 5 "fünftes" 5
"sechste" 6 "sechster" 6 "sechstes" 6
"siebte" 7 "siebter" 7 "siebtes" 7
"achte" 8 "achter" 8 "achtes" 8
"neunte" 9 "neunter" 9 "neuntes" 9
"zehnte" 10 "zehnter" 10 "zehntes" 10
"elfter" 11
"zwölfter" 12 "dreizehnter" 13 "vierzehnter" 14 "fünfzehnter" 15 "sechzehnter" 16
"siebzehnter" 17 "achtzehnter" 18 "neunzehnter" 19}
(-> %1 :groups first .toLowerCase))}
"ordinal (digits)"
#"0*(\d+)(\.| ?(te(n|r|s)?)|(ste(n|r|s)?))"
{:dim :ordinal
:value (read-string (first (:groups %1)))}) ; read-string not the safest
|
39024
|
( "intersect" ;handles things like hundert zwei
[(dim :number :grain #(> (:grain %) 1)) (dim :number)] ; grain 1 are taken care of by specific rule
(compose-numbers %1 %2)
"numbers und"
[(integer 1 9) #"und" (integer 20 90 #(#{20 30 40 50 60 70 80 90} (:value %)))]
{:dim :number
:integer true
:value (+ (:value %1) (:value %3))}
;;
;; Integers
;;
"integer (0..19)"
#"(?i)(keine?|keine?s|keiner?|keinen|null|nichts|eins?(er)?|zwei|dreizehn|drei|vierzehn|vier|fünf|sechzehn|sechs|siebzehn|sieben|achtzehn|acht|neunzehn|neun|elf|zwölf|füfzehn)"
; fourteen must be before four, or it won't work because the regex will stop at four
{:dim :number
:integer true
:value (get {"keines" 0 "keiner" 0 "keinen" 0 "null" 0 "nichts" 0 "ein" 1 "eins" 1 "eine" 1 "einer" 1 "zwei" 2 "drei" 3 "vier" 4 "fünf" 5
"sechs" 6 "sieben" 7 "acht" 8 "neun" 9 "zehn" 10 "elf" 11
"zwölf" 12 "dreizehn" 13 "vierzehn" 14 "fünfzehn" 15 "sechzehn" 16
"siebzehn" 17 "achtzehn" 18 "neunzehn" 19}
(-> %1 :groups first .toLowerCase))}
"ten"
#"(?i)zehn"
{:dim :number :integer true :value 10 :grain 1}
"dozen"
#"(?i)dutzend"
{:dim :number :integer true :value 12 :grain 1 :grouping true} ;;restrict composition and prevent "2 12"
"hundred"
#"(?i)hunderte?"
{:dim :number :integer true :value 100 :grain 2}
"thousand"
#"(?i)tausende?"
{:dim :number :integer true :value 1000 :grain 3}
"million"
#"(?i)million(en)?"
{:dim :number :integer true :value 1000000 :grain 6}
"couple"
#"(?i)(ein )?paar"
{:dim :number :integer true :value 2}
"few" ; TODO set assumption
#"(?i)mehrere"
{:dim :number :integer true :precision :approximate :value 3}
"integer (20..90)"
#"(?i)(zwanzig|dreissig|vierzig|fünfzig|sechzig|siebzig|achtzig|neunzig)"
{:dim :number
:integer true
:value (get {"zwanzig" 20 "dreissig" 30 "vierzig" 40 "fünfzig" 50 "sechzig" 60
"siebzig" 70 "achtzig" 80 "neunzig" 90}
(-> %1 :groups first .toLowerCase))
:grain 1}
"integer ([2-9][1-9])"
#"(?i)(ein|zwei|drei|vier|fünf|sechs|sieben|acht|neun)und(zwanzig|dreissig|vierzig|fünfzig|sechzig|siebzig|achtzig|neunzig)"
{:dim :number
:integer true
:value (+ (get {"ein" 1 "zwei" 2 "drei" 3 "vier" 4 "fünf" 5
"sechs" 6 "sieben" 7 "acht" 8 "neun" 9}
(-> %1 :groups first .toLowerCase))
(get {"zw<NAME>ig" 20 "<NAME>" 30 "v<NAME>zig" 40 "fünfzig" 50
"sechzig" 60 "siebzig" 70 "achtzig" 80 "neunzig" 90}
(-> %1 :groups second .toLowerCase)))}
; "integer 21..99"
; [(integer 10 90 #(#{20 30 40 50 60 70 80 90} (:value %))) (integer 1 9)]
; {:dim :number
; :integer true
; :value (+ (:value %1) (:value %2))}
"integer (numeric)"
#"(\d{1,18})"
{:dim :number
:integer true
:value (Long/parseLong (first (:groups %1)))}
"integer with thousands separator ."
#"(\d{1,3}(\.\d\d\d){1,5})"
{:dim :number
:integer true
:value (-> (:groups %1)
first
(clojure.string/replace #"\." "")
Long/parseLong)}
; composition
; "number dozen"
; [(integer 1 10) (dim :number #(:grouping %))]
; {:dim :number
; :integer true
; :value (* (:value %1) (:value %2))
; :grain (:grain %2)}
"number hundreds"
[(integer 1 99) (integer 100 100)]
{:dim :number
:integer true
:value (* (:value %1) (:value %2))
:grain (:grain %2)}
"number thousands"
[(integer 1 999) (integer 1000 1000)]
{:dim :number
:integer true
:value (* (:value %1) (:value %2))
:grain (:grain %2)}
"number millions"
[(integer 1 99) (integer 1000000 1000000)]
{:dim :number
:integer true
:value (* (:value %1) (:value %2))
:grain (:grain %2)}
;;
;; Decimals
;;
"decimal number"
#"(\d*,\d+)"
{:dim :number
:value (-> (:groups %1)
first
(clojure.string/replace #"," ".")
Double/parseDouble)}
"number dot number"
[(dim :number #(not (:number-prefixed %))) #"(?i)komma" (dim :number #(not (:number-suffixed %)))]
{:dim :number
:value (+ (* 0.1 (:value %3)) (:value %1))}
"decimal with thousands separator"
#"(\d+(\.\d\d\d)+\,\d+)"
{:dim :number
:value (-> (:groups %1)
first
(clojure.string/replace #"\." "")
Double/parseDouble)}
;; negative number
"numbers prefix with -, negative or minus"
[#"(?i)-|minus|negativ" (dim :number #(not (:number-prefixed %)))]
(let [multiplier -1
value (* (:value %2) multiplier)
int? (zero? (mod value 1)) ; often true, but we could have 1.1111K
value (if int? (long value) value)] ; cleaner if we have the right type
(assoc %2 :value value
:integer int?
:number-prefixed true)) ; prevent "- -3km" to be 3 billions
;; suffixes
; note that we check for a space-like char after the M, K or G
; to avoid matching 3 Mandarins
"numbers suffixes (K, M, G)"
[(dim :number #(not (:number-suffixed %))) #"(?i)([kmg])(?=[\W\$€]|$)"]
(let [multiplier (get {"k" 1000 "m" 1000000 "g" 1000000000}
(-> %2 :groups first .toLowerCase))
value (* (:value %1) multiplier)
int? (zero? (mod value 1)) ; often true, but we could have 1.1111K
value (if int? (long value) value)] ; cleaner if we have the right type
(assoc %1 :value value
:integer int?
:number-suffixed true)) ; prevent "3km" to be 3 billions
;;
;; Ordinal numbers
;;
"ordinals (first..19th)"
#"(?i)(erste(r|s)?|zweite(r|s)|dritte(r|s)|vierte(r|s)|fuenfte(r|s)|sechste(r|s)|siebte(r|s)|achte(r|s)|neunte(r|s)|zehnte(r|s)|elfter|zwölfter|dreizenter|vierzehnter|fünfzehnter|sechzenter|siebzehnter|achtzehnter|neunzehnter)"
{:dim :ordinal
:value (get {"erste" 1 "erster" 1 "erstes" 1
"zweite" 2 "zweiter" 2 "zweites" 2
"dritte" 3 "dritter" 3 "drittes" 3
"vierte" 4 "vierter" 4 "viertes" 4
"fünfte" 5 "fünfter" 5 "fünftes" 5
"sechste" 6 "sechster" 6 "sechstes" 6
"siebte" 7 "siebter" 7 "siebtes" 7
"achte" 8 "achter" 8 "achtes" 8
"neunte" 9 "neunter" 9 "neuntes" 9
"zehnte" 10 "zehnter" 10 "zehntes" 10
"elfter" 11
"zwölfter" 12 "dreizehnter" 13 "vierzehnter" 14 "fünfzehnter" 15 "sechzehnter" 16
"<NAME>" 17 "<NAME>" 18 "ne<NAME>" 19}
(-> %1 :groups first .toLowerCase))}
"ordinal (digits)"
#"0*(\d+)(\.| ?(te(n|r|s)?)|(ste(n|r|s)?))"
{:dim :ordinal
:value (read-string (first (:groups %1)))}) ; read-string not the safest
| true |
( "intersect" ;handles things like hundert zwei
[(dim :number :grain #(> (:grain %) 1)) (dim :number)] ; grain 1 are taken care of by specific rule
(compose-numbers %1 %2)
"numbers und"
[(integer 1 9) #"und" (integer 20 90 #(#{20 30 40 50 60 70 80 90} (:value %)))]
{:dim :number
:integer true
:value (+ (:value %1) (:value %3))}
;;
;; Integers
;;
"integer (0..19)"
#"(?i)(keine?|keine?s|keiner?|keinen|null|nichts|eins?(er)?|zwei|dreizehn|drei|vierzehn|vier|fünf|sechzehn|sechs|siebzehn|sieben|achtzehn|acht|neunzehn|neun|elf|zwölf|füfzehn)"
; fourteen must be before four, or it won't work because the regex will stop at four
{:dim :number
:integer true
:value (get {"keines" 0 "keiner" 0 "keinen" 0 "null" 0 "nichts" 0 "ein" 1 "eins" 1 "eine" 1 "einer" 1 "zwei" 2 "drei" 3 "vier" 4 "fünf" 5
"sechs" 6 "sieben" 7 "acht" 8 "neun" 9 "zehn" 10 "elf" 11
"zwölf" 12 "dreizehn" 13 "vierzehn" 14 "fünfzehn" 15 "sechzehn" 16
"siebzehn" 17 "achtzehn" 18 "neunzehn" 19}
(-> %1 :groups first .toLowerCase))}
"ten"
#"(?i)zehn"
{:dim :number :integer true :value 10 :grain 1}
"dozen"
#"(?i)dutzend"
{:dim :number :integer true :value 12 :grain 1 :grouping true} ;;restrict composition and prevent "2 12"
"hundred"
#"(?i)hunderte?"
{:dim :number :integer true :value 100 :grain 2}
"thousand"
#"(?i)tausende?"
{:dim :number :integer true :value 1000 :grain 3}
"million"
#"(?i)million(en)?"
{:dim :number :integer true :value 1000000 :grain 6}
"couple"
#"(?i)(ein )?paar"
{:dim :number :integer true :value 2}
"few" ; TODO set assumption
#"(?i)mehrere"
{:dim :number :integer true :precision :approximate :value 3}
"integer (20..90)"
#"(?i)(zwanzig|dreissig|vierzig|fünfzig|sechzig|siebzig|achtzig|neunzig)"
{:dim :number
:integer true
:value (get {"zwanzig" 20 "dreissig" 30 "vierzig" 40 "fünfzig" 50 "sechzig" 60
"siebzig" 70 "achtzig" 80 "neunzig" 90}
(-> %1 :groups first .toLowerCase))
:grain 1}
"integer ([2-9][1-9])"
#"(?i)(ein|zwei|drei|vier|fünf|sechs|sieben|acht|neun)und(zwanzig|dreissig|vierzig|fünfzig|sechzig|siebzig|achtzig|neunzig)"
{:dim :number
:integer true
:value (+ (get {"ein" 1 "zwei" 2 "drei" 3 "vier" 4 "fünf" 5
"sechs" 6 "sieben" 7 "acht" 8 "neun" 9}
(-> %1 :groups first .toLowerCase))
(get {"zwPI:NAME:<NAME>END_PIig" 20 "PI:NAME:<NAME>END_PI" 30 "vPI:NAME:<NAME>END_PIzig" 40 "fünfzig" 50
"sechzig" 60 "siebzig" 70 "achtzig" 80 "neunzig" 90}
(-> %1 :groups second .toLowerCase)))}
; "integer 21..99"
; [(integer 10 90 #(#{20 30 40 50 60 70 80 90} (:value %))) (integer 1 9)]
; {:dim :number
; :integer true
; :value (+ (:value %1) (:value %2))}
"integer (numeric)"
#"(\d{1,18})"
{:dim :number
:integer true
:value (Long/parseLong (first (:groups %1)))}
"integer with thousands separator ."
#"(\d{1,3}(\.\d\d\d){1,5})"
{:dim :number
:integer true
:value (-> (:groups %1)
first
(clojure.string/replace #"\." "")
Long/parseLong)}
; composition
; "number dozen"
; [(integer 1 10) (dim :number #(:grouping %))]
; {:dim :number
; :integer true
; :value (* (:value %1) (:value %2))
; :grain (:grain %2)}
"number hundreds"
[(integer 1 99) (integer 100 100)]
{:dim :number
:integer true
:value (* (:value %1) (:value %2))
:grain (:grain %2)}
"number thousands"
[(integer 1 999) (integer 1000 1000)]
{:dim :number
:integer true
:value (* (:value %1) (:value %2))
:grain (:grain %2)}
"number millions"
[(integer 1 99) (integer 1000000 1000000)]
{:dim :number
:integer true
:value (* (:value %1) (:value %2))
:grain (:grain %2)}
;;
;; Decimals
;;
"decimal number"
#"(\d*,\d+)"
{:dim :number
:value (-> (:groups %1)
first
(clojure.string/replace #"," ".")
Double/parseDouble)}
"number dot number"
[(dim :number #(not (:number-prefixed %))) #"(?i)komma" (dim :number #(not (:number-suffixed %)))]
{:dim :number
:value (+ (* 0.1 (:value %3)) (:value %1))}
"decimal with thousands separator"
#"(\d+(\.\d\d\d)+\,\d+)"
{:dim :number
:value (-> (:groups %1)
first
(clojure.string/replace #"\." "")
Double/parseDouble)}
;; negative number
"numbers prefix with -, negative or minus"
[#"(?i)-|minus|negativ" (dim :number #(not (:number-prefixed %)))]
(let [multiplier -1
value (* (:value %2) multiplier)
int? (zero? (mod value 1)) ; often true, but we could have 1.1111K
value (if int? (long value) value)] ; cleaner if we have the right type
(assoc %2 :value value
:integer int?
:number-prefixed true)) ; prevent "- -3km" to be 3 billions
;; suffixes
; note that we check for a space-like char after the M, K or G
; to avoid matching 3 Mandarins
"numbers suffixes (K, M, G)"
[(dim :number #(not (:number-suffixed %))) #"(?i)([kmg])(?=[\W\$€]|$)"]
(let [multiplier (get {"k" 1000 "m" 1000000 "g" 1000000000}
(-> %2 :groups first .toLowerCase))
value (* (:value %1) multiplier)
int? (zero? (mod value 1)) ; often true, but we could have 1.1111K
value (if int? (long value) value)] ; cleaner if we have the right type
(assoc %1 :value value
:integer int?
:number-suffixed true)) ; prevent "3km" to be 3 billions
;;
;; Ordinal numbers
;;
"ordinals (first..19th)"
#"(?i)(erste(r|s)?|zweite(r|s)|dritte(r|s)|vierte(r|s)|fuenfte(r|s)|sechste(r|s)|siebte(r|s)|achte(r|s)|neunte(r|s)|zehnte(r|s)|elfter|zwölfter|dreizenter|vierzehnter|fünfzehnter|sechzenter|siebzehnter|achtzehnter|neunzehnter)"
{:dim :ordinal
:value (get {"erste" 1 "erster" 1 "erstes" 1
"zweite" 2 "zweiter" 2 "zweites" 2
"dritte" 3 "dritter" 3 "drittes" 3
"vierte" 4 "vierter" 4 "viertes" 4
"fünfte" 5 "fünfter" 5 "fünftes" 5
"sechste" 6 "sechster" 6 "sechstes" 6
"siebte" 7 "siebter" 7 "siebtes" 7
"achte" 8 "achter" 8 "achtes" 8
"neunte" 9 "neunter" 9 "neuntes" 9
"zehnte" 10 "zehnter" 10 "zehntes" 10
"elfter" 11
"zwölfter" 12 "dreizehnter" 13 "vierzehnter" 14 "fünfzehnter" 15 "sechzehnter" 16
"PI:NAME:<NAME>END_PI" 17 "PI:NAME:<NAME>END_PI" 18 "nePI:NAME:<NAME>END_PI" 19}
(-> %1 :groups first .toLowerCase))}
"ordinal (digits)"
#"0*(\d+)(\.| ?(te(n|r|s)?)|(ste(n|r|s)?))"
{:dim :ordinal
:value (read-string (first (:groups %1)))}) ; read-string not the safest
|
[
{
"context": "count\n \n {:doc \"count image files.\"\n :author \"palisades dot lakes at gmail dot com\"\n :version \"2018-01-12\"}\n \n (:require [clojur",
"end": 260,
"score": 0.7231884598731995,
"start": 224,
"tag": "EMAIL",
"value": "palisades dot lakes at gmail dot com"
}
] |
src/scripts/clojure/palisades/lakes/curate/scripts/count.clj
|
palisades-lakes/curate
| 0 |
(set! *warn-on-reflection* true)
(set! *unchecked-math* :warn-on-boxed)
;;----------------------------------------------------------------
(ns palisades.lakes.curate.scripts.count
{:doc "count image files."
:author "palisades dot lakes at gmail dot com"
:version "2018-01-12"}
(:require [clojure.java.io :as io]
[clojure.pprint :as pp]
[palisades.lakes.curate.curate :as curate]))
;;----------------------------------------------------------------
(let [d (io/file "s:/" "porta" #_"Pictures")]
(println (curate/unix-path d))
(println (count (curate/image-file-seq d))))
;;----------------------------------------------------------------
|
60554
|
(set! *warn-on-reflection* true)
(set! *unchecked-math* :warn-on-boxed)
;;----------------------------------------------------------------
(ns palisades.lakes.curate.scripts.count
{:doc "count image files."
:author "<EMAIL>"
:version "2018-01-12"}
(:require [clojure.java.io :as io]
[clojure.pprint :as pp]
[palisades.lakes.curate.curate :as curate]))
;;----------------------------------------------------------------
(let [d (io/file "s:/" "porta" #_"Pictures")]
(println (curate/unix-path d))
(println (count (curate/image-file-seq d))))
;;----------------------------------------------------------------
| true |
(set! *warn-on-reflection* true)
(set! *unchecked-math* :warn-on-boxed)
;;----------------------------------------------------------------
(ns palisades.lakes.curate.scripts.count
{:doc "count image files."
:author "PI:EMAIL:<EMAIL>END_PI"
:version "2018-01-12"}
(:require [clojure.java.io :as io]
[clojure.pprint :as pp]
[palisades.lakes.curate.curate :as curate]))
;;----------------------------------------------------------------
(let [d (io/file "s:/" "porta" #_"Pictures")]
(println (curate/unix-path d))
(println (count (curate/image-file-seq d))))
;;----------------------------------------------------------------
|
[
{
"context": "hash hash\n :msg msg\n :author author\n :timestamp time}))\n\n(defn- ^Git git-open [wo",
"end": 4156,
"score": 0.7947773933410645,
"start": 4150,
"tag": "NAME",
"value": "author"
}
] |
src/lambdacd_git/git.clj
|
magnars/lambdacd-git
| 0 |
(ns lambdacd-git.git
(:require [clojure.java.io :as io]
[lambdacd-git.ssh :as ssh]
[lambdacd-git.ssh-agent-support :as ssh-agent-support]
[clojure.string :as string])
(:import (org.eclipse.jgit.api Git TransportCommand TransportConfigCallback)
(org.eclipse.jgit.lib Ref TextProgressMonitor)
(org.eclipse.jgit.revwalk RevCommit RevWalk)
(java.util Date)
(org.eclipse.jgit.transport CredentialsProvider Transport SshTransport)))
(defn- ref->hash [^Ref ref]
(-> ref
(.getObjectId)
(.name)))
(defn match-ref [ref]
(fn [other-ref]
(= other-ref ref)))
(defn match-ref-by-regex [regex]
(fn [other-branch]
(re-matches regex other-branch)))
(defn- entry-to-ref-and-hash [entry]
[(key entry) (ref->hash (val entry))])
(defn- configuration-clashes-with-init-ssh? [ssh-config]
(and @ssh/init-ssh-called?
(not (empty? ssh-config))))
(def ssh-config-clash-msg
(string/join "\n"
[""
"***** SSH CONFIGURATION CLASHES! *****"
"You likely called init-ssh! and supplied ssh configuration to the config-map at the same time."
"Migrate all configuration from init-ssh! to the config-map to resolve this error. See the lambdacd-git changelog for details."
""]))
(defn- transport-config-callback ^TransportConfigCallback [ssh-config]
(reify TransportConfigCallback
(configure [this transport]
(when (instance? SshTransport transport)
(when (configuration-clashes-with-init-ssh? ssh-config)
(throw (Exception. ssh-config-clash-msg)))
(when (not @ssh/init-ssh-called?)
(.setSshSessionFactory transport (ssh/session-factory-for-config ssh-config)))))))
(defn- set-transport-opts [^TransportCommand transport-command {:keys [timeout ^CredentialsProvider credentials-provider ssh]
:or {timeout 20
credentials-provider (CredentialsProvider/getDefault)
ssh {}}}]
(-> transport-command
(.setTimeout timeout)
(.setCredentialsProvider credentials-provider)
(.setTransportConfigCallback (transport-config-callback ssh))))
(defn current-revisions [remote ref-filter-pred git-config]
(let [ref-map (-> (Git/lsRemoteRepository)
(set-transport-opts git-config)
(.setHeads true)
(.setTags true)
(.setRemote remote)
(.callAsMap))]
(->> ref-map
(filter #(ref-filter-pred (key %)))
(map entry-to-ref-and-hash)
(into {}))))
(defn resolve-object [git s]
(-> git
(.getRepository)
(.resolve s)))
(defn- ref-exists? [git ref]
(-> git
(resolve-object ref)
(nil?)
(not)))
(defn- ref-or-nil [git ref]
(if (ref-exists? git ref)
ref
nil))
(defn find-ref [git ref]
(or
(ref-or-nil git (str "origin/" ref))
(ref-or-nil git ref)))
(defn clone-repo [repo cwd git-config]
(println "Cloning" repo "...")
(-> (Git/cloneRepository)
(set-transport-opts git-config)
(.setURI repo)
(.setDirectory (io/file cwd))
(.setProgressMonitor (TextProgressMonitor. *out*))
(.call)))
(defn checkout-ref [^Git git ref]
(println "Checking out" ref "...")
(-> git
(.checkout)
(.setName ref)
(.call)))
(defn- process-commit [^RevCommit ref]
(let [hash (-> ref
(.getId)
(.name))
msg (-> ref
(.getShortMessage))
name (-> ref
(.getAuthorIdent)
(.getName))
email (-> ref
(.getAuthorIdent)
(.getEmailAddress))
time (-> ref
(.getCommitTime)
(* 1000)
(Date.))
author (format "%s <%s>" name email)]
{:hash hash
:msg msg
:author author
:timestamp time}))
(defn- ^Git git-open [workspace]
(Git/open (io/file workspace)))
(defn commits-between [workspace from-hash to-hash]
(let [git (git-open workspace)
refs (-> git
(.log)
(.addRange (resolve-object git from-hash) (resolve-object git to-hash))
(.call))]
(map process-commit (reverse refs))))
(defn- get-commit-reference [^Git git hash]
(-> git
(.getRepository)
(RevWalk.)
(.parseCommit (resolve-object git hash))))
(defn get-single-commit [workspace hash]
(let [git (git-open workspace)]
(-> git
(get-commit-reference hash)
(process-commit))))
(defn tag-revision [workspace hash tag]
(println "Tagging " hash " with " tag "...")
(let [git (git-open workspace)
commit (get-commit-reference git hash)]
(-> git
(.tag)
(.setObjectId commit)
(.setName tag)
(.call))))
(defn push [workspace remote git-config]
(println "Pushing changes...")
(let [git (git-open workspace)]
(-> git
(.push)
(set-transport-opts git-config)
(.setPushAll)
(.setPushTags)
(.setRemote remote)
(.setProgressMonitor (TextProgressMonitor. *out*))
(.call))))
|
94939
|
(ns lambdacd-git.git
(:require [clojure.java.io :as io]
[lambdacd-git.ssh :as ssh]
[lambdacd-git.ssh-agent-support :as ssh-agent-support]
[clojure.string :as string])
(:import (org.eclipse.jgit.api Git TransportCommand TransportConfigCallback)
(org.eclipse.jgit.lib Ref TextProgressMonitor)
(org.eclipse.jgit.revwalk RevCommit RevWalk)
(java.util Date)
(org.eclipse.jgit.transport CredentialsProvider Transport SshTransport)))
(defn- ref->hash [^Ref ref]
(-> ref
(.getObjectId)
(.name)))
(defn match-ref [ref]
(fn [other-ref]
(= other-ref ref)))
(defn match-ref-by-regex [regex]
(fn [other-branch]
(re-matches regex other-branch)))
(defn- entry-to-ref-and-hash [entry]
[(key entry) (ref->hash (val entry))])
(defn- configuration-clashes-with-init-ssh? [ssh-config]
(and @ssh/init-ssh-called?
(not (empty? ssh-config))))
(def ssh-config-clash-msg
(string/join "\n"
[""
"***** SSH CONFIGURATION CLASHES! *****"
"You likely called init-ssh! and supplied ssh configuration to the config-map at the same time."
"Migrate all configuration from init-ssh! to the config-map to resolve this error. See the lambdacd-git changelog for details."
""]))
(defn- transport-config-callback ^TransportConfigCallback [ssh-config]
(reify TransportConfigCallback
(configure [this transport]
(when (instance? SshTransport transport)
(when (configuration-clashes-with-init-ssh? ssh-config)
(throw (Exception. ssh-config-clash-msg)))
(when (not @ssh/init-ssh-called?)
(.setSshSessionFactory transport (ssh/session-factory-for-config ssh-config)))))))
(defn- set-transport-opts [^TransportCommand transport-command {:keys [timeout ^CredentialsProvider credentials-provider ssh]
:or {timeout 20
credentials-provider (CredentialsProvider/getDefault)
ssh {}}}]
(-> transport-command
(.setTimeout timeout)
(.setCredentialsProvider credentials-provider)
(.setTransportConfigCallback (transport-config-callback ssh))))
(defn current-revisions [remote ref-filter-pred git-config]
(let [ref-map (-> (Git/lsRemoteRepository)
(set-transport-opts git-config)
(.setHeads true)
(.setTags true)
(.setRemote remote)
(.callAsMap))]
(->> ref-map
(filter #(ref-filter-pred (key %)))
(map entry-to-ref-and-hash)
(into {}))))
(defn resolve-object [git s]
(-> git
(.getRepository)
(.resolve s)))
(defn- ref-exists? [git ref]
(-> git
(resolve-object ref)
(nil?)
(not)))
(defn- ref-or-nil [git ref]
(if (ref-exists? git ref)
ref
nil))
(defn find-ref [git ref]
(or
(ref-or-nil git (str "origin/" ref))
(ref-or-nil git ref)))
(defn clone-repo [repo cwd git-config]
(println "Cloning" repo "...")
(-> (Git/cloneRepository)
(set-transport-opts git-config)
(.setURI repo)
(.setDirectory (io/file cwd))
(.setProgressMonitor (TextProgressMonitor. *out*))
(.call)))
(defn checkout-ref [^Git git ref]
(println "Checking out" ref "...")
(-> git
(.checkout)
(.setName ref)
(.call)))
(defn- process-commit [^RevCommit ref]
(let [hash (-> ref
(.getId)
(.name))
msg (-> ref
(.getShortMessage))
name (-> ref
(.getAuthorIdent)
(.getName))
email (-> ref
(.getAuthorIdent)
(.getEmailAddress))
time (-> ref
(.getCommitTime)
(* 1000)
(Date.))
author (format "%s <%s>" name email)]
{:hash hash
:msg msg
:author <NAME>
:timestamp time}))
(defn- ^Git git-open [workspace]
(Git/open (io/file workspace)))
(defn commits-between [workspace from-hash to-hash]
(let [git (git-open workspace)
refs (-> git
(.log)
(.addRange (resolve-object git from-hash) (resolve-object git to-hash))
(.call))]
(map process-commit (reverse refs))))
(defn- get-commit-reference [^Git git hash]
(-> git
(.getRepository)
(RevWalk.)
(.parseCommit (resolve-object git hash))))
(defn get-single-commit [workspace hash]
(let [git (git-open workspace)]
(-> git
(get-commit-reference hash)
(process-commit))))
(defn tag-revision [workspace hash tag]
(println "Tagging " hash " with " tag "...")
(let [git (git-open workspace)
commit (get-commit-reference git hash)]
(-> git
(.tag)
(.setObjectId commit)
(.setName tag)
(.call))))
(defn push [workspace remote git-config]
(println "Pushing changes...")
(let [git (git-open workspace)]
(-> git
(.push)
(set-transport-opts git-config)
(.setPushAll)
(.setPushTags)
(.setRemote remote)
(.setProgressMonitor (TextProgressMonitor. *out*))
(.call))))
| true |
(ns lambdacd-git.git
(:require [clojure.java.io :as io]
[lambdacd-git.ssh :as ssh]
[lambdacd-git.ssh-agent-support :as ssh-agent-support]
[clojure.string :as string])
(:import (org.eclipse.jgit.api Git TransportCommand TransportConfigCallback)
(org.eclipse.jgit.lib Ref TextProgressMonitor)
(org.eclipse.jgit.revwalk RevCommit RevWalk)
(java.util Date)
(org.eclipse.jgit.transport CredentialsProvider Transport SshTransport)))
(defn- ref->hash [^Ref ref]
(-> ref
(.getObjectId)
(.name)))
(defn match-ref [ref]
(fn [other-ref]
(= other-ref ref)))
(defn match-ref-by-regex [regex]
(fn [other-branch]
(re-matches regex other-branch)))
(defn- entry-to-ref-and-hash [entry]
[(key entry) (ref->hash (val entry))])
(defn- configuration-clashes-with-init-ssh? [ssh-config]
(and @ssh/init-ssh-called?
(not (empty? ssh-config))))
(def ssh-config-clash-msg
(string/join "\n"
[""
"***** SSH CONFIGURATION CLASHES! *****"
"You likely called init-ssh! and supplied ssh configuration to the config-map at the same time."
"Migrate all configuration from init-ssh! to the config-map to resolve this error. See the lambdacd-git changelog for details."
""]))
(defn- transport-config-callback ^TransportConfigCallback [ssh-config]
(reify TransportConfigCallback
(configure [this transport]
(when (instance? SshTransport transport)
(when (configuration-clashes-with-init-ssh? ssh-config)
(throw (Exception. ssh-config-clash-msg)))
(when (not @ssh/init-ssh-called?)
(.setSshSessionFactory transport (ssh/session-factory-for-config ssh-config)))))))
(defn- set-transport-opts [^TransportCommand transport-command {:keys [timeout ^CredentialsProvider credentials-provider ssh]
:or {timeout 20
credentials-provider (CredentialsProvider/getDefault)
ssh {}}}]
(-> transport-command
(.setTimeout timeout)
(.setCredentialsProvider credentials-provider)
(.setTransportConfigCallback (transport-config-callback ssh))))
(defn current-revisions [remote ref-filter-pred git-config]
(let [ref-map (-> (Git/lsRemoteRepository)
(set-transport-opts git-config)
(.setHeads true)
(.setTags true)
(.setRemote remote)
(.callAsMap))]
(->> ref-map
(filter #(ref-filter-pred (key %)))
(map entry-to-ref-and-hash)
(into {}))))
(defn resolve-object [git s]
(-> git
(.getRepository)
(.resolve s)))
(defn- ref-exists? [git ref]
(-> git
(resolve-object ref)
(nil?)
(not)))
(defn- ref-or-nil [git ref]
(if (ref-exists? git ref)
ref
nil))
(defn find-ref [git ref]
(or
(ref-or-nil git (str "origin/" ref))
(ref-or-nil git ref)))
(defn clone-repo [repo cwd git-config]
(println "Cloning" repo "...")
(-> (Git/cloneRepository)
(set-transport-opts git-config)
(.setURI repo)
(.setDirectory (io/file cwd))
(.setProgressMonitor (TextProgressMonitor. *out*))
(.call)))
(defn checkout-ref [^Git git ref]
(println "Checking out" ref "...")
(-> git
(.checkout)
(.setName ref)
(.call)))
(defn- process-commit [^RevCommit ref]
(let [hash (-> ref
(.getId)
(.name))
msg (-> ref
(.getShortMessage))
name (-> ref
(.getAuthorIdent)
(.getName))
email (-> ref
(.getAuthorIdent)
(.getEmailAddress))
time (-> ref
(.getCommitTime)
(* 1000)
(Date.))
author (format "%s <%s>" name email)]
{:hash hash
:msg msg
:author PI:NAME:<NAME>END_PI
:timestamp time}))
(defn- ^Git git-open [workspace]
(Git/open (io/file workspace)))
(defn commits-between [workspace from-hash to-hash]
(let [git (git-open workspace)
refs (-> git
(.log)
(.addRange (resolve-object git from-hash) (resolve-object git to-hash))
(.call))]
(map process-commit (reverse refs))))
(defn- get-commit-reference [^Git git hash]
(-> git
(.getRepository)
(RevWalk.)
(.parseCommit (resolve-object git hash))))
(defn get-single-commit [workspace hash]
(let [git (git-open workspace)]
(-> git
(get-commit-reference hash)
(process-commit))))
(defn tag-revision [workspace hash tag]
(println "Tagging " hash " with " tag "...")
(let [git (git-open workspace)
commit (get-commit-reference git hash)]
(-> git
(.tag)
(.setObjectId commit)
(.setName tag)
(.call))))
(defn push [workspace remote git-config]
(println "Pushing changes...")
(let [git (git-open workspace)]
(-> git
(.push)
(set-transport-opts git-config)
(.setPushAll)
(.setPushTags)
(.setRemote remote)
(.setProgressMonitor (TextProgressMonitor. *out*))
(.call))))
|
[
{
"context": "k.org\\\"\n :api-key \\\"EDC33DA4D977CFDF7B90545565E07324\\\"\n :app-id \\\"administ",
"end": 805,
"score": 0.9981722831726074,
"start": 771,
"tag": "KEY",
"value": "EDC33DA4D977CFDF7B90545565E07324\\\""
}
] |
src/clj_osf/dataset/delete.clj
|
structureddynamics/clj-osf
| 4 |
(ns clj-osf.dataset.delete
"Send a Dataset Delete Query to a OSF Dataset Delete web service endpoint
The Dataset: Delete Web service is used to delete an existing dataset in a
WSF (Web Services Framework). When a dataset gets deleted, all of the
information archived in it is deleted as well. There is no way to recover
any data once this query is issued.
To use the Dataset Delete code, you have to:
```
;; Use/require the namespace
(require '[clj-osf.dataset.delete :as dataset])
;; Define the OSF Sandbox credentials (or your own):
(require '[clj-osf.core :as osf])
(osf/defosf osf-test-endpoint {:protocol :http
:domain \"sandbox.opensemanticframework.org\"
:api-key \"EDC33DA4D977CFDF7B90545565E07324\"
:app-id \"administer\"})
(osf/defuser osf-test-user {:uri \"http://sandbox.opensemanticframework.org/wsf/users/admin\"})
```
[Open Semantic Framework Endpoint Documentation](http://wiki.opensemanticframework.org/index.php/Dataset:_Delete#Web_Service_Endpoint_Information)"
(:require [clj-osf.core :as core]
[clojure.string :as string]))
(defn uri
"Set the URI of the new dataset to delete
The usage of this function is **Required**
##### Parameters
* `[uri]` URI of the new dataset to delete.
##### Usage
```
(dataset/delete
(dataset/uri \"http://sandbox.opensemanticframework/datasets/test/\"))
```"
[uri]
{:uri uri})
(defn delete
"Dataset Delete query.
**Required**
##### Usage
```
(require '[clj-osf.utils :as utils])
(require '[clj-osf.dataset.create :as dataset])
(dataset/delete
(dataset/uri \"http://sandbox.opensemanticframework/datasets/test/\"))
```"
[& body]
(let [params (apply merge body)
default (apply merge
(core/->get)
(core/->mime "application/json"))
params (merge default params)]
(core/osf-query "/ws/dataset/delete/" params)))
|
6721
|
(ns clj-osf.dataset.delete
"Send a Dataset Delete Query to a OSF Dataset Delete web service endpoint
The Dataset: Delete Web service is used to delete an existing dataset in a
WSF (Web Services Framework). When a dataset gets deleted, all of the
information archived in it is deleted as well. There is no way to recover
any data once this query is issued.
To use the Dataset Delete code, you have to:
```
;; Use/require the namespace
(require '[clj-osf.dataset.delete :as dataset])
;; Define the OSF Sandbox credentials (or your own):
(require '[clj-osf.core :as osf])
(osf/defosf osf-test-endpoint {:protocol :http
:domain \"sandbox.opensemanticframework.org\"
:api-key \"<KEY>
:app-id \"administer\"})
(osf/defuser osf-test-user {:uri \"http://sandbox.opensemanticframework.org/wsf/users/admin\"})
```
[Open Semantic Framework Endpoint Documentation](http://wiki.opensemanticframework.org/index.php/Dataset:_Delete#Web_Service_Endpoint_Information)"
(:require [clj-osf.core :as core]
[clojure.string :as string]))
(defn uri
"Set the URI of the new dataset to delete
The usage of this function is **Required**
##### Parameters
* `[uri]` URI of the new dataset to delete.
##### Usage
```
(dataset/delete
(dataset/uri \"http://sandbox.opensemanticframework/datasets/test/\"))
```"
[uri]
{:uri uri})
(defn delete
"Dataset Delete query.
**Required**
##### Usage
```
(require '[clj-osf.utils :as utils])
(require '[clj-osf.dataset.create :as dataset])
(dataset/delete
(dataset/uri \"http://sandbox.opensemanticframework/datasets/test/\"))
```"
[& body]
(let [params (apply merge body)
default (apply merge
(core/->get)
(core/->mime "application/json"))
params (merge default params)]
(core/osf-query "/ws/dataset/delete/" params)))
| true |
(ns clj-osf.dataset.delete
"Send a Dataset Delete Query to a OSF Dataset Delete web service endpoint
The Dataset: Delete Web service is used to delete an existing dataset in a
WSF (Web Services Framework). When a dataset gets deleted, all of the
information archived in it is deleted as well. There is no way to recover
any data once this query is issued.
To use the Dataset Delete code, you have to:
```
;; Use/require the namespace
(require '[clj-osf.dataset.delete :as dataset])
;; Define the OSF Sandbox credentials (or your own):
(require '[clj-osf.core :as osf])
(osf/defosf osf-test-endpoint {:protocol :http
:domain \"sandbox.opensemanticframework.org\"
:api-key \"PI:KEY:<KEY>END_PI
:app-id \"administer\"})
(osf/defuser osf-test-user {:uri \"http://sandbox.opensemanticframework.org/wsf/users/admin\"})
```
[Open Semantic Framework Endpoint Documentation](http://wiki.opensemanticframework.org/index.php/Dataset:_Delete#Web_Service_Endpoint_Information)"
(:require [clj-osf.core :as core]
[clojure.string :as string]))
(defn uri
"Set the URI of the new dataset to delete
The usage of this function is **Required**
##### Parameters
* `[uri]` URI of the new dataset to delete.
##### Usage
```
(dataset/delete
(dataset/uri \"http://sandbox.opensemanticframework/datasets/test/\"))
```"
[uri]
{:uri uri})
(defn delete
"Dataset Delete query.
**Required**
##### Usage
```
(require '[clj-osf.utils :as utils])
(require '[clj-osf.dataset.create :as dataset])
(dataset/delete
(dataset/uri \"http://sandbox.opensemanticframework/datasets/test/\"))
```"
[& body]
(let [params (apply merge body)
default (apply merge
(core/->get)
(core/->mime "application/json"))
params (merge default params)]
(core/osf-query "/ws/dataset/delete/" params)))
|
[
{
"context": "h on a map/record keyword rather than on type.\n;\n; Eli Bendersky [http://eli.thegreenplace.net]\n; This code is in ",
"end": 80,
"score": 0.9970957636833191,
"start": 67,
"tag": "NAME",
"value": "Eli Bendersky"
},
{
"context": "ports lines-of-code])\n\n(promotion-due (Employee. \"jim\" :manager 12 0))\n(promotion-due (Employee. \"sue\" ",
"end": 643,
"score": 0.9982189536094666,
"start": 640,
"tag": "NAME",
"value": "jim"
},
{
"context": " \"jim\" :manager 12 0))\n(promotion-due (Employee. \"sue\" :engineer 0 98000))\n\n; And works with maps!\n(def",
"end": 691,
"score": 0.9987047910690308,
"start": 688,
"tag": "NAME",
"value": "sue"
},
{
"context": " 98000))\n\n; And works with maps!\n(def joe {:name \"joe\", :position :manager, :num-reports 9})\n(def tim {",
"end": 757,
"score": 0.9994736909866333,
"start": 754,
"tag": "NAME",
"value": "joe"
},
{
"context": "ition :manager, :num-reports 9})\n(def tim {:name \"tim\", :position :engineer, :lines-of-code 124000})\n\n(",
"end": 817,
"score": 0.9997875094413757,
"start": 814,
"tag": "NAME",
"value": "tim"
}
] |
2016/multiple-dispatch/clojure/multi/src/multi/single_dispatch_mapkey.clj
|
mikiec84/code-for-blog
| 1,199 |
; Single dispatch on a map/record keyword rather than on type.
;
; Eli Bendersky [http://eli.thegreenplace.net]
; This code is in the public domain.
(ns multi.single-dispatch-mapkey)
; Single-dispatch multimethod, dispatching on the value of a key in a map.
;(defmulti promotion-due :position)
; Alternative formulation
(defmulti promotion-due
(fn [emp]
(:position emp)))
(defmethod promotion-due :engineer
[emp] (> (:lines-of-code emp) 100000))
(defmethod promotion-due :manager
[emp] (> (:num-reports emp) 10))
; Works with records
(defrecord Employee [name position num-reports lines-of-code])
(promotion-due (Employee. "jim" :manager 12 0))
(promotion-due (Employee. "sue" :engineer 0 98000))
; And works with maps!
(def joe {:name "joe", :position :manager, :num-reports 9})
(def tim {:name "tim", :position :engineer, :lines-of-code 124000})
(promotion-due joe)
(promotion-due tim)
|
24493
|
; Single dispatch on a map/record keyword rather than on type.
;
; <NAME> [http://eli.thegreenplace.net]
; This code is in the public domain.
(ns multi.single-dispatch-mapkey)
; Single-dispatch multimethod, dispatching on the value of a key in a map.
;(defmulti promotion-due :position)
; Alternative formulation
(defmulti promotion-due
(fn [emp]
(:position emp)))
(defmethod promotion-due :engineer
[emp] (> (:lines-of-code emp) 100000))
(defmethod promotion-due :manager
[emp] (> (:num-reports emp) 10))
; Works with records
(defrecord Employee [name position num-reports lines-of-code])
(promotion-due (Employee. "<NAME>" :manager 12 0))
(promotion-due (Employee. "<NAME>" :engineer 0 98000))
; And works with maps!
(def joe {:name "<NAME>", :position :manager, :num-reports 9})
(def tim {:name "<NAME>", :position :engineer, :lines-of-code 124000})
(promotion-due joe)
(promotion-due tim)
| true |
; Single dispatch on a map/record keyword rather than on type.
;
; PI:NAME:<NAME>END_PI [http://eli.thegreenplace.net]
; This code is in the public domain.
(ns multi.single-dispatch-mapkey)
; Single-dispatch multimethod, dispatching on the value of a key in a map.
;(defmulti promotion-due :position)
; Alternative formulation
(defmulti promotion-due
(fn [emp]
(:position emp)))
(defmethod promotion-due :engineer
[emp] (> (:lines-of-code emp) 100000))
(defmethod promotion-due :manager
[emp] (> (:num-reports emp) 10))
; Works with records
(defrecord Employee [name position num-reports lines-of-code])
(promotion-due (Employee. "PI:NAME:<NAME>END_PI" :manager 12 0))
(promotion-due (Employee. "PI:NAME:<NAME>END_PI" :engineer 0 98000))
; And works with maps!
(def joe {:name "PI:NAME:<NAME>END_PI", :position :manager, :num-reports 9})
(def tim {:name "PI:NAME:<NAME>END_PI", :position :engineer, :lines-of-code 124000})
(promotion-due joe)
(promotion-due tim)
|
[
{
"context": " :aws\n {username :username password :password} :svc\n {client-id :clie",
"end": 2233,
"score": 0.5652397871017456,
"start": 2225,
"tag": "USERNAME",
"value": "username"
},
{
"context": "_SRP_AUTH\"\n :AuthParameters {:USERNAME username\n :PASSWORD password\n",
"end": 2598,
"score": 0.9992934465408325,
"start": 2590,
"tag": "USERNAME",
"value": "username"
},
{
"context": " username\n :PASSWORD password\n :SECRET_HASH (util/hma",
"end": 2647,
"score": 0.9968083500862122,
"start": 2639,
"tag": "PASSWORD",
"value": "password"
},
{
"context": " :command \"AdminGetUser\")\n {:Username username\n :UserPoolId user-pool-id})]\n (if err",
"end": 3245,
"score": 0.9989075660705566,
"start": 3237,
"tag": "USERNAME",
"value": "username"
},
{
"context": "nd \"AdminListGroupsForUser\")\n {:Username username\n :UserPoolId user-pool-id\n :Lim",
"end": 3644,
"score": 0.9991772770881653,
"start": 3636,
"tag": "USERNAME",
"value": "username"
}
] |
src/sdk/aws/cognito_idp.clj
|
raiffeisenbankinternational/edd-core
| 4 |
(ns sdk.aws.cognito-idp
(:require [lambda.util :as util]
[sdk.aws.common :as common]
[clojure.tools.logging :as log]))
(defn- cognito-request
[{:keys
[command
aws-access-key-id
aws-secret-access-key
aws-session-token
aws]} payload]
(let [req {:method "POST"
:uri "/"
:query ""
:payload (util/to-json payload)
:headers {"X-Amz-Target" (str "AWSCognitoIdentityProviderService."
command)
"Host" (str "cognito-idp."
(get aws :region)
".amazonaws.com")
"Content-Type" "application/x-amz-json-1.1"
"X-Amz-Date" (common/create-date)}
:service "cognito-idp"
:region (get aws :region)
:access-key aws-access-key-id
:secret-key aws-secret-access-key}
auth (common/authorize req)]
(let [response (common/retry
#(util/http-post
(str "https://" (get (:headers req) "Host"))
{:body (:payload req)
:headers (-> (:headers req)
(dissoc "Host")
(assoc
"X-Amz-Security-Token" aws-session-token
"Authorization" auth))
:timeout 5000})
3)]
(log/debug "Auth response" response)
(cond
(contains? response :error) (do
(log/error "Failed update" response)
{:error (:error response)})
(> (:status response) 299) (do
(log/error "Auth failure response"
(:status response)
(:body response))
{:error {:status (:status response)}})
:else response))))
(defn admin-initiate-auth
[{aws :aws
{username :username password :password} :svc
{client-id :client-id
client-secret :client-secret
user-pool-id :user-pool-id} :auth}]
(let [{:keys [error] :as response}
(cognito-request
(assoc aws
:command "AdminInitiateAuth")
{:AuthFlow "ADMIN_NO_SRP_AUTH"
:AuthParameters {:USERNAME username
:PASSWORD password
:SECRET_HASH (util/hmac-sha256
client-secret
(str username client-id))}
:ClientId client-id
:UserPoolId user-pool-id})]
(if error
response
(get-in response [:body]))))
(defn admin-get-user
[{{user-pool-id :user-pool-id} :auth
aws :aws} {:keys [username]}]
(let [{:keys [error] :as response}
(cognito-request
(assoc aws
:command "AdminGetUser")
{:Username username
:UserPoolId user-pool-id})]
(if error
response
(get-in response [:body]))))
(defn admin-list-groups-for-user
[{{user-pool-id :user-pool-id} :auth
aws :aws} {:keys [username]}]
(let [{:keys [error] :as response}
(cognito-request
(assoc aws
:command "AdminListGroupsForUser")
{:Username username
:UserPoolId user-pool-id
:Limit 60})]
(if error
response
(get-in response [:body]))))
|
15935
|
(ns sdk.aws.cognito-idp
(:require [lambda.util :as util]
[sdk.aws.common :as common]
[clojure.tools.logging :as log]))
(defn- cognito-request
[{:keys
[command
aws-access-key-id
aws-secret-access-key
aws-session-token
aws]} payload]
(let [req {:method "POST"
:uri "/"
:query ""
:payload (util/to-json payload)
:headers {"X-Amz-Target" (str "AWSCognitoIdentityProviderService."
command)
"Host" (str "cognito-idp."
(get aws :region)
".amazonaws.com")
"Content-Type" "application/x-amz-json-1.1"
"X-Amz-Date" (common/create-date)}
:service "cognito-idp"
:region (get aws :region)
:access-key aws-access-key-id
:secret-key aws-secret-access-key}
auth (common/authorize req)]
(let [response (common/retry
#(util/http-post
(str "https://" (get (:headers req) "Host"))
{:body (:payload req)
:headers (-> (:headers req)
(dissoc "Host")
(assoc
"X-Amz-Security-Token" aws-session-token
"Authorization" auth))
:timeout 5000})
3)]
(log/debug "Auth response" response)
(cond
(contains? response :error) (do
(log/error "Failed update" response)
{:error (:error response)})
(> (:status response) 299) (do
(log/error "Auth failure response"
(:status response)
(:body response))
{:error {:status (:status response)}})
:else response))))
(defn admin-initiate-auth
[{aws :aws
{username :username password :password} :svc
{client-id :client-id
client-secret :client-secret
user-pool-id :user-pool-id} :auth}]
(let [{:keys [error] :as response}
(cognito-request
(assoc aws
:command "AdminInitiateAuth")
{:AuthFlow "ADMIN_NO_SRP_AUTH"
:AuthParameters {:USERNAME username
:PASSWORD <PASSWORD>
:SECRET_HASH (util/hmac-sha256
client-secret
(str username client-id))}
:ClientId client-id
:UserPoolId user-pool-id})]
(if error
response
(get-in response [:body]))))
(defn admin-get-user
[{{user-pool-id :user-pool-id} :auth
aws :aws} {:keys [username]}]
(let [{:keys [error] :as response}
(cognito-request
(assoc aws
:command "AdminGetUser")
{:Username username
:UserPoolId user-pool-id})]
(if error
response
(get-in response [:body]))))
(defn admin-list-groups-for-user
[{{user-pool-id :user-pool-id} :auth
aws :aws} {:keys [username]}]
(let [{:keys [error] :as response}
(cognito-request
(assoc aws
:command "AdminListGroupsForUser")
{:Username username
:UserPoolId user-pool-id
:Limit 60})]
(if error
response
(get-in response [:body]))))
| true |
(ns sdk.aws.cognito-idp
(:require [lambda.util :as util]
[sdk.aws.common :as common]
[clojure.tools.logging :as log]))
(defn- cognito-request
[{:keys
[command
aws-access-key-id
aws-secret-access-key
aws-session-token
aws]} payload]
(let [req {:method "POST"
:uri "/"
:query ""
:payload (util/to-json payload)
:headers {"X-Amz-Target" (str "AWSCognitoIdentityProviderService."
command)
"Host" (str "cognito-idp."
(get aws :region)
".amazonaws.com")
"Content-Type" "application/x-amz-json-1.1"
"X-Amz-Date" (common/create-date)}
:service "cognito-idp"
:region (get aws :region)
:access-key aws-access-key-id
:secret-key aws-secret-access-key}
auth (common/authorize req)]
(let [response (common/retry
#(util/http-post
(str "https://" (get (:headers req) "Host"))
{:body (:payload req)
:headers (-> (:headers req)
(dissoc "Host")
(assoc
"X-Amz-Security-Token" aws-session-token
"Authorization" auth))
:timeout 5000})
3)]
(log/debug "Auth response" response)
(cond
(contains? response :error) (do
(log/error "Failed update" response)
{:error (:error response)})
(> (:status response) 299) (do
(log/error "Auth failure response"
(:status response)
(:body response))
{:error {:status (:status response)}})
:else response))))
(defn admin-initiate-auth
[{aws :aws
{username :username password :password} :svc
{client-id :client-id
client-secret :client-secret
user-pool-id :user-pool-id} :auth}]
(let [{:keys [error] :as response}
(cognito-request
(assoc aws
:command "AdminInitiateAuth")
{:AuthFlow "ADMIN_NO_SRP_AUTH"
:AuthParameters {:USERNAME username
:PASSWORD PI:PASSWORD:<PASSWORD>END_PI
:SECRET_HASH (util/hmac-sha256
client-secret
(str username client-id))}
:ClientId client-id
:UserPoolId user-pool-id})]
(if error
response
(get-in response [:body]))))
(defn admin-get-user
[{{user-pool-id :user-pool-id} :auth
aws :aws} {:keys [username]}]
(let [{:keys [error] :as response}
(cognito-request
(assoc aws
:command "AdminGetUser")
{:Username username
:UserPoolId user-pool-id})]
(if error
response
(get-in response [:body]))))
(defn admin-list-groups-for-user
[{{user-pool-id :user-pool-id} :auth
aws :aws} {:keys [username]}]
(let [{:keys [error] :as response}
(cognito-request
(assoc aws
:command "AdminListGroupsForUser")
{:Username username
:UserPoolId user-pool-id
:Limit 60})]
(if error
response
(get-in response [:body]))))
|
[
{
"context": ";; Copyright 2015 Timothy Brooks\n;;\n;; Licensed under the Apache License, Version ",
"end": 32,
"score": 0.9998664855957031,
"start": 18,
"tag": "NAME",
"value": "Timothy Brooks"
}
] |
test/beehive/future_test.clj
|
tbrooks8/fault
| 2 |
;; Copyright 2015 Timothy Brooks
;;
;; Licensed under the Apache License, Version 2.0 (the "License");
;; you may not use this file except in compliance with the License.
;; You may obtain a copy of the License at
;;
;; http://www.apache.org/licenses/LICENSE-2.0
;;
;; Unless required by applicable law or agreed to in writing, software
;; distributed under the License is distributed on an "AS IS" BASIS,
;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
;; See the License for the specific language governing permissions and
;; limitations under the License.
(ns beehive.future-test
(:require [clojure.test :refer :all]
[beehive.future :as f])
(:import (beehive.java BeehiveRejected)
(net.uncontended.precipice.concurrent Eventual)))
(set! *warn-on-reflection* true)
(def pending [:rejected? :cancelled? :result :value])
(def success [:pending? :rejected? :cancelled? :failure?])
(def error [:pending? :rejected? :cancelled? :success?])
(defn- remove-false [f ks]
(filter (fn [func] (func f)) ks))
(def statuses (beehive.enums/enum-class-to-keyword->enum
(beehive.enums/generate-result-class
{:test-success true
:test-error false})))
(deftest future-test
(testing "Test that pending futures work correctly."
(let [eventual (Eventual.)
future (f/->BeehiveFuture eventual)]
(is (:pending? future))
(is (= [] (remove-false future pending)))
(.complete eventual (:test-success statuses) 4)))
(testing "Test that success futures work correctly."
(let [eventual (Eventual.)
future (f/->BeehiveFuture eventual)]
(.complete eventual (:test-success statuses) 4)
(is (= :test-success (:result future)))
(is (= 4 (:value future)))
(is (= [] (remove-false future success)))))
(testing "Test that error futures work correctly."
(let [eventual (Eventual.)
ex (RuntimeException.)
future (f/->BeehiveFuture eventual)]
(.completeExceptionally eventual (:test-error statuses) ex)
(is (= :test-error (:result future)))
(is (= ex (:value future)))
(is (= [] (remove-false future error))))))
(deftest rejected-future-test
(testing "Test that pending futures work correctly."
(let [future (f/rejected-future :circuit-open)]
(is (not (:pending? future)))
(is (not (:cancelled? future)))
(is (:rejected? future))
(is (= :circuit-open (:rejected-reason future)))
(try
@future
(catch BeehiveRejected e
(is (= :circuit-open (:rejected-reason e))))))))
(deftest callback-test
(testing "Test callback on success future."
(let [eventual (Eventual.)
future (f/->BeehiveFuture eventual)]
(f/on-complete
future
(fn [map]
(is (= {:failure? false
:result :test-success
:success? true
:value 4}
map))))
(.complete eventual (:test-success statuses) 4)))
(testing "Test callback on error future."
(let [eventual (Eventual.)
ex (RuntimeException.)
future (f/->BeehiveFuture eventual)]
(f/on-complete
future
(fn [map]
(is (= {:failure? true
:result :test-error
:success? false
:value ex}
map))))
(.completeExceptionally eventual (:test-error statuses) ex)))
(testing "Test callback on rejected future."
(let [future (f/rejected-future :max-concurrency)]
(f/on-complete
future
(fn [map]
(is (= {:rejected-reason :max-concurrency
:rejected? true}
map)))))))
|
115453
|
;; Copyright 2015 <NAME>
;;
;; Licensed under the Apache License, Version 2.0 (the "License");
;; you may not use this file except in compliance with the License.
;; You may obtain a copy of the License at
;;
;; http://www.apache.org/licenses/LICENSE-2.0
;;
;; Unless required by applicable law or agreed to in writing, software
;; distributed under the License is distributed on an "AS IS" BASIS,
;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
;; See the License for the specific language governing permissions and
;; limitations under the License.
(ns beehive.future-test
(:require [clojure.test :refer :all]
[beehive.future :as f])
(:import (beehive.java BeehiveRejected)
(net.uncontended.precipice.concurrent Eventual)))
(set! *warn-on-reflection* true)
(def pending [:rejected? :cancelled? :result :value])
(def success [:pending? :rejected? :cancelled? :failure?])
(def error [:pending? :rejected? :cancelled? :success?])
(defn- remove-false [f ks]
(filter (fn [func] (func f)) ks))
(def statuses (beehive.enums/enum-class-to-keyword->enum
(beehive.enums/generate-result-class
{:test-success true
:test-error false})))
(deftest future-test
(testing "Test that pending futures work correctly."
(let [eventual (Eventual.)
future (f/->BeehiveFuture eventual)]
(is (:pending? future))
(is (= [] (remove-false future pending)))
(.complete eventual (:test-success statuses) 4)))
(testing "Test that success futures work correctly."
(let [eventual (Eventual.)
future (f/->BeehiveFuture eventual)]
(.complete eventual (:test-success statuses) 4)
(is (= :test-success (:result future)))
(is (= 4 (:value future)))
(is (= [] (remove-false future success)))))
(testing "Test that error futures work correctly."
(let [eventual (Eventual.)
ex (RuntimeException.)
future (f/->BeehiveFuture eventual)]
(.completeExceptionally eventual (:test-error statuses) ex)
(is (= :test-error (:result future)))
(is (= ex (:value future)))
(is (= [] (remove-false future error))))))
(deftest rejected-future-test
(testing "Test that pending futures work correctly."
(let [future (f/rejected-future :circuit-open)]
(is (not (:pending? future)))
(is (not (:cancelled? future)))
(is (:rejected? future))
(is (= :circuit-open (:rejected-reason future)))
(try
@future
(catch BeehiveRejected e
(is (= :circuit-open (:rejected-reason e))))))))
(deftest callback-test
(testing "Test callback on success future."
(let [eventual (Eventual.)
future (f/->BeehiveFuture eventual)]
(f/on-complete
future
(fn [map]
(is (= {:failure? false
:result :test-success
:success? true
:value 4}
map))))
(.complete eventual (:test-success statuses) 4)))
(testing "Test callback on error future."
(let [eventual (Eventual.)
ex (RuntimeException.)
future (f/->BeehiveFuture eventual)]
(f/on-complete
future
(fn [map]
(is (= {:failure? true
:result :test-error
:success? false
:value ex}
map))))
(.completeExceptionally eventual (:test-error statuses) ex)))
(testing "Test callback on rejected future."
(let [future (f/rejected-future :max-concurrency)]
(f/on-complete
future
(fn [map]
(is (= {:rejected-reason :max-concurrency
:rejected? true}
map)))))))
| true |
;; Copyright 2015 PI:NAME:<NAME>END_PI
;;
;; Licensed under the Apache License, Version 2.0 (the "License");
;; you may not use this file except in compliance with the License.
;; You may obtain a copy of the License at
;;
;; http://www.apache.org/licenses/LICENSE-2.0
;;
;; Unless required by applicable law or agreed to in writing, software
;; distributed under the License is distributed on an "AS IS" BASIS,
;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
;; See the License for the specific language governing permissions and
;; limitations under the License.
(ns beehive.future-test
(:require [clojure.test :refer :all]
[beehive.future :as f])
(:import (beehive.java BeehiveRejected)
(net.uncontended.precipice.concurrent Eventual)))
(set! *warn-on-reflection* true)
(def pending [:rejected? :cancelled? :result :value])
(def success [:pending? :rejected? :cancelled? :failure?])
(def error [:pending? :rejected? :cancelled? :success?])
(defn- remove-false [f ks]
(filter (fn [func] (func f)) ks))
(def statuses (beehive.enums/enum-class-to-keyword->enum
(beehive.enums/generate-result-class
{:test-success true
:test-error false})))
(deftest future-test
(testing "Test that pending futures work correctly."
(let [eventual (Eventual.)
future (f/->BeehiveFuture eventual)]
(is (:pending? future))
(is (= [] (remove-false future pending)))
(.complete eventual (:test-success statuses) 4)))
(testing "Test that success futures work correctly."
(let [eventual (Eventual.)
future (f/->BeehiveFuture eventual)]
(.complete eventual (:test-success statuses) 4)
(is (= :test-success (:result future)))
(is (= 4 (:value future)))
(is (= [] (remove-false future success)))))
(testing "Test that error futures work correctly."
(let [eventual (Eventual.)
ex (RuntimeException.)
future (f/->BeehiveFuture eventual)]
(.completeExceptionally eventual (:test-error statuses) ex)
(is (= :test-error (:result future)))
(is (= ex (:value future)))
(is (= [] (remove-false future error))))))
(deftest rejected-future-test
(testing "Test that pending futures work correctly."
(let [future (f/rejected-future :circuit-open)]
(is (not (:pending? future)))
(is (not (:cancelled? future)))
(is (:rejected? future))
(is (= :circuit-open (:rejected-reason future)))
(try
@future
(catch BeehiveRejected e
(is (= :circuit-open (:rejected-reason e))))))))
(deftest callback-test
(testing "Test callback on success future."
(let [eventual (Eventual.)
future (f/->BeehiveFuture eventual)]
(f/on-complete
future
(fn [map]
(is (= {:failure? false
:result :test-success
:success? true
:value 4}
map))))
(.complete eventual (:test-success statuses) 4)))
(testing "Test callback on error future."
(let [eventual (Eventual.)
ex (RuntimeException.)
future (f/->BeehiveFuture eventual)]
(f/on-complete
future
(fn [map]
(is (= {:failure? true
:result :test-error
:success? false
:value ex}
map))))
(.completeExceptionally eventual (:test-error statuses) ex)))
(testing "Test callback on rejected future."
(let [future (f/rejected-future :max-concurrency)]
(f/on-complete
future
(fn [map]
(is (= {:rejected-reason :max-concurrency
:rejected? true}
map)))))))
|
[
{
"context": " @h2/db-con schema)\n\n\n(def data [[:person {:name \"Daisy\"}]\n [:person {:name \"Mini\"}]\n ",
"end": 3050,
"score": 0.9997636675834656,
"start": 3045,
"tag": "NAME",
"value": "Daisy"
},
{
"context": "erson {:name \"Mini\"}]\n [:person {:name \"Mickey\"}]\n [:person {:name \"Donald\"}]\n ",
"end": 3124,
"score": 0.999699592590332,
"start": 3118,
"tag": "NAME",
"value": "Mickey"
},
{
"context": "son {:name \"Mickey\"}]\n [:person {:name \"Donald\"}]\n [:customer {:name \"Big Company\"}]\n ",
"end": 3162,
"score": 0.9997105598449707,
"start": 3156,
"tag": "NAME",
"value": "Donald"
},
{
"context": " :members [{:id 1 :name \"Daisy\"}\n {",
"end": 3924,
"score": 0.9990336298942566,
"start": 3919,
"tag": "NAME",
"value": "Daisy"
},
{
"context": " {:id 2 :name \"Mini\"}]\n :manager {",
"end": 3991,
"score": 0.999170184135437,
"start": 3987,
"tag": "NAME",
"value": "Mini"
},
{
"context": " :manager {:id 1 :name \"Daisy\"}})]\n (is (= 1 (record-count @db-con :projec",
"end": 4059,
"score": 0.9995306134223938,
"start": 4054,
"tag": "NAME",
"value": "Daisy"
},
{
"context": " (#(update-in % [:members] conj {:id 3 :name \"Mickey\"}))\n (agg/save! manage-person-to-proj",
"end": 4293,
"score": 0.9995681047439575,
"start": 4287,
"tag": "NAME",
"value": "Mickey"
},
{
"context": ")\n (#(assoc % :assignee {:id 2 :name \"Mini\"}))\n (agg/save! manage-task-to-person",
"end": 4517,
"score": 0.996852695941925,
"start": 4513,
"tag": "NAME",
"value": "Mini"
}
] |
data/train/clojure/4fe8aad1b31f7771a4c6069c190588b084643167project_test.clj
|
harshp8l/deep-learning-lang-detection
| 84 |
(ns aggregate.project-test
(:require [clojure.test :refer :all]
[aggregate.core :as agg]
[aggregate.testsupport :refer :all]
[clojure.java.jdbc :as jdbc]))
(use-fixtures :each db-fixture)
(def schema
[:customer [(id-column)
[:name "varchar(30)"]]
:person [(id-column)
[:name "varchar(30)"]]
:project [(id-column)
[:name "varchar(30)"]
(fk-column :person :manager_id false)
(fk-column :customer false)]
:task [(id-column)
[:description "varchar(50)"]
[:effort "integer"]
(fk-column :project false)
(fk-column :person :assignee_id false)]
:person_project [(fk-column :project false)
(fk-column :person false)]])
(def er
"The complete entity-relationship model.
Be careful, using this directly may take the complete database into account."
(agg/make-er-config
(agg/entity :customer
(agg/->n :projects :project {:fk-kw :customer_id}))
(agg/entity :person
(agg/->n :tasks :task {:fk-kw :assignee_id
:owned? false})
(agg/->n :projects_as_manager :project {:fk-kw :manager_id
:owned? false})
(agg/->mn :projects_as_member :project))
(agg/entity :project
(agg/->1 :customer :customer {:owned? false})
(agg/->mn :members :person {:query-fn (agg/make-query-<many>-fn
:person
:person_project
:project_id
:person_id)
:update-links-fn (agg/make-update-links-fn
:person_project
:project_id
:person_id
:id)})
(agg/->1 :manager :person {:owned? false})
(agg/->n :tasks :task {:fk-kw :project_id}))
(agg/entity :task
(agg/->1 :project :project {:owned? false})
(agg/->1 :assignee :person {:owned? false}))))
(def manage-person-to-project-er
(-> er (agg/only [:person]
[:project :members :manager])))
(def manage-task-to-person-er
"Supports task-to-person assignment, cutting off project related links."
(-> er (agg/without [:task :project]
[:person :projects_as_member :projects_as_manager])))
;; To setup a schema in standalone H2
#_ (do (require '[aggregate.h2 :as h2])
(require '[aggregate.testsupport :refer :all])
(require '[aggregate.core :as agg])
(h2/start-db))
#_ (create-schema! @h2/db-con schema)
(def data [[:person {:name "Daisy"}]
[:person {:name "Mini"}]
[:person {:name "Mickey"}]
[:person {:name "Donald"}]
[:customer {:name "Big Company"}]
[:customer {:name "Startup"}]])
(deftest project-tests
(create-schema! @db-con schema)
(->> data (map (partial apply agg/save! er @db-con)) doall)
(testing "Creating a new project"
(let [saved-project (agg/save! er @db-con :project
{:name "Learning Clojure"
:customer {:id 1 :name "Big Company"}
:tasks [{:description "Buy a good book" :effort 1}
{:description "Install Java" :effort 2}
{:description "Configure Emacs" :effort 4}]
:members [{:id 1 :name "Daisy"}
{:id 2 :name "Mini"}]
:manager {:id 1 :name "Daisy"}})]
(is (= 1 (record-count @db-con :project)))
(testing "Assign persons to projects"
(->> (agg/load manage-person-to-project-er @db-con :project 1)
(#(update-in % [:members] conj {:id 3 :name "Mickey"}))
(agg/save! manage-person-to-project-er @db-con)))
(testing "Assign person to task"
(->> (agg/load manage-task-to-person-er @db-con :task 1)
(#(assoc % :assignee {:id 2 :name "Mini"}))
(agg/save! manage-task-to-person-er @db-con :task))
(let [loaded-project (agg/load er @db-con :project 1)
loaded-daisy (agg/load er @db-con :person 1)
loaded-mini (agg/load er @db-con :person 2)]
(is (-> loaded-project :customer))
(is (= 3 (-> loaded-project :members count)))
(is (= 1 (-> loaded-daisy :projects_as_member count)))
(is (= 1 (-> loaded-daisy :projects_as_manager count)))
(is (= 0 (-> loaded-daisy :tasks count)))
(is (= 1 (-> loaded-mini :projects_as_member count)))
(is (= 0 (-> loaded-mini :projects_as_manager count)))
(is (= 1 (-> loaded-mini :tasks count)))))
(testing "Delete a person that a task points to"
(is (-> (agg/load manage-task-to-person-er @db-con :task 1) :assignee))
(agg/delete! er @db-con (agg/load er @db-con :person 2))
(is (nil? (-> (agg/load manage-task-to-person-er @db-con :task 1) :assignee))))
(testing "Delete the project"
(agg/delete! er @db-con saved-project)))))
|
60286
|
(ns aggregate.project-test
(:require [clojure.test :refer :all]
[aggregate.core :as agg]
[aggregate.testsupport :refer :all]
[clojure.java.jdbc :as jdbc]))
(use-fixtures :each db-fixture)
(def schema
[:customer [(id-column)
[:name "varchar(30)"]]
:person [(id-column)
[:name "varchar(30)"]]
:project [(id-column)
[:name "varchar(30)"]
(fk-column :person :manager_id false)
(fk-column :customer false)]
:task [(id-column)
[:description "varchar(50)"]
[:effort "integer"]
(fk-column :project false)
(fk-column :person :assignee_id false)]
:person_project [(fk-column :project false)
(fk-column :person false)]])
(def er
"The complete entity-relationship model.
Be careful, using this directly may take the complete database into account."
(agg/make-er-config
(agg/entity :customer
(agg/->n :projects :project {:fk-kw :customer_id}))
(agg/entity :person
(agg/->n :tasks :task {:fk-kw :assignee_id
:owned? false})
(agg/->n :projects_as_manager :project {:fk-kw :manager_id
:owned? false})
(agg/->mn :projects_as_member :project))
(agg/entity :project
(agg/->1 :customer :customer {:owned? false})
(agg/->mn :members :person {:query-fn (agg/make-query-<many>-fn
:person
:person_project
:project_id
:person_id)
:update-links-fn (agg/make-update-links-fn
:person_project
:project_id
:person_id
:id)})
(agg/->1 :manager :person {:owned? false})
(agg/->n :tasks :task {:fk-kw :project_id}))
(agg/entity :task
(agg/->1 :project :project {:owned? false})
(agg/->1 :assignee :person {:owned? false}))))
(def manage-person-to-project-er
(-> er (agg/only [:person]
[:project :members :manager])))
(def manage-task-to-person-er
"Supports task-to-person assignment, cutting off project related links."
(-> er (agg/without [:task :project]
[:person :projects_as_member :projects_as_manager])))
;; To setup a schema in standalone H2
#_ (do (require '[aggregate.h2 :as h2])
(require '[aggregate.testsupport :refer :all])
(require '[aggregate.core :as agg])
(h2/start-db))
#_ (create-schema! @h2/db-con schema)
(def data [[:person {:name "<NAME>"}]
[:person {:name "Mini"}]
[:person {:name "<NAME>"}]
[:person {:name "<NAME>"}]
[:customer {:name "Big Company"}]
[:customer {:name "Startup"}]])
(deftest project-tests
(create-schema! @db-con schema)
(->> data (map (partial apply agg/save! er @db-con)) doall)
(testing "Creating a new project"
(let [saved-project (agg/save! er @db-con :project
{:name "Learning Clojure"
:customer {:id 1 :name "Big Company"}
:tasks [{:description "Buy a good book" :effort 1}
{:description "Install Java" :effort 2}
{:description "Configure Emacs" :effort 4}]
:members [{:id 1 :name "<NAME>"}
{:id 2 :name "<NAME>"}]
:manager {:id 1 :name "<NAME>"}})]
(is (= 1 (record-count @db-con :project)))
(testing "Assign persons to projects"
(->> (agg/load manage-person-to-project-er @db-con :project 1)
(#(update-in % [:members] conj {:id 3 :name "<NAME>"}))
(agg/save! manage-person-to-project-er @db-con)))
(testing "Assign person to task"
(->> (agg/load manage-task-to-person-er @db-con :task 1)
(#(assoc % :assignee {:id 2 :name "<NAME>"}))
(agg/save! manage-task-to-person-er @db-con :task))
(let [loaded-project (agg/load er @db-con :project 1)
loaded-daisy (agg/load er @db-con :person 1)
loaded-mini (agg/load er @db-con :person 2)]
(is (-> loaded-project :customer))
(is (= 3 (-> loaded-project :members count)))
(is (= 1 (-> loaded-daisy :projects_as_member count)))
(is (= 1 (-> loaded-daisy :projects_as_manager count)))
(is (= 0 (-> loaded-daisy :tasks count)))
(is (= 1 (-> loaded-mini :projects_as_member count)))
(is (= 0 (-> loaded-mini :projects_as_manager count)))
(is (= 1 (-> loaded-mini :tasks count)))))
(testing "Delete a person that a task points to"
(is (-> (agg/load manage-task-to-person-er @db-con :task 1) :assignee))
(agg/delete! er @db-con (agg/load er @db-con :person 2))
(is (nil? (-> (agg/load manage-task-to-person-er @db-con :task 1) :assignee))))
(testing "Delete the project"
(agg/delete! er @db-con saved-project)))))
| true |
(ns aggregate.project-test
(:require [clojure.test :refer :all]
[aggregate.core :as agg]
[aggregate.testsupport :refer :all]
[clojure.java.jdbc :as jdbc]))
(use-fixtures :each db-fixture)
(def schema
[:customer [(id-column)
[:name "varchar(30)"]]
:person [(id-column)
[:name "varchar(30)"]]
:project [(id-column)
[:name "varchar(30)"]
(fk-column :person :manager_id false)
(fk-column :customer false)]
:task [(id-column)
[:description "varchar(50)"]
[:effort "integer"]
(fk-column :project false)
(fk-column :person :assignee_id false)]
:person_project [(fk-column :project false)
(fk-column :person false)]])
(def er
"The complete entity-relationship model.
Be careful, using this directly may take the complete database into account."
(agg/make-er-config
(agg/entity :customer
(agg/->n :projects :project {:fk-kw :customer_id}))
(agg/entity :person
(agg/->n :tasks :task {:fk-kw :assignee_id
:owned? false})
(agg/->n :projects_as_manager :project {:fk-kw :manager_id
:owned? false})
(agg/->mn :projects_as_member :project))
(agg/entity :project
(agg/->1 :customer :customer {:owned? false})
(agg/->mn :members :person {:query-fn (agg/make-query-<many>-fn
:person
:person_project
:project_id
:person_id)
:update-links-fn (agg/make-update-links-fn
:person_project
:project_id
:person_id
:id)})
(agg/->1 :manager :person {:owned? false})
(agg/->n :tasks :task {:fk-kw :project_id}))
(agg/entity :task
(agg/->1 :project :project {:owned? false})
(agg/->1 :assignee :person {:owned? false}))))
(def manage-person-to-project-er
(-> er (agg/only [:person]
[:project :members :manager])))
(def manage-task-to-person-er
"Supports task-to-person assignment, cutting off project related links."
(-> er (agg/without [:task :project]
[:person :projects_as_member :projects_as_manager])))
;; To setup a schema in standalone H2
#_ (do (require '[aggregate.h2 :as h2])
(require '[aggregate.testsupport :refer :all])
(require '[aggregate.core :as agg])
(h2/start-db))
#_ (create-schema! @h2/db-con schema)
(def data [[:person {:name "PI:NAME:<NAME>END_PI"}]
[:person {:name "Mini"}]
[:person {:name "PI:NAME:<NAME>END_PI"}]
[:person {:name "PI:NAME:<NAME>END_PI"}]
[:customer {:name "Big Company"}]
[:customer {:name "Startup"}]])
(deftest project-tests
(create-schema! @db-con schema)
(->> data (map (partial apply agg/save! er @db-con)) doall)
(testing "Creating a new project"
(let [saved-project (agg/save! er @db-con :project
{:name "Learning Clojure"
:customer {:id 1 :name "Big Company"}
:tasks [{:description "Buy a good book" :effort 1}
{:description "Install Java" :effort 2}
{:description "Configure Emacs" :effort 4}]
:members [{:id 1 :name "PI:NAME:<NAME>END_PI"}
{:id 2 :name "PI:NAME:<NAME>END_PI"}]
:manager {:id 1 :name "PI:NAME:<NAME>END_PI"}})]
(is (= 1 (record-count @db-con :project)))
(testing "Assign persons to projects"
(->> (agg/load manage-person-to-project-er @db-con :project 1)
(#(update-in % [:members] conj {:id 3 :name "PI:NAME:<NAME>END_PI"}))
(agg/save! manage-person-to-project-er @db-con)))
(testing "Assign person to task"
(->> (agg/load manage-task-to-person-er @db-con :task 1)
(#(assoc % :assignee {:id 2 :name "PI:NAME:<NAME>END_PI"}))
(agg/save! manage-task-to-person-er @db-con :task))
(let [loaded-project (agg/load er @db-con :project 1)
loaded-daisy (agg/load er @db-con :person 1)
loaded-mini (agg/load er @db-con :person 2)]
(is (-> loaded-project :customer))
(is (= 3 (-> loaded-project :members count)))
(is (= 1 (-> loaded-daisy :projects_as_member count)))
(is (= 1 (-> loaded-daisy :projects_as_manager count)))
(is (= 0 (-> loaded-daisy :tasks count)))
(is (= 1 (-> loaded-mini :projects_as_member count)))
(is (= 0 (-> loaded-mini :projects_as_manager count)))
(is (= 1 (-> loaded-mini :tasks count)))))
(testing "Delete a person that a task points to"
(is (-> (agg/load manage-task-to-person-er @db-con :task 1) :assignee))
(agg/delete! er @db-con (agg/load er @db-con :person 2))
(is (nil? (-> (agg/load manage-task-to-person-er @db-con :task 1) :assignee))))
(testing "Delete the project"
(agg/delete! er @db-con saved-project)))))
|
[
{
"context": "DUCATIONAL PURPOSES ONLY.\n;;\n(def users-data\n [[\"Kiayada Wyatt\" \"kiayada33\" 33 \"France\" true [2475 4344 6671]]\n ",
"end": 1536,
"score": 0.9998984336853027,
"start": 1523,
"tag": "NAME",
"value": "Kiayada Wyatt"
},
{
"context": "SES ONLY.\n;;\n(def users-data\n [[\"Kiayada Wyatt\" \"kiayada33\" 33 \"France\" true [2475 4344 6671]]\n [\"Dominic ",
"end": 1548,
"score": 0.9995929598808289,
"start": 1539,
"tag": "USERNAME",
"value": "kiayada33"
},
{
"context": "iayada33\" 33 \"France\" true [2475 4344 6671]]\n [\"Dominic Ochoa\" \"dominic43\" 72 \"United Kingdom\" false [599 4907 ",
"end": 1603,
"score": 0.9998980164527893,
"start": 1590,
"tag": "NAME",
"value": "Dominic Ochoa"
},
{
"context": "ance\" true [2475 4344 6671]]\n [\"Dominic Ochoa\" \"dominic43\" 72 \"United Kingdom\" false [599 4907 7394]]\n [\"",
"end": 1615,
"score": 0.9994974136352539,
"start": 1606,
"tag": "USERNAME",
"value": "dominic43"
},
{
"context": "\" 72 \"United Kingdom\" false [599 4907 7394]]\n [\"Cherokee Hammond\" \"cherokee10\" 22 \"Russia\" false [2803 4247 4896]]",
"end": 1681,
"score": 0.9998999238014221,
"start": 1665,
"tag": "NAME",
"value": "Cherokee Hammond"
},
{
"context": "m\" false [599 4907 7394]]\n [\"Cherokee Hammond\" \"cherokee10\" 22 \"Russia\" false [2803 4247 4896]]\n [\"Gemma F",
"end": 1694,
"score": 0.9996379017829895,
"start": 1684,
"tag": "USERNAME",
"value": "cherokee10"
},
{
"context": "rokee10\" 22 \"Russia\" false [2803 4247 4896]]\n [\"Gemma Foley\" \"gemma36\" 28 \"Italy\" true [1003 2294 6157]]\n [",
"end": 1748,
"score": 0.9998957514762878,
"start": 1737,
"tag": "NAME",
"value": "Gemma Foley"
},
{
"context": "ussia\" false [2803 4247 4896]]\n [\"Gemma Foley\" \"gemma36\" 28 \"Italy\" true [1003 2294 6157]]\n [\"Ginger Ga",
"end": 1758,
"score": 0.9995465278625488,
"start": 1751,
"tag": "USERNAME",
"value": "gemma36"
},
{
"context": " \"gemma36\" 28 \"Italy\" true [1003 2294 6157]]\n [\"Ginger Garcia\" \"ginger55\" 28 \"India\" false [1254 3568 3729]]\n ",
"end": 1812,
"score": 0.999893307685852,
"start": 1799,
"tag": "NAME",
"value": "Ginger Garcia"
},
{
"context": "taly\" true [1003 2294 6157]]\n [\"Ginger Garcia\" \"ginger55\" 28 \"India\" false [1254 3568 3729]]\n [\"Hoyt Den",
"end": 1823,
"score": 0.9996528625488281,
"start": 1815,
"tag": "USERNAME",
"value": "ginger55"
},
{
"context": "ginger55\" 28 \"India\" false [1254 3568 3729]]\n [\"Hoyt Dennis\" \"hoyt50\" 84 \"Nigeria\" true [3766 5168 9982]]\n ",
"end": 1876,
"score": 0.9998958706855774,
"start": 1865,
"tag": "NAME",
"value": "Hoyt Dennis"
},
{
"context": "India\" false [1254 3568 3729]]\n [\"Hoyt Dennis\" \"hoyt50\" 84 \"Nigeria\" true [3766 5168 9982]]\n [\"Aurora ",
"end": 1885,
"score": 0.9995213747024536,
"start": 1879,
"tag": "USERNAME",
"value": "hoyt50"
},
{
"context": "\"hoyt50\" 84 \"Nigeria\" true [3766 5168 9982]]\n [\"Aurora Morgan\" \"aurora72\" 20 \"France\" true [1760 8484 8877]]\n ",
"end": 1941,
"score": 0.9998967051506042,
"start": 1928,
"tag": "NAME",
"value": "Aurora Morgan"
},
{
"context": "eria\" true [3766 5168 9982]]\n [\"Aurora Morgan\" \"aurora72\" 20 \"France\" true [1760 8484 8877]]\n [\"Haviva A",
"end": 1952,
"score": 0.9996777772903442,
"start": 1944,
"tag": "USERNAME",
"value": "aurora72"
},
{
"context": "aurora72\" 20 \"France\" true [1760 8484 8877]]\n [\"Haviva Allen\" \"haviva49\" 89 \"France\" false [5960 8768 9665]]\n ",
"end": 2006,
"score": 0.999897301197052,
"start": 1994,
"tag": "NAME",
"value": "Haviva Allen"
},
{
"context": "rance\" true [1760 8484 8877]]\n [\"Haviva Allen\" \"haviva49\" 89 \"France\" false [5960 8768 9665]]\n [\"Mona Ma",
"end": 2017,
"score": 0.9995988607406616,
"start": 2009,
"tag": "USERNAME",
"value": "haviva49"
},
{
"context": "aviva49\" 89 \"France\" false [5960 8768 9665]]\n [\"Mona Massey\" \"mona46\" 66 \"United Kingdom\" true [2986 7238 993",
"end": 2071,
"score": 0.999885082244873,
"start": 2060,
"tag": "NAME",
"value": "Mona Massey"
},
{
"context": "rance\" false [5960 8768 9665]]\n [\"Mona Massey\" \"mona46\" 66 \"United Kingdom\" true [2986 7238 9935]]\n [\"",
"end": 2080,
"score": 0.9996294975280762,
"start": 2074,
"tag": "USERNAME",
"value": "mona46"
},
{
"context": "\" 66 \"United Kingdom\" true [2986 7238 9935]]\n [\"Aimee Hinton\" \"aimee42\" 63 \"France\" true [3395 4261 8881]]\n ",
"end": 2142,
"score": 0.9998529553413391,
"start": 2130,
"tag": "NAME",
"value": "Aimee Hinton"
},
{
"context": "ngdom\" true [2986 7238 9935]]\n [\"Aimee Hinton\" \"aimee42\" 63 \"France\" true [3395 4261 8881]]\n [\"Diana Pe",
"end": 2152,
"score": 0.9992648959159851,
"start": 2145,
"tag": "USERNAME",
"value": "aimee42"
},
{
"context": "\"aimee42\" 63 \"France\" true [3395 4261 8881]]\n [\"Diana Perez\" \"diana51\" 56 \"Canada\" true [947 5752 5880]]\n [",
"end": 2205,
"score": 0.999893844127655,
"start": 2194,
"tag": "NAME",
"value": "Diana Perez"
},
{
"context": "France\" true [3395 4261 8881]]\n [\"Diana Perez\" \"diana51\" 56 \"Canada\" true [947 5752 5880]]\n [\"Nicole Ca",
"end": 2215,
"score": 0.9996538162231445,
"start": 2208,
"tag": "USERNAME",
"value": "diana51"
},
{
"context": " \"diana51\" 56 \"Canada\" true [947 5752 5880]]\n [\"Nicole Carter\" \"nicole35\" 32 \"Russia\" true [1854 2218 9990]]\n ",
"end": 2269,
"score": 0.9998920559883118,
"start": 2256,
"tag": "NAME",
"value": "Nicole Carter"
},
{
"context": "anada\" true [947 5752 5880]]\n [\"Nicole Carter\" \"nicole35\" 32 \"Russia\" true [1854 2218 9990]]\n [\"Walter H",
"end": 2280,
"score": 0.9996200799942017,
"start": 2272,
"tag": "USERNAME",
"value": "nicole35"
},
{
"context": "nicole35\" 32 \"Russia\" true [1854 2218 9990]]\n [\"Walter Hodges\" \"walter34\" 63 \"USA\" true [2053 2625 3060]]\n [\"",
"end": 2335,
"score": 0.9998899698257446,
"start": 2322,
"tag": "NAME",
"value": "Walter Hodges"
},
{
"context": "ssia\" true [1854 2218 9990]]\n [\"Walter Hodges\" \"walter34\" 63 \"USA\" true [2053 2625 3060]]\n [\"Kalia Hammo",
"end": 2346,
"score": 0.999620258808136,
"start": 2338,
"tag": "USERNAME",
"value": "walter34"
},
{
"context": "\" \"walter34\" 63 \"USA\" true [2053 2625 3060]]\n [\"Kalia Hammond\" \"kalia33\" 53 \"France\" false [1764 3385 8903]]\n ",
"end": 2398,
"score": 0.9998931884765625,
"start": 2385,
"tag": "NAME",
"value": "Kalia Hammond"
},
{
"context": "\"USA\" true [2053 2625 3060]]\n [\"Kalia Hammond\" \"kalia33\" 53 \"France\" false [1764 3385 8903]]\n [\"Chaney ",
"end": 2408,
"score": 0.9995303153991699,
"start": 2401,
"tag": "USERNAME",
"value": "kalia33"
},
{
"context": "kalia33\" 53 \"France\" false [1764 3385 8903]]\n [\"Chaney Albert\" \"chaney12\" 69 \"Russia\" false [1232 6500 6835]]\n ",
"end": 2464,
"score": 0.999893069267273,
"start": 2451,
"tag": "NAME",
"value": "Chaney Albert"
},
{
"context": "nce\" false [1764 3385 8903]]\n [\"Chaney Albert\" \"chaney12\" 69 \"Russia\" false [1232 6500 6835]]\n [\"Deirdre",
"end": 2475,
"score": 0.9996289014816284,
"start": 2467,
"tag": "USERNAME",
"value": "chaney12"
},
{
"context": "haney12\" 69 \"Russia\" false [1232 6500 6835]]\n [\"Deirdre Pittman\" \"deirdre88\" 41 \"Nigeria\" false [5795 9213 9320]]",
"end": 2533,
"score": 0.9998924136161804,
"start": 2518,
"tag": "NAME",
"value": "Deirdre Pittman"
},
{
"context": "a\" false [1232 6500 6835]]\n [\"Deirdre Pittman\" \"deirdre88\" 41 \"Nigeria\" false [5795 9213 9320]]\n [\"Aaron ",
"end": 2545,
"score": 0.999651312828064,
"start": 2536,
"tag": "USERNAME",
"value": "deirdre88"
},
{
"context": "rdre88\" 41 \"Nigeria\" false [5795 9213 9320]]\n [\"Aaron Lawson\" \"aaron31\" 74 \"Nigeria\" false [3210 4731 9219]]\n ",
"end": 2601,
"score": 0.999891996383667,
"start": 2589,
"tag": "NAME",
"value": "Aaron Lawson"
},
{
"context": "eria\" false [5795 9213 9320]]\n [\"Aaron Lawson\" \"aaron31\" 74 \"Nigeria\" false [3210 4731 9219]]\n [\"Holly ",
"end": 2611,
"score": 0.9996435642242432,
"start": 2604,
"tag": "USERNAME",
"value": "aaron31"
},
{
"context": "aron31\" 74 \"Nigeria\" false [3210 4731 9219]]\n [\"Holly Compton\" \"holly67\" 28 \"China\" false [622 6589 8292]]\n [",
"end": 2668,
"score": 0.9998928308486938,
"start": 2655,
"tag": "NAME",
"value": "Holly Compton"
},
{
"context": "ria\" false [3210 4731 9219]]\n [\"Holly Compton\" \"holly67\" 28 \"China\" false [622 6589 8292]]\n [\"Thaddeus ",
"end": 2678,
"score": 0.9996551871299744,
"start": 2671,
"tag": "USERNAME",
"value": "holly67"
},
{
"context": " \"holly67\" 28 \"China\" false [622 6589 8292]]\n [\"Thaddeus Ray\" \"thaddeus49\" 85 \"France\" true [2263 6338 6511]]\n",
"end": 2731,
"score": 0.9998911023139954,
"start": 2719,
"tag": "NAME",
"value": "Thaddeus Ray"
},
{
"context": "China\" false [622 6589 8292]]\n [\"Thaddeus Ray\" \"thaddeus49\" 85 \"France\" true [2263 6338 6511]]\n [\"Jonah Du",
"end": 2744,
"score": 0.9996439814567566,
"start": 2734,
"tag": "USERNAME",
"value": "thaddeus49"
},
{
"context": "addeus49\" 85 \"France\" true [2263 6338 6511]]\n [\"Jonah Duran\" \"jonah45\" 47 \"USA\" true [1214 6827 8473]]\n [\"A",
"end": 2797,
"score": 0.999890923500061,
"start": 2786,
"tag": "NAME",
"value": "Jonah Duran"
},
{
"context": "France\" true [2263 6338 6511]]\n [\"Jonah Duran\" \"jonah45\" 47 \"USA\" true [1214 6827 8473]]\n [\"Aurora Tran",
"end": 2807,
"score": 0.9996665716171265,
"start": 2800,
"tag": "USERNAME",
"value": "jonah45"
},
{
"context": "n\" \"jonah45\" 47 \"USA\" true [1214 6827 8473]]\n [\"Aurora Tran\" \"aurora30\" 74 \"Canada\" true [1511 2698 8421]]\n ",
"end": 2857,
"score": 0.9998923540115356,
"start": 2846,
"tag": "NAME",
"value": "Aurora Tran"
},
{
"context": "7 \"USA\" true [1214 6827 8473]]\n [\"Aurora Tran\" \"aurora30\" 74 \"Canada\" true [1511 2698 8421]]\n [\"Josephin",
"end": 2868,
"score": 0.9996381998062134,
"start": 2860,
"tag": "USERNAME",
"value": "aurora30"
},
{
"context": "aurora30\" 74 \"Canada\" true [1511 2698 8421]]\n [\"Josephine Castro\" \"josephine87\" 58 \"Canada\" false [3053 3574 6815]",
"end": 2926,
"score": 0.9998915195465088,
"start": 2910,
"tag": "NAME",
"value": "Josephine Castro"
},
{
"context": "a\" true [1511 2698 8421]]\n [\"Josephine Castro\" \"josephine87\" 58 \"Canada\" false [3053 3574 6815]]\n [\"Kibo Su",
"end": 2940,
"score": 0.9996727108955383,
"start": 2929,
"tag": "USERNAME",
"value": "josephine87"
},
{
"context": "phine87\" 58 \"Canada\" false [3053 3574 6815]]\n [\"Kibo Suarez\" \"kibo52\" 17 \"Nigeria\" false [3447 4796 5276]]\n ",
"end": 2994,
"score": 0.999882698059082,
"start": 2983,
"tag": "NAME",
"value": "Kibo Suarez"
},
{
"context": "anada\" false [3053 3574 6815]]\n [\"Kibo Suarez\" \"kibo52\" 17 \"Nigeria\" false [3447 4796 5276]]\n [\"Casey ",
"end": 3003,
"score": 0.9996446967124939,
"start": 2997,
"tag": "USERNAME",
"value": "kibo52"
},
{
"context": "3 3574 6815]]\n [\"Kibo Suarez\" \"kibo52\" 17 \"Nigeria\" false [3447 4796 5276]]\n [\"Casey Day\" \"casey45",
"end": 3016,
"score": 0.8688222169876099,
"start": 3014,
"tag": "NAME",
"value": "ia"
},
{
"context": "kibo52\" 17 \"Nigeria\" false [3447 4796 5276]]\n [\"Casey Day\" \"casey45\" 16 \"USA\" false [2841 4158 5738]]\n [\"",
"end": 3056,
"score": 0.99948650598526,
"start": 3047,
"tag": "NAME",
"value": "Casey Day"
},
{
"context": "Nigeria\" false [3447 4796 5276]]\n [\"Casey Day\" \"casey45\" 16 \"USA\" false [2841 4158 5738]]\n [\"Jackson Co",
"end": 3066,
"score": 0.9990697503089905,
"start": 3059,
"tag": "USERNAME",
"value": "casey45"
},
{
"context": "\" \"casey45\" 16 \"USA\" false [2841 4158 5738]]\n [\"Jackson Cole\" \"jackson27\" 41 \"China\" true [1070 8241 9625]]\n ",
"end": 3118,
"score": 0.9998939633369446,
"start": 3106,
"tag": "NAME",
"value": "Jackson Cole"
},
{
"context": "\"USA\" false [2841 4158 5738]]\n [\"Jackson Cole\" \"jackson27\" 41 \"China\" true [1070 8241 9625]]\n [\"Matthew P",
"end": 3130,
"score": 0.9996164441108704,
"start": 3121,
"tag": "USERNAME",
"value": "jackson27"
},
{
"context": "jackson27\" 41 \"China\" true [1070 8241 9625]]\n [\"Matthew Perkins\" \"matthew84\" 85 \"United Kingdom\" true [141 6946 9",
"end": 3186,
"score": 0.9998960494995117,
"start": 3171,
"tag": "NAME",
"value": "Matthew Perkins"
},
{
"context": "na\" true [1070 8241 9625]]\n [\"Matthew Perkins\" \"matthew84\" 85 \"United Kingdom\" true [141 6946 9020]]\n [\"T",
"end": 3198,
"score": 0.9995688796043396,
"start": 3189,
"tag": "USERNAME",
"value": "matthew84"
},
{
"context": "4\" 85 \"United Kingdom\" true [141 6946 9020]]\n [\"Thaddeus Grant\" \"thaddeus83\" 46 \"Nigeria\" true [79 7575 9969]]\n ",
"end": 3261,
"score": 0.9998981356620789,
"start": 3247,
"tag": "NAME",
"value": "Thaddeus Grant"
},
{
"context": "gdom\" true [141 6946 9020]]\n [\"Thaddeus Grant\" \"thaddeus83\" 46 \"Nigeria\" true [79 7575 9969]]\n [\"Stacy Ski",
"end": 3274,
"score": 0.999620258808136,
"start": 3264,
"tag": "USERNAME",
"value": "thaddeus83"
},
{
"context": "haddeus83\" 46 \"Nigeria\" true [79 7575 9969]]\n [\"Stacy Skinner\" \"stacy43\" 84 \"United Kingdom\" true [1123 1864 30",
"end": 3328,
"score": 0.9998918771743774,
"start": 3315,
"tag": "NAME",
"value": "Stacy Skinner"
},
{
"context": "igeria\" true [79 7575 9969]]\n [\"Stacy Skinner\" \"stacy43\" 84 \"United Kingdom\" true [1123 1864 3019]]\n [\"",
"end": 3338,
"score": 0.999420702457428,
"start": 3331,
"tag": "USERNAME",
"value": "stacy43"
},
{
"context": "\" 84 \"United Kingdom\" true [1123 1864 3019]]\n [\"Raven Hammond\" \"raven39\" 69 \"China\" false [1101 1253 6028]]\n ",
"end": 3401,
"score": 0.9998961687088013,
"start": 3388,
"tag": "NAME",
"value": "Raven Hammond"
},
{
"context": "gdom\" true [1123 1864 3019]]\n [\"Raven Hammond\" \"raven39\" 69 \"China\" false [1101 1253 6028]]\n [\"Dahlia W",
"end": 3411,
"score": 0.9994123578071594,
"start": 3404,
"tag": "USERNAME",
"value": "raven39"
},
{
"context": "\"raven39\" 69 \"China\" false [1101 1253 6028]]\n [\"Dahlia Whitney\" \"dahlia86\" 39 \"France\" false [4793 5101 7701]]\n ",
"end": 3467,
"score": 0.9999023079872131,
"start": 3453,
"tag": "NAME",
"value": "Dahlia Whitney"
},
{
"context": "na\" false [1101 1253 6028]]\n [\"Dahlia Whitney\" \"dahlia86\" 39 \"France\" false [4793 5101 7701]]\n [\"Hashim ",
"end": 3478,
"score": 0.9996258020401001,
"start": 3470,
"tag": "USERNAME",
"value": "dahlia86"
},
{
"context": "ahlia86\" 39 \"France\" false [4793 5101 7701]]\n [\"Hashim Juarez\" \"hashim39\" 69 \"USA\" true [6011 8510 9358]]\n [\"",
"end": 3534,
"score": 0.9998988509178162,
"start": 3521,
"tag": "NAME",
"value": "Hashim Juarez"
},
{
"context": "nce\" false [4793 5101 7701]]\n [\"Hashim Juarez\" \"hashim39\" 69 \"USA\" true [6011 8510 9358]]\n [\"Nayda Hardy",
"end": 3545,
"score": 0.9995555877685547,
"start": 3537,
"tag": "USERNAME",
"value": "hashim39"
},
{
"context": "\" \"hashim39\" 69 \"USA\" true [6011 8510 9358]]\n [\"Nayda Hardy\" \"nayda44\" 30 \"Canada\" true [4313 8095 9035]]\n ",
"end": 3595,
"score": 0.9998971819877625,
"start": 3584,
"tag": "NAME",
"value": "Nayda Hardy"
},
{
"context": "9 \"USA\" true [6011 8510 9358]]\n [\"Nayda Hardy\" \"nayda44\" 30 \"Canada\" true [4313 8095 9035]]\n [\"Addison ",
"end": 3605,
"score": 0.9994649887084961,
"start": 3598,
"tag": "USERNAME",
"value": "nayda44"
},
{
"context": "\"nayda44\" 30 \"Canada\" true [4313 8095 9035]]\n [\"Addison Britt\" \"addison71\" 52 \"Canada\" false [2406 3973 4254]]\n",
"end": 3660,
"score": 0.9998947381973267,
"start": 3647,
"tag": "NAME",
"value": "Addison Britt"
},
{
"context": "nada\" true [4313 8095 9035]]\n [\"Addison Britt\" \"addison71\" 52 \"Canada\" false [2406 3973 4254]]\n [\"Lavinia",
"end": 3672,
"score": 0.9995503425598145,
"start": 3663,
"tag": "USERNAME",
"value": "addison71"
},
{
"context": "dison71\" 52 \"Canada\" false [2406 3973 4254]]\n [\"Lavinia Valdez\" \"lavinia29\" 29 \"France\" true [3910 7304 9778]]\n ",
"end": 3729,
"score": 0.999898374080658,
"start": 3715,
"tag": "NAME",
"value": "Lavinia Valdez"
},
{
"context": "da\" false [2406 3973 4254]]\n [\"Lavinia Valdez\" \"lavinia29\" 29 \"France\" true [3910 7304 9778]]\n [\"Sierra B",
"end": 3741,
"score": 0.9996697306632996,
"start": 3732,
"tag": "USERNAME",
"value": "lavinia29"
},
{
"context": "avinia29\" 29 \"France\" true [3910 7304 9778]]\n [\"Sierra Bishop\" \"sierra15\" 38 \"Italy\" false [5344 7354 9184]]\n ",
"end": 3796,
"score": 0.8469991683959961,
"start": 3783,
"tag": "NAME",
"value": "Sierra Bishop"
},
{
"context": "sierra15\" 38 \"Italy\" false [5344 7354 9184]]\n [\"Catherine Wallace\" \"catherine16\" 40 \"Italy\" true [988 1527 9053]]\n ",
"end": 3866,
"score": 0.9998858571052551,
"start": 3849,
"tag": "NAME",
"value": "Catherine Wallace"
},
{
"context": " false [5344 7354 9184]]\n [\"Catherine Wallace\" \"catherine16\" 40 \"Italy\" true [988 1527 9053]]\n [\"Yasir Niel",
"end": 3880,
"score": 0.9994922876358032,
"start": 3869,
"tag": "USERNAME",
"value": "catherine16"
},
{
"context": "atherine16\" 40 \"Italy\" true [988 1527 9053]]\n [\"Yasir Nielsen\" \"yasir69\" 43 \"Germany\" true [890 8394 8961]]\n ",
"end": 3933,
"score": 0.9998884797096252,
"start": 3920,
"tag": "NAME",
"value": "Yasir Nielsen"
},
{
"context": "Italy\" true [988 1527 9053]]\n [\"Yasir Nielsen\" \"yasir69\" 43 \"Germany\" true [890 8394 8961]]\n [\"Beau Lar",
"end": 3943,
"score": 0.9989000558853149,
"start": 3936,
"tag": "USERNAME",
"value": "yasir69"
},
{
"context": "\"yasir69\" 43 \"Germany\" true [890 8394 8961]]\n [\"Beau Larson\" \"beau30\" 10 \"France\" true [1514 5632 6357]]\n [",
"end": 3996,
"score": 0.9998914003372192,
"start": 3985,
"tag": "NAME",
"value": "Beau Larson"
},
{
"context": "Germany\" true [890 8394 8961]]\n [\"Beau Larson\" \"beau30\" 10 \"France\" true [1514 5632 6357]]\n [\"Kirby Ea",
"end": 4005,
"score": 0.9995075464248657,
"start": 3999,
"tag": "USERNAME",
"value": "beau30"
},
{
"context": " \"beau30\" 10 \"France\" true [1514 5632 6357]]\n [\"Kirby Eaton\" \"kirby23\" 20 \"France\" false [1483 3895 7371]]\n ",
"end": 4058,
"score": 0.9998874664306641,
"start": 4047,
"tag": "NAME",
"value": "Kirby Eaton"
},
{
"context": "France\" true [1514 5632 6357]]\n [\"Kirby Eaton\" \"kirby23\" 20 \"France\" false [1483 3895 7371]]\n [\"Petra A",
"end": 4068,
"score": 0.9994075298309326,
"start": 4061,
"tag": "USERNAME",
"value": "kirby23"
},
{
"context": "kirby23\" 20 \"France\" false [1483 3895 7371]]\n [\"Petra Adkins\" \"petra54\" 85 \"France\" true [3484 6561 7823]]\n ",
"end": 4123,
"score": 0.9998885989189148,
"start": 4111,
"tag": "NAME",
"value": "Petra Adkins"
},
{
"context": "ance\" false [1483 3895 7371]]\n [\"Petra Adkins\" \"petra54\" 85 \"France\" true [3484 6561 7823]]\n [\"Ivory He",
"end": 4133,
"score": 0.999408483505249,
"start": 4126,
"tag": "USERNAME",
"value": "petra54"
},
{
"context": "\"petra54\" 85 \"France\" true [3484 6561 7823]]\n [\"Ivory Heath\" \"ivory73\" 30 \"India\" false [2486 5981 6835]]\n ",
"end": 4186,
"score": 0.9998884201049805,
"start": 4175,
"tag": "NAME",
"value": "Ivory Heath"
},
{
"context": "France\" true [3484 6561 7823]]\n [\"Ivory Heath\" \"ivory73\" 30 \"India\" false [2486 5981 6835]]\n [\"Odette G",
"end": 4196,
"score": 0.9994382858276367,
"start": 4189,
"tag": "USERNAME",
"value": "ivory73"
},
{
"context": "\"ivory73\" 30 \"India\" false [2486 5981 6835]]\n [\"Odette Goodman\" \"odette51\" 85 \"Italy\" true [11 4295 5434]]\n [\"",
"end": 4252,
"score": 0.9998875856399536,
"start": 4238,
"tag": "NAME",
"value": "Odette Goodman"
},
{
"context": "ia\" false [2486 5981 6835]]\n [\"Odette Goodman\" \"odette51\" 85 \"Italy\" true [11 4295 5434]]\n [\"Priscilla M",
"end": 4263,
"score": 0.9994558691978455,
"start": 4255,
"tag": "USERNAME",
"value": "odette51"
},
{
"context": "\" \"odette51\" 85 \"Italy\" true [11 4295 5434]]\n [\"Priscilla Mcfadden\" \"priscilla14\" 19 \"Russia\" true [4343 7930 9612]]",
"end": 4320,
"score": 0.9998885989189148,
"start": 4302,
"tag": "NAME",
"value": "Priscilla Mcfadden"
},
{
"context": "y\" true [11 4295 5434]]\n [\"Priscilla Mcfadden\" \"priscilla14\" 19 \"Russia\" true [4343 7930 9612]]\n [\"Clark Lu",
"end": 4334,
"score": 0.9995284080505371,
"start": 4323,
"tag": "USERNAME",
"value": "priscilla14"
},
{
"context": "scilla14\" 19 \"Russia\" true [4343 7930 9612]]\n [\"Clark Lucas\" \"clark43\" 28 \"USA\" false [1183 2439 9437]]\n [\"",
"end": 4387,
"score": 0.9998855590820312,
"start": 4376,
"tag": "NAME",
"value": "Clark Lucas"
},
{
"context": "Russia\" true [4343 7930 9612]]\n [\"Clark Lucas\" \"clark43\" 28 \"USA\" false [1183 2439 9437]]\n [\"Xerxes Hol",
"end": 4397,
"score": 0.999494194984436,
"start": 4390,
"tag": "USERNAME",
"value": "clark43"
},
{
"context": "\" \"clark43\" 28 \"USA\" false [1183 2439 9437]]\n [\"Xerxes Holland\" \"xerxes26\" 51 \"Russia\" true [5280 6868 9437]]\n ",
"end": 4451,
"score": 0.9998871684074402,
"start": 4437,
"tag": "NAME",
"value": "Xerxes Holland"
},
{
"context": "SA\" false [1183 2439 9437]]\n [\"Xerxes Holland\" \"xerxes26\" 51 \"Russia\" true [5280 6868 9437]]\n [\"Karen Gr",
"end": 4462,
"score": 0.999539852142334,
"start": 4454,
"tag": "USERNAME",
"value": "xerxes26"
},
{
"context": "xerxes26\" 51 \"Russia\" true [5280 6868 9437]]\n [\"Karen Gray\" \"karen56\" 29 \"France\" false [2015 2211 9756]]\n ",
"end": 4514,
"score": 0.9998834729194641,
"start": 4504,
"tag": "NAME",
"value": "Karen Gray"
},
{
"context": "\"Russia\" true [5280 6868 9437]]\n [\"Karen Gray\" \"karen56\" 29 \"France\" false [2015 2211 9756]]\n [\"Ulric C",
"end": 4524,
"score": 0.9996000528335571,
"start": 4517,
"tag": "USERNAME",
"value": "karen56"
},
{
"context": "karen56\" 29 \"France\" false [2015 2211 9756]]\n [\"Ulric Crane\" \"ulric66\" 85 \"India\" true [6604 6682 9823]]\n [",
"end": 4578,
"score": 0.9998878240585327,
"start": 4567,
"tag": "NAME",
"value": "Ulric Crane"
},
{
"context": "rance\" false [2015 2211 9756]]\n [\"Ulric Crane\" \"ulric66\" 85 \"India\" true [6604 6682 9823]]\n [\"Paula Vel",
"end": 4588,
"score": 0.9995121359825134,
"start": 4581,
"tag": "USERNAME",
"value": "ulric66"
},
{
"context": " \"ulric66\" 85 \"India\" true [6604 6682 9823]]\n [\"Paula Velez\" \"paula67\" 27 \"Germany\" true [1516 5435 6379]]\n ",
"end": 4640,
"score": 0.9998866319656372,
"start": 4629,
"tag": "NAME",
"value": "Paula Velez"
},
{
"context": "\"India\" true [6604 6682 9823]]\n [\"Paula Velez\" \"paula67\" 27 \"Germany\" true [1516 5435 6379]]\n [\"Ezra Ga",
"end": 4650,
"score": 0.9996244311332703,
"start": 4643,
"tag": "USERNAME",
"value": "paula67"
},
{
"context": "paula67\" 27 \"Germany\" true [1516 5435 6379]]\n [\"Ezra Gardner\" \"ezra30\" 59 \"Canada\" true [3026 7939 9189]]\n [",
"end": 4705,
"score": 0.9998879432678223,
"start": 4693,
"tag": "NAME",
"value": "Ezra Gardner"
},
{
"context": "rmany\" true [1516 5435 6379]]\n [\"Ezra Gardner\" \"ezra30\" 59 \"Canada\" true [3026 7939 9189]]\n [\"Septembe",
"end": 4714,
"score": 0.999626636505127,
"start": 4708,
"tag": "USERNAME",
"value": "ezra30"
},
{
"context": " \"ezra30\" 59 \"Canada\" true [3026 7939 9189]]\n [\"September Chen\" \"september40\" 18 \"Germany\" true [2425 2860 9653]",
"end": 4770,
"score": 0.9998582601547241,
"start": 4756,
"tag": "NAME",
"value": "September Chen"
},
{
"context": "ada\" true [3026 7939 9189]]\n [\"September Chen\" \"september40\" 18 \"Germany\" true [2425 2860 9653]]\n [\"Helen A",
"end": 4784,
"score": 0.9995130300521851,
"start": 4773,
"tag": "USERNAME",
"value": "september40"
},
{
"context": "ember40\" 18 \"Germany\" true [2425 2860 9653]]\n [\"Helen Alvarado\" \"helen55\" 16 \"Nigeria\" true [1427 5429 5994]]\n ",
"end": 4841,
"score": 0.9999009966850281,
"start": 4827,
"tag": "NAME",
"value": "Helen Alvarado"
},
{
"context": "any\" true [2425 2860 9653]]\n [\"Helen Alvarado\" \"helen55\" 16 \"Nigeria\" true [1427 5429 5994]]\n [\"Bevis G",
"end": 4851,
"score": 0.9995914697647095,
"start": 4844,
"tag": "USERNAME",
"value": "helen55"
},
{
"context": "helen55\" 16 \"Nigeria\" true [1427 5429 5994]]\n [\"Bevis Guzman\" \"bevis74\" 75 \"Germany\" false [4346 6661 6706]]\n ",
"end": 4906,
"score": 0.9999032020568848,
"start": 4894,
"tag": "NAME",
"value": "Bevis Guzman"
},
{
"context": "geria\" true [1427 5429 5994]]\n [\"Bevis Guzman\" \"bevis74\" 75 \"Germany\" false [4346 6661 6706]]\n [\"Montan",
"end": 4916,
"score": 0.9996340870857239,
"start": 4909,
"tag": "USERNAME",
"value": "bevis74"
},
{
"context": "evis74\" 75 \"Germany\" false [4346 6661 6706]]\n [\"Montana Cook\" \"montana18\" 48 \"Canada\" true [703 2156 8865]]\n ",
"end": 4972,
"score": 0.9998988509178162,
"start": 4960,
"tag": "NAME",
"value": "Montana Cook"
},
{
"context": "many\" false [4346 6661 6706]]\n [\"Montana Cook\" \"montana18\" 48 \"Canada\" true [703 2156 8865]]\n [\"Tasha Del",
"end": 4984,
"score": 0.9995145201683044,
"start": 4975,
"tag": "USERNAME",
"value": "montana18"
},
{
"context": "montana18\" 48 \"Canada\" true [703 2156 8865]]\n [\"Tasha Deleon\" \"tasha61\" 23 \"China\" false [1086 1520 4289]]\n ",
"end": 5037,
"score": 0.9998974800109863,
"start": 5025,
"tag": "NAME",
"value": "Tasha Deleon"
},
{
"context": "Canada\" true [703 2156 8865]]\n [\"Tasha Deleon\" \"tasha61\" 23 \"China\" false [1086 1520 4289]]\n [\"Jameson ",
"end": 5047,
"score": 0.9995326995849609,
"start": 5040,
"tag": "USERNAME",
"value": "tasha61"
},
{
"context": "\"tasha61\" 23 \"China\" false [1086 1520 4289]]\n [\"Jameson Morse\" \"jameson71\" 75 \"USA\" true [5492 6934 7778]]\n [",
"end": 5102,
"score": 0.9998985528945923,
"start": 5089,
"tag": "NAME",
"value": "Jameson Morse"
},
{
"context": "ina\" false [1086 1520 4289]]\n [\"Jameson Morse\" \"jameson71\" 75 \"USA\" true [5492 6934 7778]]\n [\"Danielle Ty",
"end": 5114,
"score": 0.9996044039726257,
"start": 5105,
"tag": "USERNAME",
"value": "jameson71"
},
{
"context": " \"jameson71\" 75 \"USA\" true [5492 6934 7778]]\n [\"Danielle Tyler\" \"danielle44\" 61 \"Italy\" true [3567 9002 9648]]\n ",
"end": 5167,
"score": 0.9998987317085266,
"start": 5153,
"tag": "NAME",
"value": "Danielle Tyler"
},
{
"context": "USA\" true [5492 6934 7778]]\n [\"Danielle Tyler\" \"danielle44\" 61 \"Italy\" true [3567 9002 9648]]\n [\"Anastasia",
"end": 5180,
"score": 0.999609112739563,
"start": 5170,
"tag": "USERNAME",
"value": "danielle44"
},
{
"context": "anielle44\" 61 \"Italy\" true [3567 9002 9648]]\n [\"Anastasia Whitaker\" \"anastasia23\" 76 \"Russia\" false [1186 4547 9583]",
"end": 5239,
"score": 0.9999022483825684,
"start": 5221,
"tag": "NAME",
"value": "Anastasia Whitaker"
},
{
"context": " true [3567 9002 9648]]\n [\"Anastasia Whitaker\" \"anastasia23\" 76 \"Russia\" false [1186 4547 9583]]\n [\"Destiny",
"end": 5253,
"score": 0.99661785364151,
"start": 5242,
"tag": "USERNAME",
"value": "anastasia23"
},
{
"context": "tasia23\" 76 \"Russia\" false [1186 4547 9583]]\n [\"Destiny Sanford\" \"destiny72\" 83 \"China\" true [4440 5820 9134]]\n ",
"end": 5311,
"score": 0.9999014735221863,
"start": 5296,
"tag": "NAME",
"value": "Destiny Sanford"
},
{
"context": "a\" false [1186 4547 9583]]\n [\"Destiny Sanford\" \"destiny72\" 83 \"China\" true [4440 5820 9134]]\n [\"Kirestin ",
"end": 5323,
"score": 0.9983538389205933,
"start": 5314,
"tag": "USERNAME",
"value": "destiny72"
},
{
"context": "destiny72\" 83 \"China\" true [4440 5820 9134]]\n [\"Kirestin Irwin\" \"kirestin73\" 20 \"India\" true [705 877 9422]]\n ",
"end": 5378,
"score": 0.9999025464057922,
"start": 5364,
"tag": "NAME",
"value": "Kirestin Irwin"
},
{
"context": "ina\" true [4440 5820 9134]]\n [\"Kirestin Irwin\" \"kirestin73\" 20 \"India\" true [705 877 9422]]\n [\"Graiden Le\"",
"end": 5391,
"score": 0.9995651841163635,
"start": 5381,
"tag": "USERNAME",
"value": "kirestin73"
},
{
"context": "\"kirestin73\" 20 \"India\" true [705 877 9422]]\n [\"Graiden Le\" \"graiden55\" 15 \"USA\" false [906 4092 4790]]\n [",
"end": 5440,
"score": 0.9998881816864014,
"start": 5430,
"tag": "NAME",
"value": "Graiden Le"
},
{
"context": "20 \"India\" true [705 877 9422]]\n [\"Graiden Le\" \"graiden55\" 15 \"USA\" false [906 4092 4790]]\n [\"Tatum Stewa",
"end": 5452,
"score": 0.9995622634887695,
"start": 5443,
"tag": "USERNAME",
"value": "graiden55"
},
{
"context": " \"graiden55\" 15 \"USA\" false [906 4092 4790]]\n [\"Tatum Stewart\" \"tatum40\" 81 \"India\" true [1388 3401 6073]]\n [",
"end": 5504,
"score": 0.9998933672904968,
"start": 5491,
"tag": "NAME",
"value": "Tatum Stewart"
},
{
"context": "\"USA\" false [906 4092 4790]]\n [\"Tatum Stewart\" \"tatum40\" 81 \"India\" true [1388 3401 6073]]\n [\"Sylvia Sa",
"end": 5514,
"score": 0.9992584586143494,
"start": 5507,
"tag": "USERNAME",
"value": "tatum40"
},
{
"context": " \"tatum40\" 81 \"India\" true [1388 3401 6073]]\n [\"Sylvia Sargent\" \"sylvia72\" 44 \"USA\" false [804 1190 1646]]\n [\"",
"end": 5569,
"score": 0.9998920559883118,
"start": 5555,
"tag": "NAME",
"value": "Sylvia Sargent"
},
{
"context": "dia\" true [1388 3401 6073]]\n [\"Sylvia Sargent\" \"sylvia72\" 44 \"USA\" false [804 1190 1646]]\n [\"Azalia Moli",
"end": 5580,
"score": 0.9980934858322144,
"start": 5572,
"tag": "USERNAME",
"value": "sylvia72"
},
{
"context": "\" \"sylvia72\" 44 \"USA\" false [804 1190 1646]]\n [\"Azalia Molina\" \"azalia34\" 25 \"India\" true [3639 8747 9332]]\n ",
"end": 5632,
"score": 0.9998834133148193,
"start": 5619,
"tag": "NAME",
"value": "Azalia Molina"
},
{
"context": "\"USA\" false [804 1190 1646]]\n [\"Azalia Molina\" \"azalia34\" 25 \"India\" true [3639 8747 9332]]\n [\"Paula Hat",
"end": 5643,
"score": 0.9982391595840454,
"start": 5635,
"tag": "USERNAME",
"value": "azalia34"
},
{
"context": "\"azalia34\" 25 \"India\" true [3639 8747 9332]]\n [\"Paula Hatfied\" \"paula52\" 82 \"Russia\" false [5715 8723 8930]]\n ",
"end": 5697,
"score": 0.9998914003372192,
"start": 5684,
"tag": "NAME",
"value": "Paula Hatfied"
},
{
"context": "ndia\" true [3639 8747 9332]]\n [\"Paula Hatfied\" \"paula52\" 82 \"Russia\" false [5715 8723 8930]]\n [\"Wilma M",
"end": 5707,
"score": 0.9975383281707764,
"start": 5700,
"tag": "USERNAME",
"value": "paula52"
},
{
"context": "paula52\" 82 \"Russia\" false [5715 8723 8930]]\n [\"Wilma Mccray\" \"wilma68\" 70 \"Nigeria\" true [1569 1953 2555]]\n ",
"end": 5762,
"score": 0.9998924732208252,
"start": 5750,
"tag": "NAME",
"value": "Wilma Mccray"
},
{
"context": "ssia\" false [5715 8723 8930]]\n [\"Wilma Mccray\" \"wilma68\" 70 \"Nigeria\" true [1569 1953 2555]]\n [\"Lacy Gr",
"end": 5772,
"score": 0.9995813369750977,
"start": 5765,
"tag": "USERNAME",
"value": "wilma68"
},
{
"context": "wilma68\" 70 \"Nigeria\" true [1569 1953 2555]]\n [\"Lacy Graham\" \"lacy61\" 15 \"Canada\" false [1210 6628 9801]]\n ",
"end": 5826,
"score": 0.9998894929885864,
"start": 5815,
"tag": "NAME",
"value": "Lacy Graham"
},
{
"context": "igeria\" true [1569 1953 2555]]\n [\"Lacy Graham\" \"lacy61\" 15 \"Canada\" false [1210 6628 9801]]\n [\"Lillith",
"end": 5835,
"score": 0.999617874622345,
"start": 5829,
"tag": "USERNAME",
"value": "lacy61"
},
{
"context": "\"lacy61\" 15 \"Canada\" false [1210 6628 9801]]\n [\"Lillith Noble\" \"lillith68\" 75 \"India\" true [164 5298 6587]]\n ",
"end": 5891,
"score": 0.9998903274536133,
"start": 5878,
"tag": "NAME",
"value": "Lillith Noble"
},
{
"context": "ada\" false [1210 6628 9801]]\n [\"Lillith Noble\" \"lillith68\" 75 \"India\" true [164 5298 6587]]\n [\"Oprah Ferr",
"end": 5903,
"score": 0.9995719194412231,
"start": 5894,
"tag": "USERNAME",
"value": "lillith68"
},
{
"context": "\"lillith68\" 75 \"India\" true [164 5298 6587]]\n [\"Oprah Ferrell\" \"oprah71\" 27 \"Italy\" false [4394 5510 8434]]\n ",
"end": 5956,
"score": 0.9998952150344849,
"start": 5943,
"tag": "NAME",
"value": "Oprah Ferrell"
},
{
"context": "India\" true [164 5298 6587]]\n [\"Oprah Ferrell\" \"oprah71\" 27 \"Italy\" false [4394 5510 8434]]\n [\"Steel Mi",
"end": 5966,
"score": 0.9991956949234009,
"start": 5959,
"tag": "USERNAME",
"value": "oprah71"
},
{
"context": "\"oprah71\" 27 \"Italy\" false [4394 5510 8434]]\n [\"Steel Middleton\" \"steel78\" 18 \"USA\" true [393 7152 9237]]\n [\"Ka",
"end": 6023,
"score": 0.9998943209648132,
"start": 6008,
"tag": "NAME",
"value": "Steel Middleton"
},
{
"context": "y\" false [4394 5510 8434]]\n [\"Steel Middleton\" \"steel78\" 18 \"USA\" true [393 7152 9237]]\n [\"Karyn Gay\" \"",
"end": 6033,
"score": 0.9995696544647217,
"start": 6026,
"tag": "USERNAME",
"value": "steel78"
},
{
"context": "on\" \"steel78\" 18 \"USA\" true [393 7152 9237]]\n [\"Karyn Gay\" \"karyn70\" 55 \"Germany\" false [4362 9557 9919]]\n ",
"end": 6080,
"score": 0.9998941421508789,
"start": 6071,
"tag": "NAME",
"value": "Karyn Gay"
},
{
"context": "\" 18 \"USA\" true [393 7152 9237]]\n [\"Karyn Gay\" \"karyn70\" 55 \"Germany\" false [4362 9557 9919]]\n [\"Dora R",
"end": 6090,
"score": 0.9996007680892944,
"start": 6083,
"tag": "USERNAME",
"value": "karyn70"
},
{
"context": "aryn70\" 55 \"Germany\" false [4362 9557 9919]]\n [\"Dora Reese\" \"dora70\" 50 \"Canada\" false [3483 4651 5211]]\n ",
"end": 6144,
"score": 0.9998918175697327,
"start": 6134,
"tag": "NAME",
"value": "Dora Reese"
},
{
"context": "ermany\" false [4362 9557 9919]]\n [\"Dora Reese\" \"dora70\" 50 \"Canada\" false [3483 4651 5211]]\n [\"Daria G",
"end": 6153,
"score": 0.999572217464447,
"start": 6147,
"tag": "USERNAME",
"value": "dora70"
},
{
"context": "\"dora70\" 50 \"Canada\" false [3483 4651 5211]]\n [\"Daria Gamble\" \"daria11\" 76 \"Nigeria\" true [1941 2067 8393]]\n ",
"end": 6208,
"score": 0.9998960494995117,
"start": 6196,
"tag": "NAME",
"value": "Daria Gamble"
},
{
"context": "nada\" false [3483 4651 5211]]\n [\"Daria Gamble\" \"daria11\" 76 \"Nigeria\" true [1941 2067 8393]]\n [\"Norman ",
"end": 6218,
"score": 0.9996259212493896,
"start": 6211,
"tag": "USERNAME",
"value": "daria11"
},
{
"context": "daria11\" 76 \"Nigeria\" true [1941 2067 8393]]\n [\"Norman Klein\" \"norman72\" 63 \"India\" true [700 7305 9115]]\n [",
"end": 6273,
"score": 0.9998918771743774,
"start": 6261,
"tag": "NAME",
"value": "Norman Klein"
},
{
"context": "geria\" true [1941 2067 8393]]\n [\"Norman Klein\" \"norman72\" 63 \"India\" true [700 7305 9115]]\n [\"Burton Eri",
"end": 6284,
"score": 0.9996736645698547,
"start": 6276,
"tag": "USERNAME",
"value": "norman72"
},
{
"context": " \"norman72\" 63 \"India\" true [700 7305 9115]]\n [\"Burton Erickson\" \"burton78\" 19 \"Russia\" true [262 4673 7463]]\n ",
"end": 6339,
"score": 0.9998906850814819,
"start": 6324,
"tag": "NAME",
"value": "Burton Erickson"
},
{
"context": "dia\" true [700 7305 9115]]\n [\"Burton Erickson\" \"burton78\" 19 \"Russia\" true [262 4673 7463]]\n [\"Xerxes Ki",
"end": 6350,
"score": 0.9996316432952881,
"start": 6342,
"tag": "USERNAME",
"value": "burton78"
},
{
"context": "\"burton78\" 19 \"Russia\" true [262 4673 7463]]\n [\"Xerxes Kinney\" \"xerxes63\" 54 \"Italy\" false [126 6167 7327]]\n ",
"end": 6404,
"score": 0.9998859763145447,
"start": 6391,
"tag": "NAME",
"value": "Xerxes Kinney"
},
{
"context": "ussia\" true [262 4673 7463]]\n [\"Xerxes Kinney\" \"xerxes63\" 54 \"Italy\" false [126 6167 7327]]\n [\"Remedios ",
"end": 6415,
"score": 0.9996005892753601,
"start": 6407,
"tag": "USERNAME",
"value": "xerxes63"
},
{
"context": "\"xerxes63\" 54 \"Italy\" false [126 6167 7327]]\n [\"Remedios Stephens\" \"remedios22\" 86 \"Nigeria\" false [3926 5164 6605]",
"end": 6473,
"score": 0.999884843826294,
"start": 6456,
"tag": "NAME",
"value": "Remedios Stephens"
},
{
"context": "\" false [126 6167 7327]]\n [\"Remedios Stephens\" \"remedios22\" 86 \"Nigeria\" false [3926 5164 6605]]\n [\"Hammet",
"end": 6486,
"score": 0.9995980262756348,
"start": 6476,
"tag": "USERNAME",
"value": "remedios22"
},
{
"context": "dios22\" 86 \"Nigeria\" false [3926 5164 6605]]\n [\"Hammett Oconnor\" \"hammett73\" 12 \"Canada\" true [7143 7639 8806]]\n ",
"end": 6545,
"score": 0.9998909831047058,
"start": 6530,
"tag": "NAME",
"value": "Hammett Oconnor"
},
{
"context": "a\" false [3926 5164 6605]]\n [\"Hammett Oconnor\" \"hammett73\" 12 \"Canada\" true [7143 7639 8806]]\n [\"Nasim ",
"end": 6555,
"score": 0.999437153339386,
"start": 6548,
"tag": "USERNAME",
"value": "hammett"
},
{
"context": "ammett73\" 12 \"Canada\" true [7143 7639 8806]]\n [\"Nasim Hutchinson\" \"nasim81\" 64 \"United Kingdom\" true [1739 3696 51",
"end": 6615,
"score": 0.9998907446861267,
"start": 6599,
"tag": "NAME",
"value": "Nasim Hutchinson"
},
{
"context": "a\" true [7143 7639 8806]]\n [\"Nasim Hutchinson\" \"nasim81\" 64 \"United Kingdom\" true [1739 3696 5196]]\n [\"",
"end": 6625,
"score": 0.999599277973175,
"start": 6618,
"tag": "USERNAME",
"value": "nasim81"
},
{
"context": "\" 64 \"United Kingdom\" true [1739 3696 5196]]\n [\"Ezra Hood\" \"ezra64\" 57 \"Italy\" true [1993 2107 4763]]\n [\"",
"end": 6684,
"score": 0.9998923540115356,
"start": 6675,
"tag": "NAME",
"value": "Ezra Hood"
},
{
"context": " Kingdom\" true [1739 3696 5196]]\n [\"Ezra Hood\" \"ezra64\" 57 \"Italy\" true [1993 2107 4763]]\n [\"Simone Er",
"end": 6693,
"score": 0.9996283650398254,
"start": 6687,
"tag": "USERNAME",
"value": "ezra64"
},
{
"context": "\" \"ezra64\" 57 \"Italy\" true [1993 2107 4763]]\n [\"Simone Erickson\" \"simone31\" 52 \"Canada\" false [1372 1874 8058]]\n ",
"end": 6749,
"score": 0.999891459941864,
"start": 6734,
"tag": "NAME",
"value": "Simone Erickson"
},
{
"context": "ly\" true [1993 2107 4763]]\n [\"Simone Erickson\" \"simone31\" 52 \"Canada\" false [1372 1874 8058]]\n [\"Alexand",
"end": 6760,
"score": 0.9996562600135803,
"start": 6752,
"tag": "USERNAME",
"value": "simone31"
},
{
"context": "imone31\" 52 \"Canada\" false [1372 1874 8058]]\n [\"Alexander Hoffman\" \"alexander48\" 22 \"Russia\" false [2518 5388 6788]",
"end": 6820,
"score": 0.9998881220817566,
"start": 6803,
"tag": "NAME",
"value": "Alexander Hoffman"
},
{
"context": " false [1372 1874 8058]]\n [\"Alexander Hoffman\" \"alexander48\" 22 \"Russia\" false [2518 5388 6788]]\n [\"Magee M",
"end": 6834,
"score": 0.9996485114097595,
"start": 6823,
"tag": "USERNAME",
"value": "alexander48"
},
{
"context": "ander48\" 22 \"Russia\" false [2518 5388 6788]]\n [\"Magee Miles\" \"magee48\" 39 \"France\" true [6613 8296 9275]]\n ",
"end": 6888,
"score": 0.99989253282547,
"start": 6877,
"tag": "NAME",
"value": "Magee Miles"
},
{
"context": "ussia\" false [2518 5388 6788]]\n [\"Magee Miles\" \"magee48\" 39 \"France\" true [6613 8296 9275]]\n [\"Bernard ",
"end": 6898,
"score": 0.9995571374893188,
"start": 6891,
"tag": "USERNAME",
"value": "magee48"
},
{
"context": "\"magee48\" 39 \"France\" true [6613 8296 9275]]\n [\"Bernard Gould\" \"bernard83\" 30 \"Canada\" false [3696 4072 6848]]\n",
"end": 6953,
"score": 0.999893069267273,
"start": 6940,
"tag": "NAME",
"value": "Bernard Gould"
},
{
"context": "ance\" true [6613 8296 9275]]\n [\"Bernard Gould\" \"bernard83\" 30 \"Canada\" false [3696 4072 6848]]\n [\"Timothy",
"end": 6965,
"score": 0.9996466636657715,
"start": 6956,
"tag": "USERNAME",
"value": "bernard83"
},
{
"context": "rnard83\" 30 \"Canada\" false [3696 4072 6848]]\n [\"Timothy Wilkerson\" \"timothy52\" 63 \"Nigeria\" false [2781 3951 9883]]",
"end": 7025,
"score": 0.9998900890350342,
"start": 7008,
"tag": "NAME",
"value": "Timothy Wilkerson"
},
{
"context": " false [3696 4072 6848]]\n [\"Timothy Wilkerson\" \"timothy52\" 63 \"Nigeria\" false [2781 3951 9883]]\n [\"Yoshi ",
"end": 7037,
"score": 0.9996775388717651,
"start": 7028,
"tag": "USERNAME",
"value": "timothy52"
},
{
"context": "othy52\" 63 \"Nigeria\" false [2781 3951 9883]]\n [\"Yoshi Hodges\" \"yoshi69\" 29 \"Germany\" false [831 7567 7780]]\n ",
"end": 7093,
"score": 0.9998992681503296,
"start": 7081,
"tag": "NAME",
"value": "Yoshi Hodges"
},
{
"context": "eria\" false [2781 3951 9883]]\n [\"Yoshi Hodges\" \"yoshi69\" 29 \"Germany\" false [831 7567 7780]]\n [\"Erica D",
"end": 7103,
"score": 0.9993533492088318,
"start": 7096,
"tag": "USERNAME",
"value": "yoshi69"
},
{
"context": "yoshi69\" 29 \"Germany\" false [831 7567 7780]]\n [\"Erica Dudley\" \"erica38\" 27 \"Italy\" true [1975 2341 4171]]\n [",
"end": 7158,
"score": 0.9998893737792969,
"start": 7146,
"tag": "NAME",
"value": "Erica Dudley"
},
{
"context": "rmany\" false [831 7567 7780]]\n [\"Erica Dudley\" \"erica38\" 27 \"Italy\" true [1975 2341 4171]]\n [\"Charde Lo",
"end": 7168,
"score": 0.9996778964996338,
"start": 7161,
"tag": "USERNAME",
"value": "erica38"
},
{
"context": " \"erica38\" 27 \"Italy\" true [1975 2341 4171]]\n [\"Charde Lowe\" \"charde59\" 36 \"Germany\" true [2415 3913 4980]]\n ",
"end": 7220,
"score": 0.9998932480812073,
"start": 7209,
"tag": "NAME",
"value": "Charde Lowe"
},
{
"context": "\"Italy\" true [1975 2341 4171]]\n [\"Charde Lowe\" \"charde59\" 36 \"Germany\" true [2415 3913 4980]]\n [\"Laura T",
"end": 7231,
"score": 0.9996844530105591,
"start": 7223,
"tag": "USERNAME",
"value": "charde59"
},
{
"context": "harde59\" 36 \"Germany\" true [2415 3913 4980]]\n [\"Laura Tillman\" \"laura38\" 76 \"Italy\" true [1301 7826 9946]]\n [",
"end": 7287,
"score": 0.9998912811279297,
"start": 7274,
"tag": "NAME",
"value": "Laura Tillman"
},
{
"context": "many\" true [2415 3913 4980]]\n [\"Laura Tillman\" \"laura38\" 76 \"Italy\" true [1301 7826 9946]]\n [\"Anastasia",
"end": 7297,
"score": 0.9996036291122437,
"start": 7290,
"tag": "USERNAME",
"value": "laura38"
},
{
"context": " \"laura38\" 76 \"Italy\" true [1301 7826 9946]]\n [\"Anastasia Perez\" \"anastasia28\" 40 \"India\" false [584 2002 7615]]\n",
"end": 7353,
"score": 0.9998857378959656,
"start": 7338,
"tag": "NAME",
"value": "Anastasia Perez"
},
{
"context": "ly\" true [1301 7826 9946]]\n [\"Anastasia Perez\" \"anastasia28\" 40 \"India\" false [584 2002 7615]]\n [\"Castor Av",
"end": 7367,
"score": 0.9996638298034668,
"start": 7356,
"tag": "USERNAME",
"value": "anastasia28"
},
{
"context": "astasia28\" 40 \"India\" false [584 2002 7615]]\n [\"Castor Avery\" \"castor27\" 73 \"China\" false [1076 2884 5735]]\n ",
"end": 7420,
"score": 0.9998862743377686,
"start": 7408,
"tag": "NAME",
"value": "Castor Avery"
},
{
"context": "India\" false [584 2002 7615]]\n [\"Castor Avery\" \"castor27\" 73 \"China\" false [1076 2884 5735]]\n [\"Connor W",
"end": 7431,
"score": 0.999675989151001,
"start": 7423,
"tag": "USERNAME",
"value": "castor27"
},
{
"context": "castor27\" 73 \"China\" false [1076 2884 5735]]\n [\"Connor Wiggins\" \"connor74\" 10 \"USA\" false [1238 1814 8695]]\n [",
"end": 7487,
"score": 0.9998933672904968,
"start": 7473,
"tag": "NAME",
"value": "Connor Wiggins"
},
{
"context": "na\" false [1076 2884 5735]]\n [\"Connor Wiggins\" \"connor74\" 10 \"USA\" false [1238 1814 8695]]\n [\"Tashya Mci",
"end": 7498,
"score": 0.999173104763031,
"start": 7490,
"tag": "USERNAME",
"value": "connor74"
},
{
"context": " \"connor74\" 10 \"USA\" false [1238 1814 8695]]\n [\"Tashya Mcintosh\" \"tashya28\" 14 \"France\" true [2031 4219 9475]]\n ",
"end": 7553,
"score": 0.9998947978019714,
"start": 7538,
"tag": "NAME",
"value": "Tashya Mcintosh"
},
{
"context": "A\" false [1238 1814 8695]]\n [\"Tashya Mcintosh\" \"tashya28\" 14 \"France\" true [2031 4219 9475]]\n [\"Martin M",
"end": 7564,
"score": 0.9990495443344116,
"start": 7556,
"tag": "USERNAME",
"value": "tashya28"
},
{
"context": "tashya28\" 14 \"France\" true [2031 4219 9475]]\n [\"Martin Mccullough\" \"martin51\" 40 \"Nigeria\" false [7554 8787 9356]]\n",
"end": 7623,
"score": 0.9998989105224609,
"start": 7606,
"tag": "NAME",
"value": "Martin Mccullough"
},
{
"context": "\" true [2031 4219 9475]]\n [\"Martin Mccullough\" \"martin51\" 40 \"Nigeria\" false [7554 8787 9356]]\n [\"Arden ",
"end": 7634,
"score": 0.9991257190704346,
"start": 7626,
"tag": "USERNAME",
"value": "martin51"
},
{
"context": "rtin51\" 40 \"Nigeria\" false [7554 8787 9356]]\n [\"Arden Wheeler\" \"arden72\" 29 \"Italy\" true [745 773 1443]]\n [\"A",
"end": 7691,
"score": 0.9998868703842163,
"start": 7678,
"tag": "NAME",
"value": "Arden Wheeler"
},
{
"context": "ria\" false [7554 8787 9356]]\n [\"Arden Wheeler\" \"arden72\" 29 \"Italy\" true [745 773 1443]]\n [\"Alexandra V",
"end": 7701,
"score": 0.8664078712463379,
"start": 7694,
"tag": "USERNAME",
"value": "arden72"
},
{
"context": "r\" \"arden72\" 29 \"Italy\" true [745 773 1443]]\n [\"Alexandra Vazquez\" \"alexandra30\" 55 \"United Kingdom\" false [5126 60",
"end": 7757,
"score": 0.9998998641967773,
"start": 7740,
"tag": "NAME",
"value": "Alexandra Vazquez"
},
{
"context": "ly\" true [745 773 1443]]\n [\"Alexandra Vazquez\" \"alexandra30\" 55 \"United Kingdom\" false [5126 6065 8152]]\n [",
"end": 7771,
"score": 0.9963374137878418,
"start": 7760,
"tag": "USERNAME",
"value": "alexandra30"
},
{
"context": " 55 \"United Kingdom\" false [5126 6065 8152]]\n [\"Dai Beach\" \"dai74\" 88 \"United Kingdom\" true [925 6624 7150]",
"end": 7831,
"score": 0.9933589100837708,
"start": 7822,
"tag": "NAME",
"value": "Dai Beach"
},
{
"context": "Kingdom\" false [5126 6065 8152]]\n [\"Dai Beach\" \"dai74\" 88 \"United Kingdom\" true [925 6624 7150]]\n [\"",
"end": 7838,
"score": 0.8835079669952393,
"start": 7834,
"tag": "USERNAME",
"value": "dai7"
},
{
"context": "4\" 88 \"United Kingdom\" true [925 6624 7150]]\n [\"Germane Snow\" \"germane78\" 53 \"Canada\" true [5085 5452 5649]]\n ",
"end": 7900,
"score": 0.9998759627342224,
"start": 7888,
"tag": "NAME",
"value": "Germane Snow"
},
{
"context": "ingdom\" true [925 6624 7150]]\n [\"Germane Snow\" \"germane78\" 53 \"Canada\" true [5085 5452 5649]]\n [\"Mohammad",
"end": 7912,
"score": 0.9991742968559265,
"start": 7903,
"tag": "USERNAME",
"value": "germane78"
},
{
"context": "ermane78\" 53 \"Canada\" true [5085 5452 5649]]\n [\"Mohammad Huber\" \"mohammad18\" 33 \"India\" false [333 2935 8873]]\n ",
"end": 7968,
"score": 0.99990314245224,
"start": 7954,
"tag": "NAME",
"value": "Mohammad Huber"
},
{
"context": "ada\" true [5085 5452 5649]]\n [\"Mohammad Huber\" \"mohammad18\" 33 \"India\" false [333 2935 8873]]\n [\"Colby Mcd",
"end": 7981,
"score": 0.9993325471878052,
"start": 7971,
"tag": "USERNAME",
"value": "mohammad18"
},
{
"context": "ohammad18\" 33 \"India\" false [333 2935 8873]]\n [\"Colby Mcdaniel\" \"colby84\" 25 \"Nigeria\" true [2657 9225 9248]]\n ",
"end": 8036,
"score": 0.9999015927314758,
"start": 8022,
"tag": "NAME",
"value": "Colby Mcdaniel"
},
{
"context": "dia\" false [333 2935 8873]]\n [\"Colby Mcdaniel\" \"colby84\" 25 \"Nigeria\" true [2657 9225 9248]]\n [\"Igor Co",
"end": 8046,
"score": 0.996465802192688,
"start": 8039,
"tag": "USERNAME",
"value": "colby84"
},
{
"context": "colby84\" 25 \"Nigeria\" true [2657 9225 9248]]\n [\"Igor Conley\" \"igor79\" 82 \"India\" false [3587 5376 9271]]\n [",
"end": 8100,
"score": 0.9998970031738281,
"start": 8089,
"tag": "NAME",
"value": "Igor Conley"
},
{
"context": "igeria\" true [2657 9225 9248]]\n [\"Igor Conley\" \"igor79\" 82 \"India\" false [3587 5376 9271]]\n [\"Aileen P",
"end": 8109,
"score": 0.9995267391204834,
"start": 8103,
"tag": "USERNAME",
"value": "igor79"
},
{
"context": " \"igor79\" 82 \"India\" false [3587 5376 9271]]\n [\"Aileen Pickett\" \"aileen56\" 61 \"United Kingdom\" false [3054 8025 ",
"end": 8165,
"score": 0.9998879432678223,
"start": 8151,
"tag": "NAME",
"value": "Aileen Pickett"
},
{
"context": "ia\" false [3587 5376 9271]]\n [\"Aileen Pickett\" \"aileen56\" 61 \"United Kingdom\" false [3054 8025 9611]]\n [",
"end": 8176,
"score": 0.9976654052734375,
"start": 8168,
"tag": "USERNAME",
"value": "aileen56"
},
{
"context": " 61 \"United Kingdom\" false [3054 8025 9611]]\n [\"Ivan Cooley\" \"ivan17\" 62 \"India\" false [1601 1762 5925]]\n [",
"end": 8238,
"score": 0.999895453453064,
"start": 8227,
"tag": "NAME",
"value": "Ivan Cooley"
},
{
"context": "ngdom\" false [3054 8025 9611]]\n [\"Ivan Cooley\" \"ivan17\" 62 \"India\" false [1601 1762 5925]]\n [\"Donovan ",
"end": 8247,
"score": 0.998964786529541,
"start": 8241,
"tag": "USERNAME",
"value": "ivan17"
},
{
"context": " \"ivan17\" 62 \"India\" false [1601 1762 5925]]\n [\"Donovan Avila\" \"donovan67\" 29 \"France\" true [5332 6667 8449]]\n ",
"end": 8302,
"score": 0.9998977184295654,
"start": 8289,
"tag": "NAME",
"value": "Donovan Avila"
},
{
"context": "dia\" false [1601 1762 5925]]\n [\"Donovan Avila\" \"donovan67\" 29 \"France\" true [5332 6667 8449]]\n [\"Bert Gal",
"end": 8314,
"score": 0.9991458654403687,
"start": 8305,
"tag": "USERNAME",
"value": "donovan67"
},
{
"context": "onovan67\" 29 \"France\" true [5332 6667 8449]]\n [\"Bert Galloway\" \"bert41\" 56 \"Italy\" true [1508 2603 7136]]\n [\"",
"end": 8369,
"score": 0.9998911023139954,
"start": 8356,
"tag": "NAME",
"value": "Bert Galloway"
},
{
"context": "ance\" true [5332 6667 8449]]\n [\"Bert Galloway\" \"bert41\" 56 \"Italy\" true [1508 2603 7136]]\n [\"Pascale E",
"end": 8378,
"score": 0.9995525479316711,
"start": 8372,
"tag": "USERNAME",
"value": "bert41"
},
{
"context": "\" \"bert41\" 56 \"Italy\" true [1508 2603 7136]]\n [\"Pascale Estes\" \"pascale15\" 59 \"USA\" true [7222 7449 8540]]\n [",
"end": 8432,
"score": 0.9998817443847656,
"start": 8419,
"tag": "NAME",
"value": "Pascale Estes"
},
{
"context": "taly\" true [1508 2603 7136]]\n [\"Pascale Estes\" \"pascale15\" 59 \"USA\" true [7222 7449 8540]]\n [\"Genevieve W",
"end": 8444,
"score": 0.9996764659881592,
"start": 8435,
"tag": "USERNAME",
"value": "pascale15"
},
{
"context": " \"pascale15\" 59 \"USA\" true [7222 7449 8540]]\n [\"Genevieve White\" \"genevieve47\" 29 \"Canada\" false [578 6578 7060]]",
"end": 8498,
"score": 0.999883770942688,
"start": 8483,
"tag": "NAME",
"value": "Genevieve White"
},
{
"context": "SA\" true [7222 7449 8540]]\n [\"Genevieve White\" \"genevieve47\" 29 \"Canada\" false [578 6578 7060]]\n [\"Daphne D",
"end": 8512,
"score": 0.9996898770332336,
"start": 8501,
"tag": "USERNAME",
"value": "genevieve47"
},
{
"context": "evieve47\" 29 \"Canada\" false [578 6578 7060]]\n [\"Daphne Dominguez\" \"daphne60\" 64 \"China\" false [5686 6343 8300]]\n ",
"end": 8570,
"score": 0.9998888969421387,
"start": 8554,
"tag": "NAME",
"value": "Daphne Dominguez"
},
{
"context": "a\" false [578 6578 7060]]\n [\"Daphne Dominguez\" \"daphne60\" 64 \"China\" false [5686 6343 8300]]\n [\"Kylan Sw",
"end": 8581,
"score": 0.999672532081604,
"start": 8573,
"tag": "USERNAME",
"value": "daphne60"
},
{
"context": "daphne60\" 64 \"China\" false [5686 6343 8300]]\n [\"Kylan Sweeney\" \"kylan45\" 24 \"India\" false [641 5918 9928]]\n [",
"end": 8636,
"score": 0.9998915791511536,
"start": 8623,
"tag": "NAME",
"value": "Kylan Sweeney"
},
{
"context": "ina\" false [5686 6343 8300]]\n [\"Kylan Sweeney\" \"kylan45\" 24 \"India\" false [641 5918 9928]]\n [\"Sarah Mer",
"end": 8646,
"score": 0.9996305108070374,
"start": 8639,
"tag": "USERNAME",
"value": "kylan45"
},
{
"context": " \"kylan45\" 24 \"India\" false [641 5918 9928]]\n [\"Sarah Merritt\" \"sarah50\" 68 \"China\" true [2673 6490 7009]]\n [",
"end": 8700,
"score": 0.9998897314071655,
"start": 8687,
"tag": "NAME",
"value": "Sarah Merritt"
},
{
"context": "ndia\" false [641 5918 9928]]\n [\"Sarah Merritt\" \"sarah50\" 68 \"China\" true [2673 6490 7009]]\n [\"Sharon So",
"end": 8710,
"score": 0.999655544757843,
"start": 8703,
"tag": "USERNAME",
"value": "sarah50"
},
{
"context": " \"sarah50\" 68 \"China\" true [2673 6490 7009]]\n [\"Sharon Solis\" \"sharon59\" 84 \"India\" false [745 5453 8052]]\n ",
"end": 8763,
"score": 0.9998872876167297,
"start": 8751,
"tag": "NAME",
"value": "Sharon Solis"
},
{
"context": "China\" true [2673 6490 7009]]\n [\"Sharon Solis\" \"sharon59\" 84 \"India\" false [745 5453 8052]]\n [\"Kevyn Ble",
"end": 8774,
"score": 0.9996914267539978,
"start": 8766,
"tag": "USERNAME",
"value": "sharon59"
},
{
"context": "\"sharon59\" 84 \"India\" false [745 5453 8052]]\n [\"Kevyn Blevins\" \"kevyn30\" 78 \"Russia\" false [3639 7353 8997]]\n ",
"end": 8828,
"score": 0.9998906254768372,
"start": 8815,
"tag": "NAME",
"value": "Kevyn Blevins"
},
{
"context": "ndia\" false [745 5453 8052]]\n [\"Kevyn Blevins\" \"kevyn30\" 78 \"Russia\" false [3639 7353 8997]]\n [\"Tobias ",
"end": 8838,
"score": 0.9996954202651978,
"start": 8831,
"tag": "USERNAME",
"value": "kevyn30"
},
{
"context": "kevyn30\" 78 \"Russia\" false [3639 7353 8997]]\n [\"Tobias Terry\" \"tobias36\" 74 \"France\" false [2166 7251 7973]]\n ",
"end": 8893,
"score": 0.9998859167098999,
"start": 8881,
"tag": "NAME",
"value": "Tobias Terry"
},
{
"context": "ssia\" false [3639 7353 8997]]\n [\"Tobias Terry\" \"tobias36\" 74 \"France\" false [2166 7251 7973]]\n [\"Victor ",
"end": 8904,
"score": 0.999694287776947,
"start": 8896,
"tag": "USERNAME",
"value": "tobias36"
},
{
"context": "obias36\" 74 \"France\" false [2166 7251 7973]]\n [\"Victor Mcdonald\" \"victor16\" 33 \"Nigeria\" false [5796 8390 9390]]\n",
"end": 8962,
"score": 0.9998869299888611,
"start": 8947,
"tag": "NAME",
"value": "Victor Mcdonald"
},
{
"context": "e\" false [2166 7251 7973]]\n [\"Victor Mcdonald\" \"victor16\" 33 \"Nigeria\" false [5796 8390 9390]]\n [\"George",
"end": 8973,
"score": 0.9997137784957886,
"start": 8965,
"tag": "USERNAME",
"value": "victor16"
},
{
"context": "ctor16\" 33 \"Nigeria\" false [5796 8390 9390]]\n [\"George Carroll\" \"george23\" 23 \"Italy\" false [679 4154 7011]]\n ",
"end": 9031,
"score": 0.999876856803894,
"start": 9017,
"tag": "NAME",
"value": "George Carroll"
},
{
"context": "ia\" false [5796 8390 9390]]\n [\"George Carroll\" \"george23\" 23 \"Italy\" false [679 4154 7011]]\n [\"Chanda Ri",
"end": 9042,
"score": 0.9997036457061768,
"start": 9034,
"tag": "USERNAME",
"value": "george23"
},
{
"context": "\"george23\" 23 \"Italy\" false [679 4154 7011]]\n [\"Chanda Riley\" \"chanda71\" 47 \"Nigeria\" true [1257 3643 8734]]\n ",
"end": 9095,
"score": 0.999890923500061,
"start": 9083,
"tag": "NAME",
"value": "Chanda Riley"
},
{
"context": "Italy\" false [679 4154 7011]]\n [\"Chanda Riley\" \"chanda71\" 47 \"Nigeria\" true [1257 3643 8734]]\n [\"Garth C",
"end": 9106,
"score": 0.999696671962738,
"start": 9098,
"tag": "USERNAME",
"value": "chanda71"
},
{
"context": "handa71\" 47 \"Nigeria\" true [1257 3643 8734]]\n [\"Garth Conrad\" \"garth51\" 36 \"Canada\" false [492 5037 6860]]\n ",
"end": 9161,
"score": 0.9998879432678223,
"start": 9149,
"tag": "NAME",
"value": "Garth Conrad"
},
{
"context": "geria\" true [1257 3643 8734]]\n [\"Garth Conrad\" \"garth51\" 36 \"Canada\" false [492 5037 6860]]\n [\"Joshua R",
"end": 9171,
"score": 0.9997013211250305,
"start": 9164,
"tag": "USERNAME",
"value": "garth51"
},
{
"context": "\"garth51\" 36 \"Canada\" false [492 5037 6860]]\n [\"Joshua Rollins\" \"joshua83\" 80 \"Russia\" true [4198 6548 9626]]\n ",
"end": 9227,
"score": 0.9998766779899597,
"start": 9213,
"tag": "NAME",
"value": "Joshua Rollins"
},
{
"context": "ada\" false [492 5037 6860]]\n [\"Joshua Rollins\" \"joshua83\" 80 \"Russia\" true [4198 6548 9626]]\n [\"Hedwig R",
"end": 9238,
"score": 0.999682605266571,
"start": 9230,
"tag": "USERNAME",
"value": "joshua83"
},
{
"context": "joshua83\" 80 \"Russia\" true [4198 6548 9626]]\n [\"Hedwig Richmond\" \"hedwig38\" 87 \"Nigeria\" true [2367 3676 7177]]\n ",
"end": 9295,
"score": 0.9998972415924072,
"start": 9280,
"tag": "NAME",
"value": "Hedwig Richmond"
},
{
"context": "ia\" true [4198 6548 9626]]\n [\"Hedwig Richmond\" \"hedwig38\" 87 \"Nigeria\" true [2367 3676 7177]]\n [\"Rosalyn",
"end": 9306,
"score": 0.9995704889297485,
"start": 9298,
"tag": "USERNAME",
"value": "hedwig38"
},
{
"context": "edwig38\" 87 \"Nigeria\" true [2367 3676 7177]]\n [\"Rosalyn Kerr\" \"rosalyn15\" 14 \"India\" false [2661 3869 6289]]\n ",
"end": 9361,
"score": 0.9998974800109863,
"start": 9349,
"tag": "NAME",
"value": "Rosalyn Kerr"
},
{
"context": "geria\" true [2367 3676 7177]]\n [\"Rosalyn Kerr\" \"rosalyn15\" 14 \"India\" false [2661 3869 6289]]\n [\"Basil Ma",
"end": 9373,
"score": 0.9996460676193237,
"start": 9364,
"tag": "USERNAME",
"value": "rosalyn15"
},
{
"context": "osalyn15\" 14 \"India\" false [2661 3869 6289]]\n [\"Basil Maldonado\" \"basil66\" 71 \"Nigeria\" true [1487 9074 9552]]\n ",
"end": 9430,
"score": 0.9998964071273804,
"start": 9415,
"tag": "NAME",
"value": "Basil Maldonado"
},
{
"context": "a\" false [2661 3869 6289]]\n [\"Basil Maldonado\" \"basil66\" 71 \"Nigeria\" true [1487 9074 9552]]\n [\"Quinn H",
"end": 9440,
"score": 0.9995879530906677,
"start": 9433,
"tag": "USERNAME",
"value": "basil66"
},
{
"context": "basil66\" 71 \"Nigeria\" true [1487 9074 9552]]\n [\"Quinn Hooper\" \"quinn58\" 25 \"France\" true [8120 8491 8745]]\n ",
"end": 9495,
"score": 0.9998940229415894,
"start": 9483,
"tag": "NAME",
"value": "Quinn Hooper"
},
{
"context": "geria\" true [1487 9074 9552]]\n [\"Quinn Hooper\" \"quinn58\" 25 \"France\" true [8120 8491 8745]]\n [\"Kasper A",
"end": 9505,
"score": 0.9996061325073242,
"start": 9498,
"tag": "USERNAME",
"value": "quinn58"
},
{
"context": "\"quinn58\" 25 \"France\" true [8120 8491 8745]]\n [\"Kasper Allen\" \"kasper13\" 77 \"Canada\" true [116 1548 2699]]\n ",
"end": 9559,
"score": 0.9998990297317505,
"start": 9547,
"tag": "NAME",
"value": "Kasper Allen"
},
{
"context": "rance\" true [8120 8491 8745]]\n [\"Kasper Allen\" \"kasper13\" 77 \"Canada\" true [116 1548 2699]]\n [\"Morgan Bl",
"end": 9570,
"score": 0.9995591044425964,
"start": 9562,
"tag": "USERNAME",
"value": "kasper13"
},
{
"context": "\"kasper13\" 77 \"Canada\" true [116 1548 2699]]\n [\"Morgan Blevins\" \"morgan62\" 40 \"France\" false [3345 8729 8906]]\n ",
"end": 9625,
"score": 0.9998961687088013,
"start": 9611,
"tag": "NAME",
"value": "Morgan Blevins"
},
{
"context": "nada\" true [116 1548 2699]]\n [\"Morgan Blevins\" \"morgan62\" 40 \"France\" false [3345 8729 8906]]\n [\"Tatiana",
"end": 9636,
"score": 0.9996738433837891,
"start": 9628,
"tag": "USERNAME",
"value": "morgan62"
},
{
"context": "organ62\" 40 \"France\" false [3345 8729 8906]]\n [\"Tatiana Lancaster\" \"tatiana74\" 78 \"United Kingdom\" true [3816 3974 ",
"end": 9696,
"score": 0.9998959898948669,
"start": 9679,
"tag": "NAME",
"value": "Tatiana Lancaster"
},
{
"context": " false [3345 8729 8906]]\n [\"Tatiana Lancaster\" \"tatiana74\" 78 \"United Kingdom\" true [3816 3974 5444]]\n [\"",
"end": 9708,
"score": 0.9992632269859314,
"start": 9699,
"tag": "USERNAME",
"value": "tatiana74"
},
{
"context": "\" 78 \"United Kingdom\" true [3816 3974 5444]]\n [\"Nevada Ramsey\" \"nevada43\" 29 \"China\" false [350 426 5559]]\n [",
"end": 9771,
"score": 0.999893069267273,
"start": 9758,
"tag": "NAME",
"value": "Nevada Ramsey"
},
{
"context": "gdom\" true [3816 3974 5444]]\n [\"Nevada Ramsey\" \"nevada43\" 29 \"China\" false [350 426 5559]]\n [\"Haley Dona",
"end": 9782,
"score": 0.9995584487915039,
"start": 9774,
"tag": "USERNAME",
"value": "nevada43"
},
{
"context": " \"nevada43\" 29 \"China\" false [350 426 5559]]\n [\"Haley Donaldson\" \"haley61\" 23 \"China\" false [701 4716 6370]]\n [",
"end": 9837,
"score": 0.9999001622200012,
"start": 9822,
"tag": "NAME",
"value": "Haley Donaldson"
},
{
"context": "ina\" false [350 426 5559]]\n [\"Haley Donaldson\" \"haley61\" 23 \"China\" false [701 4716 6370]]\n [\"Samantha ",
"end": 9847,
"score": 0.9996188282966614,
"start": 9840,
"tag": "USERNAME",
"value": "haley61"
},
{
"context": " \"haley61\" 23 \"China\" false [701 4716 6370]]\n [\"Samantha Figueroa\" \"samantha45\" 56 \"Russia\" false [1282 4123 6062]]",
"end": 9905,
"score": 0.9998981356620789,
"start": 9888,
"tag": "NAME",
"value": "Samantha Figueroa"
},
{
"context": "\" false [701 4716 6370]]\n [\"Samantha Figueroa\" \"samantha45\" 56 \"Russia\" false [1282 4123 6062]]\n [\"Cadman ",
"end": 9918,
"score": 0.9996170997619629,
"start": 9908,
"tag": "USERNAME",
"value": "samantha45"
},
{
"context": "antha45\" 56 \"Russia\" false [1282 4123 6062]]\n [\"Cadman Richard\" \"cadman15\" 33 \"Germany\" false [898 3003 6029]]\n ",
"end": 9975,
"score": 0.9998940825462341,
"start": 9961,
"tag": "NAME",
"value": "Cadman Richard"
},
{
"context": "ia\" false [1282 4123 6062]]\n [\"Cadman Richard\" \"cadman15\" 33 \"Germany\" false [898 3003 6029]]\n [\"Stone K",
"end": 9986,
"score": 0.9996662139892578,
"start": 9978,
"tag": "USERNAME",
"value": "cadman15"
},
{
"context": "adman15\" 33 \"Germany\" false [898 3003 6029]]\n [\"Stone Keller\" \"stone10\" 39 \"Canada\" true [1138 7584 9050]]\n ",
"end": 10041,
"score": 0.9998670220375061,
"start": 10029,
"tag": "NAME",
"value": "Stone Keller"
},
{
"context": "rmany\" false [898 3003 6029]]\n [\"Stone Keller\" \"stone10\" 39 \"Canada\" true [1138 7584 9050]]\n [\"Troy Bea",
"end": 10051,
"score": 0.9994309544563293,
"start": 10044,
"tag": "USERNAME",
"value": "stone10"
},
{
"context": "\"stone10\" 39 \"Canada\" true [1138 7584 9050]]\n [\"Troy Beasley\" \"troy60\" 44 \"Nigeria\" false [859 6161 7311]]\n ",
"end": 10105,
"score": 0.9998943209648132,
"start": 10093,
"tag": "NAME",
"value": "Troy Beasley"
},
{
"context": "anada\" true [1138 7584 9050]]\n [\"Troy Beasley\" \"troy60\" 44 \"Nigeria\" false [859 6161 7311]]\n [\"Desirae",
"end": 10114,
"score": 0.9996822476387024,
"start": 10108,
"tag": "USERNAME",
"value": "troy60"
},
{
"context": "\"troy60\" 44 \"Nigeria\" false [859 6161 7311]]\n [\"Desirae Duncan\" \"desirae41\" 18 \"USA\" true [1515 8155 8663]]\n [",
"end": 10171,
"score": 0.9998974204063416,
"start": 10157,
"tag": "NAME",
"value": "Desirae Duncan"
},
{
"context": "ria\" false [859 6161 7311]]\n [\"Desirae Duncan\" \"desirae41\" 18 \"USA\" true [1515 8155 8663]]\n [\"Deanna Reid",
"end": 10183,
"score": 0.9992613792419434,
"start": 10174,
"tag": "USERNAME",
"value": "desirae41"
},
{
"context": " \"desirae41\" 18 \"USA\" true [1515 8155 8663]]\n [\"Deanna Reid\" \"deanna86\" 18 \"Germany\" false [122 1170 4701]]\n ",
"end": 10233,
"score": 0.9998829960823059,
"start": 10222,
"tag": "NAME",
"value": "Deanna Reid"
},
{
"context": "8 \"USA\" true [1515 8155 8663]]\n [\"Deanna Reid\" \"deanna86\" 18 \"Germany\" false [122 1170 4701]]\n [\"Amena M",
"end": 10244,
"score": 0.9995140433311462,
"start": 10236,
"tag": "USERNAME",
"value": "deanna86"
},
{
"context": "eanna86\" 18 \"Germany\" false [122 1170 4701]]\n [\"Amena Morrow\" \"amena85\" 45 \"France\" true [2483 4360 6297]]\n ",
"end": 10299,
"score": 0.9998716115951538,
"start": 10287,
"tag": "NAME",
"value": "Amena Morrow"
},
{
"context": "rmany\" false [122 1170 4701]]\n [\"Amena Morrow\" \"amena85\" 45 \"France\" true [2483 4360 6297]]\n [\"Keefe So",
"end": 10309,
"score": 0.9985215067863464,
"start": 10302,
"tag": "USERNAME",
"value": "amena85"
},
{
"context": "\"amena85\" 45 \"France\" true [2483 4360 6297]]\n [\"Keefe Sosa\" \"keefe87\" 79 \"Nigeria\" true [317 885 7701]]\n [",
"end": 10361,
"score": 0.9998829960823059,
"start": 10351,
"tag": "NAME",
"value": "Keefe Sosa"
},
{
"context": "\"France\" true [2483 4360 6297]]\n [\"Keefe Sosa\" \"keefe87\" 79 \"Nigeria\" true [317 885 7701]]\n [\"Cailin Me",
"end": 10371,
"score": 0.998884379863739,
"start": 10364,
"tag": "USERNAME",
"value": "keefe87"
},
{
"context": " \"keefe87\" 79 \"Nigeria\" true [317 885 7701]]\n [\"Cailin Mercer\" \"cailin19\" 44 \"Italy\" true [1669 3988 6901]]\n ",
"end": 10425,
"score": 0.9998939633369446,
"start": 10412,
"tag": "NAME",
"value": "Cailin Mercer"
},
{
"context": "igeria\" true [317 885 7701]]\n [\"Cailin Mercer\" \"cailin19\" 44 \"Italy\" true [1669 3988 6901]]\n [\"Ian Valde",
"end": 10436,
"score": 0.9988868832588196,
"start": 10428,
"tag": "USERNAME",
"value": "cailin19"
},
{
"context": "\"cailin19\" 44 \"Italy\" true [1669 3988 6901]]\n [\"Ian Valdez\" \"ian38\" 71 \"France\" false [961 2456 3947]]\n [\"",
"end": 10487,
"score": 0.9998890161514282,
"start": 10477,
"tag": "NAME",
"value": "Ian Valdez"
},
{
"context": " \"Italy\" true [1669 3988 6901]]\n [\"Ian Valdez\" \"ian38\" 71 \"France\" false [961 2456 3947]]\n [\"Aphrodit",
"end": 10495,
"score": 0.9990341067314148,
"start": 10490,
"tag": "USERNAME",
"value": "ian38"
},
{
"context": "\" \"ian38\" 71 \"France\" false [961 2456 3947]]\n [\"Aphrodite Walls\" \"aphrodite65\" 89 \"Russia\" false [1121 7222 7970]",
"end": 10552,
"score": 0.999828577041626,
"start": 10537,
"tag": "NAME",
"value": "Aphrodite Walls"
},
{
"context": "ce\" false [961 2456 3947]]\n [\"Aphrodite Walls\" \"aphrodite65\" 89 \"Russia\" false [1121 7222 7970]]\n [\"Uriel P",
"end": 10566,
"score": 0.9969877004623413,
"start": 10555,
"tag": "USERNAME",
"value": "aphrodite65"
},
{
"context": "odite65\" 89 \"Russia\" false [1121 7222 7970]]\n [\"Uriel Pruitt\" \"uriel18\" 16 \"Italy\" false [956 7183 9466]]\n [",
"end": 10621,
"score": 0.999893069267273,
"start": 10609,
"tag": "NAME",
"value": "Uriel Pruitt"
},
{
"context": "ssia\" false [1121 7222 7970]]\n [\"Uriel Pruitt\" \"uriel18\" 16 \"Italy\" false [956 7183 9466]]\n [\"Aileen Sc",
"end": 10631,
"score": 0.999345064163208,
"start": 10624,
"tag": "USERNAME",
"value": "uriel18"
},
{
"context": " \"uriel18\" 16 \"Italy\" false [956 7183 9466]]\n [\"Aileen Schneider\" \"aileen31\" 53 \"Italy\" false [309 5598 8987]]\n ",
"end": 10688,
"score": 0.9998865723609924,
"start": 10672,
"tag": "NAME",
"value": "Aileen Schneider"
},
{
"context": "y\" false [956 7183 9466]]\n [\"Aileen Schneider\" \"aileen31\" 53 \"Italy\" false [309 5598 8987]]\n [\"Denise Pe",
"end": 10699,
"score": 0.9993996620178223,
"start": 10691,
"tag": "USERNAME",
"value": "aileen31"
},
{
"context": "\"aileen31\" 53 \"Italy\" false [309 5598 8987]]\n [\"Denise Perkins\" \"denise49\" 38 \"France\" false [839 4988 6751]]\n ",
"end": 10754,
"score": 0.9998947381973267,
"start": 10740,
"tag": "NAME",
"value": "Denise Perkins"
},
{
"context": "aly\" false [309 5598 8987]]\n [\"Denise Perkins\" \"denise49\" 38 \"France\" false [839 4988 6751]]\n [\"Lance Mo",
"end": 10765,
"score": 0.9994713664054871,
"start": 10757,
"tag": "USERNAME",
"value": "denise49"
},
{
"context": "denise49\" 38 \"France\" false [839 4988 6751]]\n [\"Lance Monroe\" \"lance38\" 47 \"India\" true [3760 5862 9333]]\n [",
"end": 10819,
"score": 0.9998840093612671,
"start": 10807,
"tag": "NAME",
"value": "Lance Monroe"
},
{
"context": "rance\" false [839 4988 6751]]\n [\"Lance Monroe\" \"lance38\" 47 \"India\" true [3760 5862 9333]]\n [\"Wynter Ha",
"end": 10829,
"score": 0.9994383454322815,
"start": 10822,
"tag": "USERNAME",
"value": "lance38"
},
{
"context": " \"lance38\" 47 \"India\" true [3760 5862 9333]]\n [\"Wynter Hayes\" \"wynter10\" 86 \"Italy\" false [4801 4885 6248]]\n ",
"end": 10882,
"score": 0.9998943209648132,
"start": 10870,
"tag": "NAME",
"value": "Wynter Hayes"
},
{
"context": "India\" true [3760 5862 9333]]\n [\"Wynter Hayes\" \"wynter10\" 86 \"Italy\" false [4801 4885 6248]]\n [\"Ulric Br",
"end": 10893,
"score": 0.9993472099304199,
"start": 10885,
"tag": "USERNAME",
"value": "wynter10"
},
{
"context": "wynter10\" 86 \"Italy\" false [4801 4885 6248]]\n [\"Ulric Brooks\" \"ulric81\" 29 \"Canada\" false [1050 3329 6147]]\n ",
"end": 10947,
"score": 0.9998906850814819,
"start": 10935,
"tag": "NAME",
"value": "Ulric Brooks"
},
{
"context": "taly\" false [4801 4885 6248]]\n [\"Ulric Brooks\" \"ulric81\" 29 \"Canada\" false [1050 3329 6147]]\n [\"Carolyn",
"end": 10957,
"score": 0.9994183778762817,
"start": 10950,
"tag": "USERNAME",
"value": "ulric81"
},
{
"context": "ulric81\" 29 \"Canada\" false [1050 3329 6147]]\n [\"Carolyn Rosario\" \"carolyn15\" 45 \"United Kingdom\" true [3434 5257 ",
"end": 11015,
"score": 0.9998933672904968,
"start": 11000,
"tag": "NAME",
"value": "Carolyn Rosario"
},
{
"context": "a\" false [1050 3329 6147]]\n [\"Carolyn Rosario\" \"carolyn15\" 45 \"United Kingdom\" true [3434 5257 8324]]\n [",
"end": 11026,
"score": 0.9992081522941589,
"start": 11018,
"tag": "USERNAME",
"value": "carolyn1"
},
{
"context": " [1050 3329 6147]]\n [\"Carolyn Rosario\" \"carolyn15\" 45 \"United Kingdom\" true [3434 5257 8324]]\n [\"",
"end": 11027,
"score": 0.9801129698753357,
"start": 11026,
"tag": "NAME",
"value": "5"
},
{
"context": "\" 45 \"United Kingdom\" true [3434 5257 8324]]\n [\"Lewis Blevins\" \"lewis81\" 40 \"India\" false [5414 8879 9349]]\n ",
"end": 11090,
"score": 0.9998881220817566,
"start": 11077,
"tag": "NAME",
"value": "Lewis Blevins"
},
{
"context": "gdom\" true [3434 5257 8324]]\n [\"Lewis Blevins\" \"lewis81\" 40 \"India\" false [5414 8879 9349]]\n [\"Sharon S",
"end": 11100,
"score": 0.999483585357666,
"start": 11093,
"tag": "USERNAME",
"value": "lewis81"
},
{
"context": "\"lewis81\" 40 \"India\" false [5414 8879 9349]]\n [\"Sharon Snyder\" \"sharon52\" 59 \"Russia\" false [4077 8404 9380]]\n ",
"end": 11155,
"score": 0.9998858571052551,
"start": 11142,
"tag": "NAME",
"value": "Sharon Snyder"
},
{
"context": "dia\" false [5414 8879 9349]]\n [\"Sharon Snyder\" \"sharon52\" 59 \"Russia\" false [4077 8404 9380]]\n [\"Gail Br",
"end": 11166,
"score": 0.9995211958885193,
"start": 11158,
"tag": "USERNAME",
"value": "sharon52"
},
{
"context": "haron52\" 59 \"Russia\" false [4077 8404 9380]]\n [\"Gail Bridges\" \"gail55\" 29 \"China\" true [5259 7332 7389]]\n [\"",
"end": 11221,
"score": 0.9998576045036316,
"start": 11209,
"tag": "NAME",
"value": "Gail Bridges"
},
{
"context": "ssia\" false [4077 8404 9380]]\n [\"Gail Bridges\" \"gail55\" 29 \"China\" true [5259 7332 7389]]\n [\"MacKensie",
"end": 11230,
"score": 0.999009907245636,
"start": 11224,
"tag": "USERNAME",
"value": "gail55"
},
{
"context": "\" \"gail55\" 29 \"China\" true [5259 7332 7389]]\n [\"MacKensie Haney\" \"mackensie25\" 19 \"China\" true [1969 4833 9342]]\n",
"end": 11286,
"score": 0.9998683929443359,
"start": 11271,
"tag": "NAME",
"value": "MacKensie Haney"
},
{
"context": "na\" true [5259 7332 7389]]\n [\"MacKensie Haney\" \"mackensie25\" 19 \"China\" true [1969 4833 9342]]\n [\"Pearl Car",
"end": 11300,
"score": 0.9994279742240906,
"start": 11289,
"tag": "USERNAME",
"value": "mackensie25"
},
{
"context": "ckensie25\" 19 \"China\" true [1969 4833 9342]]\n [\"Pearl Carlson\" \"pearl25\" 67 \"United Kingdom\" false [3050 4646 7",
"end": 11354,
"score": 0.999891996383667,
"start": 11341,
"tag": "NAME",
"value": "Pearl Carlson"
},
{
"context": "hina\" true [1969 4833 9342]]\n [\"Pearl Carlson\" \"pearl25\" 67 \"United Kingdom\" false [3050 4646 7948]]\n [",
"end": 11364,
"score": 0.9990746974945068,
"start": 11357,
"tag": "USERNAME",
"value": "pearl25"
},
{
"context": " 67 \"United Kingdom\" false [3050 4646 7948]]\n [\"Dara Talley\" \"dara11\" 66 \"India\" true [2425 3597 7538]]\n [\"",
"end": 11426,
"score": 0.9998924732208252,
"start": 11415,
"tag": "NAME",
"value": "Dara Talley"
},
{
"context": "ngdom\" false [3050 4646 7948]]\n [\"Dara Talley\" \"dara11\" 66 \"India\" true [2425 3597 7538]]\n [\"Quamar Na",
"end": 11435,
"score": 0.9993855953216553,
"start": 11429,
"tag": "USERNAME",
"value": "dara11"
},
{
"context": "\" \"dara11\" 66 \"India\" true [2425 3597 7538]]\n [\"Quamar Nash\" \"quamar51\" 87 \"USA\" false [2550 4315 8374]]\n [",
"end": 11487,
"score": 0.999895453453064,
"start": 11476,
"tag": "NAME",
"value": "Quamar Nash"
},
{
"context": "\"India\" true [2425 3597 7538]]\n [\"Quamar Nash\" \"quamar51\" 87 \"USA\" false [2550 4315 8374]]\n [\"Riley Schn",
"end": 11498,
"score": 0.999412477016449,
"start": 11490,
"tag": "USERNAME",
"value": "quamar51"
},
{
"context": " \"quamar51\" 87 \"USA\" false [2550 4315 8374]]\n [\"Riley Schneider\" \"riley59\" 69 \"Germany\" true [2217 2790 7977]]\n ",
"end": 11553,
"score": 0.9998819231987,
"start": 11538,
"tag": "NAME",
"value": "Riley Schneider"
},
{
"context": "A\" false [2550 4315 8374]]\n [\"Riley Schneider\" \"riley59\" 69 \"Germany\" true [2217 2790 7977]]\n [\"Libby P",
"end": 11563,
"score": 0.9995297193527222,
"start": 11556,
"tag": "USERNAME",
"value": "riley59"
},
{
"context": "riley59\" 69 \"Germany\" true [2217 2790 7977]]\n [\"Libby Pittman\" \"libby49\" 19 \"USA\" false [5697 6146 7882]]\n [\"",
"end": 11619,
"score": 0.9998906254768372,
"start": 11606,
"tag": "NAME",
"value": "Libby Pittman"
},
{
"context": "many\" true [2217 2790 7977]]\n [\"Libby Pittman\" \"libby49\" 19 \"USA\" false [5697 6146 7882]]\n [\"Lacota Mej",
"end": 11629,
"score": 0.9993041157722473,
"start": 11622,
"tag": "USERNAME",
"value": "libby49"
},
{
"context": "\" \"libby49\" 19 \"USA\" false [5697 6146 7882]]\n [\"Lacota Mejia\" \"lacota30\" 56 \"Germany\" false [443 3813 4952]]\n ",
"end": 11681,
"score": 0.9998834729194641,
"start": 11669,
"tag": "NAME",
"value": "Lacota Mejia"
},
{
"context": "\"USA\" false [5697 6146 7882]]\n [\"Lacota Mejia\" \"lacota30\" 56 \"Germany\" false [443 3813 4952]]\n [\"Kirby S",
"end": 11692,
"score": 0.9989380836486816,
"start": 11684,
"tag": "USERNAME",
"value": "lacota30"
},
{
"context": "acota30\" 56 \"Germany\" false [443 3813 4952]]\n [\"Kirby Schroeder\" \"kirby51\" 32 \"Nigeria\" true [1657 4018 4264]]\n ",
"end": 11750,
"score": 0.9998882412910461,
"start": 11735,
"tag": "NAME",
"value": "Kirby Schroeder"
},
{
"context": "ny\" false [443 3813 4952]]\n [\"Kirby Schroeder\" \"kirby51\" 32 \"Nigeria\" true [1657 4018 4264]]\n [\"Freya B",
"end": 11760,
"score": 0.9995673298835754,
"start": 11753,
"tag": "USERNAME",
"value": "kirby51"
},
{
"context": "kirby51\" 32 \"Nigeria\" true [1657 4018 4264]]\n [\"Freya Burt\" \"freya55\" 66 \"China\" true [2832 3741 9379]]\n [",
"end": 11813,
"score": 0.9998830556869507,
"start": 11803,
"tag": "NAME",
"value": "Freya Burt"
},
{
"context": "Nigeria\" true [1657 4018 4264]]\n [\"Freya Burt\" \"freya55\" 66 \"China\" true [2832 3741 9379]]\n [\"Jaime Flo",
"end": 11823,
"score": 0.9994869232177734,
"start": 11816,
"tag": "USERNAME",
"value": "freya55"
},
{
"context": " \"freya55\" 66 \"China\" true [2832 3741 9379]]\n [\"Jaime Flowers\" \"jaime68\" 39 \"Italy\" true [1871 2066 8222]]\n [",
"end": 11877,
"score": 0.9998918771743774,
"start": 11864,
"tag": "NAME",
"value": "Jaime Flowers"
},
{
"context": "hina\" true [2832 3741 9379]]\n [\"Jaime Flowers\" \"jaime68\" 39 \"Italy\" true [1871 2066 8222]]\n [\"Kato Hale",
"end": 11887,
"score": 0.9994950294494629,
"start": 11880,
"tag": "USERNAME",
"value": "jaime68"
},
{
"context": " \"jaime68\" 39 \"Italy\" true [1871 2066 8222]]\n [\"Kato Hale\" \"kato44\" 86 \"United Kingdom\" false [401 624 4884",
"end": 11937,
"score": 0.9998981952667236,
"start": 11928,
"tag": "NAME",
"value": "Kato Hale"
},
{
"context": "9 \"Italy\" true [1871 2066 8222]]\n [\"Kato Hale\" \"kato44\" 86 \"United Kingdom\" false [401 624 4884]]\n [\"H",
"end": 11946,
"score": 0.9994305968284607,
"start": 11940,
"tag": "USERNAME",
"value": "kato44"
},
{
"context": "4\" 86 \"United Kingdom\" false [401 624 4884]]\n [\"Herrod Orr\" \"herrod72\" 73 \"Canada\" false [2046 5744 9873]]\n ",
"end": 12005,
"score": 0.9998934268951416,
"start": 11995,
"tag": "NAME",
"value": "Herrod Orr"
},
{
"context": " Kingdom\" false [401 624 4884]]\n [\"Herrod Orr\" \"herrod72\" 73 \"Canada\" false [2046 5744 9873]]\n [\"Cassady",
"end": 12016,
"score": 0.999573826789856,
"start": 12008,
"tag": "USERNAME",
"value": "herrod72"
},
{
"context": "errod72\" 73 \"Canada\" false [2046 5744 9873]]\n [\"Cassady Young\" \"cassady11\" 14 \"Canada\" true [4290 4754 7879]]\n ",
"end": 12072,
"score": 0.9998984336853027,
"start": 12059,
"tag": "NAME",
"value": "Cassady Young"
},
{
"context": "ada\" false [2046 5744 9873]]\n [\"Cassady Young\" \"cassady11\" 14 \"Canada\" true [4290 4754 7879]]\n [\"Quinlan ",
"end": 12084,
"score": 0.999530017375946,
"start": 12075,
"tag": "USERNAME",
"value": "cassady11"
},
{
"context": "assady11\" 14 \"Canada\" true [4290 4754 7879]]\n [\"Quinlan Arnold\" \"quinlan29\" 60 \"France\" true [1829 3237 7099]]\n ",
"end": 12140,
"score": 0.9999013543128967,
"start": 12126,
"tag": "NAME",
"value": "Quinlan Arnold"
},
{
"context": "ada\" true [4290 4754 7879]]\n [\"Quinlan Arnold\" \"quinlan29\" 60 \"France\" true [1829 3237 7099]]\n [\"Shelly B",
"end": 12152,
"score": 0.9995028376579285,
"start": 12143,
"tag": "USERNAME",
"value": "quinlan29"
},
{
"context": "uinlan29\" 60 \"France\" true [1829 3237 7099]]\n [\"Shelly Brooks\" \"shelly66\" 44 \"Canada\" false [1300 2016 2765]]\n ",
"end": 12207,
"score": 0.9998992085456848,
"start": 12194,
"tag": "NAME",
"value": "Shelly Brooks"
},
{
"context": "ance\" true [1829 3237 7099]]\n [\"Shelly Brooks\" \"shelly66\" 44 \"Canada\" false [1300 2016 2765]]\n [\"Brenden",
"end": 12218,
"score": 0.9994303584098816,
"start": 12210,
"tag": "USERNAME",
"value": "shelly66"
},
{
"context": "helly66\" 44 \"Canada\" false [1300 2016 2765]]\n [\"Brenden Jarvis\" \"brenden56\" 27 \"China\" true [5346 8309 9272]]\n ",
"end": 12275,
"score": 0.9999019503593445,
"start": 12261,
"tag": "NAME",
"value": "Brenden Jarvis"
},
{
"context": "da\" false [1300 2016 2765]]\n [\"Brenden Jarvis\" \"brenden56\" 27 \"China\" true [5346 8309 9272]]\n [\"Joel Stan",
"end": 12287,
"score": 0.9996011853218079,
"start": 12278,
"tag": "USERNAME",
"value": "brenden56"
},
{
"context": "brenden56\" 27 \"China\" true [5346 8309 9272]]\n [\"Joel Stanley\" \"joel57\" 14 \"United Kingdom\" false [4817 4958 60",
"end": 12340,
"score": 0.9998998641967773,
"start": 12328,
"tag": "NAME",
"value": "Joel Stanley"
},
{
"context": "China\" true [5346 8309 9272]]\n [\"Joel Stanley\" \"joel57\" 14 \"United Kingdom\" false [4817 4958 6061]]\n [",
"end": 12349,
"score": 0.9995366930961609,
"start": 12343,
"tag": "USERNAME",
"value": "joel57"
},
{
"context": " 14 \"United Kingdom\" false [4817 4958 6061]]\n [\"MacKensie Pitts\" \"mackensie35\" 10 \"Russia\" true [825 4567 6062]]\n",
"end": 12415,
"score": 0.9998987317085266,
"start": 12400,
"tag": "NAME",
"value": "MacKensie Pitts"
},
{
"context": "m\" false [4817 4958 6061]]\n [\"MacKensie Pitts\" \"mackensie35\" 10 \"Russia\" true [825 4567 6062]]\n [\"Portia Ha",
"end": 12429,
"score": 0.99958735704422,
"start": 12418,
"tag": "USERNAME",
"value": "mackensie35"
},
{
"context": "ckensie35\" 10 \"Russia\" true [825 4567 6062]]\n [\"Portia Hampton\" \"portia62\" 46 \"USA\" false [3754 5307 9800]]\n [",
"end": 12484,
"score": 0.9998973608016968,
"start": 12470,
"tag": "NAME",
"value": "Portia Hampton"
},
{
"context": "ssia\" true [825 4567 6062]]\n [\"Portia Hampton\" \"portia62\" 46 \"USA\" false [3754 5307 9800]]\n [\"Hayden Mar",
"end": 12495,
"score": 0.9752572178840637,
"start": 12487,
"tag": "USERNAME",
"value": "portia62"
},
{
"context": " \"portia62\" 46 \"USA\" false [3754 5307 9800]]\n [\"Hayden Marsh\" \"hayden82\" 29 \"Germany\" false [2960 5850 6305]]\n",
"end": 12547,
"score": 0.9998968839645386,
"start": 12535,
"tag": "NAME",
"value": "Hayden Marsh"
},
{
"context": "\"USA\" false [3754 5307 9800]]\n [\"Hayden Marsh\" \"hayden82\" 29 \"Germany\" false [2960 5850 6305]]\n [\"Clarke",
"end": 12558,
"score": 0.9994542598724365,
"start": 12550,
"tag": "USERNAME",
"value": "hayden82"
},
{
"context": "yden82\" 29 \"Germany\" false [2960 5850 6305]]\n [\"Clarke Wood\" \"clarke71\" 58 \"Russia\" false [434 7754 9372]]\n ",
"end": 12613,
"score": 0.9998987317085266,
"start": 12602,
"tag": "NAME",
"value": "Clarke Wood"
},
{
"context": "rmany\" false [2960 5850 6305]]\n [\"Clarke Wood\" \"clarke71\" 58 \"Russia\" false [434 7754 9372]]\n [\"Elmo Rig",
"end": 12624,
"score": 0.9995824694633484,
"start": 12616,
"tag": "USERNAME",
"value": "clarke71"
},
{
"context": "clarke71\" 58 \"Russia\" false [434 7754 9372]]\n [\"Elmo Riggs\" \"elmo27\" 77 \"China\" false [7695 8460 9086]]\n [",
"end": 12676,
"score": 0.9998944997787476,
"start": 12666,
"tag": "NAME",
"value": "Elmo Riggs"
},
{
"context": "\"Russia\" false [434 7754 9372]]\n [\"Elmo Riggs\" \"elmo27\" 77 \"China\" false [7695 8460 9086]]\n [\"Lila Sim",
"end": 12685,
"score": 0.9972402453422546,
"start": 12679,
"tag": "USERNAME",
"value": "elmo27"
},
{
"context": " \"elmo27\" 77 \"China\" false [7695 8460 9086]]\n [\"Lila Simmons\" \"lila34\" 19 \"USA\" true [572 2546 7939]]\n [\"Lev",
"end": 12739,
"score": 0.9998995661735535,
"start": 12727,
"tag": "NAME",
"value": "Lila Simmons"
},
{
"context": "hina\" false [7695 8460 9086]]\n [\"Lila Simmons\" \"lila34\" 19 \"USA\" true [572 2546 7939]]\n [\"Levi Vinson\"",
"end": 12748,
"score": 0.9993475675582886,
"start": 12742,
"tag": "USERNAME",
"value": "lila34"
},
{
"context": "ons\" \"lila34\" 19 \"USA\" true [572 2546 7939]]\n [\"Levi Vinson\" \"levi81\" 43 \"Italy\" false [1359 2396 3181]]\n [",
"end": 12797,
"score": 0.9998937845230103,
"start": 12786,
"tag": "NAME",
"value": "Levi Vinson"
},
{
"context": "USA\" true [572 2546 7939]]\n [\"Levi Vinson\" \"levi81\" 43 \"Italy\" false [1359 2396 3181]]\n [\"Xavier ",
"end": 12805,
"score": 0.60657799243927,
"start": 12804,
"tag": "USERNAME",
"value": "8"
},
{
"context": " \"levi81\" 43 \"Italy\" false [1359 2396 3181]]\n [\"Xavier Baxter\" \"xavier75\" 69 \"Italy\" false [2064 6948 9803]]\n ",
"end": 12861,
"score": 0.9999000430107117,
"start": 12848,
"tag": "NAME",
"value": "Xavier Baxter"
},
{
"context": "aly\" false [1359 2396 3181]]\n [\"Xavier Baxter\" \"xavier75\" 69 \"Italy\" false [2064 6948 9803]]\n [\"Cullen K",
"end": 12872,
"score": 0.9996103048324585,
"start": 12864,
"tag": "USERNAME",
"value": "xavier75"
},
{
"context": "xavier75\" 69 \"Italy\" false [2064 6948 9803]]\n [\"Cullen Kelly\" \"cullen84\" 41 \"France\" true [3050 3628 6452]]\n ",
"end": 12926,
"score": 0.9998970031738281,
"start": 12914,
"tag": "NAME",
"value": "Cullen Kelly"
},
{
"context": "taly\" false [2064 6948 9803]]\n [\"Cullen Kelly\" \"cullen84\" 41 \"France\" true [3050 3628 6452]]\n [\"Ima Mile",
"end": 12937,
"score": 0.9996177554130554,
"start": 12929,
"tag": "USERNAME",
"value": "cullen84"
},
{
"context": "cullen84\" 41 \"France\" true [3050 3628 6452]]\n [\"Ima Miles\" \"ima22\" 50 \"China\" false [858 2547 3526]]\n [\"C",
"end": 12988,
"score": 0.9998856782913208,
"start": 12979,
"tag": "NAME",
"value": "Ima Miles"
},
{
"context": " \"France\" true [3050 3628 6452]]\n [\"Ima Miles\" \"ima22\" 50 \"China\" false [858 2547 3526]]\n [\"Channing ",
"end": 12996,
"score": 0.9993813633918762,
"start": 12991,
"tag": "USERNAME",
"value": "ima22"
},
{
"context": "s\" \"ima22\" 50 \"China\" false [858 2547 3526]]\n [\"Channing Mcguire\" \"channing23\" 60 \"Canada\" true [1811 4541 8885]]\n",
"end": 13053,
"score": 0.9998887777328491,
"start": 13037,
"tag": "NAME",
"value": "Channing Mcguire"
},
{
"context": "a\" false [858 2547 3526]]\n [\"Channing Mcguire\" \"channing23\" 60 \"Canada\" true [1811 4541 8885]]\n [\"Madison ",
"end": 13066,
"score": 0.9993646740913391,
"start": 13056,
"tag": "USERNAME",
"value": "channing23"
},
{
"context": "anning23\" 60 \"Canada\" true [1811 4541 8885]]\n [\"Madison Watts\" \"madison10\" 67 \"Canada\" true [5212 5298 7408]]\n ",
"end": 13121,
"score": 0.9999009370803833,
"start": 13108,
"tag": "NAME",
"value": "Madison Watts"
},
{
"context": "nada\" true [1811 4541 8885]]\n [\"Madison Watts\" \"madison10\" 67 \"Canada\" true [5212 5298 7408]]\n [\"Lysandra",
"end": 13133,
"score": 0.9994146227836609,
"start": 13124,
"tag": "USERNAME",
"value": "madison10"
},
{
"context": "adison10\" 67 \"Canada\" true [5212 5298 7408]]\n [\"Lysandra Johnston\" \"lysandra48\" 22 \"Nigeria\" true [3611 3819 6176]]",
"end": 13192,
"score": 0.9999005198478699,
"start": 13175,
"tag": "NAME",
"value": "Lysandra Johnston"
},
{
"context": "\" true [5212 5298 7408]]\n [\"Lysandra Johnston\" \"lysandra48\" 22 \"Nigeria\" true [3611 3819 6176]]\n [\"Anjolie",
"end": 13205,
"score": 0.9995757937431335,
"start": 13195,
"tag": "USERNAME",
"value": "lysandra48"
},
{
"context": "andra48\" 22 \"Nigeria\" true [3611 3819 6176]]\n [\"Anjolie Potter\" \"anjolie63\" 71 \"France\" false [3882 5707 9189]]\n",
"end": 13262,
"score": 0.9999008178710938,
"start": 13248,
"tag": "NAME",
"value": "Anjolie Potter"
},
{
"context": "ria\" true [3611 3819 6176]]\n [\"Anjolie Potter\" \"anjolie63\" 71 \"France\" false [3882 5707 9189]]\n [\"Wesley ",
"end": 13274,
"score": 0.9996017217636108,
"start": 13265,
"tag": "USERNAME",
"value": "anjolie63"
},
{
"context": "jolie63\" 71 \"France\" false [3882 5707 9189]]\n [\"Wesley Lopez\" \"wesley14\" 56 \"India\" false [1381 5205 7289]]\n ",
"end": 13329,
"score": 0.9999020099639893,
"start": 13317,
"tag": "NAME",
"value": "Wesley Lopez"
},
{
"context": "ance\" false [3882 5707 9189]]\n [\"Wesley Lopez\" \"wesley14\" 56 \"India\" false [1381 5205 7289]]\n [\"Linda Ma",
"end": 13340,
"score": 0.9995216131210327,
"start": 13332,
"tag": "USERNAME",
"value": "wesley14"
},
{
"context": "wesley14\" 56 \"India\" false [1381 5205 7289]]\n [\"Linda Mason\" \"linda55\" 40 \"Germany\" true [3708 5080 9109]]\n ",
"end": 13393,
"score": 0.999894917011261,
"start": 13382,
"tag": "NAME",
"value": "Linda Mason"
},
{
"context": "India\" false [1381 5205 7289]]\n [\"Linda Mason\" \"linda55\" 40 \"Germany\" true [3708 5080 9109]]\n [\"Donovan",
"end": 13403,
"score": 0.9995328187942505,
"start": 13396,
"tag": "USERNAME",
"value": "linda55"
},
{
"context": "linda55\" 40 \"Germany\" true [3708 5080 9109]]\n [\"Donovan Greene\" \"donovan86\" 59 \"Canada\" false [982 1144 9423]]\n ",
"end": 13460,
"score": 0.9999005198478699,
"start": 13446,
"tag": "NAME",
"value": "Donovan Greene"
},
{
"context": "any\" true [3708 5080 9109]]\n [\"Donovan Greene\" \"donovan86\" 59 \"Canada\" false [982 1144 9423]]\n [\"Warren N",
"end": 13472,
"score": 0.9996613264083862,
"start": 13463,
"tag": "USERNAME",
"value": "donovan86"
},
{
"context": "onovan86\" 59 \"Canada\" false [982 1144 9423]]\n [\"Warren Navarro\" \"warren75\" 74 \"USA\" false [5274 7151 8201]]\n [",
"end": 13528,
"score": 0.9998997449874878,
"start": 13514,
"tag": "NAME",
"value": "Warren Navarro"
},
{
"context": "ada\" false [982 1144 9423]]\n [\"Warren Navarro\" \"warren75\" 74 \"USA\" false [5274 7151 8201]]\n [\"Ursa Case\"",
"end": 13539,
"score": 0.9992838501930237,
"start": 13531,
"tag": "USERNAME",
"value": "warren75"
},
{
"context": " \"warren75\" 74 \"USA\" false [5274 7151 8201]]\n [\"Ursa Case\" \"ursa68\" 69 \"Nigeria\" false [1674 5583 8059]]\n ",
"end": 13588,
"score": 0.999872624874115,
"start": 13579,
"tag": "NAME",
"value": "Ursa Case"
},
{
"context": "74 \"USA\" false [5274 7151 8201]]\n [\"Ursa Case\" \"ursa68\" 69 \"Nigeria\" false [1674 5583 8059]]\n [\"Marten",
"end": 13597,
"score": 0.9988084435462952,
"start": 13591,
"tag": "USERNAME",
"value": "ursa68"
},
{
"context": "ursa68\" 69 \"Nigeria\" false [1674 5583 8059]]\n [\"Martena Curtis\" \"martena81\" 22 \"Nigeria\" false [2770 4838 6460]]",
"end": 13655,
"score": 0.9998946189880371,
"start": 13641,
"tag": "NAME",
"value": "Martena Curtis"
},
{
"context": "ia\" false [1674 5583 8059]]\n [\"Martena Curtis\" \"martena81\" 22 \"Nigeria\" false [2770 4838 6460]]\n [\"Uriel ",
"end": 13667,
"score": 0.9995888471603394,
"start": 13658,
"tag": "USERNAME",
"value": "martena81"
},
{
"context": "tena81\" 22 \"Nigeria\" false [2770 4838 6460]]\n [\"Uriel Donaldson\" \"uriel10\" 64 \"Italy\" false [2502 5363 6249]]\n ",
"end": 13726,
"score": 0.9998977184295654,
"start": 13711,
"tag": "NAME",
"value": "Uriel Donaldson"
},
{
"context": "a\" false [2770 4838 6460]]\n [\"Uriel Donaldson\" \"uriel10\" 64 \"Italy\" false [2502 5363 6249]]\n [\"Aretha L",
"end": 13736,
"score": 0.9995608329772949,
"start": 13729,
"tag": "USERNAME",
"value": "uriel10"
},
{
"context": "\"uriel10\" 64 \"Italy\" false [2502 5363 6249]]\n [\"Aretha Lang\" \"aretha18\" 66 \"Italy\" false [2241 5570 7808]]\n ",
"end": 13789,
"score": 0.9998924136161804,
"start": 13778,
"tag": "NAME",
"value": "Aretha Lang"
},
{
"context": "Italy\" false [2502 5363 6249]]\n [\"Aretha Lang\" \"aretha18\" 66 \"Italy\" false [2241 5570 7808]]\n [\"Celeste ",
"end": 13800,
"score": 0.9996300935745239,
"start": 13792,
"tag": "USERNAME",
"value": "aretha18"
},
{
"context": "aretha18\" 66 \"Italy\" false [2241 5570 7808]]\n [\"Celeste Baldwin\" \"celeste17\" 49 \"Germany\" true [2743 3400 3970]]\n",
"end": 13857,
"score": 0.9998906254768372,
"start": 13842,
"tag": "NAME",
"value": "Celeste Baldwin"
},
{
"context": "y\" false [2241 5570 7808]]\n [\"Celeste Baldwin\" \"celeste17\" 49 \"Germany\" true [2743 3400 3970]]\n [\"Lana Ha",
"end": 13869,
"score": 0.9993410110473633,
"start": 13860,
"tag": "USERNAME",
"value": "celeste17"
},
{
"context": "leste17\" 49 \"Germany\" true [2743 3400 3970]]\n [\"Lana Haynes\" \"lana51\" 19 \"China\" false [922 4074 5594]]\n [\"",
"end": 13923,
"score": 0.9998968243598938,
"start": 13912,
"tag": "NAME",
"value": "Lana Haynes"
},
{
"context": "ermany\" true [2743 3400 3970]]\n [\"Lana Haynes\" \"lana51\" 19 \"China\" false [922 4074 5594]]\n [\"Kay Young",
"end": 13932,
"score": 0.9994757175445557,
"start": 13926,
"tag": "USERNAME",
"value": "lana51"
},
{
"context": "\" \"lana51\" 19 \"China\" false [922 4074 5594]]\n [\"Kay Young\" \"kay27\" 44 \"USA\" false [2292 6197 8147]]\n [\"Al",
"end": 13982,
"score": 0.9998961687088013,
"start": 13973,
"tag": "NAME",
"value": "Kay Young"
},
{
"context": "9 \"China\" false [922 4074 5594]]\n [\"Kay Young\" \"kay27\" 44 \"USA\" false [2292 6197 8147]]\n [\"Alfonso Pa",
"end": 13990,
"score": 0.9994149804115295,
"start": 13985,
"tag": "USERNAME",
"value": "kay27"
},
{
"context": "ng\" \"kay27\" 44 \"USA\" false [2292 6197 8147]]\n [\"Alfonso Pate\" \"alfonso54\" 61 \"Russia\" false [3469 4615 5650]]\n",
"end": 14042,
"score": 0.9998987317085266,
"start": 14030,
"tag": "NAME",
"value": "Alfonso Pate"
},
{
"context": "\"USA\" false [2292 6197 8147]]\n [\"Alfonso Pate\" \"alfonso54\" 61 \"Russia\" false [3469 4615 5650]]\n [\"Lester ",
"end": 14054,
"score": 0.9995037317276001,
"start": 14045,
"tag": "USERNAME",
"value": "alfonso54"
},
{
"context": "fonso54\" 61 \"Russia\" false [3469 4615 5650]]\n [\"Lester Mueller\" \"lester72\" 63 \"Germany\" true [1370 9673 9939]]\n ",
"end": 14111,
"score": 0.9998937845230103,
"start": 14097,
"tag": "NAME",
"value": "Lester Mueller"
},
{
"context": "ia\" false [3469 4615 5650]]\n [\"Lester Mueller\" \"lester72\" 63 \"Germany\" true [1370 9673 9939]]\n [\"Maya Cr",
"end": 14122,
"score": 0.999521017074585,
"start": 14114,
"tag": "USERNAME",
"value": "lester72"
},
{
"context": "ester72\" 63 \"Germany\" true [1370 9673 9939]]\n [\"Maya Craig\" \"maya33\" 80 \"Nigeria\" true [4427 5830 6418]]\n ",
"end": 14175,
"score": 0.999895453453064,
"start": 14165,
"tag": "NAME",
"value": "Maya Craig"
},
{
"context": "Germany\" true [1370 9673 9939]]\n [\"Maya Craig\" \"maya33\" 80 \"Nigeria\" true [4427 5830 6418]]\n [\"Bruce P",
"end": 14184,
"score": 0.9991645812988281,
"start": 14178,
"tag": "USERNAME",
"value": "maya33"
},
{
"context": "\"maya33\" 80 \"Nigeria\" true [4427 5830 6418]]\n [\"Bruce Payne\" \"bruce77\" 65 \"Russia\" false [1771 1955 3059]]\n ",
"end": 14238,
"score": 0.9998976588249207,
"start": 14227,
"tag": "NAME",
"value": "Bruce Payne"
},
{
"context": "igeria\" true [4427 5830 6418]]\n [\"Bruce Payne\" \"bruce77\" 65 \"Russia\" false [1771 1955 3059]]\n [\"Vladimi",
"end": 14248,
"score": 0.9993358850479126,
"start": 14241,
"tag": "USERNAME",
"value": "bruce77"
},
{
"context": "bruce77\" 65 \"Russia\" false [1771 1955 3059]]\n [\"Vladimir Booker\" \"vladimir34\" 67 \"Canada\" true [287 2888 7112]]\n ",
"end": 14306,
"score": 0.9998936653137207,
"start": 14291,
"tag": "NAME",
"value": "Vladimir Booker"
},
{
"context": "a\" false [1771 1955 3059]]\n [\"Vladimir Booker\" \"vladimir34\" 67 \"Canada\" true [287 2888 7112]]\n [\"Deirdre L",
"end": 14319,
"score": 0.9993059039115906,
"start": 14309,
"tag": "USERNAME",
"value": "vladimir34"
},
{
"context": "ladimir34\" 67 \"Canada\" true [287 2888 7112]]\n [\"Deirdre Lowe\" \"deirdre68\" 20 \"Italy\" false [2734 3140 5409]]\n ",
"end": 14372,
"score": 0.9998928904533386,
"start": 14360,
"tag": "NAME",
"value": "Deirdre Lowe"
},
{
"context": "Canada\" true [287 2888 7112]]\n [\"Deirdre Lowe\" \"deirdre68\" 20 \"Italy\" false [2734 3140 5409]]\n [\"Mason Le",
"end": 14384,
"score": 0.9996029734611511,
"start": 14375,
"tag": "USERNAME",
"value": "deirdre68"
},
{
"context": "eirdre68\" 20 \"Italy\" false [2734 3140 5409]]\n [\"Mason Leach\" \"mason44\" 47 \"Italy\" false [6138 7493 8555]]\n ",
"end": 14437,
"score": 0.9998925924301147,
"start": 14426,
"tag": "NAME",
"value": "Mason Leach"
},
{
"context": "Italy\" false [2734 3140 5409]]\n [\"Mason Leach\" \"mason44\" 47 \"Italy\" false [6138 7493 8555]]\n [\"Thor Mck",
"end": 14447,
"score": 0.9996140599250793,
"start": 14440,
"tag": "USERNAME",
"value": "mason44"
},
{
"context": "\"mason44\" 47 \"Italy\" false [6138 7493 8555]]\n [\"Thor Mckee\" \"thor40\" 77 \"Italy\" false [7192 7262 7654]]\n [",
"end": 14499,
"score": 0.9998831748962402,
"start": 14489,
"tag": "NAME",
"value": "Thor Mckee"
},
{
"context": "\"Italy\" false [6138 7493 8555]]\n [\"Thor Mckee\" \"thor40\" 77 \"Italy\" false [7192 7262 7654]]\n [\"Chase Sh",
"end": 14508,
"score": 0.999530017375946,
"start": 14502,
"tag": "USERNAME",
"value": "thor40"
},
{
"context": " \"thor40\" 77 \"Italy\" false [7192 7262 7654]]\n [\"Chase Shaffer\" \"chase16\" 24 \"USA\" false [801 7955 8640]]\n [\"P",
"end": 14563,
"score": 0.9998801946640015,
"start": 14550,
"tag": "NAME",
"value": "Chase Shaffer"
},
{
"context": "aly\" false [7192 7262 7654]]\n [\"Chase Shaffer\" \"chase16\" 24 \"USA\" false [801 7955 8640]]\n [\"Phillip Sha",
"end": 14573,
"score": 0.9945743083953857,
"start": 14566,
"tag": "USERNAME",
"value": "chase16"
},
{
"context": "r\" \"chase16\" 24 \"USA\" false [801 7955 8640]]\n [\"Phillip Sharp\" \"phillip85\" 10 \"USA\" false [875 2514 2583]]\n [",
"end": 14625,
"score": 0.9998793601989746,
"start": 14612,
"tag": "NAME",
"value": "Phillip Sharp"
},
{
"context": "\"USA\" false [801 7955 8640]]\n [\"Phillip Sharp\" \"phillip85\" 10 \"USA\" false [875 2514 2583]]\n [\"Amos Obrien",
"end": 14637,
"score": 0.9996399283409119,
"start": 14628,
"tag": "USERNAME",
"value": "phillip85"
},
{
"context": " \"phillip85\" 10 \"USA\" false [875 2514 2583]]\n [\"Amos Obrien\" \"amos62\" 88 \"Italy\" true [41 7036 7073]]\n [\"Au",
"end": 14687,
"score": 0.9998815655708313,
"start": 14676,
"tag": "NAME",
"value": "Amos Obrien"
},
{
"context": "0 \"USA\" false [875 2514 2583]]\n [\"Amos Obrien\" \"amos62\" 88 \"Italy\" true [41 7036 7073]]\n [\"Austin Buck",
"end": 14696,
"score": 0.9994738101959229,
"start": 14690,
"tag": "USERNAME",
"value": "amos62"
},
{
"context": "en\" \"amos62\" 88 \"Italy\" true [41 7036 7073]]\n [\"Austin Buckley\" \"austin58\" 41 \"Russia\" false [1871 2337 9139]]\n ",
"end": 14749,
"score": 0.9998855590820312,
"start": 14735,
"tag": "NAME",
"value": "Austin Buckley"
},
{
"context": "Italy\" true [41 7036 7073]]\n [\"Austin Buckley\" \"austin58\" 41 \"Russia\" false [1871 2337 9139]]\n [\"Christe",
"end": 14760,
"score": 0.9996024370193481,
"start": 14752,
"tag": "USERNAME",
"value": "austin58"
},
{
"context": "ustin58\" 41 \"Russia\" false [1871 2337 9139]]\n [\"Christen Duke\" \"christen33\" 54 \"Canada\" false [988 3448 5575]]\n",
"end": 14816,
"score": 0.9998745918273926,
"start": 14803,
"tag": "NAME",
"value": "Christen Duke"
},
{
"context": "sia\" false [1871 2337 9139]]\n [\"Christen Duke\" \"christen33\" 54 \"Canada\" false [988 3448 5575]]\n [\"Cain Ric",
"end": 14829,
"score": 0.9996787309646606,
"start": 14819,
"tag": "USERNAME",
"value": "christen33"
},
{
"context": "risten33\" 54 \"Canada\" false [988 3448 5575]]\n [\"Cain Richards\" \"cain77\" 77 \"Russia\" true [2961 5344 8432]]\n [",
"end": 14884,
"score": 0.9998852610588074,
"start": 14871,
"tag": "NAME",
"value": "Cain Richards"
},
{
"context": "nada\" false [988 3448 5575]]\n [\"Cain Richards\" \"cain77\" 77 \"Russia\" true [2961 5344 8432]]\n [\"McKenzie",
"end": 14893,
"score": 0.9995920658111572,
"start": 14887,
"tag": "USERNAME",
"value": "cain77"
},
{
"context": " \"cain77\" 77 \"Russia\" true [2961 5344 8432]]\n [\"McKenzie Nieves\" \"mckenzie26\" 38 \"USA\" false [2096 2273 5982]]\n ",
"end": 14950,
"score": 0.9998846650123596,
"start": 14935,
"tag": "NAME",
"value": "McKenzie Nieves"
},
{
"context": "ia\" true [2961 5344 8432]]\n [\"McKenzie Nieves\" \"mckenzie26\" 38 \"USA\" false [2096 2273 5982]]\n [\"Quamar Ols",
"end": 14963,
"score": 0.9996568560600281,
"start": 14953,
"tag": "USERNAME",
"value": "mckenzie26"
},
{
"context": "mckenzie26\" 38 \"USA\" false [2096 2273 5982]]\n [\"Quamar Olson\" \"quamar43\" 85 \"United Kingdom\" false [7087 7398 ",
"end": 15015,
"score": 0.9998877048492432,
"start": 15003,
"tag": "NAME",
"value": "Quamar Olson"
},
{
"context": "\"USA\" false [2096 2273 5982]]\n [\"Quamar Olson\" \"quamar43\" 85 \"United Kingdom\" false [7087 7398 8859]]\n [",
"end": 15026,
"score": 0.9996305704116821,
"start": 15018,
"tag": "USERNAME",
"value": "quamar43"
},
{
"context": " 85 \"United Kingdom\" false [7087 7398 8859]]\n [\"Hall Grant\" \"hall13\" 23 \"China\" true [1350 6389 7708]]\n [\"",
"end": 15087,
"score": 0.9998722672462463,
"start": 15077,
"tag": "NAME",
"value": "Hall Grant"
},
{
"context": "ingdom\" false [7087 7398 8859]]\n [\"Hall Grant\" \"hall13\" 23 \"China\" true [1350 6389 7708]]\n [\"Galvin Ba",
"end": 15096,
"score": 0.9984909892082214,
"start": 15090,
"tag": "USERNAME",
"value": "hall13"
},
{
"context": "\" \"hall13\" 23 \"China\" true [1350 6389 7708]]\n [\"Galvin Baldwin\" \"galvin74\" 33 \"India\" true [2443 4595 4940]]\n ",
"end": 15151,
"score": 0.9998856782913208,
"start": 15137,
"tag": "NAME",
"value": "Galvin Baldwin"
},
{
"context": "ina\" true [1350 6389 7708]]\n [\"Galvin Baldwin\" \"galvin74\" 33 \"India\" true [2443 4595 4940]]\n [\"Lacota Ja",
"end": 15162,
"score": 0.9996894001960754,
"start": 15154,
"tag": "USERNAME",
"value": "galvin74"
},
{
"context": "\"galvin74\" 33 \"India\" true [2443 4595 4940]]\n [\"Lacota James\" \"lacota20\" 76 \"Italy\" false [6285 7816 9570]]\n ",
"end": 15215,
"score": 0.9998831748962402,
"start": 15203,
"tag": "NAME",
"value": "Lacota James"
},
{
"context": "India\" true [2443 4595 4940]]\n [\"Lacota James\" \"lacota20\" 76 \"Italy\" false [6285 7816 9570]]\n [\"Patricia",
"end": 15226,
"score": 0.9996594786643982,
"start": 15218,
"tag": "USERNAME",
"value": "lacota20"
},
{
"context": "lacota20\" 76 \"Italy\" false [6285 7816 9570]]\n [\"Patricia Knowles\" \"patricia17\" 74 \"Russia\" false [133 814 8418]]\n ",
"end": 15284,
"score": 0.9998817443847656,
"start": 15268,
"tag": "NAME",
"value": "Patricia Knowles"
},
{
"context": "\" false [6285 7816 9570]]\n [\"Patricia Knowles\" \"patricia17\" 74 \"Russia\" false [133 814 8418]]\n [\"Kirk Zamo",
"end": 15297,
"score": 0.9997091293334961,
"start": 15287,
"tag": "USERNAME",
"value": "patricia17"
},
{
"context": "atricia17\" 74 \"Russia\" false [133 814 8418]]\n [\"Kirk Zamora\" \"kirk64\" 62 \"Russia\" false [2232 2641 5602]]\n ",
"end": 15349,
"score": 0.9998830556869507,
"start": 15338,
"tag": "NAME",
"value": "Kirk Zamora"
},
{
"context": "\"Russia\" false [133 814 8418]]\n [\"Kirk Zamora\" \"kirk64\" 62 \"Russia\" false [2232 2641 5602]]\n [\"Anika C",
"end": 15358,
"score": 0.999649703502655,
"start": 15352,
"tag": "USERNAME",
"value": "kirk64"
},
{
"context": "\"kirk64\" 62 \"Russia\" false [2232 2641 5602]]\n [\"Anika Cox\" \"anika29\" 86 \"Canada\" true [1515 5900 9061]]\n ",
"end": 15410,
"score": 0.9998810291290283,
"start": 15401,
"tag": "NAME",
"value": "Anika Cox"
},
{
"context": "\"Russia\" false [2232 2641 5602]]\n [\"Anika Cox\" \"anika29\" 86 \"Canada\" true [1515 5900 9061]]\n [\"Keane Wh",
"end": 15420,
"score": 0.9996818900108337,
"start": 15413,
"tag": "USERNAME",
"value": "anika29"
},
{
"context": "\"anika29\" 86 \"Canada\" true [1515 5900 9061]]\n [\"Keane White\" \"keane22\" 49 \"United Kingdom\" false [2320 9152 9",
"end": 15473,
"score": 0.9998931884765625,
"start": 15462,
"tag": "NAME",
"value": "Keane White"
},
{
"context": "Canada\" true [1515 5900 9061]]\n [\"Keane White\" \"keane22\" 49 \"United Kingdom\" false [2320 9152 9555]]\n [",
"end": 15483,
"score": 0.9996046423912048,
"start": 15476,
"tag": "USERNAME",
"value": "keane22"
},
{
"context": " 49 \"United Kingdom\" false [2320 9152 9555]]\n [\"Risa Pearson\" \"risa44\" 11 \"Germany\" true [661 1702 2257]]\n [",
"end": 15546,
"score": 0.9998911023139954,
"start": 15534,
"tag": "NAME",
"value": "Risa Pearson"
},
{
"context": "gdom\" false [2320 9152 9555]]\n [\"Risa Pearson\" \"risa44\" 11 \"Germany\" true [661 1702 2257]]\n [\"Regan Ma",
"end": 15555,
"score": 0.9996416568756104,
"start": 15549,
"tag": "USERNAME",
"value": "risa44"
},
{
"context": " \"risa44\" 11 \"Germany\" true [661 1702 2257]]\n [\"Regan Marks\" \"regan38\" 70 \"Nigeria\" true [460 3832 8580]]\n ",
"end": 15608,
"score": 0.9998857975006104,
"start": 15597,
"tag": "NAME",
"value": "Regan Marks"
},
{
"context": "Germany\" true [661 1702 2257]]\n [\"Regan Marks\" \"regan38\" 70 \"Nigeria\" true [460 3832 8580]]\n [\"Kieran S",
"end": 15618,
"score": 0.9996556639671326,
"start": 15611,
"tag": "USERNAME",
"value": "regan38"
},
{
"context": "\"regan38\" 70 \"Nigeria\" true [460 3832 8580]]\n [\"Kieran Silva\" \"kieran79\" 58 \"Nigeria\" false [1477 4723 9058]]\n",
"end": 15672,
"score": 0.9998916387557983,
"start": 15660,
"tag": "NAME",
"value": "Kieran Silva"
},
{
"context": "igeria\" true [460 3832 8580]]\n [\"Kieran Silva\" \"kieran79\" 58 \"Nigeria\" false [1477 4723 9058]]\n [\"Dante ",
"end": 15683,
"score": 0.9996492266654968,
"start": 15675,
"tag": "USERNAME",
"value": "kieran79"
},
{
"context": "eran79\" 58 \"Nigeria\" false [1477 4723 9058]]\n [\"Dante Miller\" \"dante13\" 56 \"Italy\" true [825 956 2113]]\n [\"W",
"end": 15739,
"score": 0.999889612197876,
"start": 15727,
"tag": "NAME",
"value": "Dante Miller"
},
{
"context": "eria\" false [1477 4723 9058]]\n [\"Dante Miller\" \"dante13\" 56 \"Italy\" true [825 956 2113]]\n [\"Wilma Holme",
"end": 15749,
"score": 0.9994816780090332,
"start": 15742,
"tag": "USERNAME",
"value": "dante13"
},
{
"context": "r\" \"dante13\" 56 \"Italy\" true [825 956 2113]]\n [\"Wilma Holmes\" \"wilma28\" 15 \"USA\" true [1985 2454 8964]]\n [\"S",
"end": 15800,
"score": 0.9998944997787476,
"start": 15788,
"tag": "NAME",
"value": "Wilma Holmes"
},
{
"context": " \"Italy\" true [825 956 2113]]\n [\"Wilma Holmes\" \"wilma28\" 15 \"USA\" true [1985 2454 8964]]\n [\"Sylvester B",
"end": 15810,
"score": 0.9994765520095825,
"start": 15803,
"tag": "USERNAME",
"value": "wilma28"
},
{
"context": "s\" \"wilma28\" 15 \"USA\" true [1985 2454 8964]]\n [\"Sylvester Bright\" \"sylvester16\" 22 \"India\" false [1741 5108 8330]]",
"end": 15865,
"score": 0.9998933672904968,
"start": 15849,
"tag": "NAME",
"value": "Sylvester Bright"
},
{
"context": "A\" true [1985 2454 8964]]\n [\"Sylvester Bright\" \"sylvester16\" 22 \"India\" false [1741 5108 8330]]\n [\"Clark Lo",
"end": 15879,
"score": 0.9996659159660339,
"start": 15868,
"tag": "USERNAME",
"value": "sylvester16"
},
{
"context": "vester16\" 22 \"India\" false [1741 5108 8330]]\n [\"Clark Logan\" \"clark60\" 54 \"Germany\" false [4468 7611 8851]]\n ",
"end": 15932,
"score": 0.9998939037322998,
"start": 15921,
"tag": "NAME",
"value": "Clark Logan"
},
{
"context": "India\" false [1741 5108 8330]]\n [\"Clark Logan\" \"clark60\" 54 \"Germany\" false [4468 7611 8851]]\n [\"Quon W",
"end": 15942,
"score": 0.9995641112327576,
"start": 15935,
"tag": "USERNAME",
"value": "clark60"
},
{
"context": "lark60\" 54 \"Germany\" false [4468 7611 8851]]\n [\"Quon Wiggins\" \"quon49\" 79 \"China\" true [188 1412 1658]]\n [\"C",
"end": 15998,
"score": 0.9998958706855774,
"start": 15986,
"tag": "NAME",
"value": "Quon Wiggins"
},
{
"context": "many\" false [4468 7611 8851]]\n [\"Quon Wiggins\" \"quon49\" 79 \"China\" true [188 1412 1658]]\n [\"Cullen Car",
"end": 16007,
"score": 0.9996328353881836,
"start": 16001,
"tag": "USERNAME",
"value": "quon49"
},
{
"context": "s\" \"quon49\" 79 \"China\" true [188 1412 1658]]\n [\"Cullen Carpenter\" \"cullen68\" 82 \"Russia\" false [1118 3993 7838]]\n ",
"end": 16063,
"score": 0.999889075756073,
"start": 16047,
"tag": "NAME",
"value": "Cullen Carpenter"
},
{
"context": "na\" true [188 1412 1658]]\n [\"Cullen Carpenter\" \"cullen68\" 82 \"Russia\" false [1118 3993 7838]]\n [\"Fleur M",
"end": 16074,
"score": 0.9996352195739746,
"start": 16066,
"tag": "USERNAME",
"value": "cullen68"
},
{
"context": "ullen68\" 82 \"Russia\" false [1118 3993 7838]]\n [\"Fleur Marshall\" \"fleur72\" 61 \"France\" true [4681 5320 6842]]\n ",
"end": 16131,
"score": 0.9998908042907715,
"start": 16117,
"tag": "NAME",
"value": "Fleur Marshall"
},
{
"context": "ia\" false [1118 3993 7838]]\n [\"Fleur Marshall\" \"fleur72\" 61 \"France\" true [4681 5320 6842]]\n [\"Chancell",
"end": 16141,
"score": 0.9996558427810669,
"start": 16134,
"tag": "USERNAME",
"value": "fleur72"
},
{
"context": "\"fleur72\" 61 \"France\" true [4681 5320 6842]]\n [\"Chancellor Sykes\" \"chancellor60\" 50 \"Italy\" false [1972 5972 6096]",
"end": 16199,
"score": 0.9998804330825806,
"start": 16183,
"tag": "NAME",
"value": "Chancellor Sykes"
},
{
"context": "e\" true [4681 5320 6842]]\n [\"Chancellor Sykes\" \"chancellor60\" 50 \"Italy\" false [1972 5972 6096]]\n [\"Allen Va",
"end": 16214,
"score": 0.999688982963562,
"start": 16202,
"tag": "USERNAME",
"value": "chancellor60"
},
{
"context": "cellor60\" 50 \"Italy\" false [1972 5972 6096]]\n [\"Allen Vaughn\" \"allen48\" 72 \"China\" false [4445 7575 8572]]\n ",
"end": 16268,
"score": 0.9998876452445984,
"start": 16256,
"tag": "NAME",
"value": "Allen Vaughn"
},
{
"context": "taly\" false [1972 5972 6096]]\n [\"Allen Vaughn\" \"allen48\" 72 \"China\" false [4445 7575 8572]]\n [\"Herman M",
"end": 16278,
"score": 0.9996138215065002,
"start": 16271,
"tag": "USERNAME",
"value": "allen48"
},
{
"context": "\"allen48\" 72 \"China\" false [4445 7575 8572]]\n [\"Herman Mcdaniel\" \"herman34\" 76 \"Russia\" true [1079 3284 9855]]\n ",
"end": 16335,
"score": 0.9998924136161804,
"start": 16320,
"tag": "NAME",
"value": "Herman Mcdaniel"
},
{
"context": "a\" false [4445 7575 8572]]\n [\"Herman Mcdaniel\" \"herman34\" 76 \"Russia\" true [1079 3284 9855]]\n [\"Upton Hu",
"end": 16346,
"score": 0.9995326995849609,
"start": 16338,
"tag": "USERNAME",
"value": "herman34"
},
{
"context": "herman34\" 76 \"Russia\" true [1079 3284 9855]]\n [\"Upton Huff\" \"upton78\" 24 \"France\" true [3638 4676 9057]]\n ",
"end": 16398,
"score": 0.9998962879180908,
"start": 16388,
"tag": "NAME",
"value": "Upton Huff"
},
{
"context": "\"Russia\" true [1079 3284 9855]]\n [\"Upton Huff\" \"upton78\" 24 \"France\" true [3638 4676 9057]]\n [\"Renee Ho",
"end": 16408,
"score": 0.9984649419784546,
"start": 16401,
"tag": "USERNAME",
"value": "upton78"
},
{
"context": "\"upton78\" 24 \"France\" true [3638 4676 9057]]\n [\"Renee Houston\" \"renee79\" 47 \"France\" false [4444 7380 9595]]\n ",
"end": 16463,
"score": 0.9998949766159058,
"start": 16450,
"tag": "NAME",
"value": "Renee Houston"
},
{
"context": "ance\" true [3638 4676 9057]]\n [\"Renee Houston\" \"renee79\" 47 \"France\" false [4444 7380 9595]]\n [\"Hyatt M",
"end": 16473,
"score": 0.9993992447853088,
"start": 16466,
"tag": "USERNAME",
"value": "renee79"
},
{
"context": "renee79\" 47 \"France\" false [4444 7380 9595]]\n [\"Hyatt Mcknight\" \"hyatt22\" 58 \"India\" false [4052 5816 8011]]\n ",
"end": 16530,
"score": 0.9998979568481445,
"start": 16516,
"tag": "NAME",
"value": "Hyatt Mcknight"
},
{
"context": "ce\" false [4444 7380 9595]]\n [\"Hyatt Mcknight\" \"hyatt22\" 58 \"India\" false [4052 5816 8011]]\n [\"Carl Cro",
"end": 16540,
"score": 0.9994612336158752,
"start": 16533,
"tag": "USERNAME",
"value": "hyatt22"
},
{
"context": "\"hyatt22\" 58 \"India\" false [4052 5816 8011]]\n [\"Carl Crosby\" \"carl21\" 54 \"Germany\" false [599 5010 7650]]\n ",
"end": 16593,
"score": 0.9998973608016968,
"start": 16582,
"tag": "NAME",
"value": "Carl Crosby"
},
{
"context": "India\" false [4052 5816 8011]]\n [\"Carl Crosby\" \"carl21\" 54 \"Germany\" false [599 5010 7650]]\n [\"Carolyn",
"end": 16602,
"score": 0.9995118975639343,
"start": 16596,
"tag": "USERNAME",
"value": "carl21"
},
{
"context": "\"carl21\" 54 \"Germany\" false [599 5010 7650]]\n [\"Carolyn Patterson\" \"carolyn70\" 47 \"United Kingdom\" false [765 2888 ",
"end": 16662,
"score": 0.9998982548713684,
"start": 16645,
"tag": "NAME",
"value": "Carolyn Patterson"
},
{
"context": "\" false [599 5010 7650]]\n [\"Carolyn Patterson\" \"carolyn70\" 47 \"United Kingdom\" false [765 2888 3572]]\n [\"",
"end": 16674,
"score": 0.9993776082992554,
"start": 16665,
"tag": "USERNAME",
"value": "carolyn70"
},
{
"context": "\" 47 \"United Kingdom\" false [765 2888 3572]]\n [\"Anjolie Heath\" \"anjolie86\" 24 \"Canada\" true [3248 5382 9748]]\n ",
"end": 16737,
"score": 0.9999012351036072,
"start": 16724,
"tag": "NAME",
"value": "Anjolie Heath"
},
{
"context": "gdom\" false [765 2888 3572]]\n [\"Anjolie Heath\" \"anjolie86\" 24 \"Canada\" true [3248 5382 9748]]\n [\"Gail Als",
"end": 16749,
"score": 0.9994747042655945,
"start": 16740,
"tag": "USERNAME",
"value": "anjolie86"
},
{
"context": "njolie86\" 24 \"Canada\" true [3248 5382 9748]]\n [\"Gail Alston\" \"gail26\" 40 \"Italy\" false [151 1909 2037]]\n [\"",
"end": 16802,
"score": 0.9999037981033325,
"start": 16791,
"tag": "NAME",
"value": "Gail Alston"
},
{
"context": "Canada\" true [3248 5382 9748]]\n [\"Gail Alston\" \"gail26\" 40 \"Italy\" false [151 1909 2037]]\n [\"September",
"end": 16811,
"score": 0.9992018342018127,
"start": 16805,
"tag": "USERNAME",
"value": "gail26"
},
{
"context": "\" \"gail26\" 40 \"Italy\" false [151 1909 2037]]\n [\"September Daniel\" \"september34\" 15 \"China\" false [1925 5407 7129]]",
"end": 16868,
"score": 0.9998776912689209,
"start": 16852,
"tag": "NAME",
"value": "September Daniel"
},
{
"context": "y\" false [151 1909 2037]]\n [\"September Daniel\" \"september34\" 15 \"China\" false [1925 5407 7129]]\n [\"Brandon",
"end": 16881,
"score": 0.986423671245575,
"start": 16871,
"tag": "USERNAME",
"value": "september3"
},
{
"context": "tember34\" 15 \"China\" false [1925 5407 7129]]\n [\"Brandon Barron\" \"brandon14\" 33 \"USA\" true [1278 1564 2379]]\n [",
"end": 16938,
"score": 0.999901294708252,
"start": 16924,
"tag": "NAME",
"value": "Brandon Barron"
},
{
"context": "na\" false [1925 5407 7129]]\n [\"Brandon Barron\" \"brandon14\" 33 \"USA\" true [1278 1564 2379]]\n [\"Preston Sut",
"end": 16950,
"score": 0.9995290040969849,
"start": 16941,
"tag": "USERNAME",
"value": "brandon14"
},
{
"context": " \"brandon14\" 33 \"USA\" true [1278 1564 2379]]\n [\"Preston Sutton\" \"preston49\" 56 \"Canada\" false [2446 6960 7254]]\n",
"end": 17003,
"score": 0.9998905658721924,
"start": 16989,
"tag": "NAME",
"value": "Preston Sutton"
},
{
"context": "USA\" true [1278 1564 2379]]\n [\"Preston Sutton\" \"preston49\" 56 \"Canada\" false [2446 6960 7254]]\n [\"Adena W",
"end": 17015,
"score": 0.9991726279258728,
"start": 17006,
"tag": "USERNAME",
"value": "preston49"
},
{
"context": "eston49\" 56 \"Canada\" false [2446 6960 7254]]\n [\"Adena Woodard\" \"adena73\" 89 \"China\" true [5461 8620 8636]]\n [",
"end": 17071,
"score": 0.9999001622200012,
"start": 17058,
"tag": "NAME",
"value": "Adena Woodard"
},
{
"context": "ada\" false [2446 6960 7254]]\n [\"Adena Woodard\" \"adena73\" 89 \"China\" true [5461 8620 8636]]\n [\"Alisa Gib",
"end": 17081,
"score": 0.9993224143981934,
"start": 17074,
"tag": "USERNAME",
"value": "adena73"
},
{
"context": " \"adena73\" 89 \"China\" true [5461 8620 8636]]\n [\"Alisa Gibbs\" \"alisa53\" 81 \"Canada\" true [3900 6093 7103]]\n ",
"end": 17133,
"score": 0.9998990297317505,
"start": 17122,
"tag": "NAME",
"value": "Alisa Gibbs"
},
{
"context": "\"China\" true [5461 8620 8636]]\n [\"Alisa Gibbs\" \"alisa53\" 81 \"Canada\" true [3900 6093 7103]]\n [\"Kimberly",
"end": 17143,
"score": 0.9994442462921143,
"start": 17136,
"tag": "USERNAME",
"value": "alisa53"
},
{
"context": "\"alisa53\" 81 \"Canada\" true [3900 6093 7103]]\n [\"Kimberly Cross\" \"kimberly49\" 42 \"India\" true [3 5334 5620]]\n [",
"end": 17199,
"score": 0.9998650550842285,
"start": 17185,
"tag": "NAME",
"value": "Kimberly Cross"
},
{
"context": "ada\" true [3900 6093 7103]]\n [\"Kimberly Cross\" \"kimberly49\" 42 \"India\" true [3 5334 5620]]\n [\"Cullen Mccoy",
"end": 17212,
"score": 0.9995249509811401,
"start": 17202,
"tag": "USERNAME",
"value": "kimberly49"
},
{
"context": " \"kimberly49\" 42 \"India\" true [3 5334 5620]]\n [\"Cullen Mccoy\" \"cullen64\" 77 \"China\" false [3697 8804 9032]]",
"end": 17259,
"score": 0.9998912811279297,
"start": 17250,
"tag": "NAME",
"value": "Cullen Mc"
},
{
"context": "y49\" 42 \"India\" true [3 5334 5620]]\n [\"Cullen Mccoy\" \"cullen64\" 77 \"China\" false [3697 8804 9032]]\n ",
"end": 17261,
"score": 0.7704555988311768,
"start": 17259,
"tag": "USERNAME",
"value": "co"
},
{
"context": "9\" 42 \"India\" true [3 5334 5620]]\n [\"Cullen Mccoy\" \"cullen64\" 77 \"China\" false [3697 8804 9032]]\n ",
"end": 17262,
"score": 0.9997983574867249,
"start": 17261,
"tag": "NAME",
"value": "y"
},
{
"context": "ndia\" true [3 5334 5620]]\n [\"Cullen Mccoy\" \"cullen64\" 77 \"China\" false [3697 8804 9032]]\n [\"Brynn M",
"end": 17272,
"score": 0.5945837497711182,
"start": 17269,
"tag": "USERNAME",
"value": "en6"
},
{
"context": "cullen64\" 77 \"China\" false [3697 8804 9032]]\n [\"Brynn Middleton\" \"brynn77\" 79 \"France\" true [94 5187 9431]]\n [\"",
"end": 17330,
"score": 0.9999015927314758,
"start": 17315,
"tag": "NAME",
"value": "Brynn Middleton"
},
{
"context": "a\" false [3697 8804 9032]]\n [\"Brynn Middleton\" \"brynn77\" 79 \"France\" true [94 5187 9431]]\n [\"Celeste Be",
"end": 17340,
"score": 0.9996291399002075,
"start": 17333,
"tag": "USERNAME",
"value": "brynn77"
},
{
"context": "\" \"brynn77\" 79 \"France\" true [94 5187 9431]]\n [\"Celeste Becker\" \"celeste64\" 87 \"Russia\" false [443 2734 3658]]\n ",
"end": 17394,
"score": 0.9998984336853027,
"start": 17380,
"tag": "NAME",
"value": "Celeste Becker"
},
{
"context": "rance\" true [94 5187 9431]]\n [\"Celeste Becker\" \"celeste64\" 87 \"Russia\" false [443 2734 3658]]\n [\"Austin W",
"end": 17406,
"score": 0.9996181726455688,
"start": 17397,
"tag": "USERNAME",
"value": "celeste64"
},
{
"context": "eleste64\" 87 \"Russia\" false [443 2734 3658]]\n [\"Austin Wilkins\" \"austin60\" 30 \"India\" false [980 2051 5377]]\n ",
"end": 17462,
"score": 0.9998971819877625,
"start": 17448,
"tag": "NAME",
"value": "Austin Wilkins"
},
{
"context": "sia\" false [443 2734 3658]]\n [\"Austin Wilkins\" \"austin60\" 30 \"India\" false [980 2051 5377]]\n [\"Justina K",
"end": 17473,
"score": 0.9996284246444702,
"start": 17465,
"tag": "USERNAME",
"value": "austin60"
},
{
"context": "\"austin60\" 30 \"India\" false [980 2051 5377]]\n [\"Justina Kerr\" \"justina41\" 40 \"India\" true [738 1156 6279]]\n ",
"end": 17526,
"score": 0.9998995065689087,
"start": 17514,
"tag": "NAME",
"value": "Justina Kerr"
},
{
"context": "India\" false [980 2051 5377]]\n [\"Justina Kerr\" \"justina41\" 40 \"India\" true [738 1156 6279]]\n [\"Larissa Ng",
"end": 17538,
"score": 0.9993849396705627,
"start": 17529,
"tag": "USERNAME",
"value": "justina41"
},
{
"context": "\"justina41\" 40 \"India\" true [738 1156 6279]]\n [\"Larissa Nguyen\" \"larissa14\" 77 \"United Kingdom\" false [2754 4109",
"end": 17592,
"score": 0.9999003410339355,
"start": 17578,
"tag": "NAME",
"value": "Larissa Nguyen"
},
{
"context": "ndia\" true [738 1156 6279]]\n [\"Larissa Nguyen\" \"larissa14\" 77 \"United Kingdom\" false [2754 4109 7388]]\n [",
"end": 17604,
"score": 0.9945890307426453,
"start": 17595,
"tag": "USERNAME",
"value": "larissa14"
},
{
"context": " 77 \"United Kingdom\" false [2754 4109 7388]]\n [\"Nissim Price\" \"nissim63\" 84 \"China\" false [2173 3317 9133]]\n ",
"end": 17667,
"score": 0.9998989701271057,
"start": 17655,
"tag": "NAME",
"value": "Nissim Price"
},
{
"context": "gdom\" false [2754 4109 7388]]\n [\"Nissim Price\" \"nissim63\" 84 \"China\" false [2173 3317 9133]]\n [\"Hall Ric",
"end": 17678,
"score": 0.999658465385437,
"start": 17670,
"tag": "USERNAME",
"value": "nissim63"
},
{
"context": "nissim63\" 84 \"China\" false [2173 3317 9133]]\n [\"Hall Rice\" \"hall35\" 17 \"Russia\" false [3906 4063 4294]]\n ",
"end": 17729,
"score": 0.999690055847168,
"start": 17720,
"tag": "NAME",
"value": "Hall Rice"
},
{
"context": "\"hall35\" 17 \"Russia\" false [3906 4063 4294]]\n [\"Cain Paul\" \"cain50\" 45 \"United Kingdom\" false [719 2355 640",
"end": 17790,
"score": 0.9998947978019714,
"start": 17781,
"tag": "NAME",
"value": "Cain Paul"
},
{
"context": "\"Russia\" false [3906 4063 4294]]\n [\"Cain Paul\" \"cain50\" 45 \"United Kingdom\" false [719 2355 6401]]\n [\"",
"end": 17799,
"score": 0.9996472597122192,
"start": 17793,
"tag": "USERNAME",
"value": "cain50"
},
{
"context": "\" 45 \"United Kingdom\" false [719 2355 6401]]\n [\"Rahim Wood\" \"rahim27\" 69 \"Canada\" true [1838 9027 9158]]\n ",
"end": 17859,
"score": 0.9999009966850281,
"start": 17849,
"tag": "NAME",
"value": "Rahim Wood"
},
{
"context": "Kingdom\" false [719 2355 6401]]\n [\"Rahim Wood\" \"rahim27\" 69 \"Canada\" true [1838 9027 9158]]\n [\"Velma Ta",
"end": 17869,
"score": 0.9995039105415344,
"start": 17862,
"tag": "USERNAME",
"value": "rahim27"
},
{
"context": "\"rahim27\" 69 \"Canada\" true [1838 9027 9158]]\n [\"Velma Talley\" \"velma27\" 22 \"Italy\" true [176 6916 9142]]\n [\"",
"end": 17923,
"score": 0.9998981356620789,
"start": 17911,
"tag": "NAME",
"value": "Velma Talley"
},
{
"context": "anada\" true [1838 9027 9158]]\n [\"Velma Talley\" \"velma27\" 22 \"Italy\" true [176 6916 9142]]\n [\"Alfreda Os",
"end": 17933,
"score": 0.9996676445007324,
"start": 17926,
"tag": "USERNAME",
"value": "velma27"
},
{
"context": "\" \"velma27\" 22 \"Italy\" true [176 6916 9142]]\n [\"Alfreda Osborn\" \"alfreda82\" 15 \"Canada\" true [5993 7202 8589]]\n ",
"end": 17987,
"score": 0.9998992085456848,
"start": 17973,
"tag": "NAME",
"value": "Alfreda Osborn"
},
{
"context": "taly\" true [176 6916 9142]]\n [\"Alfreda Osborn\" \"alfreda82\" 15 \"Canada\" true [5993 7202 8589]]\n [\"Rajah Ba",
"end": 17999,
"score": 0.9996219873428345,
"start": 17990,
"tag": "USERNAME",
"value": "alfreda82"
},
{
"context": "lfreda82\" 15 \"Canada\" true [5993 7202 8589]]\n [\"Rajah Barr\" \"rajah77\" 67 \"Nigeria\" false [585 4593 9737]]\n ",
"end": 18051,
"score": 0.9998993873596191,
"start": 18041,
"tag": "NAME",
"value": "Rajah Barr"
},
{
"context": "\"Canada\" true [5993 7202 8589]]\n [\"Rajah Barr\" \"rajah77\" 67 \"Nigeria\" false [585 4593 9737]]\n [\"Mollie ",
"end": 18061,
"score": 0.9996231198310852,
"start": 18054,
"tag": "USERNAME",
"value": "rajah77"
},
{
"context": "rajah77\" 67 \"Nigeria\" false [585 4593 9737]]\n [\"Mollie Sanders\" \"mollie21\" 11 \"United Kingdom\" true [369 3144 97",
"end": 18118,
"score": 0.9998978972434998,
"start": 18104,
"tag": "NAME",
"value": "Mollie Sanders"
},
{
"context": "ria\" false [585 4593 9737]]\n [\"Mollie Sanders\" \"mollie21\" 11 \"United Kingdom\" true [369 3144 9798]]\n [\"H",
"end": 18129,
"score": 0.9996487498283386,
"start": 18121,
"tag": "USERNAME",
"value": "mollie21"
},
{
"context": "1\" 11 \"United Kingdom\" true [369 3144 9798]]\n [\"Halla Decker\" \"halla24\" 16 \"France\" false [5018 5128 6979]]\n ",
"end": 18190,
"score": 0.999893069267273,
"start": 18178,
"tag": "NAME",
"value": "Halla Decker"
},
{
"context": "ingdom\" true [369 3144 9798]]\n [\"Halla Decker\" \"halla24\" 16 \"France\" false [5018 5128 6979]]\n [\"Alec Mc",
"end": 18200,
"score": 0.9994929432868958,
"start": 18193,
"tag": "USERNAME",
"value": "halla24"
},
{
"context": "halla24\" 16 \"France\" false [5018 5128 6979]]\n [\"Alec Mckenzie\" \"alec29\" 64 \"Russia\" false [2864 5316 9873]]\n ",
"end": 18256,
"score": 0.9998858571052551,
"start": 18243,
"tag": "NAME",
"value": "Alec Mckenzie"
},
{
"context": "nce\" false [5018 5128 6979]]\n [\"Alec Mckenzie\" \"alec29\" 64 \"Russia\" false [2864 5316 9873]]\n [\"Roth Ce",
"end": 18265,
"score": 0.9995959401130676,
"start": 18259,
"tag": "USERNAME",
"value": "alec29"
},
{
"context": "\"alec29\" 64 \"Russia\" false [2864 5316 9873]]\n [\"Roth Cervantes\" \"roth20\" 49 \"Italy\" true [6873 7031 8726]]\n [\"",
"end": 18322,
"score": 0.9998912215232849,
"start": 18308,
"tag": "NAME",
"value": "Roth Cervantes"
},
{
"context": "ia\" false [2864 5316 9873]]\n [\"Roth Cervantes\" \"roth20\" 49 \"Italy\" true [6873 7031 8726]]\n [\"Curran Wy",
"end": 18331,
"score": 0.9995604753494263,
"start": 18325,
"tag": "USERNAME",
"value": "roth20"
},
{
"context": "\" \"roth20\" 49 \"Italy\" true [6873 7031 8726]]\n [\"Curran Wynn\" \"curran13\" 24 \"India\" true [1008 7021 7244]]\n ",
"end": 18383,
"score": 0.9998928308486938,
"start": 18372,
"tag": "NAME",
"value": "Curran Wynn"
},
{
"context": "\"Italy\" true [6873 7031 8726]]\n [\"Curran Wynn\" \"curran13\" 24 \"India\" true [1008 7021 7244]]\n [\"Colt Fran",
"end": 18394,
"score": 0.9995641112327576,
"start": 18386,
"tag": "USERNAME",
"value": "curran13"
},
{
"context": "\"curran13\" 24 \"India\" true [1008 7021 7244]]\n [\"Colt Franco\" \"colt33\" 29 \"USA\" false [1856 2853 4082]]\n [\"X",
"end": 18446,
"score": 0.9998882412910461,
"start": 18435,
"tag": "NAME",
"value": "Colt Franco"
},
{
"context": "\"India\" true [1008 7021 7244]]\n [\"Colt Franco\" \"colt33\" 29 \"USA\" false [1856 2853 4082]]\n [\"Xander Pet",
"end": 18455,
"score": 0.999447226524353,
"start": 18449,
"tag": "USERNAME",
"value": "colt33"
},
{
"context": "o\" \"colt33\" 29 \"USA\" false [1856 2853 4082]]\n [\"Xander Petersen\" \"xander35\" 22 \"China\" false [627 1979 6662]]\n ",
"end": 18510,
"score": 0.9998835325241089,
"start": 18495,
"tag": "NAME",
"value": "Xander Petersen"
},
{
"context": "A\" false [1856 2853 4082]]\n [\"Xander Petersen\" \"xander35\" 22 \"China\" false [627 1979 6662]]\n [\"Richard L",
"end": 18521,
"score": 0.9994804263114929,
"start": 18513,
"tag": "USERNAME",
"value": "xander35"
},
{
"context": "\"xander35\" 22 \"China\" false [627 1979 6662]]\n [\"Richard Logan\" \"richard71\" 76 \"China\" false [6135 9191 9708]]\n ",
"end": 18575,
"score": 0.9998912811279297,
"start": 18562,
"tag": "NAME",
"value": "Richard Logan"
},
{
"context": "hina\" false [627 1979 6662]]\n [\"Richard Logan\" \"richard71\" 76 \"China\" false [6135 9191 9708]]\n [\"Haviva K",
"end": 18587,
"score": 0.9990437626838684,
"start": 18578,
"tag": "USERNAME",
"value": "richard71"
},
{
"context": "ichard71\" 76 \"China\" false [6135 9191 9708]]\n [\"Haviva Koch\" \"haviva50\" 30 \"Nigeria\" true [2686 8155 9028]]\n ",
"end": 18640,
"score": 0.9998946189880371,
"start": 18629,
"tag": "NAME",
"value": "Haviva Koch"
},
{
"context": "China\" false [6135 9191 9708]]\n [\"Haviva Koch\" \"haviva50\" 30 \"Nigeria\" true [2686 8155 9028]]\n [\"Eagan R",
"end": 18651,
"score": 0.9993174076080322,
"start": 18643,
"tag": "USERNAME",
"value": "haviva50"
},
{
"context": "aviva50\" 30 \"Nigeria\" true [2686 8155 9028]]\n [\"Eagan Rhodes\" \"eagan86\" 71 \"China\" false [3376 3815 7538]]\n ",
"end": 18706,
"score": 0.9998960494995117,
"start": 18694,
"tag": "NAME",
"value": "Eagan Rhodes"
},
{
"context": "geria\" true [2686 8155 9028]]\n [\"Eagan Rhodes\" \"eagan86\" 71 \"China\" false [3376 3815 7538]]\n [\"Dorothy ",
"end": 18716,
"score": 0.9996061325073242,
"start": 18709,
"tag": "USERNAME",
"value": "eagan86"
},
{
"context": "\"eagan86\" 71 \"China\" false [3376 3815 7538]]\n [\"Dorothy Hobbs\" \"dorothy75\" 30 \"Germany\" false [7043 9188 9247]]",
"end": 18771,
"score": 0.9998920559883118,
"start": 18758,
"tag": "NAME",
"value": "Dorothy Hobbs"
},
{
"context": "ina\" false [3376 3815 7538]]\n [\"Dorothy Hobbs\" \"dorothy75\" 30 \"Germany\" false [7043 9188 9247]]\n [\"Jenna ",
"end": 18783,
"score": 0.9991441965103149,
"start": 18774,
"tag": "USERNAME",
"value": "dorothy75"
},
{
"context": "othy75\" 30 \"Germany\" false [7043 9188 9247]]\n [\"Jenna Baxter\" \"jenna55\" 33 \"Italy\" true [1648 9865 9949]]\n [",
"end": 18839,
"score": 0.9998916387557983,
"start": 18827,
"tag": "NAME",
"value": "Jenna Baxter"
},
{
"context": "many\" false [7043 9188 9247]]\n [\"Jenna Baxter\" \"jenna55\" 33 \"Italy\" true [1648 9865 9949]]\n [\"Hope Hend",
"end": 18849,
"score": 0.9995283484458923,
"start": 18842,
"tag": "USERNAME",
"value": "jenna55"
},
{
"context": " \"jenna55\" 33 \"Italy\" true [1648 9865 9949]]\n [\"Hope Henderson\" \"hope75\" 10 \"Germany\" true [544 2346 2776]]\n [",
"end": 18904,
"score": 0.9998832941055298,
"start": 18890,
"tag": "NAME",
"value": "Hope Henderson"
},
{
"context": "aly\" true [1648 9865 9949]]\n [\"Hope Henderson\" \"hope75\" 10 \"Germany\" true [544 2346 2776]]\n [\"Vladimir",
"end": 18913,
"score": 0.9994444847106934,
"start": 18907,
"tag": "USERNAME",
"value": "hope75"
},
{
"context": " \"hope75\" 10 \"Germany\" true [544 2346 2776]]\n [\"Vladimir Hoover\" \"vladimir25\" 47 \"Russia\" false [3430 4914 7996]]",
"end": 18970,
"score": 0.9998859167098999,
"start": 18955,
"tag": "NAME",
"value": "Vladimir Hoover"
},
{
"context": "any\" true [544 2346 2776]]\n [\"Vladimir Hoover\" \"vladimir25\" 47 \"Russia\" false [3430 4914 7996]]\n [\"Bernard",
"end": 18983,
"score": 0.9996120929718018,
"start": 18973,
"tag": "USERNAME",
"value": "vladimir25"
},
{
"context": "dimir25\" 47 \"Russia\" false [3430 4914 7996]]\n [\"Bernard Petersen\" \"bernard33\" 85 \"France\" false [877 1216 6537]]\n ",
"end": 19042,
"score": 0.9998940825462341,
"start": 19026,
"tag": "NAME",
"value": "Bernard Petersen"
},
{
"context": "\" false [3430 4914 7996]]\n [\"Bernard Petersen\" \"bernard33\" 85 \"France\" false [877 1216 6537]]\n [\"Jessamin",
"end": 19054,
"score": 0.9991332292556763,
"start": 19045,
"tag": "USERNAME",
"value": "bernard33"
},
{
"context": "ernard33\" 85 \"France\" false [877 1216 6537]]\n [\"Jessamine Roberts\" \"jessamine26\" 62 \"USA\" false [4720 5522 9814]]\n ",
"end": 19113,
"score": 0.9998953342437744,
"start": 19096,
"tag": "NAME",
"value": "Jessamine Roberts"
},
{
"context": "\" false [877 1216 6537]]\n [\"Jessamine Roberts\" \"jessamine26\" 62 \"USA\" false [4720 5522 9814]]\n [\"Kelly Snow",
"end": 19127,
"score": 0.9996423721313477,
"start": 19116,
"tag": "USERNAME",
"value": "jessamine26"
},
{
"context": "essamine26\" 62 \"USA\" false [4720 5522 9814]]\n [\"Kelly Snow\" \"kelly87\" 28 \"China\" false [493 9089 9846]]\n [",
"end": 19177,
"score": 0.9998917579650879,
"start": 19167,
"tag": "NAME",
"value": "Kelly Snow"
},
{
"context": "2 \"USA\" false [4720 5522 9814]]\n [\"Kelly Snow\" \"kelly87\" 28 \"China\" false [493 9089 9846]]\n [\"Adena Mal",
"end": 19187,
"score": 0.9996378421783447,
"start": 19180,
"tag": "USERNAME",
"value": "kelly87"
},
{
"context": " \"kelly87\" 28 \"China\" false [493 9089 9846]]\n [\"Adena Malone\" \"adena62\" 33 \"Russia\" false [1210 3996 6399]]\n ",
"end": 19240,
"score": 0.9998931884765625,
"start": 19228,
"tag": "NAME",
"value": "Adena Malone"
},
{
"context": "China\" false [493 9089 9846]]\n [\"Adena Malone\" \"adena62\" 33 \"Russia\" false [1210 3996 6399]]\n [\"Jaime S",
"end": 19250,
"score": 0.9995797872543335,
"start": 19243,
"tag": "USERNAME",
"value": "adena62"
},
{
"context": "adena62\" 33 \"Russia\" false [1210 3996 6399]]\n [\"Jaime Scott\" \"jaime26\" 49 \"India\" false [149 755 5100]]\n [\"",
"end": 19304,
"score": 0.9998969435691833,
"start": 19293,
"tag": "NAME",
"value": "Jaime Scott"
},
{
"context": "ussia\" false [1210 3996 6399]]\n [\"Jaime Scott\" \"jaime26\" 49 \"India\" false [149 755 5100]]\n [\"Ocean Oliv",
"end": 19314,
"score": 0.9995883703231812,
"start": 19307,
"tag": "USERNAME",
"value": "jaime26"
},
{
"context": "\" \"jaime26\" 49 \"India\" false [149 755 5100]]\n [\"Ocean Oliver\" \"ocean72\" 32 \"Germany\" false [1897 5535 7551]]\n ",
"end": 19366,
"score": 0.9993530511856079,
"start": 19354,
"tag": "NAME",
"value": "Ocean Oliver"
},
{
"context": "cean72\" 32 \"Germany\" false [1897 5535 7551]]\n [\"Russell Wallace\" \"russell87\" 75 \"USA\" true [4618 5589 6655]]\n [",
"end": 19435,
"score": 0.9998948574066162,
"start": 19420,
"tag": "NAME",
"value": "Russell Wallace"
},
{
"context": "y\" false [1897 5535 7551]]\n [\"Russell Wallace\" \"russell87\" 75 \"USA\" true [4618 5589 6655]]\n [\"Zelenia Rod",
"end": 19447,
"score": 0.999629020690918,
"start": 19438,
"tag": "USERNAME",
"value": "russell87"
},
{
"context": " \"russell87\" 75 \"USA\" true [4618 5589 6655]]\n [\"Zelenia Rodriguez\" \"zelenia82\" 62 \"China\" true [386 3041 8841]]\n ",
"end": 19503,
"score": 0.9998940229415894,
"start": 19486,
"tag": "NAME",
"value": "Zelenia Rodriguez"
},
{
"context": "\" true [4618 5589 6655]]\n [\"Zelenia Rodriguez\" \"zelenia82\" 62 \"China\" true [386 3041 8841]]\n [\"McKenzie R",
"end": 19515,
"score": 0.9995402097702026,
"start": 19506,
"tag": "USERNAME",
"value": "zelenia82"
},
{
"context": "\"zelenia82\" 62 \"China\" true [386 3041 8841]]\n [\"McKenzie Rosales\" \"mckenzie55\" 53 \"Canada\" true [2044 5225 8094]]\n",
"end": 19571,
"score": 0.9998883605003357,
"start": 19555,
"tag": "NAME",
"value": "McKenzie Rosales"
},
{
"context": "na\" true [386 3041 8841]]\n [\"McKenzie Rosales\" \"mckenzie55\" 53 \"Canada\" true [2044 5225 8094]]\n [\"Flynn Ba",
"end": 19584,
"score": 0.9996480941772461,
"start": 19574,
"tag": "USERNAME",
"value": "mckenzie55"
},
{
"context": "kenzie55\" 53 \"Canada\" true [2044 5225 8094]]\n [\"Flynn Barry\" \"flynn12\" 36 \"Canada\" true [3085 4924 6354]]\n ",
"end": 19637,
"score": 0.9998969435691833,
"start": 19626,
"tag": "NAME",
"value": "Flynn Barry"
},
{
"context": "Canada\" true [2044 5225 8094]]\n [\"Flynn Barry\" \"flynn12\" 36 \"Canada\" true [3085 4924 6354]]\n [\"Erich Mc",
"end": 19647,
"score": 0.9996256232261658,
"start": 19640,
"tag": "USERNAME",
"value": "flynn12"
},
{
"context": "\"flynn12\" 36 \"Canada\" true [3085 4924 6354]]\n [\"Erich Mcmahon\" \"erich82\" 79 \"Italy\" true [4564 7319 9187]]\n [",
"end": 19702,
"score": 0.9998971819877625,
"start": 19689,
"tag": "NAME",
"value": "Erich Mcmahon"
},
{
"context": "nada\" true [3085 4924 6354]]\n [\"Erich Mcmahon\" \"erich82\" 79 \"Italy\" true [4564 7319 9187]]\n [\"Risa Mcca",
"end": 19712,
"score": 0.9996899366378784,
"start": 19705,
"tag": "USERNAME",
"value": "erich82"
},
{
"context": " \"erich82\" 79 \"Italy\" true [4564 7319 9187]]\n [\"Risa Mccall\" \"risa54\" 80 \"France\" true [4731 6124 7475]]\n [",
"end": 19764,
"score": 0.9998942613601685,
"start": 19753,
"tag": "NAME",
"value": "Risa Mccall"
},
{
"context": "\"Italy\" true [4564 7319 9187]]\n [\"Risa Mccall\" \"risa54\" 80 \"France\" true [4731 6124 7475]]\n [\"Aline Fe",
"end": 19773,
"score": 0.999672532081604,
"start": 19767,
"tag": "USERNAME",
"value": "risa54"
},
{
"context": " \"risa54\" 80 \"France\" true [4731 6124 7475]]\n [\"Aline Fernandez\" \"aline52\" 47 \"India\" false [648 7878 9432]]\n [",
"end": 19830,
"score": 0.9998918175697327,
"start": 19815,
"tag": "NAME",
"value": "Aline Fernandez"
},
{
"context": "ce\" true [4731 6124 7475]]\n [\"Aline Fernandez\" \"aline52\" 47 \"India\" false [648 7878 9432]]\n [\"Maite Hor",
"end": 19840,
"score": 0.9996549487113953,
"start": 19833,
"tag": "USERNAME",
"value": "aline52"
},
{
"context": " \"aline52\" 47 \"India\" false [648 7878 9432]]\n [\"Maite Horne\" \"maite57\" 69 \"USA\" false [4066 5150 9588]]\n [\"",
"end": 19892,
"score": 0.9998960494995117,
"start": 19881,
"tag": "NAME",
"value": "Maite Horne"
},
{
"context": "\"India\" false [648 7878 9432]]\n [\"Maite Horne\" \"maite57\" 69 \"USA\" false [4066 5150 9588]]\n [\"Naomi Maye",
"end": 19902,
"score": 0.999539315700531,
"start": 19895,
"tag": "USERNAME",
"value": "maite57"
},
{
"context": "\" \"maite57\" 69 \"USA\" false [4066 5150 9588]]\n [\"Naomi Mayer\" \"naomi29\" 50 \"Germany\" true [4520 4541 8405]]\n ",
"end": 19953,
"score": 0.9998930096626282,
"start": 19942,
"tag": "NAME",
"value": "Naomi Mayer"
},
{
"context": " \"USA\" false [4066 5150 9588]]\n [\"Naomi Mayer\" \"naomi29\" 50 \"Germany\" true [4520 4541 8405]]\n [\"TaShya ",
"end": 19963,
"score": 0.999566376209259,
"start": 19956,
"tag": "USERNAME",
"value": "naomi29"
},
{
"context": "naomi29\" 50 \"Germany\" true [4520 4541 8405]]\n [\"TaShya Rollins\" \"tashya87\" 52 \"Canada\" false [2870 9482 9864]]\n ",
"end": 20020,
"score": 0.9998814463615417,
"start": 20006,
"tag": "NAME",
"value": "TaShya Rollins"
},
{
"context": "any\" true [4520 4541 8405]]\n [\"TaShya Rollins\" \"tashya87\" 52 \"Canada\" false [2870 9482 9864]]\n [\"Emerson",
"end": 20031,
"score": 0.9994972348213196,
"start": 20023,
"tag": "USERNAME",
"value": "tashya87"
},
{
"context": "ashya87\" 52 \"Canada\" false [2870 9482 9864]]\n [\"Emerson Griffith\" \"emerson53\" 72 \"United Kingdom\" false [1919 2041",
"end": 20090,
"score": 0.9998936653137207,
"start": 20074,
"tag": "NAME",
"value": "Emerson Griffith"
},
{
"context": "\" false [2870 9482 9864]]\n [\"Emerson Griffith\" \"emerson53\" 72 \"United Kingdom\" false [1919 2041 7306]]\n [",
"end": 20102,
"score": 0.9996411800384521,
"start": 20093,
"tag": "USERNAME",
"value": "emerson53"
},
{
"context": " 72 \"United Kingdom\" false [1919 2041 7306]]\n [\"Laith Serrano\" \"laith10\" 10 \"Germany\" false [4751 7316 8284]]\n ",
"end": 20166,
"score": 0.9998979568481445,
"start": 20153,
"tag": "NAME",
"value": "Laith Serrano"
},
{
"context": "dom\" false [1919 2041 7306]]\n [\"Laith Serrano\" \"laith10\" 10 \"Germany\" false [4751 7316 8284]]\n [\"Cooper",
"end": 20176,
"score": 0.9996070265769958,
"start": 20169,
"tag": "USERNAME",
"value": "laith10"
},
{
"context": "aith10\" 10 \"Germany\" false [4751 7316 8284]]\n [\"Cooper Mccall\" \"cooper79\" 82 \"USA\" true [3094 5374 6218]]\n [\"",
"end": 20233,
"score": 0.999893844127655,
"start": 20220,
"tag": "NAME",
"value": "Cooper Mccall"
},
{
"context": "any\" false [4751 7316 8284]]\n [\"Cooper Mccall\" \"cooper79\" 82 \"USA\" true [3094 5374 6218]]\n [\"Hayes Ochoa",
"end": 20244,
"score": 0.9995744824409485,
"start": 20236,
"tag": "USERNAME",
"value": "cooper79"
},
{
"context": "\" \"cooper79\" 82 \"USA\" true [3094 5374 6218]]\n [\"Hayes Ochoa\" \"hayes53\" 13 \"Germany\" true [4443 5010 9225]]\n ",
"end": 20294,
"score": 0.9998965263366699,
"start": 20283,
"tag": "NAME",
"value": "Hayes Ochoa"
},
{
"context": "2 \"USA\" true [3094 5374 6218]]\n [\"Hayes Ochoa\" \"hayes53\" 13 \"Germany\" true [4443 5010 9225]]\n [\"Hollee ",
"end": 20304,
"score": 0.9993795156478882,
"start": 20297,
"tag": "USERNAME",
"value": "hayes53"
},
{
"context": "hayes53\" 13 \"Germany\" true [4443 5010 9225]]\n [\"Hollee Browning\" \"hollee45\" 75 \"Russia\" false [77 3053 3839]]\n ",
"end": 20362,
"score": 0.999896228313446,
"start": 20347,
"tag": "NAME",
"value": "Hollee Browning"
},
{
"context": "ny\" true [4443 5010 9225]]\n [\"Hollee Browning\" \"hollee45\" 75 \"Russia\" false [77 3053 3839]]\n [\"Grant Day",
"end": 20373,
"score": 0.9994826316833496,
"start": 20365,
"tag": "USERNAME",
"value": "hollee45"
},
{
"context": "\"hollee45\" 75 \"Russia\" false [77 3053 3839]]\n [\"Grant Day\" \"grant69\" 65 \"United Kingdom\" false [3149 4547 9",
"end": 20423,
"score": 0.999690055847168,
"start": 20414,
"tag": "NAME",
"value": "Grant Day"
},
{
"context": "5 \"Russia\" false [77 3053 3839]]\n [\"Grant Day\" \"grant69\" 65 \"United Kingdom\" false [3149 4547 9136]]\n [",
"end": 20433,
"score": 0.9988834261894226,
"start": 20426,
"tag": "USERNAME",
"value": "grant69"
},
{
"context": " 65 \"United Kingdom\" false [3149 4547 9136]]\n [\"Amber Goodman\" \"amber41\" 81 \"USA\" false [272 1762 2740]]\n [\"A",
"end": 20497,
"score": 0.9998890161514282,
"start": 20484,
"tag": "NAME",
"value": "Amber Goodman"
},
{
"context": "dom\" false [3149 4547 9136]]\n [\"Amber Goodman\" \"amber41\" 81 \"USA\" false [272 1762 2740]]\n [\"Ahmed Palme",
"end": 20507,
"score": 0.9994115233421326,
"start": 20500,
"tag": "USERNAME",
"value": "amber41"
},
{
"context": "n\" \"amber41\" 81 \"USA\" false [272 1762 2740]]\n [\"Ahmed Palmer\" \"ahmed66\" 16 \"United Kingdom\" true [428 4248 595",
"end": 20558,
"score": 0.9998853206634521,
"start": 20546,
"tag": "NAME",
"value": "Ahmed Palmer"
},
{
"context": " \"USA\" false [272 1762 2740]]\n [\"Ahmed Palmer\" \"ahmed66\" 16 \"United Kingdom\" true [428 4248 5957]]\n [\"C",
"end": 20568,
"score": 0.9995579123497009,
"start": 20561,
"tag": "USERNAME",
"value": "ahmed66"
},
{
"context": "6\" 16 \"United Kingdom\" true [428 4248 5957]]\n [\"Caldwell Gillespie\" \"caldwell18\" 46 \"Italy\" false [2210 3747 4966]]\n",
"end": 20635,
"score": 0.9998825788497925,
"start": 20617,
"tag": "NAME",
"value": "Caldwell Gillespie"
},
{
"context": "\" true [428 4248 5957]]\n [\"Caldwell Gillespie\" \"caldwell18\" 46 \"Italy\" false [2210 3747 4966]]\n [\"Patrick ",
"end": 20648,
"score": 0.9996310472488403,
"start": 20638,
"tag": "USERNAME",
"value": "caldwell18"
},
{
"context": "ldwell18\" 46 \"Italy\" false [2210 3747 4966]]\n [\"Patrick Howell\" \"patrick87\" 77 \"Canada\" true [1377 6880 8804]]\n ",
"end": 20704,
"score": 0.9998906850814819,
"start": 20690,
"tag": "NAME",
"value": "Patrick Howell"
},
{
"context": "ly\" false [2210 3747 4966]]\n [\"Patrick Howell\" \"patrick87\" 77 \"Canada\" true [1377 6880 8804]]\n [\"Wanda Ma",
"end": 20716,
"score": 0.9996012449264526,
"start": 20707,
"tag": "USERNAME",
"value": "patrick87"
},
{
"context": "atrick87\" 77 \"Canada\" true [1377 6880 8804]]\n [\"Wanda Macias\" \"wanda30\" 68 \"Nigeria\" true [2748 4290 5412]]\n ",
"end": 20770,
"score": 0.999893307685852,
"start": 20758,
"tag": "NAME",
"value": "Wanda Macias"
},
{
"context": "anada\" true [1377 6880 8804]]\n [\"Wanda Macias\" \"wanda30\" 68 \"Nigeria\" true [2748 4290 5412]]\n [\"Ali Wis",
"end": 20780,
"score": 0.9996141195297241,
"start": 20773,
"tag": "USERNAME",
"value": "wanda30"
},
{
"context": "wanda30\" 68 \"Nigeria\" true [2748 4290 5412]]\n [\"Ali Wise\" \"ali47\" 26 \"Russia\" true [3062 3948 8530]]\n [\"",
"end": 20831,
"score": 0.9998798370361328,
"start": 20823,
"tag": "NAME",
"value": "Ali Wise"
},
{
"context": " \"Nigeria\" true [2748 4290 5412]]\n [\"Ali Wise\" \"ali47\" 26 \"Russia\" true [3062 3948 8530]]\n [\"Scarlet ",
"end": 20839,
"score": 0.9996073842048645,
"start": 20834,
"tag": "USERNAME",
"value": "ali47"
},
{
"context": "\" \"ali47\" 26 \"Russia\" true [3062 3948 8530]]\n [\"Scarlet Navarro\" \"scarlet10\" 20 \"Russia\" false [3026 9025 9095]]\n",
"end": 20896,
"score": 0.9998944401741028,
"start": 20881,
"tag": "NAME",
"value": "Scarlet Navarro"
},
{
"context": "ia\" true [3062 3948 8530]]\n [\"Scarlet Navarro\" \"scarlet10\" 20 \"Russia\" false [3026 9025 9095]]\n [\"Illana ",
"end": 20908,
"score": 0.999187171459198,
"start": 20899,
"tag": "USERNAME",
"value": "scarlet10"
},
{
"context": "arlet10\" 20 \"Russia\" false [3026 9025 9095]]\n [\"Illana Le\" \"illana35\" 12 \"France\" true [5435 5947 6820]]\n ",
"end": 20960,
"score": 0.9998814463615417,
"start": 20951,
"tag": "NAME",
"value": "Illana Le"
},
{
"context": "\"Russia\" false [3026 9025 9095]]\n [\"Illana Le\" \"illana35\" 12 \"France\" true [5435 5947 6820]]\n [\"Damon Fr",
"end": 20971,
"score": 0.9995335340499878,
"start": 20963,
"tag": "USERNAME",
"value": "illana35"
},
{
"context": "illana35\" 12 \"France\" true [5435 5947 6820]]\n [\"Damon Frazier\" \"damon11\" 62 \"United Kingdom\" false [2941 9735 9",
"end": 21026,
"score": 0.9998935461044312,
"start": 21013,
"tag": "NAME",
"value": "Damon Frazier"
},
{
"context": "ance\" true [5435 5947 6820]]\n [\"Damon Frazier\" \"damon11\" 62 \"United Kingdom\" false [2941 9735 9901]]\n [",
"end": 21036,
"score": 0.9996784925460815,
"start": 21029,
"tag": "USERNAME",
"value": "damon11"
},
{
"context": " 62 \"United Kingdom\" false [2941 9735 9901]]\n [\"Farrah Lester\" \"farrah60\" 37 \"India\" true [219 546 850]]\n [\"M",
"end": 21100,
"score": 0.9998965263366699,
"start": 21087,
"tag": "NAME",
"value": "Farrah Lester"
},
{
"context": "dom\" false [2941 9735 9901]]\n [\"Farrah Lester\" \"farrah60\" 37 \"India\" true [219 546 850]]\n [\"Miranda Suar",
"end": 21111,
"score": 0.9996045827865601,
"start": 21103,
"tag": "USERNAME",
"value": "farrah60"
},
{
"context": "r\" \"farrah60\" 37 \"India\" true [219 546 850]]\n [\"Miranda Suarez\" \"miranda48\" 77 \"Nigeria\" false [1264 1559 3915]]",
"end": 21163,
"score": 0.9998950958251953,
"start": 21149,
"tag": "NAME",
"value": "Miranda Suarez"
},
{
"context": "\"India\" true [219 546 850]]\n [\"Miranda Suarez\" \"miranda48\" 77 \"Nigeria\" false [1264 1559 3915]]\n [\"Graham",
"end": 21175,
"score": 0.9991261959075928,
"start": 21166,
"tag": "USERNAME",
"value": "miranda48"
},
{
"context": "anda48\" 77 \"Nigeria\" false [1264 1559 3915]]\n [\"Graham Thompson\" \"graham39\" 36 \"India\" false [225 2106 5355]]\n ",
"end": 21234,
"score": 0.9998981356620789,
"start": 21219,
"tag": "NAME",
"value": "Graham Thompson"
},
{
"context": "a\" false [1264 1559 3915]]\n [\"Graham Thompson\" \"graham39\" 36 \"India\" false [225 2106 5355]]\n [\"Jane Rand",
"end": 21245,
"score": 0.9995452165603638,
"start": 21237,
"tag": "USERNAME",
"value": "graham39"
},
{
"context": "\"graham39\" 36 \"India\" false [225 2106 5355]]\n [\"Jane Randolph\" \"jane43\" 42 \"India\" true [3473 4969 8610]]\n [\"",
"end": 21299,
"score": 0.9998990297317505,
"start": 21286,
"tag": "NAME",
"value": "Jane Randolph"
},
{
"context": "ndia\" false [225 2106 5355]]\n [\"Jane Randolph\" \"jane43\" 42 \"India\" true [3473 4969 8610]]\n [\"Latifah S",
"end": 21308,
"score": 0.9995296597480774,
"start": 21302,
"tag": "USERNAME",
"value": "jane43"
},
{
"context": "\" \"jane43\" 42 \"India\" true [3473 4969 8610]]\n [\"Latifah Steele\" \"latifah63\" 51 \"Nigeria\" true [5056 6285 6867]]\n",
"end": 21363,
"score": 0.9998986124992371,
"start": 21349,
"tag": "NAME",
"value": "Latifah Steele"
},
{
"context": "dia\" true [3473 4969 8610]]\n [\"Latifah Steele\" \"latifah63\" 51 \"Nigeria\" true [5056 6285 6867]]\n [\"Sigourn",
"end": 21375,
"score": 0.9994553327560425,
"start": 21366,
"tag": "USERNAME",
"value": "latifah63"
},
{
"context": "tifah63\" 51 \"Nigeria\" true [5056 6285 6867]]\n [\"Sigourney Walter\" \"sigourney67\" 52 \"India\" false [2554 4752 8204]]",
"end": 21434,
"score": 0.9998939633369446,
"start": 21418,
"tag": "NAME",
"value": "Sigourney Walter"
},
{
"context": "a\" true [5056 6285 6867]]\n [\"Sigourney Walter\" \"sigourney67\" 52 \"India\" false [2554 4752 8204]]\n [\"Benjamin",
"end": 21448,
"score": 0.9995248913764954,
"start": 21437,
"tag": "USERNAME",
"value": "sigourney67"
},
{
"context": "ourney67\" 52 \"India\" false [2554 4752 8204]]\n [\"Benjamin Todd\" \"benjamin32\" 85 \"China\" true [1621 3361 3568]]\n ",
"end": 21503,
"score": 0.9998967051506042,
"start": 21490,
"tag": "NAME",
"value": "Benjamin Todd"
},
{
"context": "dia\" false [2554 4752 8204]]\n [\"Benjamin Todd\" \"benjamin32\" 85 \"China\" true [1621 3361 3568]]\n [\"Elliott B",
"end": 21516,
"score": 0.9996802806854248,
"start": 21506,
"tag": "USERNAME",
"value": "benjamin32"
},
{
"context": "enjamin32\" 85 \"China\" true [1621 3361 3568]]\n [\"Elliott Buckley\" \"elliott69\" 55 \"Nigeria\" false [2056 5380 9922]]",
"end": 21572,
"score": 0.9998948574066162,
"start": 21557,
"tag": "NAME",
"value": "Elliott Buckley"
},
{
"context": "na\" true [1621 3361 3568]]\n [\"Elliott Buckley\" \"elliott69\" 55 \"Nigeria\" false [2056 5380 9922]]\n [\"Linda ",
"end": 21584,
"score": 0.9996198415756226,
"start": 21575,
"tag": "USERNAME",
"value": "elliott69"
},
{
"context": "iott69\" 55 \"Nigeria\" false [2056 5380 9922]]\n [\"Linda Hood\" \"linda20\" 39 \"France\" false [3411 8191 8464]]\n ",
"end": 21638,
"score": 0.9998947381973267,
"start": 21628,
"tag": "NAME",
"value": "Linda Hood"
},
{
"context": "igeria\" false [2056 5380 9922]]\n [\"Linda Hood\" \"linda20\" 39 \"France\" false [3411 8191 8464]]\n [\"Jada Go",
"end": 21648,
"score": 0.9996482729911804,
"start": 21641,
"tag": "USERNAME",
"value": "linda20"
},
{
"context": "linda20\" 39 \"France\" false [3411 8191 8464]]\n [\"Jada Golden\" \"jada52\" 42 \"Russia\" true [1602 2524 6570]]\n [",
"end": 21702,
"score": 0.9998980760574341,
"start": 21691,
"tag": "NAME",
"value": "Jada Golden"
},
{
"context": "rance\" false [3411 8191 8464]]\n [\"Jada Golden\" \"jada52\" 42 \"Russia\" true [1602 2524 6570]]\n [\"Tamara H",
"end": 21711,
"score": 0.9995937347412109,
"start": 21705,
"tag": "USERNAME",
"value": "jada52"
},
{
"context": " \"jada52\" 42 \"Russia\" true [1602 2524 6570]]\n [\"Tamara Haynes\" \"tamara87\" 72 \"India\" true [866 1695 6205]]\n [",
"end": 21766,
"score": 0.999898374080658,
"start": 21753,
"tag": "NAME",
"value": "Tamara Haynes"
},
{
"context": "ssia\" true [1602 2524 6570]]\n [\"Tamara Haynes\" \"tamara87\" 72 \"India\" true [866 1695 6205]]\n [\"Tatyana Va",
"end": 21777,
"score": 0.9991278648376465,
"start": 21769,
"tag": "USERNAME",
"value": "tamara87"
},
{
"context": " \"tamara87\" 72 \"India\" true [866 1695 6205]]\n [\"Tatyana Vang\" \"tatyana80\" 89 \"Canada\" true [4863 5579 6304]]\n ",
"end": 21829,
"score": 0.9998800754547119,
"start": 21817,
"tag": "NAME",
"value": "Tatyana Vang"
},
{
"context": "\"India\" true [866 1695 6205]]\n [\"Tatyana Vang\" \"tatyana80\" 89 \"Canada\" true [4863 5579 6304]]\n [\"Harding ",
"end": 21841,
"score": 0.9987020492553711,
"start": 21832,
"tag": "USERNAME",
"value": "tatyana80"
},
{
"context": "atyana80\" 89 \"Canada\" true [4863 5579 6304]]\n [\"Harding Powell\" \"harding75\" 87 \"Russia\" false [429 2184 8146]]\n ",
"end": 21897,
"score": 0.9998928308486938,
"start": 21883,
"tag": "NAME",
"value": "Harding Powell"
},
{
"context": "ada\" true [4863 5579 6304]]\n [\"Harding Powell\" \"harding75\" 87 \"Russia\" false [429 2184 8146]]\n [\"Lavinia ",
"end": 21909,
"score": 0.9991280436515808,
"start": 21900,
"tag": "USERNAME",
"value": "harding75"
},
{
"context": "arding75\" 87 \"Russia\" false [429 2184 8146]]\n [\"Lavinia Salas\" \"lavinia81\" 58 \"United Kingdom\" true [5426 5462 ",
"end": 21964,
"score": 0.9998918175697327,
"start": 21951,
"tag": "NAME",
"value": "Lavinia Salas"
},
{
"context": "ssia\" false [429 2184 8146]]\n [\"Lavinia Salas\" \"lavinia81\" 58 \"United Kingdom\" true [5426 5462 6610]]\n [\"",
"end": 21976,
"score": 0.9990192651748657,
"start": 21967,
"tag": "USERNAME",
"value": "lavinia81"
},
{
"context": "\" 58 \"United Kingdom\" true [5426 5462 6610]]\n [\"Desirae Sanford\" \"desirae47\" 58 \"United Kingdom\" true [1631 4646 ",
"end": 22041,
"score": 0.9998990297317505,
"start": 22026,
"tag": "NAME",
"value": "Desirae Sanford"
},
{
"context": "om\" true [5426 5462 6610]]\n [\"Desirae Sanford\" \"desirae47\" 58 \"United Kingdom\" true [1631 4646 5957]]\n [\"",
"end": 22053,
"score": 0.9991642832756042,
"start": 22044,
"tag": "USERNAME",
"value": "desirae47"
},
{
"context": "\" 58 \"United Kingdom\" true [1631 4646 5957]]\n [\"Brenda Maynard\" \"brenda62\" 81 \"Russia\" true [435 7185 8950]]\n ",
"end": 22117,
"score": 0.99989914894104,
"start": 22103,
"tag": "NAME",
"value": "Brenda Maynard"
},
{
"context": "dom\" true [1631 4646 5957]]\n [\"Brenda Maynard\" \"brenda62\" 81 \"Russia\" true [435 7185 8950]]\n [\"Gemma Ros",
"end": 22128,
"score": 0.9994045495986938,
"start": 22120,
"tag": "USERNAME",
"value": "brenda62"
},
{
"context": "\"brenda62\" 81 \"Russia\" true [435 7185 8950]]\n [\"Gemma Rosario\" \"gemma42\" 42 \"Italy\" true [811 6570 9234]]\n [\"",
"end": 22182,
"score": 0.9998998045921326,
"start": 22169,
"tag": "NAME",
"value": "Gemma Rosario"
},
{
"context": "ussia\" true [435 7185 8950]]\n [\"Gemma Rosario\" \"gemma42\" 42 \"Italy\" true [811 6570 9234]]\n [\"Jamalia Pa",
"end": 22192,
"score": 0.999470591545105,
"start": 22185,
"tag": "USERNAME",
"value": "gemma42"
},
{
"context": "\" \"gemma42\" 42 \"Italy\" true [811 6570 9234]]\n [\"Jamalia Patrick\" \"jamalia24\" 78 \"USA\" true [314 2137 6055]]\n [\"",
"end": 22247,
"score": 0.9998975992202759,
"start": 22232,
"tag": "NAME",
"value": "Jamalia Patrick"
},
{
"context": "aly\" true [811 6570 9234]]\n [\"Jamalia Patrick\" \"jamalia24\" 78 \"USA\" true [314 2137 6055]]\n [\"Natalie Vaug",
"end": 22259,
"score": 0.999431848526001,
"start": 22250,
"tag": "USERNAME",
"value": "jamalia24"
},
{
"context": "\" \"jamalia24\" 78 \"USA\" true [314 2137 6055]]\n [\"Natalie Vaughn\" \"natalie81\" 23 \"USA\" true [4278 8454 8722]]\n [",
"end": 22311,
"score": 0.9998960494995117,
"start": 22297,
"tag": "NAME",
"value": "Natalie Vaughn"
},
{
"context": "\"USA\" true [314 2137 6055]]\n [\"Natalie Vaughn\" \"natalie81\" 23 \"USA\" true [4278 8454 8722]]\n [\"Jamal Engli",
"end": 22323,
"score": 0.9995085597038269,
"start": 22314,
"tag": "USERNAME",
"value": "natalie81"
},
{
"context": " \"natalie81\" 23 \"USA\" true [4278 8454 8722]]\n [\"Jamal English\" \"jamal82\" 20 \"USA\" false [1900 4363 8474]]\n [\"",
"end": 22375,
"score": 0.9998779296875,
"start": 22362,
"tag": "NAME",
"value": "Jamal English"
},
{
"context": "\"USA\" true [4278 8454 8722]]\n [\"Jamal English\" \"jamal82\" 20 \"USA\" false [1900 4363 8474]]\n [\"Reese Fuen",
"end": 22385,
"score": 0.9993685483932495,
"start": 22378,
"tag": "USERNAME",
"value": "jamal82"
},
{
"context": "\" \"jamal82\" 20 \"USA\" false [1900 4363 8474]]\n [\"Reese Fuentes\" \"reese83\" 65 \"Russia\" true [903 3617 4218]]\n [",
"end": 22438,
"score": 0.9998882412910461,
"start": 22425,
"tag": "NAME",
"value": "Reese Fuentes"
},
{
"context": "USA\" false [1900 4363 8474]]\n [\"Reese Fuentes\" \"reese83\" 65 \"Russia\" true [903 3617 4218]]\n [\"Clio Tann",
"end": 22448,
"score": 0.9993083477020264,
"start": 22441,
"tag": "USERNAME",
"value": "reese83"
},
{
"context": " \"reese83\" 65 \"Russia\" true [903 3617 4218]]\n [\"Clio Tanner\" \"clio29\" 48 \"Germany\" false [1743 2192 9095]]\n ",
"end": 22500,
"score": 0.9998911619186401,
"start": 22489,
"tag": "NAME",
"value": "Clio Tanner"
},
{
"context": "\"Russia\" true [903 3617 4218]]\n [\"Clio Tanner\" \"clio29\" 48 \"Germany\" false [1743 2192 9095]]\n [\"Conan ",
"end": 22509,
"score": 0.9942243695259094,
"start": 22503,
"tag": "USERNAME",
"value": "clio29"
},
{
"context": "clio29\" 48 \"Germany\" false [1743 2192 9095]]\n [\"Conan Kinney\" \"conan55\" 10 \"Canada\" true [1614 3670 4319]]\n ",
"end": 22565,
"score": 0.9998906254768372,
"start": 22553,
"tag": "NAME",
"value": "Conan Kinney"
},
{
"context": "many\" false [1743 2192 9095]]\n [\"Conan Kinney\" \"conan55\" 10 \"Canada\" true [1614 3670 4319]]\n [\"Abraham ",
"end": 22575,
"score": 0.9986500144004822,
"start": 22568,
"tag": "USERNAME",
"value": "conan55"
},
{
"context": "\"conan55\" 10 \"Canada\" true [1614 3670 4319]]\n [\"Abraham Sawyer\" \"abraham80\" 18 \"France\" false [3839 7141 9407]]\n",
"end": 22631,
"score": 0.999865710735321,
"start": 22617,
"tag": "NAME",
"value": "Abraham Sawyer"
},
{
"context": "ada\" true [1614 3670 4319]]\n [\"Abraham Sawyer\" \"abraham80\" 18 \"France\" false [3839 7141 9407]]\n [\"Violet ",
"end": 22643,
"score": 0.9841169118881226,
"start": 22634,
"tag": "USERNAME",
"value": "abraham80"
},
{
"context": "raham80\" 18 \"France\" false [3839 7141 9407]]\n [\"Violet Humphrey\" \"violet60\" 41 \"Germany\" true [4427 4831 7997]]\n ",
"end": 22701,
"score": 0.9998949766159058,
"start": 22686,
"tag": "NAME",
"value": "Violet Humphrey"
},
{
"context": "e\" false [3839 7141 9407]]\n [\"Violet Humphrey\" \"violet60\" 41 \"Germany\" true [4427 4831 7997]]\n [\"Casey S",
"end": 22712,
"score": 0.9995743036270142,
"start": 22704,
"tag": "USERNAME",
"value": "violet60"
},
{
"context": "iolet60\" 41 \"Germany\" true [4427 4831 7997]]\n [\"Casey Sears\" \"casey19\" 38 \"Russia\" true [462 4163 4660]]\n [",
"end": 22766,
"score": 0.9998930096626282,
"start": 22755,
"tag": "NAME",
"value": "Casey Sears"
},
{
"context": "ermany\" true [4427 4831 7997]]\n [\"Casey Sears\" \"casey19\" 38 \"Russia\" true [462 4163 4660]]\n [\"Silas Bes",
"end": 22776,
"score": 0.9996129274368286,
"start": 22769,
"tag": "USERNAME",
"value": "casey19"
},
{
"context": " \"casey19\" 38 \"Russia\" true [462 4163 4660]]\n [\"Silas Best\" \"silas72\" 17 \"Italy\" true [5587 7197 9909]]\n [",
"end": 22827,
"score": 0.9998573660850525,
"start": 22817,
"tag": "NAME",
"value": "Silas Best"
},
{
"context": " \"Russia\" true [462 4163 4660]]\n [\"Silas Best\" \"silas72\" 17 \"Italy\" true [5587 7197 9909]]\n [\"Pearl Dix",
"end": 22837,
"score": 0.9996378421783447,
"start": 22830,
"tag": "USERNAME",
"value": "silas72"
},
{
"context": " \"silas72\" 17 \"Italy\" true [5587 7197 9909]]\n [\"Pearl Dixon\" \"pearl29\" 78 \"Canada\" true [2030 2131 3805]]\n ",
"end": 22889,
"score": 0.9998958706855774,
"start": 22878,
"tag": "NAME",
"value": "Pearl Dixon"
},
{
"context": "\"Italy\" true [5587 7197 9909]]\n [\"Pearl Dixon\" \"pearl29\" 78 \"Canada\" true [2030 2131 3805]]\n [\"Rina Gar",
"end": 22899,
"score": 0.9994954466819763,
"start": 22892,
"tag": "USERNAME",
"value": "pearl29"
},
{
"context": "\"pearl29\" 78 \"Canada\" true [2030 2131 3805]]\n [\"Rina Garner\" \"rina65\" 58 \"USA\" false [1029 1821 6056]]\n [\"A",
"end": 22952,
"score": 0.9998946189880371,
"start": 22941,
"tag": "NAME",
"value": "Rina Garner"
},
{
"context": "Canada\" true [2030 2131 3805]]\n [\"Rina Garner\" \"rina65\" 58 \"USA\" false [1029 1821 6056]]\n [\"Amos Berge",
"end": 22961,
"score": 0.9995537996292114,
"start": 22955,
"tag": "USERNAME",
"value": "rina65"
},
{
"context": "r\" \"rina65\" 58 \"USA\" false [1029 1821 6056]]\n [\"Amos Berger\" \"amos63\" 28 \"Canada\" true [3715 6737 9537]]\n [",
"end": 23012,
"score": 0.999896228313446,
"start": 23001,
"tag": "NAME",
"value": "Amos Berger"
},
{
"context": " \"USA\" false [1029 1821 6056]]\n [\"Amos Berger\" \"amos63\" 28 \"Canada\" true [3715 6737 9537]]\n [\"Caesar C",
"end": 23021,
"score": 0.9995939135551453,
"start": 23015,
"tag": "USERNAME",
"value": "amos63"
},
{
"context": " \"amos63\" 28 \"Canada\" true [3715 6737 9537]]\n [\"Caesar Chase\" \"caesar58\" 24 \"Russia\" false [1660 2767 6477]]\n ",
"end": 23075,
"score": 0.9998939633369446,
"start": 23063,
"tag": "NAME",
"value": "Caesar Chase"
},
{
"context": "anada\" true [3715 6737 9537]]\n [\"Caesar Chase\" \"caesar58\" 24 \"Russia\" false [1660 2767 6477]]\n [\"Mark Ka",
"end": 23086,
"score": 0.9993718266487122,
"start": 23078,
"tag": "USERNAME",
"value": "caesar58"
},
{
"context": "aesar58\" 24 \"Russia\" false [1660 2767 6477]]\n [\"Mark Kaufman\" \"mark52\" 73 \"China\" true [974 1694 2992]]\n [\"W",
"end": 23141,
"score": 0.9998838305473328,
"start": 23129,
"tag": "NAME",
"value": "Mark Kaufman"
},
{
"context": "ssia\" false [1660 2767 6477]]\n [\"Mark Kaufman\" \"mark52\" 73 \"China\" true [974 1694 2992]]\n [\"Wylie Brig",
"end": 23150,
"score": 0.9996833205223083,
"start": 23144,
"tag": "USERNAME",
"value": "mark52"
},
{
"context": "n\" \"mark52\" 73 \"China\" true [974 1694 2992]]\n [\"Wylie Bright\" \"wylie42\" 64 \"Canada\" true [2830 5757 7648]]\n ",
"end": 23202,
"score": 0.9998925924301147,
"start": 23190,
"tag": "NAME",
"value": "Wylie Bright"
},
{
"context": "\"China\" true [974 1694 2992]]\n [\"Wylie Bright\" \"wylie42\" 64 \"Canada\" true [2830 5757 7648]]\n [\"Christen",
"end": 23212,
"score": 0.9996753931045532,
"start": 23205,
"tag": "USERNAME",
"value": "wylie42"
},
{
"context": "\"wylie42\" 64 \"Canada\" true [2830 5757 7648]]\n [\"Christen Mullins\" \"christen72\" 12 \"United Kingdom\" false [1438 281",
"end": 23270,
"score": 0.9998846054077148,
"start": 23254,
"tag": "NAME",
"value": "Christen Mullins"
},
{
"context": "a\" true [2830 5757 7648]]\n [\"Christen Mullins\" \"christen72\" 12 \"United Kingdom\" false [1438 2814 7213]]\n [",
"end": 23283,
"score": 0.9997112154960632,
"start": 23273,
"tag": "USERNAME",
"value": "christen72"
},
{
"context": " 12 \"United Kingdom\" false [1438 2814 7213]]\n [\"Alexa Munoz\" \"alexa42\" 17 \"China\" false [5715 6765 9154]]\n ",
"end": 23345,
"score": 0.9998878240585327,
"start": 23334,
"tag": "NAME",
"value": "Alexa Munoz"
},
{
"context": "ngdom\" false [1438 2814 7213]]\n [\"Alexa Munoz\" \"alexa42\" 17 \"China\" false [5715 6765 9154]]\n [\"Uriel Sa",
"end": 23355,
"score": 0.9996992945671082,
"start": 23348,
"tag": "USERNAME",
"value": "alexa42"
},
{
"context": "\"alexa42\" 17 \"China\" false [5715 6765 9154]]\n [\"Uriel Sargent\" \"uriel22\" 60 \"USA\" true [945 2176 4690]]\n [\"Xy",
"end": 23410,
"score": 0.9998923540115356,
"start": 23397,
"tag": "NAME",
"value": "Uriel Sargent"
},
{
"context": "ina\" false [5715 6765 9154]]\n [\"Uriel Sargent\" \"uriel22\" 60 \"USA\" true [945 2176 4690]]\n [\"Xyla Calhoun",
"end": 23420,
"score": 0.999638557434082,
"start": 23413,
"tag": "USERNAME",
"value": "uriel22"
},
{
"context": "nt\" \"uriel22\" 60 \"USA\" true [945 2176 4690]]\n [\"Xyla Calhoun\" \"xyla14\" 30 \"Russia\" false [121 4163 9957]]\n [",
"end": 23470,
"score": 0.9998905062675476,
"start": 23458,
"tag": "NAME",
"value": "Xyla Calhoun"
},
{
"context": "0 \"USA\" true [945 2176 4690]]\n [\"Xyla Calhoun\" \"xyla14\" 30 \"Russia\" false [121 4163 9957]]\n [\"Noel Com",
"end": 23479,
"score": 0.9995472431182861,
"start": 23473,
"tag": "USERNAME",
"value": "xyla14"
},
{
"context": " \"xyla14\" 30 \"Russia\" false [121 4163 9957]]\n [\"Noel Compton\" \"noel45\" 49 \"France\" false [1969 5701 5918]]\n ",
"end": 23533,
"score": 0.9998937845230103,
"start": 23521,
"tag": "NAME",
"value": "Noel Compton"
},
{
"context": "ussia\" false [121 4163 9957]]\n [\"Noel Compton\" \"noel45\" 49 \"France\" false [1969 5701 5918]]\n [\"Mallory",
"end": 23542,
"score": 0.9995367527008057,
"start": 23536,
"tag": "USERNAME",
"value": "noel45"
},
{
"context": "\"noel45\" 49 \"France\" false [1969 5701 5918]]\n [\"Mallory Pennington\" \"mallory47\" 56 \"Canada\" false [2337 6228 7388]]\n",
"end": 23603,
"score": 0.9998953938484192,
"start": 23585,
"tag": "NAME",
"value": "Mallory Pennington"
},
{
"context": "false [1969 5701 5918]]\n [\"Mallory Pennington\" \"mallory47\" 56 \"Canada\" false [2337 6228 7388]]\n [\"Ahmed M",
"end": 23615,
"score": 0.9995949268341064,
"start": 23606,
"tag": "USERNAME",
"value": "mallory47"
},
{
"context": "llory47\" 56 \"Canada\" false [2337 6228 7388]]\n [\"Ahmed Mayer\" \"ahmed78\" 81 \"Germany\" true [4863 5375 8136]]\n ",
"end": 23669,
"score": 0.9998937249183655,
"start": 23658,
"tag": "NAME",
"value": "Ahmed Mayer"
},
{
"context": "anada\" false [2337 6228 7388]]\n [\"Ahmed Mayer\" \"ahmed78\" 81 \"Germany\" true [4863 5375 8136]]\n [\"Cedric ",
"end": 23679,
"score": 0.9995775818824768,
"start": 23672,
"tag": "USERNAME",
"value": "ahmed78"
},
{
"context": "ahmed78\" 81 \"Germany\" true [4863 5375 8136]]\n [\"Cedric Cobb\" \"cedric44\" 11 \"China\" true [5245 6235 6642]]\n ",
"end": 23733,
"score": 0.999890923500061,
"start": 23722,
"tag": "NAME",
"value": "Cedric Cobb"
},
{
"context": "ermany\" true [4863 5375 8136]]\n [\"Cedric Cobb\" \"cedric44\" 11 \"China\" true [5245 6235 6642]]\n [\"Hilel Bar",
"end": 23744,
"score": 0.9995927214622498,
"start": 23736,
"tag": "USERNAME",
"value": "cedric44"
},
{
"context": "\"cedric44\" 11 \"China\" true [5245 6235 6642]]\n [\"Hilel Barber\" \"hilel54\" 69 \"Russia\" false [2064 3359 7652]]\n ",
"end": 23797,
"score": 0.9998963475227356,
"start": 23785,
"tag": "NAME",
"value": "Hilel Barber"
},
{
"context": "China\" true [5245 6235 6642]]\n [\"Hilel Barber\" \"hilel54\" 69 \"Russia\" false [2064 3359 7652]]\n [\"Deborah",
"end": 23807,
"score": 0.9995234608650208,
"start": 23800,
"tag": "USERNAME",
"value": "hilel54"
},
{
"context": "hilel54\" 69 \"Russia\" false [2064 3359 7652]]\n [\"Deborah Carter\" \"deborah32\" 26 \"India\" true [626 5121 8444]]\n ",
"end": 23864,
"score": 0.9998974800109863,
"start": 23850,
"tag": "NAME",
"value": "Deborah Carter"
},
{
"context": "ia\" false [2064 3359 7652]]\n [\"Deborah Carter\" \"deborah32\" 26 \"India\" true [626 5121 8444]]\n [\"Driscoll B",
"end": 23876,
"score": 0.9996301531791687,
"start": 23867,
"tag": "USERNAME",
"value": "deborah32"
},
{
"context": "\"deborah32\" 26 \"India\" true [626 5121 8444]]\n [\"Driscoll Becker\" \"driscoll66\" 64 \"France\" true [2051 2341 8366]]\n",
"end": 23931,
"score": 0.9998944997787476,
"start": 23916,
"tag": "NAME",
"value": "Driscoll Becker"
},
{
"context": "dia\" true [626 5121 8444]]\n [\"Driscoll Becker\" \"driscoll66\" 64 \"France\" true [2051 2341 8366]]\n [\"Jerry Ga",
"end": 23944,
"score": 0.999660849571228,
"start": 23934,
"tag": "USERNAME",
"value": "driscoll66"
},
{
"context": "iscoll66\" 64 \"France\" true [2051 2341 8366]]\n [\"Jerry Garner\" \"jerry87\" 79 \"Italy\" true [2280 4822 6847]]\n [",
"end": 23998,
"score": 0.9998934268951416,
"start": 23986,
"tag": "NAME",
"value": "Jerry Garner"
},
{
"context": "rance\" true [2051 2341 8366]]\n [\"Jerry Garner\" \"jerry87\" 79 \"Italy\" true [2280 4822 6847]]\n [\"Brian Mer",
"end": 24008,
"score": 0.9996355175971985,
"start": 24001,
"tag": "USERNAME",
"value": "jerry87"
},
{
"context": " \"jerry87\" 79 \"Italy\" true [2280 4822 6847]]\n [\"Brian Merritt\" \"brian46\" 36 \"Germany\" false [2674 5072 7738]]\n ",
"end": 24062,
"score": 0.9998915791511536,
"start": 24049,
"tag": "NAME",
"value": "Brian Merritt"
},
{
"context": "taly\" true [2280 4822 6847]]\n [\"Brian Merritt\" \"brian46\" 36 \"Germany\" false [2674 5072 7738]]\n [\"Jorden",
"end": 24072,
"score": 0.9996421337127686,
"start": 24065,
"tag": "USERNAME",
"value": "brian46"
},
{
"context": "rian46\" 36 \"Germany\" false [2674 5072 7738]]\n [\"Jorden Richards\" \"jorden78\" 70 \"Canada\" false [2794 6445 6897]]\n ",
"end": 24131,
"score": 0.9998946189880371,
"start": 24116,
"tag": "NAME",
"value": "Jorden Richards"
},
{
"context": "y\" false [2674 5072 7738]]\n [\"Jorden Richards\" \"jorden78\" 70 \"Canada\" false [2794 6445 6897]]\n [\"Blythe ",
"end": 24142,
"score": 0.9996081590652466,
"start": 24134,
"tag": "USERNAME",
"value": "jorden78"
},
{
"context": "orden78\" 70 \"Canada\" false [2794 6445 6897]]\n [\"Blythe Hughes\" \"blythe58\" 15 \"China\" false [3681 6296 8444]]\n ",
"end": 24198,
"score": 0.9998936653137207,
"start": 24185,
"tag": "NAME",
"value": "Blythe Hughes"
},
{
"context": "ada\" false [2794 6445 6897]]\n [\"Blythe Hughes\" \"blythe58\" 15 \"China\" false [3681 6296 8444]]\n [\"Stacey F",
"end": 24209,
"score": 0.9996075630187988,
"start": 24201,
"tag": "USERNAME",
"value": "blythe58"
},
{
"context": "blythe58\" 15 \"China\" false [3681 6296 8444]]\n [\"Stacey Frank\" \"stacey44\" 67 \"Canada\" true [684 2372 9499]]\n ",
"end": 24263,
"score": 0.9998871684074402,
"start": 24251,
"tag": "NAME",
"value": "Stacey Frank"
},
{
"context": "hina\" false [3681 6296 8444]]\n [\"Stacey Frank\" \"stacey44\" 67 \"Canada\" true [684 2372 9499]]\n [\"Bo Taylor",
"end": 24274,
"score": 0.999616265296936,
"start": 24266,
"tag": "USERNAME",
"value": "stacey44"
},
{
"context": "\"stacey44\" 67 \"Canada\" true [684 2372 9499]]\n [\"Bo Taylor\" \"bo28\" 16 \"United Kingdom\" true [357 4317 7385]]",
"end": 24324,
"score": 0.9998812675476074,
"start": 24315,
"tag": "NAME",
"value": "Bo Taylor"
},
{
"context": "7 \"Canada\" true [684 2372 9499]]\n [\"Bo Taylor\" \"bo28\" 16 \"United Kingdom\" true [357 4317 7385]]\n [\"W",
"end": 24331,
"score": 0.9994843602180481,
"start": 24327,
"tag": "USERNAME",
"value": "bo28"
},
{
"context": "8\" 16 \"United Kingdom\" true [357 4317 7385]]\n [\"Wynter Barber\" \"wynter72\" 66 \"India\" true [742 7640 7654]]\n [",
"end": 24393,
"score": 0.9998887777328491,
"start": 24380,
"tag": "NAME",
"value": "Wynter Barber"
},
{
"context": "ngdom\" true [357 4317 7385]]\n [\"Wynter Barber\" \"wynter72\" 66 \"India\" true [742 7640 7654]]\n [\"Noelle Wal",
"end": 24404,
"score": 0.9994707107543945,
"start": 24396,
"tag": "USERNAME",
"value": "wynter72"
},
{
"context": " \"wynter72\" 66 \"India\" true [742 7640 7654]]\n [\"Noelle Waller\" \"noelle32\" 55 \"Canada\" false [378 1748 8448]]\n ",
"end": 24457,
"score": 0.9998980164527893,
"start": 24444,
"tag": "NAME",
"value": "Noelle Waller"
},
{
"context": "India\" true [742 7640 7654]]\n [\"Noelle Waller\" \"noelle32\" 55 \"Canada\" false [378 1748 8448]]\n [\"Casey Hi",
"end": 24468,
"score": 0.9996534585952759,
"start": 24460,
"tag": "USERNAME",
"value": "noelle32"
},
{
"context": "noelle32\" 55 \"Canada\" false [378 1748 8448]]\n [\"Casey Hines\" \"casey46\" 68 \"Russia\" true [2992 4233 8463]]\n ",
"end": 24521,
"score": 0.9998974204063416,
"start": 24510,
"tag": "NAME",
"value": "Casey Hines"
},
{
"context": "Canada\" false [378 1748 8448]]\n [\"Casey Hines\" \"casey46\" 68 \"Russia\" true [2992 4233 8463]]\n [\"Brittany",
"end": 24531,
"score": 0.9996404647827148,
"start": 24524,
"tag": "USERNAME",
"value": "casey46"
},
{
"context": "\"casey46\" 68 \"Russia\" true [2992 4233 8463]]\n [\"Brittany Rush\" \"brittany76\" 42 \"France\" true [3429 4548 8112]]\n",
"end": 24586,
"score": 0.999893307685852,
"start": 24573,
"tag": "NAME",
"value": "Brittany Rush"
},
{
"context": "ssia\" true [2992 4233 8463]]\n [\"Brittany Rush\" \"brittany76\" 42 \"France\" true [3429 4548 8112]]\n [\"Byron Ca",
"end": 24599,
"score": 0.9995893239974976,
"start": 24589,
"tag": "USERNAME",
"value": "brittany76"
},
{
"context": "ittany76\" 42 \"France\" true [3429 4548 8112]]\n [\"Byron Carey\" \"byron36\" 27 \"Nigeria\" false [1861 3528 7496]]\n ",
"end": 24652,
"score": 0.999901294708252,
"start": 24641,
"tag": "NAME",
"value": "Byron Carey"
},
{
"context": "France\" true [3429 4548 8112]]\n [\"Byron Carey\" \"byron36\" 27 \"Nigeria\" false [1861 3528 7496]]\n [\"Hamish",
"end": 24662,
"score": 0.9996030926704407,
"start": 24655,
"tag": "USERNAME",
"value": "byron36"
},
{
"context": "yron36\" 27 \"Nigeria\" false [1861 3528 7496]]\n [\"Hamish Fry\" \"hamish68\" 46 \"China\" true [226 2526 5174]]\n [",
"end": 24716,
"score": 0.9998984932899475,
"start": 24706,
"tag": "NAME",
"value": "Hamish Fry"
},
{
"context": "igeria\" false [1861 3528 7496]]\n [\"Hamish Fry\" \"hamish68\" 46 \"China\" true [226 2526 5174]]\n [\"Florence R",
"end": 24727,
"score": 0.9995222091674805,
"start": 24719,
"tag": "USERNAME",
"value": "hamish68"
},
{
"context": " \"hamish68\" 46 \"China\" true [226 2526 5174]]\n [\"Florence Robinson\" \"florence38\" 25 \"Canada\" false [619 2547 9462]]\n",
"end": 24784,
"score": 0.9998971223831177,
"start": 24767,
"tag": "NAME",
"value": "Florence Robinson"
},
{
"context": "a\" true [226 2526 5174]]\n [\"Florence Robinson\" \"florence38\" 25 \"Canada\" false [619 2547 9462]]\n [\"Germaine",
"end": 24797,
"score": 0.9996158480644226,
"start": 24787,
"tag": "USERNAME",
"value": "florence38"
},
{
"context": "orence38\" 25 \"Canada\" false [619 2547 9462]]\n [\"Germaine Mays\" \"germaine70\" 55 \"France\" false [27 1572 8204]]\n ",
"end": 24852,
"score": 0.9998944997787476,
"start": 24839,
"tag": "NAME",
"value": "Germaine Mays"
},
{
"context": "nada\" false [619 2547 9462]]\n [\"Germaine Mays\" \"germaine70\" 55 \"France\" false [27 1572 8204]]\n [\"Venus Mil",
"end": 24865,
"score": 0.9996076822280884,
"start": 24855,
"tag": "USERNAME",
"value": "germaine70"
},
{
"context": "ermaine70\" 55 \"France\" false [27 1572 8204]]\n [\"Venus Mills\" \"venus32\" 22 \"Nigeria\" false [1550 2290 8096]]\n ",
"end": 24917,
"score": 0.9998921751976013,
"start": 24906,
"tag": "NAME",
"value": "Venus Mills"
},
{
"context": "\"France\" false [27 1572 8204]]\n [\"Venus Mills\" \"venus32\" 22 \"Nigeria\" false [1550 2290 8096]]\n [\"Mannix",
"end": 24927,
"score": 0.9993813633918762,
"start": 24920,
"tag": "USERNAME",
"value": "venus32"
},
{
"context": "enus32\" 22 \"Nigeria\" false [1550 2290 8096]]\n [\"Mannix Henson\" \"mannix37\" 88 \"India\" true [7655 8578 8788]]\n ",
"end": 24984,
"score": 0.9998935461044312,
"start": 24971,
"tag": "NAME",
"value": "Mannix Henson"
},
{
"context": "ria\" false [1550 2290 8096]]\n [\"Mannix Henson\" \"mannix37\" 88 \"India\" true [7655 8578 8788]]\n [\"Willa Rei",
"end": 24995,
"score": 0.9996805191040039,
"start": 24987,
"tag": "USERNAME",
"value": "mannix37"
},
{
"context": "\"mannix37\" 88 \"India\" true [7655 8578 8788]]\n [\"Willa Reilly\" \"willa87\" 73 \"United Kingdom\" true [185 6342 822",
"end": 25048,
"score": 0.9998996257781982,
"start": 25036,
"tag": "NAME",
"value": "Willa Reilly"
},
{
"context": "India\" true [7655 8578 8788]]\n [\"Willa Reilly\" \"willa87\" 73 \"United Kingdom\" true [185 6342 8226]]\n [\"A",
"end": 25058,
"score": 0.9996066689491272,
"start": 25051,
"tag": "USERNAME",
"value": "willa87"
},
{
"context": "7\" 73 \"United Kingdom\" true [185 6342 8226]]\n [\"Aline Howe\" \"aline71\" 33 \"Canada\" false [1806 2436 2746]]\n ",
"end": 25117,
"score": 0.9998983144760132,
"start": 25107,
"tag": "NAME",
"value": "Aline Howe"
},
{
"context": " Kingdom\" true [185 6342 8226]]\n [\"Aline Howe\" \"aline71\" 33 \"Canada\" false [1806 2436 2746]]\n [\"Keane C",
"end": 25127,
"score": 0.9996234774589539,
"start": 25120,
"tag": "USERNAME",
"value": "aline71"
},
{
"context": "aline71\" 33 \"Canada\" false [1806 2436 2746]]\n [\"Keane Carey\" \"keane69\" 62 \"France\" false [910 1009 2269]]\n ",
"end": 25181,
"score": 0.999900221824646,
"start": 25170,
"tag": "NAME",
"value": "Keane Carey"
},
{
"context": "anada\" false [1806 2436 2746]]\n [\"Keane Carey\" \"keane69\" 62 \"France\" false [910 1009 2269]]\n [\"Thomas H",
"end": 25191,
"score": 0.9995850324630737,
"start": 25184,
"tag": "USERNAME",
"value": "keane69"
},
{
"context": "\"keane69\" 62 \"France\" false [910 1009 2269]]\n [\"Thomas Hartman\" \"thomas29\" 54 \"Germany\" false [1294 3315 7378]]\n",
"end": 25247,
"score": 0.9998838305473328,
"start": 25233,
"tag": "NAME",
"value": "Thomas Hartman"
},
{
"context": "nce\" false [910 1009 2269]]\n [\"Thomas Hartman\" \"thomas29\" 54 \"Germany\" false [1294 3315 7378]]\n [\"Jack A",
"end": 25258,
"score": 0.9996793270111084,
"start": 25250,
"tag": "USERNAME",
"value": "thomas29"
},
{
"context": "omas29\" 54 \"Germany\" false [1294 3315 7378]]\n [\"Jack Armstrong\" \"jack71\" 59 \"USA\" false [1165 5327 8931]]\n [\"E",
"end": 25316,
"score": 0.9998767971992493,
"start": 25302,
"tag": "NAME",
"value": "Jack Armstrong"
},
{
"context": "ny\" false [1294 3315 7378]]\n [\"Jack Armstrong\" \"jack71\" 59 \"USA\" false [1165 5327 8931]]\n [\"Elijah Her",
"end": 25325,
"score": 0.9992389678955078,
"start": 25319,
"tag": "USERNAME",
"value": "jack71"
},
{
"context": "g\" \"jack71\" 59 \"USA\" false [1165 5327 8931]]\n [\"Elijah Herrera\" \"elijah19\" 30 \"Germany\" true [1688 3181 3661]]\n ",
"end": 25379,
"score": 0.9998926520347595,
"start": 25365,
"tag": "NAME",
"value": "Elijah Herrera"
},
{
"context": "SA\" false [1165 5327 8931]]\n [\"Elijah Herrera\" \"elijah19\" 30 \"Germany\" true [1688 3181 3661]]\n [\"Angela ",
"end": 25390,
"score": 0.9993366003036499,
"start": 25382,
"tag": "USERNAME",
"value": "elijah19"
},
{
"context": "lijah19\" 30 \"Germany\" true [1688 3181 3661]]\n [\"Angela Acosta\" \"angela67\" 65 \"Canada\" true [1 7200 9529]]\n [\"",
"end": 25446,
"score": 0.9998882412910461,
"start": 25433,
"tag": "NAME",
"value": "Angela Acosta"
},
{
"context": "many\" true [1688 3181 3661]]\n [\"Angela Acosta\" \"angela67\" 65 \"Canada\" true [1 7200 9529]]\n [\"Germaine Da",
"end": 25457,
"score": 0.9995592832565308,
"start": 25449,
"tag": "USERNAME",
"value": "angela67"
},
{
"context": "\" \"angela67\" 65 \"Canada\" true [1 7200 9529]]\n [\"Germaine Daniels\" \"germaine48\" 74 \"Nigeria\" true [2711 7557 9394]]",
"end": 25512,
"score": 0.9998825788497925,
"start": 25496,
"tag": "NAME",
"value": "Germaine Daniels"
},
{
"context": "nada\" true [1 7200 9529]]\n [\"Germaine Daniels\" \"germaine48\" 74 \"Nigeria\" true [2711 7557 9394]]\n [\"Illiana",
"end": 25525,
"score": 0.9996485710144043,
"start": 25515,
"tag": "USERNAME",
"value": "germaine48"
},
{
"context": "maine48\" 74 \"Nigeria\" true [2711 7557 9394]]\n [\"Illiana Jones\" \"illiana82\" 47 \"USA\" false [5420 8178 8820]]\n ",
"end": 25581,
"score": 0.9998863935470581,
"start": 25568,
"tag": "NAME",
"value": "Illiana Jones"
},
{
"context": "eria\" true [2711 7557 9394]]\n [\"Illiana Jones\" \"illiana82\" 47 \"USA\" false [5420 8178 8820]]\n [\"Alec Marti",
"end": 25593,
"score": 0.9995554089546204,
"start": 25584,
"tag": "USERNAME",
"value": "illiana82"
},
{
"context": "\"illiana82\" 47 \"USA\" false [5420 8178 8820]]\n [\"Alec Martinez\" \"alec62\" 20 \"USA\" false [1570 6633 9635]]\n [\"M",
"end": 25646,
"score": 0.9998897314071655,
"start": 25633,
"tag": "NAME",
"value": "Alec Martinez"
},
{
"context": "USA\" false [5420 8178 8820]]\n [\"Alec Martinez\" \"alec62\" 20 \"USA\" false [1570 6633 9635]]\n [\"Madison Ha",
"end": 25655,
"score": 0.9995409250259399,
"start": 25649,
"tag": "USERNAME",
"value": "alec62"
},
{
"context": "z\" \"alec62\" 20 \"USA\" false [1570 6633 9635]]\n [\"Madison Haynes\" \"madison71\" 32 \"India\" false [4786 6248 7229]]\n ",
"end": 25709,
"score": 0.9998964071273804,
"start": 25695,
"tag": "NAME",
"value": "Madison Haynes"
},
{
"context": "SA\" false [1570 6633 9635]]\n [\"Madison Haynes\" \"madison71\" 32 \"India\" false [4786 6248 7229]]\n [\"Sydnee W",
"end": 25721,
"score": 0.9995699524879456,
"start": 25712,
"tag": "USERNAME",
"value": "madison71"
},
{
"context": "adison71\" 32 \"India\" false [4786 6248 7229]]\n [\"Sydnee Watson\" \"sydnee39\" 49 \"Italy\" false [4658 5355 8038]]\n ",
"end": 25776,
"score": 0.9998953938484192,
"start": 25763,
"tag": "NAME",
"value": "Sydnee Watson"
},
{
"context": "dia\" false [4786 6248 7229]]\n [\"Sydnee Watson\" \"sydnee39\" 49 \"Italy\" false [4658 5355 8038]]\n [\"Chantale",
"end": 25787,
"score": 0.9995868802070618,
"start": 25779,
"tag": "USERNAME",
"value": "sydnee39"
},
{
"context": "sydnee39\" 49 \"Italy\" false [4658 5355 8038]]\n [\"Chantale Delacruz\" \"chantale56\" 84 \"Russia\" false [3814 6922 9884]]",
"end": 25846,
"score": 0.9998927712440491,
"start": 25829,
"tag": "NAME",
"value": "Chantale Delacruz"
},
{
"context": " false [4658 5355 8038]]\n [\"Chantale Delacruz\" \"chantale56\" 84 \"Russia\" false [3814 6922 9884]]\n [\"Keefe B",
"end": 25859,
"score": 0.9994511604309082,
"start": 25849,
"tag": "USERNAME",
"value": "chantale56"
},
{
"context": "ntale56\" 84 \"Russia\" false [3814 6922 9884]]\n [\"Keefe Bullock\" \"keefe60\" 40 \"Russia\" true [1008 4228 5490]]\n ",
"end": 25915,
"score": 0.9998926520347595,
"start": 25902,
"tag": "NAME",
"value": "Keefe Bullock"
},
{
"context": "sia\" false [3814 6922 9884]]\n [\"Keefe Bullock\" \"keefe60\" 40 \"Russia\" true [1008 4228 5490]]\n [\"Simon Ch",
"end": 25925,
"score": 0.9989132881164551,
"start": 25918,
"tag": "USERNAME",
"value": "keefe60"
},
{
"context": "\"keefe60\" 40 \"Russia\" true [1008 4228 5490]]\n [\"Simon Chandler\" \"simon33\" 54 \"Canada\" false [1607 2576 6662]]\n ",
"end": 25981,
"score": 0.9998903274536133,
"start": 25967,
"tag": "NAME",
"value": "Simon Chandler"
},
{
"context": "sia\" true [1008 4228 5490]]\n [\"Simon Chandler\" \"simon33\" 54 \"Canada\" false [1607 2576 6662]]\n [\"Keefe S",
"end": 25991,
"score": 0.9996523261070251,
"start": 25984,
"tag": "USERNAME",
"value": "simon33"
},
{
"context": "simon33\" 54 \"Canada\" false [1607 2576 6662]]\n [\"Keefe Santana\" \"keefe63\" 46 \"Germany\" false [4114 6887 7764]]\n ",
"end": 26047,
"score": 0.9998869895935059,
"start": 26034,
"tag": "NAME",
"value": "Keefe Santana"
},
{
"context": "ada\" false [1607 2576 6662]]\n [\"Keefe Santana\" \"keefe63\" 46 \"Germany\" false [4114 6887 7764]]\n [\"Upton ",
"end": 26057,
"score": 0.9988197684288025,
"start": 26050,
"tag": "USERNAME",
"value": "keefe63"
},
{
"context": "eefe63\" 46 \"Germany\" false [4114 6887 7764]]\n [\"Upton Manning\" \"upton40\" 72 \"China\" true [2810 4821 5584]]\n [",
"end": 26114,
"score": 0.9998853206634521,
"start": 26101,
"tag": "NAME",
"value": "Upton Manning"
},
{
"context": "any\" false [4114 6887 7764]]\n [\"Upton Manning\" \"upton40\" 72 \"China\" true [2810 4821 5584]]\n [\"Diana How",
"end": 26124,
"score": 0.9990350008010864,
"start": 26117,
"tag": "USERNAME",
"value": "upton40"
},
{
"context": " \"upton40\" 72 \"China\" true [2810 4821 5584]]\n [\"Diana Howard\" \"diana38\" 53 \"Russia\" false [4517 6083 9151]]\n ",
"end": 26177,
"score": 0.9998905062675476,
"start": 26165,
"tag": "NAME",
"value": "Diana Howard"
},
{
"context": "China\" true [2810 4821 5584]]\n [\"Diana Howard\" \"diana38\" 53 \"Russia\" false [4517 6083 9151]]\n [\"Nichole",
"end": 26187,
"score": 0.999584436416626,
"start": 26180,
"tag": "USERNAME",
"value": "diana38"
},
{
"context": "diana38\" 53 \"Russia\" false [4517 6083 9151]]\n [\"Nichole Christian\" \"nichole81\" 53 \"Italy\" false [2209 2492 6296]]\n ",
"end": 26247,
"score": 0.9998921155929565,
"start": 26230,
"tag": "NAME",
"value": "Nichole Christian"
},
{
"context": " false [4517 6083 9151]]\n [\"Nichole Christian\" \"nichole81\" 53 \"Italy\" false [2209 2492 6296]]\n [\"Seth Cas",
"end": 26259,
"score": 0.9996393918991089,
"start": 26250,
"tag": "USERNAME",
"value": "nichole81"
},
{
"context": "ichole81\" 53 \"Italy\" false [2209 2492 6296]]\n [\"Seth Cash\" \"seth87\" 37 \"USA\" true [655 7348 9747]]\n [\"Che",
"end": 26310,
"score": 0.9998471736907959,
"start": 26301,
"tag": "NAME",
"value": "Seth Cash"
},
{
"context": " \"Italy\" false [2209 2492 6296]]\n [\"Seth Cash\" \"seth87\" 37 \"USA\" true [655 7348 9747]]\n [\"Chelsea Calh",
"end": 26319,
"score": 0.9995552897453308,
"start": 26313,
"tag": "USERNAME",
"value": "seth87"
},
{
"context": "ash\" \"seth87\" 37 \"USA\" true [655 7348 9747]]\n [\"Chelsea Calhoun\" \"chelsea84\" 15 \"Nigeria\" false [5231 7673 7805]]",
"end": 26372,
"score": 0.9998889565467834,
"start": 26357,
"tag": "NAME",
"value": "Chelsea Calhoun"
},
{
"context": "USA\" true [655 7348 9747]]\n [\"Chelsea Calhoun\" \"chelsea84\" 15 \"Nigeria\" false [5231 7673 7805]]\n [\"Lamar ",
"end": 26384,
"score": 0.9993480443954468,
"start": 26375,
"tag": "USERNAME",
"value": "chelsea84"
},
{
"context": "lsea84\" 15 \"Nigeria\" false [5231 7673 7805]]\n [\"Lamar Dominguez\" \"lamar40\" 43 \"France\" true [1783 6141 8346]]\n ",
"end": 26443,
"score": 0.9998931288719177,
"start": 26428,
"tag": "NAME",
"value": "Lamar Dominguez"
},
{
"context": "a\" false [5231 7673 7805]]\n [\"Lamar Dominguez\" \"lamar40\" 43 \"France\" true [1783 6141 8346]]\n [\"Brynne V",
"end": 26453,
"score": 0.9996058940887451,
"start": 26446,
"tag": "USERNAME",
"value": "lamar40"
},
{
"context": "\"lamar40\" 43 \"France\" true [1783 6141 8346]]\n [\"Brynne Vasquez\" \"brynne49\" 78 \"China\" false [2243 2530 5893]]\n ",
"end": 26509,
"score": 0.9998936653137207,
"start": 26495,
"tag": "NAME",
"value": "Brynne Vasquez"
},
{
"context": "nce\" true [1783 6141 8346]]\n [\"Brynne Vasquez\" \"brynne49\" 78 \"China\" false [2243 2530 5893]]\n [\"Jared Ma",
"end": 26520,
"score": 0.9995056986808777,
"start": 26512,
"tag": "USERNAME",
"value": "brynne49"
},
{
"context": "brynne49\" 78 \"China\" false [2243 2530 5893]]\n [\"Jared Marks\" \"jared74\" 41 \"Russia\" true [125 198 2579]]\n [\"",
"end": 26573,
"score": 0.9998892545700073,
"start": 26562,
"tag": "NAME",
"value": "Jared Marks"
},
{
"context": "China\" false [2243 2530 5893]]\n [\"Jared Marks\" \"jared74\" 41 \"Russia\" true [125 198 2579]]\n [\"Herrod Kei",
"end": 26583,
"score": 0.9996280670166016,
"start": 26576,
"tag": "USERNAME",
"value": "jared74"
},
{
"context": "\" \"jared74\" 41 \"Russia\" true [125 198 2579]]\n [\"Herrod Keith\" \"herrod40\" 63 \"United Kingdom\" true [1473 1807 5",
"end": 26635,
"score": 0.9998994469642639,
"start": 26623,
"tag": "NAME",
"value": "Herrod Keith"
},
{
"context": "\"Russia\" true [125 198 2579]]\n [\"Herrod Keith\" \"herrod40\" 63 \"United Kingdom\" true [1473 1807 5023]]\n [\"",
"end": 26646,
"score": 0.9996247887611389,
"start": 26638,
"tag": "USERNAME",
"value": "herrod40"
},
{
"context": "\" 63 \"United Kingdom\" true [1473 1807 5023]]\n [\"Britanney Avila\" \"britanney74\" 63 \"Germany\" false [4251 4757 5447",
"end": 26711,
"score": 0.9998990893363953,
"start": 26696,
"tag": "NAME",
"value": "Britanney Avila"
},
{
"context": "om\" true [1473 1807 5023]]\n [\"Britanney Avila\" \"britanney74\" 63 \"Germany\" false [4251 4757 5447]]\n [\"Tanish",
"end": 26725,
"score": 0.9995520114898682,
"start": 26714,
"tag": "USERNAME",
"value": "britanney74"
},
{
"context": "nney74\" 63 \"Germany\" false [4251 4757 5447]]\n [\"Tanisha Alford\" \"tanisha44\" 89 \"India\" false [416 3212 7590]]\n ",
"end": 26783,
"score": 0.99989914894104,
"start": 26769,
"tag": "NAME",
"value": "Tanisha Alford"
},
{
"context": "ny\" false [4251 4757 5447]]\n [\"Tanisha Alford\" \"tanisha44\" 89 \"India\" false [416 3212 7590]]\n [\"Yardley B",
"end": 26795,
"score": 0.9995511174201965,
"start": 26786,
"tag": "USERNAME",
"value": "tanisha44"
},
{
"context": "tanisha44\" 89 \"India\" false [416 3212 7590]]\n [\"Yardley Blair\" \"yardley22\" 84 \"USA\" false [968 5369 6151]]\n [",
"end": 26849,
"score": 0.9998924136161804,
"start": 26836,
"tag": "NAME",
"value": "Yardley Blair"
},
{
"context": "ndia\" false [416 3212 7590]]\n [\"Yardley Blair\" \"yardley22\" 84 \"USA\" false [968 5369 6151]]\n [\"Dara Kirby\"",
"end": 26861,
"score": 0.9995440244674683,
"start": 26852,
"tag": "USERNAME",
"value": "yardley22"
},
{
"context": " \"yardley22\" 84 \"USA\" false [968 5369 6151]]\n [\"Dara Kirby\" \"dara41\" 41 \"USA\" true [5592 8721 9426]]\n [\"Ch",
"end": 26910,
"score": 0.9998928308486938,
"start": 26900,
"tag": "NAME",
"value": "Dara Kirby"
},
{
"context": "84 \"USA\" false [968 5369 6151]]\n [\"Dara Kirby\" \"dara41\" 41 \"USA\" true [5592 8721 9426]]\n [\"Chelsea Bri",
"end": 26919,
"score": 0.9996241331100464,
"start": 26913,
"tag": "USERNAME",
"value": "dara41"
},
{
"context": "by\" \"dara41\" 41 \"USA\" true [5592 8721 9426]]\n [\"Chelsea Bright\" \"chelsea81\" 34 \"Russia\" false [3592 7823 9002]]\n",
"end": 26972,
"score": 0.9998839497566223,
"start": 26958,
"tag": "NAME",
"value": "Chelsea Bright"
},
{
"context": "USA\" true [5592 8721 9426]]\n [\"Chelsea Bright\" \"chelsea81\" 34 \"Russia\" false [3592 7823 9002]]\n [\"Melvin ",
"end": 26984,
"score": 0.99920254945755,
"start": 26975,
"tag": "USERNAME",
"value": "chelsea81"
},
{
"context": "elsea81\" 34 \"Russia\" false [3592 7823 9002]]\n [\"Melvin Perkins\" \"melvin35\" 60 \"Nigeria\" true [937 1680 9025]]\n ",
"end": 27041,
"score": 0.9998927116394043,
"start": 27027,
"tag": "NAME",
"value": "Melvin Perkins"
},
{
"context": "ia\" false [3592 7823 9002]]\n [\"Melvin Perkins\" \"melvin35\" 60 \"Nigeria\" true [937 1680 9025]]\n [\"Ulla Mcc",
"end": 27052,
"score": 0.9996364712715149,
"start": 27044,
"tag": "USERNAME",
"value": "melvin35"
},
{
"context": "melvin35\" 60 \"Nigeria\" true [937 1680 9025]]\n [\"Ulla Mccoy\" \"ulla48\" 10 \"United Kingdom\" true [3075 4997 613",
"end": 27104,
"score": 0.9998880624771118,
"start": 27094,
"tag": "NAME",
"value": "Ulla Mccoy"
},
{
"context": "\"Nigeria\" true [937 1680 9025]]\n [\"Ulla Mccoy\" \"ulla48\" 10 \"United Kingdom\" true [3075 4997 6130]]\n [\"",
"end": 27113,
"score": 0.9994121789932251,
"start": 27107,
"tag": "USERNAME",
"value": "ulla48"
},
{
"context": "\" 10 \"United Kingdom\" true [3075 4997 6130]]\n [\"Dustin Cochran\" \"dustin85\" 58 \"USA\" false [1487 3129 5107]]\n [",
"end": 27177,
"score": 0.9998924136161804,
"start": 27163,
"tag": "NAME",
"value": "Dustin Cochran"
},
{
"context": "dom\" true [3075 4997 6130]]\n [\"Dustin Cochran\" \"dustin85\" 58 \"USA\" false [1487 3129 5107]]\n [\"Allen Wolf",
"end": 27188,
"score": 0.999650239944458,
"start": 27180,
"tag": "USERNAME",
"value": "dustin85"
},
{
"context": " \"dustin85\" 58 \"USA\" false [1487 3129 5107]]\n [\"Allen Wolfe\" \"allen80\" 60 \"India\" true [1217 6343 8698]]\n [",
"end": 27239,
"score": 0.9998887777328491,
"start": 27228,
"tag": "NAME",
"value": "Allen Wolfe"
},
{
"context": " \"USA\" false [1487 3129 5107]]\n [\"Allen Wolfe\" \"allen80\" 60 \"India\" true [1217 6343 8698]]\n [\"Gisela St",
"end": 27249,
"score": 0.9994935393333435,
"start": 27242,
"tag": "USERNAME",
"value": "allen80"
},
{
"context": " \"allen80\" 60 \"India\" true [1217 6343 8698]]\n [\"Gisela Stout\" \"gisela83\" 48 \"India\" true [3343 4185 7932]]\n ",
"end": 27302,
"score": 0.9998905062675476,
"start": 27290,
"tag": "NAME",
"value": "Gisela Stout"
},
{
"context": "India\" true [1217 6343 8698]]\n [\"Gisela Stout\" \"gisela83\" 48 \"India\" true [3343 4185 7932]]\n [\"Burton Lu",
"end": 27313,
"score": 0.9996040463447571,
"start": 27305,
"tag": "USERNAME",
"value": "gisela83"
},
{
"context": "\"gisela83\" 48 \"India\" true [3343 4185 7932]]\n [\"Burton Lucas\" \"burton28\" 66 \"Canada\" false [4959 8025 8560]]\n ",
"end": 27366,
"score": 0.9998924732208252,
"start": 27354,
"tag": "NAME",
"value": "Burton Lucas"
},
{
"context": "India\" true [3343 4185 7932]]\n [\"Burton Lucas\" \"burton28\" 66 \"Canada\" false [4959 8025 8560]]\n [\"Adrian ",
"end": 27377,
"score": 0.9995265007019043,
"start": 27369,
"tag": "USERNAME",
"value": "burton28"
},
{
"context": "urton28\" 66 \"Canada\" false [4959 8025 8560]]\n [\"Adrian Patrick\" \"adrian45\" 45 \"USA\" false [1083 1617 4413]]\n [",
"end": 27434,
"score": 0.9998894929885864,
"start": 27420,
"tag": "NAME",
"value": "Adrian Patrick"
},
{
"context": "da\" false [4959 8025 8560]]\n [\"Adrian Patrick\" \"adrian45\" 45 \"USA\" false [1083 1617 4413]]\n [\"Reece Carr",
"end": 27445,
"score": 0.9995982646942139,
"start": 27437,
"tag": "USERNAME",
"value": "adrian45"
},
{
"context": " \"adrian45\" 45 \"USA\" false [1083 1617 4413]]\n [\"Reece Carrillo\" \"reece22\" 89 \"France\" false [4619 9069 9620]]\n ",
"end": 27499,
"score": 0.999890148639679,
"start": 27485,
"tag": "NAME",
"value": "Reece Carrillo"
},
{
"context": "SA\" false [1083 1617 4413]]\n [\"Reece Carrillo\" \"reece22\" 89 \"France\" false [4619 9069 9620]]\n [\"Maile D",
"end": 27509,
"score": 0.9996310472488403,
"start": 27502,
"tag": "USERNAME",
"value": "reece22"
},
{
"context": "reece22\" 89 \"France\" false [4619 9069 9620]]\n [\"Maile Duncan\" \"maile71\" 20 \"Germany\" true [5245 5443 8766]]\n ",
"end": 27564,
"score": 0.9998963475227356,
"start": 27552,
"tag": "NAME",
"value": "Maile Duncan"
},
{
"context": "ance\" false [4619 9069 9620]]\n [\"Maile Duncan\" \"maile71\" 20 \"Germany\" true [5245 5443 8766]]\n [\"Noble B",
"end": 27574,
"score": 0.9994692206382751,
"start": 27567,
"tag": "USERNAME",
"value": "maile71"
},
{
"context": "maile71\" 20 \"Germany\" true [5245 5443 8766]]\n [\"Noble Baker\" \"noble88\" 58 \"Russia\" true [959 4913 8020]]\n [",
"end": 27628,
"score": 0.9998857378959656,
"start": 27617,
"tag": "NAME",
"value": "Noble Baker"
},
{
"context": "ermany\" true [5245 5443 8766]]\n [\"Noble Baker\" \"noble88\" 58 \"Russia\" true [959 4913 8020]]\n [\"Paula She",
"end": 27638,
"score": 0.9996439218521118,
"start": 27631,
"tag": "USERNAME",
"value": "noble88"
},
{
"context": " \"noble88\" 58 \"Russia\" true [959 4913 8020]]\n [\"Paula Shelton\" \"paula76\" 45 \"India\" true [3863 5335 8528]]\n [",
"end": 27692,
"score": 0.9998898506164551,
"start": 27679,
"tag": "NAME",
"value": "Paula Shelton"
},
{
"context": "ussia\" true [959 4913 8020]]\n [\"Paula Shelton\" \"paula76\" 45 \"India\" true [3863 5335 8528]]\n [\"Anjolie M",
"end": 27702,
"score": 0.9996531009674072,
"start": 27695,
"tag": "USERNAME",
"value": "paula76"
},
{
"context": " \"paula76\" 45 \"India\" true [3863 5335 8528]]\n [\"Anjolie Moore\" \"anjolie48\" 18 \"USA\" false [1426 3193 6544]]\n ",
"end": 27756,
"score": 0.9998863935470581,
"start": 27743,
"tag": "NAME",
"value": "Anjolie Moore"
},
{
"context": "ndia\" true [3863 5335 8528]]\n [\"Anjolie Moore\" \"anjolie48\" 18 \"USA\" false [1426 3193 6544]]\n [\"Shana Bake",
"end": 27768,
"score": 0.9996732473373413,
"start": 27759,
"tag": "USERNAME",
"value": "anjolie48"
},
{
"context": "\"anjolie48\" 18 \"USA\" false [1426 3193 6544]]\n [\"Shana Baker\" \"shana71\" 50 \"United Kingdom\" true [6296 6446 85",
"end": 27819,
"score": 0.9998910427093506,
"start": 27808,
"tag": "NAME",
"value": "Shana Baker"
},
{
"context": " \"USA\" false [1426 3193 6544]]\n [\"Shana Baker\" \"shana71\" 50 \"United Kingdom\" true [6296 6446 8518]]\n [\"",
"end": 27829,
"score": 0.9996124505996704,
"start": 27822,
"tag": "USERNAME",
"value": "shana71"
},
{
"context": "\" 50 \"United Kingdom\" true [6296 6446 8518]]\n [\"Nola Boyd\" \"nola75\" 85 \"France\" false [41 1700 7271]]\n [\"",
"end": 27888,
"score": 0.9998874068260193,
"start": 27879,
"tag": "NAME",
"value": "Nola Boyd"
},
{
"context": " Kingdom\" true [6296 6446 8518]]\n [\"Nola Boyd\" \"nola75\" 85 \"France\" false [41 1700 7271]]\n [\"Kellie Tr",
"end": 27897,
"score": 0.9996601343154907,
"start": 27891,
"tag": "USERNAME",
"value": "nola75"
},
{
"context": "\" \"nola75\" 85 \"France\" false [41 1700 7271]]\n [\"Kellie Tran\" \"kellie13\" 80 \"USA\" false [2975 6348 9052]]\n [",
"end": 27949,
"score": 0.999886691570282,
"start": 27938,
"tag": "NAME",
"value": "Kellie Tran"
},
{
"context": "\"France\" false [41 1700 7271]]\n [\"Kellie Tran\" \"kellie13\" 80 \"USA\" false [2975 6348 9052]]\n [\"Cherokee C",
"end": 27960,
"score": 0.9996554255485535,
"start": 27952,
"tag": "USERNAME",
"value": "kellie13"
},
{
"context": " \"kellie13\" 80 \"USA\" false [2975 6348 9052]]\n [\"Cherokee Conway\" \"cherokee72\" 19 \"USA\" false [1170 8698 9308]]\n ",
"end": 28015,
"score": 0.9998932480812073,
"start": 28000,
"tag": "NAME",
"value": "Cherokee Conway"
},
{
"context": "A\" false [2975 6348 9052]]\n [\"Cherokee Conway\" \"cherokee72\" 19 \"USA\" false [1170 8698 9308]]\n [\"Madeson Br",
"end": 28028,
"score": 0.9970685839653015,
"start": 28018,
"tag": "USERNAME",
"value": "cherokee72"
},
{
"context": "cherokee72\" 19 \"USA\" false [1170 8698 9308]]\n [\"Madeson Bryan\" \"madeson58\" 33 \"China\" false [2263 4081 5772]]\n ",
"end": 28081,
"score": 0.9999006390571594,
"start": 28068,
"tag": "NAME",
"value": "Madeson Bryan"
},
{
"context": "USA\" false [1170 8698 9308]]\n [\"Madeson Bryan\" \"madeson58\" 33 \"China\" false [2263 4081 5772]]\n [\"Rashad T",
"end": 28093,
"score": 0.9987552762031555,
"start": 28084,
"tag": "USERNAME",
"value": "madeson58"
},
{
"context": "adeson58\" 33 \"China\" false [2263 4081 5772]]\n [\"Rashad Townsend\" \"rashad57\" 74 \"Canada\" false [6239 6874 8964]]\n ",
"end": 28150,
"score": 0.9998908042907715,
"start": 28135,
"tag": "NAME",
"value": "Rashad Townsend"
},
{
"context": "a\" false [2263 4081 5772]]\n [\"Rashad Townsend\" \"rashad57\" 74 \"Canada\" false [6239 6874 8964]]\n [\"Elmo Sa",
"end": 28161,
"score": 0.9975295066833496,
"start": 28153,
"tag": "USERNAME",
"value": "rashad57"
},
{
"context": "ashad57\" 74 \"Canada\" false [6239 6874 8964]]\n [\"Elmo Saunders\" \"elmo31\" 47 \"USA\" true [1321 4146 5439]]\n [\"Ta",
"end": 28217,
"score": 0.9998853802680969,
"start": 28204,
"tag": "NAME",
"value": "Elmo Saunders"
},
{
"context": "ada\" false [6239 6874 8964]]\n [\"Elmo Saunders\" \"elmo31\" 47 \"USA\" true [1321 4146 5439]]\n [\"Tallulah Mo",
"end": 28226,
"score": 0.9979960322380066,
"start": 28220,
"tag": "USERNAME",
"value": "elmo31"
},
{
"context": "rs\" \"elmo31\" 47 \"USA\" true [1321 4146 5439]]\n [\"Tallulah Moses\" \"tallulah76\" 27 \"Canada\" true [2529 4067 8467]]\n",
"end": 28279,
"score": 0.9998817443847656,
"start": 28265,
"tag": "NAME",
"value": "Tallulah Moses"
},
{
"context": "USA\" true [1321 4146 5439]]\n [\"Tallulah Moses\" \"tallulah76\" 27 \"Canada\" true [2529 4067 8467]]\n [\"Nerea Av",
"end": 28292,
"score": 0.9919896125793457,
"start": 28282,
"tag": "USERNAME",
"value": "tallulah76"
},
{
"context": "llulah76\" 27 \"Canada\" true [2529 4067 8467]]\n [\"Nerea Avila\" \"nerea18\" 84 \"France\" false [1512 6858 7268]]\n ",
"end": 28345,
"score": 0.9998923540115356,
"start": 28334,
"tag": "NAME",
"value": "Nerea Avila"
},
{
"context": "Canada\" true [2529 4067 8467]]\n [\"Nerea Avila\" \"nerea18\" 84 \"France\" false [1512 6858 7268]]\n [\"Christe",
"end": 28355,
"score": 0.9980086088180542,
"start": 28348,
"tag": "USERNAME",
"value": "nerea18"
},
{
"context": "nerea18\" 84 \"France\" false [1512 6858 7268]]\n [\"Christen Paul\" \"christen30\" 25 \"Russia\" true [851 4509 7971]]\n ",
"end": 28411,
"score": 0.9998886585235596,
"start": 28398,
"tag": "NAME",
"value": "Christen Paul"
},
{
"context": "nce\" false [1512 6858 7268]]\n [\"Christen Paul\" \"christen30\" 25 \"Russia\" true [851 4509 7971]]\n [\"Orson Woo",
"end": 28424,
"score": 0.9993143081665039,
"start": 28414,
"tag": "USERNAME",
"value": "christen30"
},
{
"context": "hristen30\" 25 \"Russia\" true [851 4509 7971]]\n [\"Orson Woods\" \"orson64\" 69 \"Germany\" true [5339 5523 5651]]\n ",
"end": 28476,
"score": 0.9998958706855774,
"start": 28465,
"tag": "NAME",
"value": "Orson Woods"
},
{
"context": "\"Russia\" true [851 4509 7971]]\n [\"Orson Woods\" \"orson64\" 69 \"Germany\" true [5339 5523 5651]]\n [\"Silas G",
"end": 28486,
"score": 0.9995348453521729,
"start": 28479,
"tag": "USERNAME",
"value": "orson64"
},
{
"context": "orson64\" 69 \"Germany\" true [5339 5523 5651]]\n [\"Silas Griffin\" \"silas51\" 16 \"Germany\" true [345 814 9738]]\n [",
"end": 28542,
"score": 0.9999009370803833,
"start": 28529,
"tag": "NAME",
"value": "Silas Griffin"
},
{
"context": "many\" true [5339 5523 5651]]\n [\"Silas Griffin\" \"silas51\" 16 \"Germany\" true [345 814 9738]]\n [\"Darrel Ma",
"end": 28552,
"score": 0.9990005493164062,
"start": 28545,
"tag": "USERNAME",
"value": "silas51"
},
{
"context": " \"silas51\" 16 \"Germany\" true [345 814 9738]]\n [\"Darrel Mathis\" \"darrel37\" 58 \"Russia\" true [54 6395 6894]]\n [",
"end": 28606,
"score": 0.9998979568481445,
"start": 28593,
"tag": "NAME",
"value": "Darrel Mathis"
},
{
"context": "ermany\" true [345 814 9738]]\n [\"Darrel Mathis\" \"darrel37\" 58 \"Russia\" true [54 6395 6894]]\n [\"Edward Wri",
"end": 28617,
"score": 0.9992254972457886,
"start": 28609,
"tag": "USERNAME",
"value": "darrel37"
},
{
"context": " \"darrel37\" 58 \"Russia\" true [54 6395 6894]]\n [\"Edward Wright\" \"edward19\" 11 \"USA\" false [1927 6737 8691]]\n [",
"end": 28670,
"score": 0.9998947978019714,
"start": 28657,
"tag": "NAME",
"value": "Edward Wright"
},
{
"context": "Russia\" true [54 6395 6894]]\n [\"Edward Wright\" \"edward19\" 11 \"USA\" false [1927 6737 8691]]\n [\"Holly Howe",
"end": 28681,
"score": 0.9994876384735107,
"start": 28673,
"tag": "USERNAME",
"value": "edward19"
},
{
"context": " \"edward19\" 11 \"USA\" false [1927 6737 8691]]\n [\"Holly Howell\" \"holly89\" 75 \"China\" false [6935 9704 9731]]\n ",
"end": 28733,
"score": 0.9998958706855774,
"start": 28721,
"tag": "NAME",
"value": "Holly Howell"
},
{
"context": "\"USA\" false [1927 6737 8691]]\n [\"Holly Howell\" \"holly89\" 75 \"China\" false [6935 9704 9731]]\n [\"Maile Du",
"end": 28743,
"score": 0.9990521669387817,
"start": 28736,
"tag": "USERNAME",
"value": "holly89"
},
{
"context": "\"holly89\" 75 \"China\" false [6935 9704 9731]]\n [\"Maile Duke\" \"maile16\" 65 \"Nigeria\" false [3652 7487 9306]]\n ",
"end": 28795,
"score": 0.999888002872467,
"start": 28785,
"tag": "NAME",
"value": "Maile Duke"
},
{
"context": "\"China\" false [6935 9704 9731]]\n [\"Maile Duke\" \"maile16\" 65 \"Nigeria\" false [3652 7487 9306]]\n [\"Jesse ",
"end": 28805,
"score": 0.9988576173782349,
"start": 28798,
"tag": "USERNAME",
"value": "maile16"
},
{
"context": "aile16\" 65 \"Nigeria\" false [3652 7487 9306]]\n [\"Jesse Glass\" \"jesse79\" 78 \"Germany\" false [5553 7680 9597]]\n ",
"end": 28860,
"score": 0.9998838901519775,
"start": 28849,
"tag": "NAME",
"value": "Jesse Glass"
},
{
"context": "geria\" false [3652 7487 9306]]\n [\"Jesse Glass\" \"jesse79\" 78 \"Germany\" false [5553 7680 9597]]\n [\"Gavin ",
"end": 28870,
"score": 0.9992427229881287,
"start": 28863,
"tag": "USERNAME",
"value": "jesse79"
},
{
"context": "esse79\" 78 \"Germany\" false [5553 7680 9597]]\n [\"Gavin Alvarez\" \"gavin28\" 86 \"Nigeria\" false [5107 7556 8070]]\n ",
"end": 28927,
"score": 0.9998931288719177,
"start": 28914,
"tag": "NAME",
"value": "Gavin Alvarez"
},
{
"context": "any\" false [5553 7680 9597]]\n [\"Gavin Alvarez\" \"gavin28\" 86 \"Nigeria\" false [5107 7556 8070]]\n [\"Dawn L",
"end": 28937,
"score": 0.9996098279953003,
"start": 28930,
"tag": "USERNAME",
"value": "gavin28"
},
{
"context": "avin28\" 86 \"Nigeria\" false [5107 7556 8070]]\n [\"Dawn Lindsey\" \"dawn46\" 80 \"United Kingdom\" true [266 1133 3284",
"end": 28993,
"score": 0.9998890161514282,
"start": 28981,
"tag": "NAME",
"value": "Dawn Lindsey"
},
{
"context": "eria\" false [5107 7556 8070]]\n [\"Dawn Lindsey\" \"dawn46\" 80 \"United Kingdom\" true [266 1133 3284]]\n [\"C",
"end": 29002,
"score": 0.9994689226150513,
"start": 28996,
"tag": "USERNAME",
"value": "dawn46"
},
{
"context": "6\" 80 \"United Kingdom\" true [266 1133 3284]]\n [\"Colby Stephens\" \"colby82\" 27 \"France\" true [879 5571 6607]]\n [",
"end": 29065,
"score": 0.9998911619186401,
"start": 29051,
"tag": "NAME",
"value": "Colby Stephens"
},
{
"context": "gdom\" true [266 1133 3284]]\n [\"Colby Stephens\" \"colby82\" 27 \"France\" true [879 5571 6607]]\n [\"Marshall ",
"end": 29075,
"score": 0.9996137022972107,
"start": 29068,
"tag": "USERNAME",
"value": "colby82"
},
{
"context": " \"colby82\" 27 \"France\" true [879 5571 6607]]\n [\"Marshall York\" \"marshall48\" 17 \"India\" false [653 4650 9752]]\n ",
"end": 29129,
"score": 0.9998852014541626,
"start": 29116,
"tag": "NAME",
"value": "Marshall York"
},
{
"context": "rance\" true [879 5571 6607]]\n [\"Marshall York\" \"marshall48\" 17 \"India\" false [653 4650 9752]]\n [\"Rae Walte",
"end": 29142,
"score": 0.9994785189628601,
"start": 29132,
"tag": "USERNAME",
"value": "marshall48"
},
{
"context": "arshall48\" 17 \"India\" false [653 4650 9752]]\n [\"Rae Walter\" \"rae60\" 35 \"Nigeria\" false [6857 7191 7224]]\n ",
"end": 29193,
"score": 0.9998947978019714,
"start": 29183,
"tag": "NAME",
"value": "Rae Walter"
},
{
"context": " \"India\" false [653 4650 9752]]\n [\"Rae Walter\" \"rae60\" 35 \"Nigeria\" false [6857 7191 7224]]\n [\"Ross N",
"end": 29201,
"score": 0.9993553757667542,
"start": 29196,
"tag": "USERNAME",
"value": "rae60"
},
{
"context": "\"rae60\" 35 \"Nigeria\" false [6857 7191 7224]]\n [\"Ross Neal\" \"ross58\" 89 \"Nigeria\" false [457 5657 8576]]\n ",
"end": 29254,
"score": 0.999893844127655,
"start": 29245,
"tag": "NAME",
"value": "Ross Neal"
},
{
"context": "Nigeria\" false [6857 7191 7224]]\n [\"Ross Neal\" \"ross58\" 89 \"Nigeria\" false [457 5657 8576]]\n [\"Leo Lan",
"end": 29263,
"score": 0.9993977546691895,
"start": 29257,
"tag": "USERNAME",
"value": "ross58"
},
{
"context": "\"ross58\" 89 \"Nigeria\" false [457 5657 8576]]\n [\"Leo Lancaster\" \"leo24\" 22 \"Nigeria\" true [1261 7693 9549]]\n [",
"end": 29319,
"score": 0.9998950958251953,
"start": 29306,
"tag": "NAME",
"value": "Leo Lancaster"
},
{
"context": "eria\" false [457 5657 8576]]\n [\"Leo Lancaster\" \"leo24\" 22 \"Nigeria\" true [1261 7693 9549]]\n [\"Nadine ",
"end": 29327,
"score": 0.999413788318634,
"start": 29322,
"tag": "USERNAME",
"value": "leo24"
},
{
"context": " \"leo24\" 22 \"Nigeria\" true [1261 7693 9549]]\n [\"Nadine Rodriguez\" \"nadine28\" 74 \"Russia\" false [2254 5222 5419]]\n ",
"end": 29386,
"score": 0.9998849630355835,
"start": 29370,
"tag": "NAME",
"value": "Nadine Rodriguez"
},
{
"context": "a\" true [1261 7693 9549]]\n [\"Nadine Rodriguez\" \"nadine28\" 74 \"Russia\" false [2254 5222 5419]]\n [\"Curran ",
"end": 29397,
"score": 0.9996688961982727,
"start": 29389,
"tag": "USERNAME",
"value": "nadine28"
},
{
"context": "adine28\" 74 \"Russia\" false [2254 5222 5419]]\n [\"Curran Hill\" \"curran68\" 61 \"Nigeria\" false [1082 3728 6558]]\n",
"end": 29451,
"score": 0.9998937845230103,
"start": 29440,
"tag": "NAME",
"value": "Curran Hill"
},
{
"context": "ussia\" false [2254 5222 5419]]\n [\"Curran Hill\" \"curran68\" 61 \"Nigeria\" false [1082 3728 6558]]\n [\"Quynn ",
"end": 29462,
"score": 0.9995750188827515,
"start": 29454,
"tag": "USERNAME",
"value": "curran68"
},
{
"context": "rran68\" 61 \"Nigeria\" false [1082 3728 6558]]\n [\"Quynn Bowen\" \"quynn56\" 64 \"Italy\" true [2401 2580 7921]]\n [",
"end": 29517,
"score": 0.9998942017555237,
"start": 29506,
"tag": "NAME",
"value": "Quynn Bowen"
},
{
"context": "geria\" false [1082 3728 6558]]\n [\"Quynn Bowen\" \"quynn56\" 64 \"Italy\" true [2401 2580 7921]]\n [\"Raya Anth",
"end": 29527,
"score": 0.9996711611747742,
"start": 29520,
"tag": "USERNAME",
"value": "quynn56"
},
{
"context": " \"quynn56\" 64 \"Italy\" true [2401 2580 7921]]\n [\"Raya Anthony\" \"raya32\" 43 \"Russia\" false [2235 5765 6217]]\n ",
"end": 29580,
"score": 0.9998944401741028,
"start": 29568,
"tag": "NAME",
"value": "Raya Anthony"
},
{
"context": "Italy\" true [2401 2580 7921]]\n [\"Raya Anthony\" \"raya32\" 43 \"Russia\" false [2235 5765 6217]]\n [\"Maya Cl",
"end": 29589,
"score": 0.9994971752166748,
"start": 29583,
"tag": "USERNAME",
"value": "raya32"
},
{
"context": "\"raya32\" 43 \"Russia\" false [2235 5765 6217]]\n [\"Maya Cline\" \"maya89\" 59 \"India\" false [1148 4123 9091]]\n [",
"end": 29642,
"score": 0.9998873472213745,
"start": 29632,
"tag": "NAME",
"value": "Maya Cline"
},
{
"context": "Russia\" false [2235 5765 6217]]\n [\"Maya Cline\" \"maya89\" 59 \"India\" false [1148 4123 9091]]\n [\"Adara Be",
"end": 29651,
"score": 0.9996130466461182,
"start": 29645,
"tag": "USERNAME",
"value": "maya89"
},
{
"context": " \"maya89\" 59 \"India\" false [1148 4123 9091]]\n [\"Adara Benton\" \"adara53\" 47 \"France\" false [5448 6404 8346]]\n ",
"end": 29705,
"score": 0.9998906850814819,
"start": 29693,
"tag": "NAME",
"value": "Adara Benton"
},
{
"context": "ndia\" false [1148 4123 9091]]\n [\"Adara Benton\" \"adara53\" 47 \"France\" false [5448 6404 8346]]\n [\"Malcolm",
"end": 29715,
"score": 0.9995725154876709,
"start": 29708,
"tag": "USERNAME",
"value": "adara53"
},
{
"context": "adara53\" 47 \"France\" false [5448 6404 8346]]\n [\"Malcolm Moore\" \"malcolm17\" 72 \"Canada\" true [1006 3414 7382]]\n ",
"end": 29771,
"score": 0.9998929500579834,
"start": 29758,
"tag": "NAME",
"value": "Malcolm Moore"
},
{
"context": "nce\" false [5448 6404 8346]]\n [\"Malcolm Moore\" \"malcolm17\" 72 \"Canada\" true [1006 3414 7382]]\n [\"Finn Buc",
"end": 29783,
"score": 0.9995408058166504,
"start": 29774,
"tag": "USERNAME",
"value": "malcolm17"
},
{
"context": "alcolm17\" 72 \"Canada\" true [1006 3414 7382]]\n [\"Finn Buckner\" \"finn83\" 78 \"Nigeria\" true [2409 2425 6233]]\n ",
"end": 29837,
"score": 0.9998934864997864,
"start": 29825,
"tag": "NAME",
"value": "Finn Buckner"
},
{
"context": "anada\" true [1006 3414 7382]]\n [\"Finn Buckner\" \"finn83\" 78 \"Nigeria\" true [2409 2425 6233]]\n [\"Yoshio ",
"end": 29846,
"score": 0.9995647072792053,
"start": 29840,
"tag": "USERNAME",
"value": "finn83"
},
{
"context": "\"finn83\" 78 \"Nigeria\" true [2409 2425 6233]]\n [\"Yoshio Newton\" \"yoshio24\" 16 \"United Kingdom\" true [320 4651 53",
"end": 29902,
"score": 0.9998922348022461,
"start": 29889,
"tag": "NAME",
"value": "Yoshio Newton"
},
{
"context": "eria\" true [2409 2425 6233]]\n [\"Yoshio Newton\" \"yoshio24\" 16 \"United Kingdom\" true [320 4651 5306]]\n [\"B",
"end": 29913,
"score": 0.9944918751716614,
"start": 29905,
"tag": "USERNAME",
"value": "yoshio24"
},
{
"context": "4\" 16 \"United Kingdom\" true [320 4651 5306]]\n [\"Britanni Decker\" \"britanni21\" 68 \"Canada\" true [7422 7685 9290]]\n",
"end": 29977,
"score": 0.9998952746391296,
"start": 29962,
"tag": "NAME",
"value": "Britanni Decker"
},
{
"context": "dom\" true [320 4651 5306]]\n [\"Britanni Decker\" \"britanni21\" 68 \"Canada\" true [7422 7685 9290]]\n [\"Ciaran G",
"end": 29990,
"score": 0.9995092749595642,
"start": 29980,
"tag": "USERNAME",
"value": "britanni21"
},
{
"context": "itanni21\" 68 \"Canada\" true [7422 7685 9290]]\n [\"Ciaran Gill\" \"ciaran11\" 16 \"Italy\" true [728 7500 8420]]\n [",
"end": 30043,
"score": 0.9998952150344849,
"start": 30032,
"tag": "NAME",
"value": "Ciaran Gill"
},
{
"context": "Canada\" true [7422 7685 9290]]\n [\"Ciaran Gill\" \"ciaran11\" 16 \"Italy\" true [728 7500 8420]]\n [\"Bertha Sim",
"end": 30054,
"score": 0.9990941882133484,
"start": 30046,
"tag": "USERNAME",
"value": "ciaran11"
},
{
"context": " \"ciaran11\" 16 \"Italy\" true [728 7500 8420]]\n [\"Bertha Simpson\" \"bertha87\" 67 \"France\" false [2632 5330 8542]]\n ",
"end": 30108,
"score": 0.9998899698257446,
"start": 30094,
"tag": "NAME",
"value": "Bertha Simpson"
},
{
"context": "taly\" true [728 7500 8420]]\n [\"Bertha Simpson\" \"bertha87\" 67 \"France\" false [2632 5330 8542]]\n [\"Gage St",
"end": 30119,
"score": 0.9994454383850098,
"start": 30111,
"tag": "USERNAME",
"value": "bertha87"
},
{
"context": "ertha87\" 67 \"France\" false [2632 5330 8542]]\n [\"Gage Stokes\" \"gage17\" 38 \"Germany\" true [260 1036 6570]]\n [",
"end": 30173,
"score": 0.999890923500061,
"start": 30162,
"tag": "NAME",
"value": "Gage Stokes"
},
{
"context": "rance\" false [2632 5330 8542]]\n [\"Gage Stokes\" \"gage17\" 38 \"Germany\" true [260 1036 6570]]\n [\"Ray Carv",
"end": 30182,
"score": 0.9974716305732727,
"start": 30176,
"tag": "USERNAME",
"value": "gage17"
},
{
"context": " \"gage17\" 38 \"Germany\" true [260 1036 6570]]\n [\"Ray Carver\" \"ray77\" 33 \"United Kingdom\" true [3616 4284 6705",
"end": 30234,
"score": 0.9998884797096252,
"start": 30224,
"tag": "NAME",
"value": "Ray Carver"
},
{
"context": "\"Germany\" true [260 1036 6570]]\n [\"Ray Carver\" \"ray77\" 33 \"United Kingdom\" true [3616 4284 6705]]\n [\"",
"end": 30242,
"score": 0.9995694160461426,
"start": 30237,
"tag": "USERNAME",
"value": "ray77"
},
{
"context": "\" 33 \"United Kingdom\" true [3616 4284 6705]]\n [\"Kennedy Hahn\" \"kennedy61\" 32 \"Canada\" true [177 625 6866]]\n ",
"end": 30304,
"score": 0.9998967051506042,
"start": 30292,
"tag": "NAME",
"value": "Kennedy Hahn"
},
{
"context": "ngdom\" true [3616 4284 6705]]\n [\"Kennedy Hahn\" \"kennedy61\" 32 \"Canada\" true [177 625 6866]]\n [\"Meredith D",
"end": 30316,
"score": 0.9995577931404114,
"start": 30307,
"tag": "USERNAME",
"value": "kennedy61"
},
{
"context": "\"kennedy61\" 32 \"Canada\" true [177 625 6866]]\n [\"Meredith Dawson\" \"meredith30\" 46 \"Russia\" true [692 4110 9482]]\n ",
"end": 30371,
"score": 0.9998957514762878,
"start": 30356,
"tag": "NAME",
"value": "Meredith Dawson"
},
{
"context": "nada\" true [177 625 6866]]\n [\"Meredith Dawson\" \"meredith30\" 46 \"Russia\" true [692 4110 9482]]\n [\"Carissa T",
"end": 30384,
"score": 0.9995771646499634,
"start": 30374,
"tag": "USERNAME",
"value": "meredith30"
},
{
"context": "eredith30\" 46 \"Russia\" true [692 4110 9482]]\n [\"Carissa Taylor\" \"carissa40\" 49 \"United Kingdom\" false [587 759 7",
"end": 30439,
"score": 0.9998940229415894,
"start": 30425,
"tag": "NAME",
"value": "Carissa Taylor"
},
{
"context": "ssia\" true [692 4110 9482]]\n [\"Carissa Taylor\" \"carissa40\" 49 \"United Kingdom\" false [587 759 7609]]\n [\"M",
"end": 30451,
"score": 0.9996089935302734,
"start": 30442,
"tag": "USERNAME",
"value": "carissa40"
},
{
"context": "0\" 49 \"United Kingdom\" false [587 759 7609]]\n [\"Marvin Walker\" \"marvin63\" 27 \"Italy\" false [905 7139 7833]]\n ",
"end": 30513,
"score": 0.9998915195465088,
"start": 30500,
"tag": "NAME",
"value": "Marvin Walker"
},
{
"context": "ngdom\" false [587 759 7609]]\n [\"Marvin Walker\" \"marvin63\" 27 \"Italy\" false [905 7139 7833]]\n [\"Yoshi Hol",
"end": 30524,
"score": 0.9996151328086853,
"start": 30516,
"tag": "USERNAME",
"value": "marvin63"
},
{
"context": "\"marvin63\" 27 \"Italy\" false [905 7139 7833]]\n [\"Yoshi Holmes\" \"yoshi46\" 66 \"United Kingdom\" false [871 1163 28",
"end": 30577,
"score": 0.9998899698257446,
"start": 30565,
"tag": "NAME",
"value": "Yoshi Holmes"
},
{
"context": "Italy\" false [905 7139 7833]]\n [\"Yoshi Holmes\" \"yoshi46\" 66 \"United Kingdom\" false [871 1163 2810]]\n [\"",
"end": 30587,
"score": 0.9958150386810303,
"start": 30580,
"tag": "USERNAME",
"value": "yoshi46"
},
{
"context": "\" 66 \"United Kingdom\" false [871 1163 2810]]\n [\"Wendy Mooney\" \"wendy71\" 46 \"Germany\" false [3776 6587 7857]]\n ",
"end": 30649,
"score": 0.9998160600662231,
"start": 30637,
"tag": "NAME",
"value": "Wendy Mooney"
},
{
"context": "ngdom\" false [871 1163 2810]]\n [\"Wendy Mooney\" \"wendy71\" 46 \"Germany\" false [3776 6587 7857]]\n [\"Macaul",
"end": 30659,
"score": 0.9991391897201538,
"start": 30652,
"tag": "USERNAME",
"value": "wendy71"
},
{
"context": "endy71\" 46 \"Germany\" false [3776 6587 7857]]\n [\"Macaulay West\" \"macaulay24\" 64 \"Russia\" false [5702 8341 9614]]",
"end": 30716,
"score": 0.9998884201049805,
"start": 30703,
"tag": "NAME",
"value": "Macaulay West"
},
{
"context": "any\" false [3776 6587 7857]]\n [\"Macaulay West\" \"macaulay24\" 64 \"Russia\" false [5702 8341 9614]]\n [\"Neville",
"end": 30729,
"score": 0.9993696212768555,
"start": 30719,
"tag": "USERNAME",
"value": "macaulay24"
},
{
"context": "aulay24\" 64 \"Russia\" false [5702 8341 9614]]\n [\"Neville Doyle\" \"neville58\" 22 \"Canada\" false [1363 4195 7784]]\n",
"end": 30785,
"score": 0.9998935461044312,
"start": 30772,
"tag": "NAME",
"value": "Neville Doyle"
},
{
"context": "sia\" false [5702 8341 9614]]\n [\"Neville Doyle\" \"neville58\" 22 \"Canada\" false [1363 4195 7784]]\n [\"Liberty",
"end": 30797,
"score": 0.9994608163833618,
"start": 30788,
"tag": "USERNAME",
"value": "neville58"
},
{
"context": "ville58\" 22 \"Canada\" false [1363 4195 7784]]\n [\"Liberty Atkinson\" \"liberty66\" 34 \"India\" true [1480 2022 5348]]\n ",
"end": 30856,
"score": 0.9998878240585327,
"start": 30840,
"tag": "NAME",
"value": "Liberty Atkinson"
},
{
"context": "\" false [1363 4195 7784]]\n [\"Liberty Atkinson\" \"liberty66\" 34 \"India\" true [1480 2022 5348]]\n [\"Gretchen ",
"end": 30868,
"score": 0.9991674423217773,
"start": 30859,
"tag": "USERNAME",
"value": "liberty66"
},
{
"context": "liberty66\" 34 \"India\" true [1480 2022 5348]]\n [\"Gretchen Mccall\" \"gretchen88\" 28 \"United Kingdom\" true [772 3559 ",
"end": 30924,
"score": 0.9998952746391296,
"start": 30909,
"tag": "NAME",
"value": "Gretchen Mccall"
},
{
"context": "ia\" true [1480 2022 5348]]\n [\"Gretchen Mccall\" \"gretchen88\" 28 \"United Kingdom\" true [772 3559 9124]]\n [\"M",
"end": 30937,
"score": 0.9995648264884949,
"start": 30927,
"tag": "USERNAME",
"value": "gretchen88"
},
{
"context": "8\" 28 \"United Kingdom\" true [772 3559 9124]]\n [\"Myra Kemp\" \"myra35\" 25 \"Nigeria\" false [4546 5812 7893]]\n ",
"end": 30995,
"score": 0.9998964071273804,
"start": 30986,
"tag": "NAME",
"value": "Myra Kemp"
},
{
"context": "d Kingdom\" true [772 3559 9124]]\n [\"Myra Kemp\" \"myra35\" 25 \"Nigeria\" false [4546 5812 7893]]\n [\"Roary ",
"end": 31004,
"score": 0.9994169473648071,
"start": 30998,
"tag": "USERNAME",
"value": "myra35"
},
{
"context": "myra35\" 25 \"Nigeria\" false [4546 5812 7893]]\n [\"Roary Sweeney\" \"roary89\" 37 \"Italy\" false [48 1843 8774]]\n [\"",
"end": 31061,
"score": 0.9999025464057922,
"start": 31048,
"tag": "NAME",
"value": "Roary Sweeney"
},
{
"context": "ria\" false [4546 5812 7893]]\n [\"Roary Sweeney\" \"roary89\" 37 \"Italy\" false [48 1843 8774]]\n [\"Sasha Tyso",
"end": 31071,
"score": 0.9995791912078857,
"start": 31064,
"tag": "USERNAME",
"value": "roary89"
},
{
"context": "\" \"roary89\" 37 \"Italy\" false [48 1843 8774]]\n [\"Sasha Tyson\" \"sasha44\" 44 \"Nigeria\" true [5261 5880 7074]]\n ",
"end": 31122,
"score": 0.9998965263366699,
"start": 31111,
"tag": "NAME",
"value": "Sasha Tyson"
},
{
"context": " \"Italy\" false [48 1843 8774]]\n [\"Sasha Tyson\" \"sasha44\" 44 \"Nigeria\" true [5261 5880 7074]]\n [\"Oscar C",
"end": 31132,
"score": 0.9984943270683289,
"start": 31125,
"tag": "USERNAME",
"value": "sasha44"
},
{
"context": "sasha44\" 44 \"Nigeria\" true [5261 5880 7074]]\n [\"Oscar Chen\" \"oscar59\" 44 \"United Kingdom\" false [2451 4185 5",
"end": 31185,
"score": 0.9998863339424133,
"start": 31175,
"tag": "NAME",
"value": "Oscar Chen"
},
{
"context": "Nigeria\" true [5261 5880 7074]]\n [\"Oscar Chen\" \"oscar59\" 44 \"United Kingdom\" false [2451 4185 5991]]\n [",
"end": 31195,
"score": 0.9995925426483154,
"start": 31188,
"tag": "USERNAME",
"value": "oscar59"
},
{
"context": " 44 \"United Kingdom\" false [2451 4185 5991]]\n [\"Reagan Larson\" \"reagan23\" 19 \"USA\" true [1059 1176 6620]]\n [\"",
"end": 31259,
"score": 0.9999011158943176,
"start": 31246,
"tag": "NAME",
"value": "Reagan Larson"
},
{
"context": "dom\" false [2451 4185 5991]]\n [\"Reagan Larson\" \"reagan23\" 19 \"USA\" true [1059 1176 6620]]\n [\"Fitzgerald ",
"end": 31270,
"score": 0.9995959997177124,
"start": 31262,
"tag": "USERNAME",
"value": "reagan23"
},
{
"context": "\" \"reagan23\" 19 \"USA\" true [1059 1176 6620]]\n [\"Fitzgerald Garrett\" \"fitzgerald75\" 77 \"China\" false [304 1624 5980]]",
"end": 31327,
"score": 0.9998959898948669,
"start": 31309,
"tag": "NAME",
"value": "Fitzgerald Garrett"
},
{
"context": " true [1059 1176 6620]]\n [\"Fitzgerald Garrett\" \"fitzgerald75\" 77 \"China\" false [304 1624 5980]]\n [\"Tashya Wo",
"end": 31342,
"score": 0.9996647834777832,
"start": 31330,
"tag": "USERNAME",
"value": "fitzgerald75"
},
{
"context": "zgerald75\" 77 \"China\" false [304 1624 5980]]\n [\"Tashya Wooten\" \"tashya32\" 84 \"USA\" false [860 2220 6680]]\n [\"",
"end": 31396,
"score": 0.9998953342437744,
"start": 31383,
"tag": "NAME",
"value": "Tashya Wooten"
},
{
"context": "hina\" false [304 1624 5980]]\n [\"Tashya Wooten\" \"tashya32\" 84 \"USA\" false [860 2220 6680]]\n [\"Kirsten Bec",
"end": 31407,
"score": 0.9994872808456421,
"start": 31399,
"tag": "USERNAME",
"value": "tashya32"
},
{
"context": "\" \"tashya32\" 84 \"USA\" false [860 2220 6680]]\n [\"Kirsten Becker\" \"kirsten47\" 39 \"India\" false [142 351 5433]]\n ",
"end": 31460,
"score": 0.9998950958251953,
"start": 31446,
"tag": "NAME",
"value": "Kirsten Becker"
},
{
"context": "USA\" false [860 2220 6680]]\n [\"Kirsten Becker\" \"kirsten47\" 39 \"India\" false [142 351 5433]]\n [\"Sylvester ",
"end": 31472,
"score": 0.9996705055236816,
"start": 31463,
"tag": "USERNAME",
"value": "kirsten47"
},
{
"context": "\"kirsten47\" 39 \"India\" false [142 351 5433]]\n [\"Sylvester Cote\" \"sylvester63\" 80 \"USA\" false [2295 2956 5659]]\n ",
"end": 31526,
"score": 0.9998949766159058,
"start": 31512,
"tag": "NAME",
"value": "Sylvester Cote"
},
{
"context": "ndia\" false [142 351 5433]]\n [\"Sylvester Cote\" \"sylvester63\" 80 \"USA\" false [2295 2956 5659]]\n [\"Zena Spenc",
"end": 31540,
"score": 0.9996234774589539,
"start": 31529,
"tag": "USERNAME",
"value": "sylvester63"
},
{
"context": "ylvester63\" 80 \"USA\" false [2295 2956 5659]]\n [\"Zena Spence\" \"zena21\" 45 \"Germany\" false [1531 1667 4002]]\n ",
"end": 31591,
"score": 0.9998804926872253,
"start": 31580,
"tag": "NAME",
"value": "Zena Spence"
},
{
"context": " \"USA\" false [2295 2956 5659]]\n [\"Zena Spence\" \"zena21\" 45 \"Germany\" false [1531 1667 4002]]\n [\"Mariko",
"end": 31600,
"score": 0.998985230922699,
"start": 31594,
"tag": "USERNAME",
"value": "zena21"
},
{
"context": "zena21\" 45 \"Germany\" false [1531 1667 4002]]\n [\"Mariko Walton\" \"mariko73\" 11 \"France\" true [347 2870 3284]]\n ",
"end": 31657,
"score": 0.9998917579650879,
"start": 31644,
"tag": "NAME",
"value": "Mariko Walton"
},
{
"context": "any\" false [1531 1667 4002]]\n [\"Mariko Walton\" \"mariko73\" 11 \"France\" true [347 2870 3284]]\n [\"Julie Dur",
"end": 31668,
"score": 0.9996325373649597,
"start": 31660,
"tag": "USERNAME",
"value": "mariko73"
},
{
"context": "\"mariko73\" 11 \"France\" true [347 2870 3284]]\n [\"Julie Duran\" \"julie59\" 42 \"Nigeria\" true [77 4732 8755]]\n [",
"end": 31720,
"score": 0.9998888969421387,
"start": 31709,
"tag": "NAME",
"value": "Julie Duran"
},
{
"context": "\"France\" true [347 2870 3284]]\n [\"Julie Duran\" \"julie59\" 42 \"Nigeria\" true [77 4732 8755]]\n [\"Taylor Co",
"end": 31730,
"score": 0.9996299147605896,
"start": 31723,
"tag": "USERNAME",
"value": "julie59"
},
{
"context": " \"julie59\" 42 \"Nigeria\" true [77 4732 8755]]\n [\"Taylor Cote\" \"taylor81\" 60 \"India\" true [459 7618 9922]]\n [",
"end": 31782,
"score": 0.9998822212219238,
"start": 31771,
"tag": "NAME",
"value": "Taylor Cote"
},
{
"context": "\"Nigeria\" true [77 4732 8755]]\n [\"Taylor Cote\" \"taylor81\" 60 \"India\" true [459 7618 9922]]\n [\"Kamal Kidd",
"end": 31793,
"score": 0.9996678829193115,
"start": 31785,
"tag": "USERNAME",
"value": "taylor81"
},
{
"context": " \"taylor81\" 60 \"India\" true [459 7618 9922]]\n [\"Kamal Kidd\" \"kamal39\" 59 \"India\" true [479 9157 9643]]\n [\"",
"end": 31843,
"score": 0.9998912215232849,
"start": 31833,
"tag": "NAME",
"value": "Kamal Kidd"
},
{
"context": "0 \"India\" true [459 7618 9922]]\n [\"Kamal Kidd\" \"kamal39\" 59 \"India\" true [479 9157 9643]]\n [\"Cynthia St",
"end": 31853,
"score": 0.9995631575584412,
"start": 31846,
"tag": "USERNAME",
"value": "kamal39"
},
{
"context": "\" \"kamal39\" 59 \"India\" true [479 9157 9643]]\n [\"Cynthia Stewart\" \"cynthia48\" 40 \"Canada\" true [1492 6138 7185]]\n ",
"end": 31908,
"score": 0.9998885989189148,
"start": 31893,
"tag": "NAME",
"value": "Cynthia Stewart"
},
{
"context": "dia\" true [479 9157 9643]]\n [\"Cynthia Stewart\" \"cynthia48\" 40 \"Canada\" true [1492 6138 7185]]\n [\"Aurelia ",
"end": 31920,
"score": 0.9995055198669434,
"start": 31911,
"tag": "USERNAME",
"value": "cynthia48"
},
{
"context": "ynthia48\" 40 \"Canada\" true [1492 6138 7185]]\n [\"Aurelia Valencia\" \"aurelia73\" 64 \"Germany\" true [3723 5982 6762]]\n",
"end": 31978,
"score": 0.9998854398727417,
"start": 31962,
"tag": "NAME",
"value": "Aurelia Valencia"
},
{
"context": "a\" true [1492 6138 7185]]\n [\"Aurelia Valencia\" \"aurelia73\" 64 \"Germany\" true [3723 5982 6762]]\n [\"Gwendol",
"end": 31990,
"score": 0.9995793104171753,
"start": 31981,
"tag": "USERNAME",
"value": "aurelia73"
},
{
"context": "relia73\" 64 \"Germany\" true [3723 5982 6762]]\n [\"Gwendolyn Swanson\" \"gwendolyn78\" 27 \"India\" false [542 5984 6031]]\n",
"end": 32050,
"score": 0.9998908042907715,
"start": 32033,
"tag": "NAME",
"value": "Gwendolyn Swanson"
},
{
"context": "\" true [3723 5982 6762]]\n [\"Gwendolyn Swanson\" \"gwendolyn78\" 27 \"India\" false [542 5984 6031]]\n [\"Richard C",
"end": 32064,
"score": 0.9996170401573181,
"start": 32053,
"tag": "USERNAME",
"value": "gwendolyn78"
},
{
"context": "endolyn78\" 27 \"India\" false [542 5984 6031]]\n [\"Richard Cortez\" \"richard65\" 29 \"Italy\" true [5198 7631 8562]]\n ",
"end": 32119,
"score": 0.9998785257339478,
"start": 32105,
"tag": "NAME",
"value": "Richard Cortez"
},
{
"context": "dia\" false [542 5984 6031]]\n [\"Richard Cortez\" \"richard65\" 29 \"Italy\" true [5198 7631 8562]]\n [\"Rhiannon ",
"end": 32131,
"score": 0.9995036125183105,
"start": 32122,
"tag": "USERNAME",
"value": "richard65"
},
{
"context": "richard65\" 29 \"Italy\" true [5198 7631 8562]]\n [\"Rhiannon Lloyd\" \"rhiannon40\" 21 \"USA\" true [489 942 9034]]\n [\"",
"end": 32186,
"score": 0.9998905062675476,
"start": 32172,
"tag": "NAME",
"value": "Rhiannon Lloyd"
},
{
"context": "aly\" true [5198 7631 8562]]\n [\"Rhiannon Lloyd\" \"rhiannon40\" 21 \"USA\" true [489 942 9034]]\n [\"Halee Mccullo",
"end": 32199,
"score": 0.999668300151825,
"start": 32189,
"tag": "USERNAME",
"value": "rhiannon40"
},
{
"context": "\" \"rhiannon40\" 21 \"USA\" true [489 942 9034]]\n [\"Halee Mccullough\" \"halee23\" 82 \"United Kingdom\" false [4029 4270 7",
"end": 32252,
"score": 0.9998874664306641,
"start": 32236,
"tag": "NAME",
"value": "Halee Mccullough"
},
{
"context": "USA\" true [489 942 9034]]\n [\"Halee Mccullough\" \"halee23\" 82 \"United Kingdom\" false [4029 4270 7771]]\n [",
"end": 32262,
"score": 0.9993945956230164,
"start": 32255,
"tag": "USERNAME",
"value": "halee23"
},
{
"context": " 82 \"United Kingdom\" false [4029 4270 7771]]\n [\"Aquila Owen\" \"aquila80\" 26 \"Nigeria\" false [1703 5132 8383]]\n",
"end": 32324,
"score": 0.9998871684074402,
"start": 32313,
"tag": "NAME",
"value": "Aquila Owen"
},
{
"context": "ngdom\" false [4029 4270 7771]]\n [\"Aquila Owen\" \"aquila80\" 26 \"Nigeria\" false [1703 5132 8383]]\n [\"Tyler ",
"end": 32335,
"score": 0.9995017647743225,
"start": 32327,
"tag": "USERNAME",
"value": "aquila80"
},
{
"context": "uila80\" 26 \"Nigeria\" false [1703 5132 8383]]\n [\"Tyler Wells\" \"tyler36\" 47 \"Canada\" false [1701 7396 8233]]\n ",
"end": 32390,
"score": 0.9998804330825806,
"start": 32379,
"tag": "NAME",
"value": "Tyler Wells"
},
{
"context": "geria\" false [1703 5132 8383]]\n [\"Tyler Wells\" \"tyler36\" 47 \"Canada\" false [1701 7396 8233]]\n [\"Moses J",
"end": 32400,
"score": 0.9996460676193237,
"start": 32393,
"tag": "USERNAME",
"value": "tyler36"
},
{
"context": "tyler36\" 47 \"Canada\" false [1701 7396 8233]]\n [\"Moses Jarvis\" \"moses40\" 16 \"France\" true [1862 4574 4763]]\n ",
"end": 32455,
"score": 0.9998998641967773,
"start": 32443,
"tag": "NAME",
"value": "Moses Jarvis"
},
{
"context": "nada\" false [1701 7396 8233]]\n [\"Moses Jarvis\" \"moses40\" 16 \"France\" true [1862 4574 4763]]\n [\"Aiko Mas",
"end": 32465,
"score": 0.9996311068534851,
"start": 32458,
"tag": "USERNAME",
"value": "moses40"
},
{
"context": "\"moses40\" 16 \"France\" true [1862 4574 4763]]\n [\"Aiko Mason\" \"aiko18\" 42 \"United Kingdom\" true [2567 7231 726",
"end": 32517,
"score": 0.9998931884765625,
"start": 32507,
"tag": "NAME",
"value": "Aiko Mason"
},
{
"context": "\"France\" true [1862 4574 4763]]\n [\"Aiko Mason\" \"aiko18\" 42 \"United Kingdom\" true [2567 7231 7269]]\n [\"",
"end": 32526,
"score": 0.9996562600135803,
"start": 32520,
"tag": "USERNAME",
"value": "aiko18"
},
{
"context": "\" 42 \"United Kingdom\" true [2567 7231 7269]]\n [\"Miranda Aguirre\" \"miranda12\" 44 \"Canada\" true [1260 2442 5433]]\n ",
"end": 32591,
"score": 0.9998838305473328,
"start": 32576,
"tag": "NAME",
"value": "Miranda Aguirre"
},
{
"context": "om\" true [2567 7231 7269]]\n [\"Miranda Aguirre\" \"miranda12\" 44 \"Canada\" true [1260 2442 5433]]\n [\"India Fu",
"end": 32603,
"score": 0.9993462562561035,
"start": 32594,
"tag": "USERNAME",
"value": "miranda12"
},
{
"context": "iranda12\" 44 \"Canada\" true [1260 2442 5433]]\n [\"India Fuentes\" \"india17\" 26 \"Canada\" true [2321 5093 6033]]\n ",
"end": 32658,
"score": 0.9971199035644531,
"start": 32645,
"tag": "NAME",
"value": "India Fuentes"
},
{
"context": "\"india17\" 26 \"Canada\" true [2321 5093 6033]]\n [\"Wang Walker\" \"wang88\" 57 \"Canada\" true [1120 3692 7411]]\n [",
"end": 32721,
"score": 0.9998924136161804,
"start": 32710,
"tag": "NAME",
"value": "Wang Walker"
},
{
"context": "Canada\" true [2321 5093 6033]]\n [\"Wang Walker\" \"wang88\" 57 \"Canada\" true [1120 3692 7411]]\n [\"Latifah ",
"end": 32730,
"score": 0.9985715746879578,
"start": 32724,
"tag": "USERNAME",
"value": "wang88"
},
{
"context": " \"wang88\" 57 \"Canada\" true [1120 3692 7411]]\n [\"Latifah Singleton\" \"latifah51\" 25 \"Germany\" true [682 8247 8745]]\n ",
"end": 32789,
"score": 0.9998958110809326,
"start": 32772,
"tag": "NAME",
"value": "Latifah Singleton"
},
{
"context": "\" true [1120 3692 7411]]\n [\"Latifah Singleton\" \"latifah51\" 25 \"Germany\" true [682 8247 8745]]\n [\"Buffy Bo",
"end": 32801,
"score": 0.9993500709533691,
"start": 32792,
"tag": "USERNAME",
"value": "latifah51"
},
{
"context": "atifah51\" 25 \"Germany\" true [682 8247 8745]]\n [\"Buffy Bowman\" \"buffy39\" 55 \"China\" false [151 2834 7478]]\n [",
"end": 32855,
"score": 0.9998977780342102,
"start": 32843,
"tag": "NAME",
"value": "Buffy Bowman"
},
{
"context": "ermany\" true [682 8247 8745]]\n [\"Buffy Bowman\" \"buffy39\" 55 \"China\" false [151 2834 7478]]\n [\"George Gr",
"end": 32865,
"score": 0.9994795322418213,
"start": 32858,
"tag": "USERNAME",
"value": "buffy39"
},
{
"context": " \"buffy39\" 55 \"China\" false [151 2834 7478]]\n [\"George Griffin\" \"george49\" 72 \"China\" true [4737 5970 9669]]\n ",
"end": 32920,
"score": 0.9998958706855774,
"start": 32906,
"tag": "NAME",
"value": "George Griffin"
},
{
"context": "ina\" false [151 2834 7478]]\n [\"George Griffin\" \"george49\" 72 \"China\" true [4737 5970 9669]]\n [\"Wyoming H",
"end": 32931,
"score": 0.9994930028915405,
"start": 32923,
"tag": "USERNAME",
"value": "george49"
},
{
"context": "\"george49\" 72 \"China\" true [4737 5970 9669]]\n [\"Wyoming Hodge\" \"wyoming88\" 13 \"Nigeria\" false [291 822 8363]]\n ",
"end": 32985,
"score": 0.9998508095741272,
"start": 32972,
"tag": "NAME",
"value": "Wyoming Hodge"
},
{
"context": "hina\" true [4737 5970 9669]]\n [\"Wyoming Hodge\" \"wyoming88\" 13 \"Nigeria\" false [291 822 8363]]\n [\"Dustin G",
"end": 32997,
"score": 0.9992296099662781,
"start": 32988,
"tag": "USERNAME",
"value": "wyoming88"
},
{
"context": "yoming88\" 13 \"Nigeria\" false [291 822 8363]]\n [\"Dustin George\" \"dustin21\" 39 \"China\" false [2468 8388 9647]]\n ",
"end": 33052,
"score": 0.9998995065689087,
"start": 33039,
"tag": "NAME",
"value": "Dustin George"
},
{
"context": "geria\" false [291 822 8363]]\n [\"Dustin George\" \"dustin21\" 39 \"China\" false [2468 8388 9647]]\n [\"Farrah B",
"end": 33063,
"score": 0.9995590448379517,
"start": 33055,
"tag": "USERNAME",
"value": "dustin21"
},
{
"context": "dustin21\" 39 \"China\" false [2468 8388 9647]]\n [\"Farrah Bonner\" \"farrah17\" 30 \"United Kingdom\" false [442 2815 3",
"end": 33118,
"score": 0.9998997449874878,
"start": 33105,
"tag": "NAME",
"value": "Farrah Bonner"
},
{
"context": "ina\" false [2468 8388 9647]]\n [\"Farrah Bonner\" \"farrah17\" 30 \"United Kingdom\" false [442 2815 3150]]\n [\"",
"end": 33129,
"score": 0.9995864033699036,
"start": 33121,
"tag": "USERNAME",
"value": "farrah17"
},
{
"context": "\" 30 \"United Kingdom\" false [442 2815 3150]]\n [\"Kennedy Buckley\" \"kennedy40\" 32 \"United Kingdom\" true [353 3605 4",
"end": 33194,
"score": 0.99989914894104,
"start": 33179,
"tag": "NAME",
"value": "Kennedy Buckley"
},
{
"context": "om\" false [442 2815 3150]]\n [\"Kennedy Buckley\" \"kennedy40\" 32 \"United Kingdom\" true [353 3605 4942]]\n [\"M",
"end": 33206,
"score": 0.9996407628059387,
"start": 33197,
"tag": "USERNAME",
"value": "kennedy40"
},
{
"context": "0\" 32 \"United Kingdom\" true [353 3605 4942]]\n [\"Madeline Tyson\" \"madeline45\" 70 \"USA\" true [1626 6376 6839]]\n ",
"end": 33269,
"score": 0.9998972415924072,
"start": 33255,
"tag": "NAME",
"value": "Madeline Tyson"
},
{
"context": "gdom\" true [353 3605 4942]]\n [\"Madeline Tyson\" \"madeline45\" 70 \"USA\" true [1626 6376 6839]]\n [\"Nevada Oliv",
"end": 33282,
"score": 0.9996439218521118,
"start": 33272,
"tag": "USERNAME",
"value": "madeline45"
},
{
"context": "\"madeline45\" 70 \"USA\" true [1626 6376 6839]]\n [\"Nevada Oliver\" \"nevada41\" 50 \"Canada\" false [529 677 2306]]\n ",
"end": 33334,
"score": 0.9998937845230103,
"start": 33321,
"tag": "NAME",
"value": "Nevada Oliver"
},
{
"context": "\"USA\" true [1626 6376 6839]]\n [\"Nevada Oliver\" \"nevada41\" 50 \"Canada\" false [529 677 2306]]\n [\"Lois Mend",
"end": 33345,
"score": 0.9995525479316711,
"start": 33337,
"tag": "USERNAME",
"value": "nevada41"
},
{
"context": "6376 6839]]\n [\"Nevada Oliver\" \"nevada41\" 50 \"Canada\" false [529 677 2306]]\n [\"Lois Mendoza\" \"lois51",
"end": 33357,
"score": 0.9997931122779846,
"start": 33354,
"tag": "NAME",
"value": "ada"
},
{
"context": "\"nevada41\" 50 \"Canada\" false [529 677 2306]]\n [\"Lois Mendoza\" \"lois51\" 30 \"USA\" false [900 8152 8633]]\n [\"Ma",
"end": 33398,
"score": 0.9998894929885864,
"start": 33386,
"tag": "NAME",
"value": "Lois Mendoza"
},
{
"context": "Canada\" false [529 677 2306]]\n [\"Lois Mendoza\" \"lois51\" 30 \"USA\" false [900 8152 8633]]\n [\"Maris Fishe",
"end": 33407,
"score": 0.9994732737541199,
"start": 33401,
"tag": "USERNAME",
"value": "lois51"
},
{
"context": "za\" \"lois51\" 30 \"USA\" false [900 8152 8633]]\n [\"Maris Fisher\" \"maris18\" 14 \"USA\" true [554 2480 6859]]\n [\"Ba",
"end": 33458,
"score": 0.9998868703842163,
"start": 33446,
"tag": "NAME",
"value": "Maris Fisher"
},
{
"context": " \"USA\" false [900 8152 8633]]\n [\"Maris Fisher\" \"maris18\" 14 \"USA\" true [554 2480 6859]]\n [\"Barrett Murr",
"end": 33468,
"score": 0.9996176958084106,
"start": 33461,
"tag": "USERNAME",
"value": "maris18"
},
{
"context": "er\" \"maris18\" 14 \"USA\" true [554 2480 6859]]\n [\"Barrett Murray\" \"barrett57\" 44 \"China\" false [1271 2347 3175]]\n ",
"end": 33520,
"score": 0.9998911023139954,
"start": 33506,
"tag": "NAME",
"value": "Barrett Murray"
},
{
"context": "\"USA\" true [554 2480 6859]]\n [\"Barrett Murray\" \"barrett57\" 44 \"China\" false [1271 2347 3175]]\n [\"Sierra R",
"end": 33532,
"score": 0.9995787739753723,
"start": 33523,
"tag": "USERNAME",
"value": "barrett57"
},
{
"context": "arrett57\" 44 \"China\" false [1271 2347 3175]]\n [\"Sierra Richard\" \"sierra20\" 38 \"USA\" false [5923 9030 9711]]\n [",
"end": 33588,
"score": 0.9998817443847656,
"start": 33574,
"tag": "NAME",
"value": "Sierra Richard"
},
{
"context": "na\" false [1271 2347 3175]]\n [\"Sierra Richard\" \"sierra20\" 38 \"USA\" false [5923 9030 9711]]\n [\"Melodie Fi",
"end": 33599,
"score": 0.9995375871658325,
"start": 33591,
"tag": "USERNAME",
"value": "sierra20"
},
{
"context": " \"sierra20\" 38 \"USA\" false [5923 9030 9711]]\n [\"Melodie Fischer\" \"melodie16\" 19 \"Russia\" true [6518 6774 9854]]\n ",
"end": 33654,
"score": 0.9998912215232849,
"start": 33639,
"tag": "NAME",
"value": "Melodie Fischer"
},
{
"context": "A\" false [5923 9030 9711]]\n [\"Melodie Fischer\" \"melodie16\" 19 \"Russia\" true [6518 6774 9854]]\n [\"Avram Me",
"end": 33666,
"score": 0.9995920062065125,
"start": 33657,
"tag": "USERNAME",
"value": "melodie16"
},
{
"context": "elodie16\" 19 \"Russia\" true [6518 6774 9854]]\n [\"Avram Medina\" \"avram15\" 76 \"USA\" false [2651 3941 6048]]\n [\"",
"end": 33720,
"score": 0.9998910427093506,
"start": 33708,
"tag": "NAME",
"value": "Avram Medina"
},
{
"context": "ussia\" true [6518 6774 9854]]\n [\"Avram Medina\" \"avram15\" 76 \"USA\" false [2651 3941 6048]]\n [\"Cooper Nav",
"end": 33730,
"score": 0.9995905160903931,
"start": 33723,
"tag": "USERNAME",
"value": "avram15"
},
{
"context": "\" \"avram15\" 76 \"USA\" false [2651 3941 6048]]\n [\"Cooper Navarro\" \"cooper22\" 32 \"Germany\" true [3754 7243 8676]]\n ",
"end": 33784,
"score": 0.9998916387557983,
"start": 33770,
"tag": "NAME",
"value": "Cooper Navarro"
},
{
"context": "SA\" false [2651 3941 6048]]\n [\"Cooper Navarro\" \"cooper22\" 32 \"Germany\" true [3754 7243 8676]]\n [\"Jane Gr",
"end": 33795,
"score": 0.9995334148406982,
"start": 33787,
"tag": "USERNAME",
"value": "cooper22"
},
{
"context": "ooper22\" 32 \"Germany\" true [3754 7243 8676]]\n [\"Jane Graves\" \"jane12\" 55 \"China\" false [3343 4469 8120]]\n [",
"end": 33849,
"score": 0.9998899698257446,
"start": 33838,
"tag": "NAME",
"value": "Jane Graves"
},
{
"context": "ermany\" true [3754 7243 8676]]\n [\"Jane Graves\" \"jane12\" 55 \"China\" false [3343 4469 8120]]\n [\"Penelope",
"end": 33858,
"score": 0.9994565844535828,
"start": 33852,
"tag": "USERNAME",
"value": "jane12"
},
{
"context": " \"jane12\" 55 \"China\" false [3343 4469 8120]]\n [\"Penelope Sanchez\" \"penelope84\" 82 \"Germany\" false [269 3554 6489]]",
"end": 33916,
"score": 0.9998841285705566,
"start": 33900,
"tag": "NAME",
"value": "Penelope Sanchez"
},
{
"context": "\" false [3343 4469 8120]]\n [\"Penelope Sanchez\" \"penelope84\" 82 \"Germany\" false [269 3554 6489]]\n [\"Odysseu",
"end": 33929,
"score": 0.9996591806411743,
"start": 33919,
"tag": "USERNAME",
"value": "penelope84"
},
{
"context": "elope84\" 82 \"Germany\" false [269 3554 6489]]\n [\"Odysseus Pearson\" \"odysseus85\" 11 \"France\" false [2727 3240 6959]]",
"end": 33988,
"score": 0.9998887181282043,
"start": 33972,
"tag": "NAME",
"value": "Odysseus Pearson"
},
{
"context": "y\" false [269 3554 6489]]\n [\"Odysseus Pearson\" \"odysseus85\" 11 \"France\" false [2727 3240 6959]]\n [\"Daniel ",
"end": 34001,
"score": 0.999587893486023,
"start": 33991,
"tag": "USERNAME",
"value": "odysseus85"
},
{
"context": "sseus85\" 11 \"France\" false [2727 3240 6959]]\n [\"Daniel Acosta\" \"daniel41\" 44 \"France\" true [838 6453 7577]]\n ",
"end": 34057,
"score": 0.9998856782913208,
"start": 34044,
"tag": "NAME",
"value": "Daniel Acosta"
},
{
"context": "nce\" false [2727 3240 6959]]\n [\"Daniel Acosta\" \"daniel41\" 44 \"France\" true [838 6453 7577]]\n [\"Amir Lyon",
"end": 34068,
"score": 0.999675989151001,
"start": 34060,
"tag": "USERNAME",
"value": "daniel41"
},
{
"context": "\"daniel41\" 44 \"France\" true [838 6453 7577]]\n [\"Amir Lyons\" \"amir78\" 68 \"USA\" true [569 1680 9755]]\n [\"Aya",
"end": 34119,
"score": 0.9998890161514282,
"start": 34109,
"tag": "NAME",
"value": "Amir Lyons"
},
{
"context": " \"France\" true [838 6453 7577]]\n [\"Amir Lyons\" \"amir78\" 68 \"USA\" true [569 1680 9755]]\n [\"Ayanna Mccoy",
"end": 34128,
"score": 0.9996531009674072,
"start": 34122,
"tag": "USERNAME",
"value": "amir78"
},
{
"context": "ons\" \"amir78\" 68 \"USA\" true [569 1680 9755]]\n [\"Ayanna Mccoy\" \"ayanna74\" 48 \"India\" true [1301 6711 9102]]\n ",
"end": 34178,
"score": 0.9998790621757507,
"start": 34166,
"tag": "NAME",
"value": "Ayanna Mccoy"
},
{
"context": "8 \"USA\" true [569 1680 9755]]\n [\"Ayanna Mccoy\" \"ayanna74\" 48 \"India\" true [1301 6711 9102]]\n [\"Melvin Pa",
"end": 34189,
"score": 0.9996687173843384,
"start": 34181,
"tag": "USERNAME",
"value": "ayanna74"
},
{
"context": "\"ayanna74\" 48 \"India\" true [1301 6711 9102]]\n [\"Melvin Patel\" \"melvin29\" 70 \"Russia\" false [6740 7368 8130]]\n ",
"end": 34242,
"score": 0.999873161315918,
"start": 34230,
"tag": "NAME",
"value": "Melvin Patel"
},
{
"context": "India\" true [1301 6711 9102]]\n [\"Melvin Patel\" \"melvin29\" 70 \"Russia\" false [6740 7368 8130]]\n [\"Joy",
"end": 34249,
"score": 0.9993852376937866,
"start": 34245,
"tag": "USERNAME",
"value": "melv"
},
{
"context": "elvin29\" 70 \"Russia\" false [6740 7368 8130]]\n [\"Joy Grimes\" \"joy68\" 20 \"Russia\" false [3505 4241 9698]]\n [",
"end": 34306,
"score": 0.9998895525932312,
"start": 34296,
"tag": "NAME",
"value": "Joy Grimes"
},
{
"context": "Russia\" false [6740 7368 8130]]\n [\"Joy Grimes\" \"joy68\" 20 \"Russia\" false [3505 4241 9698]]\n [\"Hayfa B",
"end": 34314,
"score": 0.9993465542793274,
"start": 34309,
"tag": "USERNAME",
"value": "joy68"
},
{
"context": " \"joy68\" 20 \"Russia\" false [3505 4241 9698]]\n [\"Hayfa Brock\" \"hayfa36\" 39 \"Nigeria\" false [575 2461 3740]]\n ",
"end": 34368,
"score": 0.9998885989189148,
"start": 34357,
"tag": "NAME",
"value": "Hayfa Brock"
},
{
"context": "ussia\" false [3505 4241 9698]]\n [\"Hayfa Brock\" \"hayfa36\" 39 \"Nigeria\" false [575 2461 3740]]\n [\"Yuri Ba",
"end": 34378,
"score": 0.9994708299636841,
"start": 34371,
"tag": "USERNAME",
"value": "hayfa36"
},
{
"context": "hayfa36\" 39 \"Nigeria\" false [575 2461 3740]]\n [\"Yuri Ball\" \"yuri39\" 70 \"United Kingdom\" true [8530 8535 978",
"end": 34430,
"score": 0.9998788833618164,
"start": 34421,
"tag": "NAME",
"value": "Yuri Ball"
},
{
"context": "\"Nigeria\" false [575 2461 3740]]\n [\"Yuri Ball\" \"yuri39\" 70 \"United Kingdom\" true [8530 8535 9789]]\n [\"",
"end": 34439,
"score": 0.9991782903671265,
"start": 34433,
"tag": "USERNAME",
"value": "yuri39"
},
{
"context": "\" 70 \"United Kingdom\" true [8530 8535 9789]]\n [\"Hedley Black\" \"hedley54\" 85 \"India\" false [1033 2695 8543]]]\n ",
"end": 34501,
"score": 0.9998883008956909,
"start": 34489,
"tag": "NAME",
"value": "Hedley Black"
},
{
"context": "ngdom\" true [8530 8535 9789]]\n [\"Hedley Black\" \"hedley54\" 85 \"India\" false [1033 2695 8543]]]\n )\n",
"end": 34512,
"score": 0.9994917511940002,
"start": 34504,
"tag": "USERNAME",
"value": "hedley54"
}
] |
src/fast_data/data.clj
|
BrunoBonacci/fast-data
| 0 |
(ns fast-data.data)
(def basic-data
{
;; :bytes (byte-array [(byte 1) (byte 2) (byte 3)])
:nil nil
:boolean true
:char-utf8 \ಬ
:string-utf8 "ಬಾ ಇಲ್ಲಿ ಸಂಭವಿಸ"
:string-long (apply str (range 1000))
:keyword :keyword
:ns-keyword ::keyword
:sorted-set (sorted-set 5 4 3 2 1)
:sorted-map (sorted-map :b 2 :a 1 :d 4 :c 3)
:list (list 1 2 3 4 5 (list 6 7 8 (list 9 10)))
:list-quoted '(1 2 3 4 5 (6 7 8 (9 10)))
:list-empty (list)
:vector [1 2 3 4 5 [6 7 8 [9 10]]]
:vector-empty []
:map {:a 1 :b 2 :c 3 :d {:e 4 :f {:g 5 :h 6 :i 7}}}
:map-empty {}
;; :set #{1 2 3 4 5 #{6 7 8 #{9 10}}}
:set-empty #{}
:meta (with-meta {:a :A} {:metakey :metaval})
:lazy-seq (repeatedly 1000 rand)
;; ; :byte (byte 16)
:short (short 42)
:integer (int 3)
:long (long 3)
:bigint (bigint 31415926535897932384626433832795)
:float (float 3.14)
:double (double 3.14)
:bigdec (bigdec 3.1415926535897932384626433832795)
:ratio 22/7
:uuid (java.util.UUID/randomUUID)
:date (java.util.Date.)
})
;;
;; THE DATA CONATINED IN THIS FILE IS RANDOMLY
;; GENERATED. NAMES, AGES, USERNAMES ARE
;; NOT REAL AND THERE IS NO REFERENCE
;; REAL GAMES AND REAL SCORE.
;; THIS DATA HAS BEEN RANDOMLY GENERATED FOR
;; EDUCATIONAL PURPOSES ONLY.
;;
(def users-data
[["Kiayada Wyatt" "kiayada33" 33 "France" true [2475 4344 6671]]
["Dominic Ochoa" "dominic43" 72 "United Kingdom" false [599 4907 7394]]
["Cherokee Hammond" "cherokee10" 22 "Russia" false [2803 4247 4896]]
["Gemma Foley" "gemma36" 28 "Italy" true [1003 2294 6157]]
["Ginger Garcia" "ginger55" 28 "India" false [1254 3568 3729]]
["Hoyt Dennis" "hoyt50" 84 "Nigeria" true [3766 5168 9982]]
["Aurora Morgan" "aurora72" 20 "France" true [1760 8484 8877]]
["Haviva Allen" "haviva49" 89 "France" false [5960 8768 9665]]
["Mona Massey" "mona46" 66 "United Kingdom" true [2986 7238 9935]]
["Aimee Hinton" "aimee42" 63 "France" true [3395 4261 8881]]
["Diana Perez" "diana51" 56 "Canada" true [947 5752 5880]]
["Nicole Carter" "nicole35" 32 "Russia" true [1854 2218 9990]]
["Walter Hodges" "walter34" 63 "USA" true [2053 2625 3060]]
["Kalia Hammond" "kalia33" 53 "France" false [1764 3385 8903]]
["Chaney Albert" "chaney12" 69 "Russia" false [1232 6500 6835]]
["Deirdre Pittman" "deirdre88" 41 "Nigeria" false [5795 9213 9320]]
["Aaron Lawson" "aaron31" 74 "Nigeria" false [3210 4731 9219]]
["Holly Compton" "holly67" 28 "China" false [622 6589 8292]]
["Thaddeus Ray" "thaddeus49" 85 "France" true [2263 6338 6511]]
["Jonah Duran" "jonah45" 47 "USA" true [1214 6827 8473]]
["Aurora Tran" "aurora30" 74 "Canada" true [1511 2698 8421]]
["Josephine Castro" "josephine87" 58 "Canada" false [3053 3574 6815]]
["Kibo Suarez" "kibo52" 17 "Nigeria" false [3447 4796 5276]]
["Casey Day" "casey45" 16 "USA" false [2841 4158 5738]]
["Jackson Cole" "jackson27" 41 "China" true [1070 8241 9625]]
["Matthew Perkins" "matthew84" 85 "United Kingdom" true [141 6946 9020]]
["Thaddeus Grant" "thaddeus83" 46 "Nigeria" true [79 7575 9969]]
["Stacy Skinner" "stacy43" 84 "United Kingdom" true [1123 1864 3019]]
["Raven Hammond" "raven39" 69 "China" false [1101 1253 6028]]
["Dahlia Whitney" "dahlia86" 39 "France" false [4793 5101 7701]]
["Hashim Juarez" "hashim39" 69 "USA" true [6011 8510 9358]]
["Nayda Hardy" "nayda44" 30 "Canada" true [4313 8095 9035]]
["Addison Britt" "addison71" 52 "Canada" false [2406 3973 4254]]
["Lavinia Valdez" "lavinia29" 29 "France" true [3910 7304 9778]]
["Sierra Bishop" "sierra15" 38 "Italy" false [5344 7354 9184]]
["Catherine Wallace" "catherine16" 40 "Italy" true [988 1527 9053]]
["Yasir Nielsen" "yasir69" 43 "Germany" true [890 8394 8961]]
["Beau Larson" "beau30" 10 "France" true [1514 5632 6357]]
["Kirby Eaton" "kirby23" 20 "France" false [1483 3895 7371]]
["Petra Adkins" "petra54" 85 "France" true [3484 6561 7823]]
["Ivory Heath" "ivory73" 30 "India" false [2486 5981 6835]]
["Odette Goodman" "odette51" 85 "Italy" true [11 4295 5434]]
["Priscilla Mcfadden" "priscilla14" 19 "Russia" true [4343 7930 9612]]
["Clark Lucas" "clark43" 28 "USA" false [1183 2439 9437]]
["Xerxes Holland" "xerxes26" 51 "Russia" true [5280 6868 9437]]
["Karen Gray" "karen56" 29 "France" false [2015 2211 9756]]
["Ulric Crane" "ulric66" 85 "India" true [6604 6682 9823]]
["Paula Velez" "paula67" 27 "Germany" true [1516 5435 6379]]
["Ezra Gardner" "ezra30" 59 "Canada" true [3026 7939 9189]]
["September Chen" "september40" 18 "Germany" true [2425 2860 9653]]
["Helen Alvarado" "helen55" 16 "Nigeria" true [1427 5429 5994]]
["Bevis Guzman" "bevis74" 75 "Germany" false [4346 6661 6706]]
["Montana Cook" "montana18" 48 "Canada" true [703 2156 8865]]
["Tasha Deleon" "tasha61" 23 "China" false [1086 1520 4289]]
["Jameson Morse" "jameson71" 75 "USA" true [5492 6934 7778]]
["Danielle Tyler" "danielle44" 61 "Italy" true [3567 9002 9648]]
["Anastasia Whitaker" "anastasia23" 76 "Russia" false [1186 4547 9583]]
["Destiny Sanford" "destiny72" 83 "China" true [4440 5820 9134]]
["Kirestin Irwin" "kirestin73" 20 "India" true [705 877 9422]]
["Graiden Le" "graiden55" 15 "USA" false [906 4092 4790]]
["Tatum Stewart" "tatum40" 81 "India" true [1388 3401 6073]]
["Sylvia Sargent" "sylvia72" 44 "USA" false [804 1190 1646]]
["Azalia Molina" "azalia34" 25 "India" true [3639 8747 9332]]
["Paula Hatfied" "paula52" 82 "Russia" false [5715 8723 8930]]
["Wilma Mccray" "wilma68" 70 "Nigeria" true [1569 1953 2555]]
["Lacy Graham" "lacy61" 15 "Canada" false [1210 6628 9801]]
["Lillith Noble" "lillith68" 75 "India" true [164 5298 6587]]
["Oprah Ferrell" "oprah71" 27 "Italy" false [4394 5510 8434]]
["Steel Middleton" "steel78" 18 "USA" true [393 7152 9237]]
["Karyn Gay" "karyn70" 55 "Germany" false [4362 9557 9919]]
["Dora Reese" "dora70" 50 "Canada" false [3483 4651 5211]]
["Daria Gamble" "daria11" 76 "Nigeria" true [1941 2067 8393]]
["Norman Klein" "norman72" 63 "India" true [700 7305 9115]]
["Burton Erickson" "burton78" 19 "Russia" true [262 4673 7463]]
["Xerxes Kinney" "xerxes63" 54 "Italy" false [126 6167 7327]]
["Remedios Stephens" "remedios22" 86 "Nigeria" false [3926 5164 6605]]
["Hammett Oconnor" "hammett73" 12 "Canada" true [7143 7639 8806]]
["Nasim Hutchinson" "nasim81" 64 "United Kingdom" true [1739 3696 5196]]
["Ezra Hood" "ezra64" 57 "Italy" true [1993 2107 4763]]
["Simone Erickson" "simone31" 52 "Canada" false [1372 1874 8058]]
["Alexander Hoffman" "alexander48" 22 "Russia" false [2518 5388 6788]]
["Magee Miles" "magee48" 39 "France" true [6613 8296 9275]]
["Bernard Gould" "bernard83" 30 "Canada" false [3696 4072 6848]]
["Timothy Wilkerson" "timothy52" 63 "Nigeria" false [2781 3951 9883]]
["Yoshi Hodges" "yoshi69" 29 "Germany" false [831 7567 7780]]
["Erica Dudley" "erica38" 27 "Italy" true [1975 2341 4171]]
["Charde Lowe" "charde59" 36 "Germany" true [2415 3913 4980]]
["Laura Tillman" "laura38" 76 "Italy" true [1301 7826 9946]]
["Anastasia Perez" "anastasia28" 40 "India" false [584 2002 7615]]
["Castor Avery" "castor27" 73 "China" false [1076 2884 5735]]
["Connor Wiggins" "connor74" 10 "USA" false [1238 1814 8695]]
["Tashya Mcintosh" "tashya28" 14 "France" true [2031 4219 9475]]
["Martin Mccullough" "martin51" 40 "Nigeria" false [7554 8787 9356]]
["Arden Wheeler" "arden72" 29 "Italy" true [745 773 1443]]
["Alexandra Vazquez" "alexandra30" 55 "United Kingdom" false [5126 6065 8152]]
["Dai Beach" "dai74" 88 "United Kingdom" true [925 6624 7150]]
["Germane Snow" "germane78" 53 "Canada" true [5085 5452 5649]]
["Mohammad Huber" "mohammad18" 33 "India" false [333 2935 8873]]
["Colby Mcdaniel" "colby84" 25 "Nigeria" true [2657 9225 9248]]
["Igor Conley" "igor79" 82 "India" false [3587 5376 9271]]
["Aileen Pickett" "aileen56" 61 "United Kingdom" false [3054 8025 9611]]
["Ivan Cooley" "ivan17" 62 "India" false [1601 1762 5925]]
["Donovan Avila" "donovan67" 29 "France" true [5332 6667 8449]]
["Bert Galloway" "bert41" 56 "Italy" true [1508 2603 7136]]
["Pascale Estes" "pascale15" 59 "USA" true [7222 7449 8540]]
["Genevieve White" "genevieve47" 29 "Canada" false [578 6578 7060]]
["Daphne Dominguez" "daphne60" 64 "China" false [5686 6343 8300]]
["Kylan Sweeney" "kylan45" 24 "India" false [641 5918 9928]]
["Sarah Merritt" "sarah50" 68 "China" true [2673 6490 7009]]
["Sharon Solis" "sharon59" 84 "India" false [745 5453 8052]]
["Kevyn Blevins" "kevyn30" 78 "Russia" false [3639 7353 8997]]
["Tobias Terry" "tobias36" 74 "France" false [2166 7251 7973]]
["Victor Mcdonald" "victor16" 33 "Nigeria" false [5796 8390 9390]]
["George Carroll" "george23" 23 "Italy" false [679 4154 7011]]
["Chanda Riley" "chanda71" 47 "Nigeria" true [1257 3643 8734]]
["Garth Conrad" "garth51" 36 "Canada" false [492 5037 6860]]
["Joshua Rollins" "joshua83" 80 "Russia" true [4198 6548 9626]]
["Hedwig Richmond" "hedwig38" 87 "Nigeria" true [2367 3676 7177]]
["Rosalyn Kerr" "rosalyn15" 14 "India" false [2661 3869 6289]]
["Basil Maldonado" "basil66" 71 "Nigeria" true [1487 9074 9552]]
["Quinn Hooper" "quinn58" 25 "France" true [8120 8491 8745]]
["Kasper Allen" "kasper13" 77 "Canada" true [116 1548 2699]]
["Morgan Blevins" "morgan62" 40 "France" false [3345 8729 8906]]
["Tatiana Lancaster" "tatiana74" 78 "United Kingdom" true [3816 3974 5444]]
["Nevada Ramsey" "nevada43" 29 "China" false [350 426 5559]]
["Haley Donaldson" "haley61" 23 "China" false [701 4716 6370]]
["Samantha Figueroa" "samantha45" 56 "Russia" false [1282 4123 6062]]
["Cadman Richard" "cadman15" 33 "Germany" false [898 3003 6029]]
["Stone Keller" "stone10" 39 "Canada" true [1138 7584 9050]]
["Troy Beasley" "troy60" 44 "Nigeria" false [859 6161 7311]]
["Desirae Duncan" "desirae41" 18 "USA" true [1515 8155 8663]]
["Deanna Reid" "deanna86" 18 "Germany" false [122 1170 4701]]
["Amena Morrow" "amena85" 45 "France" true [2483 4360 6297]]
["Keefe Sosa" "keefe87" 79 "Nigeria" true [317 885 7701]]
["Cailin Mercer" "cailin19" 44 "Italy" true [1669 3988 6901]]
["Ian Valdez" "ian38" 71 "France" false [961 2456 3947]]
["Aphrodite Walls" "aphrodite65" 89 "Russia" false [1121 7222 7970]]
["Uriel Pruitt" "uriel18" 16 "Italy" false [956 7183 9466]]
["Aileen Schneider" "aileen31" 53 "Italy" false [309 5598 8987]]
["Denise Perkins" "denise49" 38 "France" false [839 4988 6751]]
["Lance Monroe" "lance38" 47 "India" true [3760 5862 9333]]
["Wynter Hayes" "wynter10" 86 "Italy" false [4801 4885 6248]]
["Ulric Brooks" "ulric81" 29 "Canada" false [1050 3329 6147]]
["Carolyn Rosario" "carolyn15" 45 "United Kingdom" true [3434 5257 8324]]
["Lewis Blevins" "lewis81" 40 "India" false [5414 8879 9349]]
["Sharon Snyder" "sharon52" 59 "Russia" false [4077 8404 9380]]
["Gail Bridges" "gail55" 29 "China" true [5259 7332 7389]]
["MacKensie Haney" "mackensie25" 19 "China" true [1969 4833 9342]]
["Pearl Carlson" "pearl25" 67 "United Kingdom" false [3050 4646 7948]]
["Dara Talley" "dara11" 66 "India" true [2425 3597 7538]]
["Quamar Nash" "quamar51" 87 "USA" false [2550 4315 8374]]
["Riley Schneider" "riley59" 69 "Germany" true [2217 2790 7977]]
["Libby Pittman" "libby49" 19 "USA" false [5697 6146 7882]]
["Lacota Mejia" "lacota30" 56 "Germany" false [443 3813 4952]]
["Kirby Schroeder" "kirby51" 32 "Nigeria" true [1657 4018 4264]]
["Freya Burt" "freya55" 66 "China" true [2832 3741 9379]]
["Jaime Flowers" "jaime68" 39 "Italy" true [1871 2066 8222]]
["Kato Hale" "kato44" 86 "United Kingdom" false [401 624 4884]]
["Herrod Orr" "herrod72" 73 "Canada" false [2046 5744 9873]]
["Cassady Young" "cassady11" 14 "Canada" true [4290 4754 7879]]
["Quinlan Arnold" "quinlan29" 60 "France" true [1829 3237 7099]]
["Shelly Brooks" "shelly66" 44 "Canada" false [1300 2016 2765]]
["Brenden Jarvis" "brenden56" 27 "China" true [5346 8309 9272]]
["Joel Stanley" "joel57" 14 "United Kingdom" false [4817 4958 6061]]
["MacKensie Pitts" "mackensie35" 10 "Russia" true [825 4567 6062]]
["Portia Hampton" "portia62" 46 "USA" false [3754 5307 9800]]
["Hayden Marsh" "hayden82" 29 "Germany" false [2960 5850 6305]]
["Clarke Wood" "clarke71" 58 "Russia" false [434 7754 9372]]
["Elmo Riggs" "elmo27" 77 "China" false [7695 8460 9086]]
["Lila Simmons" "lila34" 19 "USA" true [572 2546 7939]]
["Levi Vinson" "levi81" 43 "Italy" false [1359 2396 3181]]
["Xavier Baxter" "xavier75" 69 "Italy" false [2064 6948 9803]]
["Cullen Kelly" "cullen84" 41 "France" true [3050 3628 6452]]
["Ima Miles" "ima22" 50 "China" false [858 2547 3526]]
["Channing Mcguire" "channing23" 60 "Canada" true [1811 4541 8885]]
["Madison Watts" "madison10" 67 "Canada" true [5212 5298 7408]]
["Lysandra Johnston" "lysandra48" 22 "Nigeria" true [3611 3819 6176]]
["Anjolie Potter" "anjolie63" 71 "France" false [3882 5707 9189]]
["Wesley Lopez" "wesley14" 56 "India" false [1381 5205 7289]]
["Linda Mason" "linda55" 40 "Germany" true [3708 5080 9109]]
["Donovan Greene" "donovan86" 59 "Canada" false [982 1144 9423]]
["Warren Navarro" "warren75" 74 "USA" false [5274 7151 8201]]
["Ursa Case" "ursa68" 69 "Nigeria" false [1674 5583 8059]]
["Martena Curtis" "martena81" 22 "Nigeria" false [2770 4838 6460]]
["Uriel Donaldson" "uriel10" 64 "Italy" false [2502 5363 6249]]
["Aretha Lang" "aretha18" 66 "Italy" false [2241 5570 7808]]
["Celeste Baldwin" "celeste17" 49 "Germany" true [2743 3400 3970]]
["Lana Haynes" "lana51" 19 "China" false [922 4074 5594]]
["Kay Young" "kay27" 44 "USA" false [2292 6197 8147]]
["Alfonso Pate" "alfonso54" 61 "Russia" false [3469 4615 5650]]
["Lester Mueller" "lester72" 63 "Germany" true [1370 9673 9939]]
["Maya Craig" "maya33" 80 "Nigeria" true [4427 5830 6418]]
["Bruce Payne" "bruce77" 65 "Russia" false [1771 1955 3059]]
["Vladimir Booker" "vladimir34" 67 "Canada" true [287 2888 7112]]
["Deirdre Lowe" "deirdre68" 20 "Italy" false [2734 3140 5409]]
["Mason Leach" "mason44" 47 "Italy" false [6138 7493 8555]]
["Thor Mckee" "thor40" 77 "Italy" false [7192 7262 7654]]
["Chase Shaffer" "chase16" 24 "USA" false [801 7955 8640]]
["Phillip Sharp" "phillip85" 10 "USA" false [875 2514 2583]]
["Amos Obrien" "amos62" 88 "Italy" true [41 7036 7073]]
["Austin Buckley" "austin58" 41 "Russia" false [1871 2337 9139]]
["Christen Duke" "christen33" 54 "Canada" false [988 3448 5575]]
["Cain Richards" "cain77" 77 "Russia" true [2961 5344 8432]]
["McKenzie Nieves" "mckenzie26" 38 "USA" false [2096 2273 5982]]
["Quamar Olson" "quamar43" 85 "United Kingdom" false [7087 7398 8859]]
["Hall Grant" "hall13" 23 "China" true [1350 6389 7708]]
["Galvin Baldwin" "galvin74" 33 "India" true [2443 4595 4940]]
["Lacota James" "lacota20" 76 "Italy" false [6285 7816 9570]]
["Patricia Knowles" "patricia17" 74 "Russia" false [133 814 8418]]
["Kirk Zamora" "kirk64" 62 "Russia" false [2232 2641 5602]]
["Anika Cox" "anika29" 86 "Canada" true [1515 5900 9061]]
["Keane White" "keane22" 49 "United Kingdom" false [2320 9152 9555]]
["Risa Pearson" "risa44" 11 "Germany" true [661 1702 2257]]
["Regan Marks" "regan38" 70 "Nigeria" true [460 3832 8580]]
["Kieran Silva" "kieran79" 58 "Nigeria" false [1477 4723 9058]]
["Dante Miller" "dante13" 56 "Italy" true [825 956 2113]]
["Wilma Holmes" "wilma28" 15 "USA" true [1985 2454 8964]]
["Sylvester Bright" "sylvester16" 22 "India" false [1741 5108 8330]]
["Clark Logan" "clark60" 54 "Germany" false [4468 7611 8851]]
["Quon Wiggins" "quon49" 79 "China" true [188 1412 1658]]
["Cullen Carpenter" "cullen68" 82 "Russia" false [1118 3993 7838]]
["Fleur Marshall" "fleur72" 61 "France" true [4681 5320 6842]]
["Chancellor Sykes" "chancellor60" 50 "Italy" false [1972 5972 6096]]
["Allen Vaughn" "allen48" 72 "China" false [4445 7575 8572]]
["Herman Mcdaniel" "herman34" 76 "Russia" true [1079 3284 9855]]
["Upton Huff" "upton78" 24 "France" true [3638 4676 9057]]
["Renee Houston" "renee79" 47 "France" false [4444 7380 9595]]
["Hyatt Mcknight" "hyatt22" 58 "India" false [4052 5816 8011]]
["Carl Crosby" "carl21" 54 "Germany" false [599 5010 7650]]
["Carolyn Patterson" "carolyn70" 47 "United Kingdom" false [765 2888 3572]]
["Anjolie Heath" "anjolie86" 24 "Canada" true [3248 5382 9748]]
["Gail Alston" "gail26" 40 "Italy" false [151 1909 2037]]
["September Daniel" "september34" 15 "China" false [1925 5407 7129]]
["Brandon Barron" "brandon14" 33 "USA" true [1278 1564 2379]]
["Preston Sutton" "preston49" 56 "Canada" false [2446 6960 7254]]
["Adena Woodard" "adena73" 89 "China" true [5461 8620 8636]]
["Alisa Gibbs" "alisa53" 81 "Canada" true [3900 6093 7103]]
["Kimberly Cross" "kimberly49" 42 "India" true [3 5334 5620]]
["Cullen Mccoy" "cullen64" 77 "China" false [3697 8804 9032]]
["Brynn Middleton" "brynn77" 79 "France" true [94 5187 9431]]
["Celeste Becker" "celeste64" 87 "Russia" false [443 2734 3658]]
["Austin Wilkins" "austin60" 30 "India" false [980 2051 5377]]
["Justina Kerr" "justina41" 40 "India" true [738 1156 6279]]
["Larissa Nguyen" "larissa14" 77 "United Kingdom" false [2754 4109 7388]]
["Nissim Price" "nissim63" 84 "China" false [2173 3317 9133]]
["Hall Rice" "hall35" 17 "Russia" false [3906 4063 4294]]
["Cain Paul" "cain50" 45 "United Kingdom" false [719 2355 6401]]
["Rahim Wood" "rahim27" 69 "Canada" true [1838 9027 9158]]
["Velma Talley" "velma27" 22 "Italy" true [176 6916 9142]]
["Alfreda Osborn" "alfreda82" 15 "Canada" true [5993 7202 8589]]
["Rajah Barr" "rajah77" 67 "Nigeria" false [585 4593 9737]]
["Mollie Sanders" "mollie21" 11 "United Kingdom" true [369 3144 9798]]
["Halla Decker" "halla24" 16 "France" false [5018 5128 6979]]
["Alec Mckenzie" "alec29" 64 "Russia" false [2864 5316 9873]]
["Roth Cervantes" "roth20" 49 "Italy" true [6873 7031 8726]]
["Curran Wynn" "curran13" 24 "India" true [1008 7021 7244]]
["Colt Franco" "colt33" 29 "USA" false [1856 2853 4082]]
["Xander Petersen" "xander35" 22 "China" false [627 1979 6662]]
["Richard Logan" "richard71" 76 "China" false [6135 9191 9708]]
["Haviva Koch" "haviva50" 30 "Nigeria" true [2686 8155 9028]]
["Eagan Rhodes" "eagan86" 71 "China" false [3376 3815 7538]]
["Dorothy Hobbs" "dorothy75" 30 "Germany" false [7043 9188 9247]]
["Jenna Baxter" "jenna55" 33 "Italy" true [1648 9865 9949]]
["Hope Henderson" "hope75" 10 "Germany" true [544 2346 2776]]
["Vladimir Hoover" "vladimir25" 47 "Russia" false [3430 4914 7996]]
["Bernard Petersen" "bernard33" 85 "France" false [877 1216 6537]]
["Jessamine Roberts" "jessamine26" 62 "USA" false [4720 5522 9814]]
["Kelly Snow" "kelly87" 28 "China" false [493 9089 9846]]
["Adena Malone" "adena62" 33 "Russia" false [1210 3996 6399]]
["Jaime Scott" "jaime26" 49 "India" false [149 755 5100]]
["Ocean Oliver" "ocean72" 32 "Germany" false [1897 5535 7551]]
["Russell Wallace" "russell87" 75 "USA" true [4618 5589 6655]]
["Zelenia Rodriguez" "zelenia82" 62 "China" true [386 3041 8841]]
["McKenzie Rosales" "mckenzie55" 53 "Canada" true [2044 5225 8094]]
["Flynn Barry" "flynn12" 36 "Canada" true [3085 4924 6354]]
["Erich Mcmahon" "erich82" 79 "Italy" true [4564 7319 9187]]
["Risa Mccall" "risa54" 80 "France" true [4731 6124 7475]]
["Aline Fernandez" "aline52" 47 "India" false [648 7878 9432]]
["Maite Horne" "maite57" 69 "USA" false [4066 5150 9588]]
["Naomi Mayer" "naomi29" 50 "Germany" true [4520 4541 8405]]
["TaShya Rollins" "tashya87" 52 "Canada" false [2870 9482 9864]]
["Emerson Griffith" "emerson53" 72 "United Kingdom" false [1919 2041 7306]]
["Laith Serrano" "laith10" 10 "Germany" false [4751 7316 8284]]
["Cooper Mccall" "cooper79" 82 "USA" true [3094 5374 6218]]
["Hayes Ochoa" "hayes53" 13 "Germany" true [4443 5010 9225]]
["Hollee Browning" "hollee45" 75 "Russia" false [77 3053 3839]]
["Grant Day" "grant69" 65 "United Kingdom" false [3149 4547 9136]]
["Amber Goodman" "amber41" 81 "USA" false [272 1762 2740]]
["Ahmed Palmer" "ahmed66" 16 "United Kingdom" true [428 4248 5957]]
["Caldwell Gillespie" "caldwell18" 46 "Italy" false [2210 3747 4966]]
["Patrick Howell" "patrick87" 77 "Canada" true [1377 6880 8804]]
["Wanda Macias" "wanda30" 68 "Nigeria" true [2748 4290 5412]]
["Ali Wise" "ali47" 26 "Russia" true [3062 3948 8530]]
["Scarlet Navarro" "scarlet10" 20 "Russia" false [3026 9025 9095]]
["Illana Le" "illana35" 12 "France" true [5435 5947 6820]]
["Damon Frazier" "damon11" 62 "United Kingdom" false [2941 9735 9901]]
["Farrah Lester" "farrah60" 37 "India" true [219 546 850]]
["Miranda Suarez" "miranda48" 77 "Nigeria" false [1264 1559 3915]]
["Graham Thompson" "graham39" 36 "India" false [225 2106 5355]]
["Jane Randolph" "jane43" 42 "India" true [3473 4969 8610]]
["Latifah Steele" "latifah63" 51 "Nigeria" true [5056 6285 6867]]
["Sigourney Walter" "sigourney67" 52 "India" false [2554 4752 8204]]
["Benjamin Todd" "benjamin32" 85 "China" true [1621 3361 3568]]
["Elliott Buckley" "elliott69" 55 "Nigeria" false [2056 5380 9922]]
["Linda Hood" "linda20" 39 "France" false [3411 8191 8464]]
["Jada Golden" "jada52" 42 "Russia" true [1602 2524 6570]]
["Tamara Haynes" "tamara87" 72 "India" true [866 1695 6205]]
["Tatyana Vang" "tatyana80" 89 "Canada" true [4863 5579 6304]]
["Harding Powell" "harding75" 87 "Russia" false [429 2184 8146]]
["Lavinia Salas" "lavinia81" 58 "United Kingdom" true [5426 5462 6610]]
["Desirae Sanford" "desirae47" 58 "United Kingdom" true [1631 4646 5957]]
["Brenda Maynard" "brenda62" 81 "Russia" true [435 7185 8950]]
["Gemma Rosario" "gemma42" 42 "Italy" true [811 6570 9234]]
["Jamalia Patrick" "jamalia24" 78 "USA" true [314 2137 6055]]
["Natalie Vaughn" "natalie81" 23 "USA" true [4278 8454 8722]]
["Jamal English" "jamal82" 20 "USA" false [1900 4363 8474]]
["Reese Fuentes" "reese83" 65 "Russia" true [903 3617 4218]]
["Clio Tanner" "clio29" 48 "Germany" false [1743 2192 9095]]
["Conan Kinney" "conan55" 10 "Canada" true [1614 3670 4319]]
["Abraham Sawyer" "abraham80" 18 "France" false [3839 7141 9407]]
["Violet Humphrey" "violet60" 41 "Germany" true [4427 4831 7997]]
["Casey Sears" "casey19" 38 "Russia" true [462 4163 4660]]
["Silas Best" "silas72" 17 "Italy" true [5587 7197 9909]]
["Pearl Dixon" "pearl29" 78 "Canada" true [2030 2131 3805]]
["Rina Garner" "rina65" 58 "USA" false [1029 1821 6056]]
["Amos Berger" "amos63" 28 "Canada" true [3715 6737 9537]]
["Caesar Chase" "caesar58" 24 "Russia" false [1660 2767 6477]]
["Mark Kaufman" "mark52" 73 "China" true [974 1694 2992]]
["Wylie Bright" "wylie42" 64 "Canada" true [2830 5757 7648]]
["Christen Mullins" "christen72" 12 "United Kingdom" false [1438 2814 7213]]
["Alexa Munoz" "alexa42" 17 "China" false [5715 6765 9154]]
["Uriel Sargent" "uriel22" 60 "USA" true [945 2176 4690]]
["Xyla Calhoun" "xyla14" 30 "Russia" false [121 4163 9957]]
["Noel Compton" "noel45" 49 "France" false [1969 5701 5918]]
["Mallory Pennington" "mallory47" 56 "Canada" false [2337 6228 7388]]
["Ahmed Mayer" "ahmed78" 81 "Germany" true [4863 5375 8136]]
["Cedric Cobb" "cedric44" 11 "China" true [5245 6235 6642]]
["Hilel Barber" "hilel54" 69 "Russia" false [2064 3359 7652]]
["Deborah Carter" "deborah32" 26 "India" true [626 5121 8444]]
["Driscoll Becker" "driscoll66" 64 "France" true [2051 2341 8366]]
["Jerry Garner" "jerry87" 79 "Italy" true [2280 4822 6847]]
["Brian Merritt" "brian46" 36 "Germany" false [2674 5072 7738]]
["Jorden Richards" "jorden78" 70 "Canada" false [2794 6445 6897]]
["Blythe Hughes" "blythe58" 15 "China" false [3681 6296 8444]]
["Stacey Frank" "stacey44" 67 "Canada" true [684 2372 9499]]
["Bo Taylor" "bo28" 16 "United Kingdom" true [357 4317 7385]]
["Wynter Barber" "wynter72" 66 "India" true [742 7640 7654]]
["Noelle Waller" "noelle32" 55 "Canada" false [378 1748 8448]]
["Casey Hines" "casey46" 68 "Russia" true [2992 4233 8463]]
["Brittany Rush" "brittany76" 42 "France" true [3429 4548 8112]]
["Byron Carey" "byron36" 27 "Nigeria" false [1861 3528 7496]]
["Hamish Fry" "hamish68" 46 "China" true [226 2526 5174]]
["Florence Robinson" "florence38" 25 "Canada" false [619 2547 9462]]
["Germaine Mays" "germaine70" 55 "France" false [27 1572 8204]]
["Venus Mills" "venus32" 22 "Nigeria" false [1550 2290 8096]]
["Mannix Henson" "mannix37" 88 "India" true [7655 8578 8788]]
["Willa Reilly" "willa87" 73 "United Kingdom" true [185 6342 8226]]
["Aline Howe" "aline71" 33 "Canada" false [1806 2436 2746]]
["Keane Carey" "keane69" 62 "France" false [910 1009 2269]]
["Thomas Hartman" "thomas29" 54 "Germany" false [1294 3315 7378]]
["Jack Armstrong" "jack71" 59 "USA" false [1165 5327 8931]]
["Elijah Herrera" "elijah19" 30 "Germany" true [1688 3181 3661]]
["Angela Acosta" "angela67" 65 "Canada" true [1 7200 9529]]
["Germaine Daniels" "germaine48" 74 "Nigeria" true [2711 7557 9394]]
["Illiana Jones" "illiana82" 47 "USA" false [5420 8178 8820]]
["Alec Martinez" "alec62" 20 "USA" false [1570 6633 9635]]
["Madison Haynes" "madison71" 32 "India" false [4786 6248 7229]]
["Sydnee Watson" "sydnee39" 49 "Italy" false [4658 5355 8038]]
["Chantale Delacruz" "chantale56" 84 "Russia" false [3814 6922 9884]]
["Keefe Bullock" "keefe60" 40 "Russia" true [1008 4228 5490]]
["Simon Chandler" "simon33" 54 "Canada" false [1607 2576 6662]]
["Keefe Santana" "keefe63" 46 "Germany" false [4114 6887 7764]]
["Upton Manning" "upton40" 72 "China" true [2810 4821 5584]]
["Diana Howard" "diana38" 53 "Russia" false [4517 6083 9151]]
["Nichole Christian" "nichole81" 53 "Italy" false [2209 2492 6296]]
["Seth Cash" "seth87" 37 "USA" true [655 7348 9747]]
["Chelsea Calhoun" "chelsea84" 15 "Nigeria" false [5231 7673 7805]]
["Lamar Dominguez" "lamar40" 43 "France" true [1783 6141 8346]]
["Brynne Vasquez" "brynne49" 78 "China" false [2243 2530 5893]]
["Jared Marks" "jared74" 41 "Russia" true [125 198 2579]]
["Herrod Keith" "herrod40" 63 "United Kingdom" true [1473 1807 5023]]
["Britanney Avila" "britanney74" 63 "Germany" false [4251 4757 5447]]
["Tanisha Alford" "tanisha44" 89 "India" false [416 3212 7590]]
["Yardley Blair" "yardley22" 84 "USA" false [968 5369 6151]]
["Dara Kirby" "dara41" 41 "USA" true [5592 8721 9426]]
["Chelsea Bright" "chelsea81" 34 "Russia" false [3592 7823 9002]]
["Melvin Perkins" "melvin35" 60 "Nigeria" true [937 1680 9025]]
["Ulla Mccoy" "ulla48" 10 "United Kingdom" true [3075 4997 6130]]
["Dustin Cochran" "dustin85" 58 "USA" false [1487 3129 5107]]
["Allen Wolfe" "allen80" 60 "India" true [1217 6343 8698]]
["Gisela Stout" "gisela83" 48 "India" true [3343 4185 7932]]
["Burton Lucas" "burton28" 66 "Canada" false [4959 8025 8560]]
["Adrian Patrick" "adrian45" 45 "USA" false [1083 1617 4413]]
["Reece Carrillo" "reece22" 89 "France" false [4619 9069 9620]]
["Maile Duncan" "maile71" 20 "Germany" true [5245 5443 8766]]
["Noble Baker" "noble88" 58 "Russia" true [959 4913 8020]]
["Paula Shelton" "paula76" 45 "India" true [3863 5335 8528]]
["Anjolie Moore" "anjolie48" 18 "USA" false [1426 3193 6544]]
["Shana Baker" "shana71" 50 "United Kingdom" true [6296 6446 8518]]
["Nola Boyd" "nola75" 85 "France" false [41 1700 7271]]
["Kellie Tran" "kellie13" 80 "USA" false [2975 6348 9052]]
["Cherokee Conway" "cherokee72" 19 "USA" false [1170 8698 9308]]
["Madeson Bryan" "madeson58" 33 "China" false [2263 4081 5772]]
["Rashad Townsend" "rashad57" 74 "Canada" false [6239 6874 8964]]
["Elmo Saunders" "elmo31" 47 "USA" true [1321 4146 5439]]
["Tallulah Moses" "tallulah76" 27 "Canada" true [2529 4067 8467]]
["Nerea Avila" "nerea18" 84 "France" false [1512 6858 7268]]
["Christen Paul" "christen30" 25 "Russia" true [851 4509 7971]]
["Orson Woods" "orson64" 69 "Germany" true [5339 5523 5651]]
["Silas Griffin" "silas51" 16 "Germany" true [345 814 9738]]
["Darrel Mathis" "darrel37" 58 "Russia" true [54 6395 6894]]
["Edward Wright" "edward19" 11 "USA" false [1927 6737 8691]]
["Holly Howell" "holly89" 75 "China" false [6935 9704 9731]]
["Maile Duke" "maile16" 65 "Nigeria" false [3652 7487 9306]]
["Jesse Glass" "jesse79" 78 "Germany" false [5553 7680 9597]]
["Gavin Alvarez" "gavin28" 86 "Nigeria" false [5107 7556 8070]]
["Dawn Lindsey" "dawn46" 80 "United Kingdom" true [266 1133 3284]]
["Colby Stephens" "colby82" 27 "France" true [879 5571 6607]]
["Marshall York" "marshall48" 17 "India" false [653 4650 9752]]
["Rae Walter" "rae60" 35 "Nigeria" false [6857 7191 7224]]
["Ross Neal" "ross58" 89 "Nigeria" false [457 5657 8576]]
["Leo Lancaster" "leo24" 22 "Nigeria" true [1261 7693 9549]]
["Nadine Rodriguez" "nadine28" 74 "Russia" false [2254 5222 5419]]
["Curran Hill" "curran68" 61 "Nigeria" false [1082 3728 6558]]
["Quynn Bowen" "quynn56" 64 "Italy" true [2401 2580 7921]]
["Raya Anthony" "raya32" 43 "Russia" false [2235 5765 6217]]
["Maya Cline" "maya89" 59 "India" false [1148 4123 9091]]
["Adara Benton" "adara53" 47 "France" false [5448 6404 8346]]
["Malcolm Moore" "malcolm17" 72 "Canada" true [1006 3414 7382]]
["Finn Buckner" "finn83" 78 "Nigeria" true [2409 2425 6233]]
["Yoshio Newton" "yoshio24" 16 "United Kingdom" true [320 4651 5306]]
["Britanni Decker" "britanni21" 68 "Canada" true [7422 7685 9290]]
["Ciaran Gill" "ciaran11" 16 "Italy" true [728 7500 8420]]
["Bertha Simpson" "bertha87" 67 "France" false [2632 5330 8542]]
["Gage Stokes" "gage17" 38 "Germany" true [260 1036 6570]]
["Ray Carver" "ray77" 33 "United Kingdom" true [3616 4284 6705]]
["Kennedy Hahn" "kennedy61" 32 "Canada" true [177 625 6866]]
["Meredith Dawson" "meredith30" 46 "Russia" true [692 4110 9482]]
["Carissa Taylor" "carissa40" 49 "United Kingdom" false [587 759 7609]]
["Marvin Walker" "marvin63" 27 "Italy" false [905 7139 7833]]
["Yoshi Holmes" "yoshi46" 66 "United Kingdom" false [871 1163 2810]]
["Wendy Mooney" "wendy71" 46 "Germany" false [3776 6587 7857]]
["Macaulay West" "macaulay24" 64 "Russia" false [5702 8341 9614]]
["Neville Doyle" "neville58" 22 "Canada" false [1363 4195 7784]]
["Liberty Atkinson" "liberty66" 34 "India" true [1480 2022 5348]]
["Gretchen Mccall" "gretchen88" 28 "United Kingdom" true [772 3559 9124]]
["Myra Kemp" "myra35" 25 "Nigeria" false [4546 5812 7893]]
["Roary Sweeney" "roary89" 37 "Italy" false [48 1843 8774]]
["Sasha Tyson" "sasha44" 44 "Nigeria" true [5261 5880 7074]]
["Oscar Chen" "oscar59" 44 "United Kingdom" false [2451 4185 5991]]
["Reagan Larson" "reagan23" 19 "USA" true [1059 1176 6620]]
["Fitzgerald Garrett" "fitzgerald75" 77 "China" false [304 1624 5980]]
["Tashya Wooten" "tashya32" 84 "USA" false [860 2220 6680]]
["Kirsten Becker" "kirsten47" 39 "India" false [142 351 5433]]
["Sylvester Cote" "sylvester63" 80 "USA" false [2295 2956 5659]]
["Zena Spence" "zena21" 45 "Germany" false [1531 1667 4002]]
["Mariko Walton" "mariko73" 11 "France" true [347 2870 3284]]
["Julie Duran" "julie59" 42 "Nigeria" true [77 4732 8755]]
["Taylor Cote" "taylor81" 60 "India" true [459 7618 9922]]
["Kamal Kidd" "kamal39" 59 "India" true [479 9157 9643]]
["Cynthia Stewart" "cynthia48" 40 "Canada" true [1492 6138 7185]]
["Aurelia Valencia" "aurelia73" 64 "Germany" true [3723 5982 6762]]
["Gwendolyn Swanson" "gwendolyn78" 27 "India" false [542 5984 6031]]
["Richard Cortez" "richard65" 29 "Italy" true [5198 7631 8562]]
["Rhiannon Lloyd" "rhiannon40" 21 "USA" true [489 942 9034]]
["Halee Mccullough" "halee23" 82 "United Kingdom" false [4029 4270 7771]]
["Aquila Owen" "aquila80" 26 "Nigeria" false [1703 5132 8383]]
["Tyler Wells" "tyler36" 47 "Canada" false [1701 7396 8233]]
["Moses Jarvis" "moses40" 16 "France" true [1862 4574 4763]]
["Aiko Mason" "aiko18" 42 "United Kingdom" true [2567 7231 7269]]
["Miranda Aguirre" "miranda12" 44 "Canada" true [1260 2442 5433]]
["India Fuentes" "india17" 26 "Canada" true [2321 5093 6033]]
["Wang Walker" "wang88" 57 "Canada" true [1120 3692 7411]]
["Latifah Singleton" "latifah51" 25 "Germany" true [682 8247 8745]]
["Buffy Bowman" "buffy39" 55 "China" false [151 2834 7478]]
["George Griffin" "george49" 72 "China" true [4737 5970 9669]]
["Wyoming Hodge" "wyoming88" 13 "Nigeria" false [291 822 8363]]
["Dustin George" "dustin21" 39 "China" false [2468 8388 9647]]
["Farrah Bonner" "farrah17" 30 "United Kingdom" false [442 2815 3150]]
["Kennedy Buckley" "kennedy40" 32 "United Kingdom" true [353 3605 4942]]
["Madeline Tyson" "madeline45" 70 "USA" true [1626 6376 6839]]
["Nevada Oliver" "nevada41" 50 "Canada" false [529 677 2306]]
["Lois Mendoza" "lois51" 30 "USA" false [900 8152 8633]]
["Maris Fisher" "maris18" 14 "USA" true [554 2480 6859]]
["Barrett Murray" "barrett57" 44 "China" false [1271 2347 3175]]
["Sierra Richard" "sierra20" 38 "USA" false [5923 9030 9711]]
["Melodie Fischer" "melodie16" 19 "Russia" true [6518 6774 9854]]
["Avram Medina" "avram15" 76 "USA" false [2651 3941 6048]]
["Cooper Navarro" "cooper22" 32 "Germany" true [3754 7243 8676]]
["Jane Graves" "jane12" 55 "China" false [3343 4469 8120]]
["Penelope Sanchez" "penelope84" 82 "Germany" false [269 3554 6489]]
["Odysseus Pearson" "odysseus85" 11 "France" false [2727 3240 6959]]
["Daniel Acosta" "daniel41" 44 "France" true [838 6453 7577]]
["Amir Lyons" "amir78" 68 "USA" true [569 1680 9755]]
["Ayanna Mccoy" "ayanna74" 48 "India" true [1301 6711 9102]]
["Melvin Patel" "melvin29" 70 "Russia" false [6740 7368 8130]]
["Joy Grimes" "joy68" 20 "Russia" false [3505 4241 9698]]
["Hayfa Brock" "hayfa36" 39 "Nigeria" false [575 2461 3740]]
["Yuri Ball" "yuri39" 70 "United Kingdom" true [8530 8535 9789]]
["Hedley Black" "hedley54" 85 "India" false [1033 2695 8543]]]
)
|
80054
|
(ns fast-data.data)
(def basic-data
{
;; :bytes (byte-array [(byte 1) (byte 2) (byte 3)])
:nil nil
:boolean true
:char-utf8 \ಬ
:string-utf8 "ಬಾ ಇಲ್ಲಿ ಸಂಭವಿಸ"
:string-long (apply str (range 1000))
:keyword :keyword
:ns-keyword ::keyword
:sorted-set (sorted-set 5 4 3 2 1)
:sorted-map (sorted-map :b 2 :a 1 :d 4 :c 3)
:list (list 1 2 3 4 5 (list 6 7 8 (list 9 10)))
:list-quoted '(1 2 3 4 5 (6 7 8 (9 10)))
:list-empty (list)
:vector [1 2 3 4 5 [6 7 8 [9 10]]]
:vector-empty []
:map {:a 1 :b 2 :c 3 :d {:e 4 :f {:g 5 :h 6 :i 7}}}
:map-empty {}
;; :set #{1 2 3 4 5 #{6 7 8 #{9 10}}}
:set-empty #{}
:meta (with-meta {:a :A} {:metakey :metaval})
:lazy-seq (repeatedly 1000 rand)
;; ; :byte (byte 16)
:short (short 42)
:integer (int 3)
:long (long 3)
:bigint (bigint 31415926535897932384626433832795)
:float (float 3.14)
:double (double 3.14)
:bigdec (bigdec 3.1415926535897932384626433832795)
:ratio 22/7
:uuid (java.util.UUID/randomUUID)
:date (java.util.Date.)
})
;;
;; THE DATA CONATINED IN THIS FILE IS RANDOMLY
;; GENERATED. NAMES, AGES, USERNAMES ARE
;; NOT REAL AND THERE IS NO REFERENCE
;; REAL GAMES AND REAL SCORE.
;; THIS DATA HAS BEEN RANDOMLY GENERATED FOR
;; EDUCATIONAL PURPOSES ONLY.
;;
(def users-data
[["<NAME>" "kiayada33" 33 "France" true [2475 4344 6671]]
["<NAME>" "dominic43" 72 "United Kingdom" false [599 4907 7394]]
["<NAME>" "cherokee10" 22 "Russia" false [2803 4247 4896]]
["<NAME>" "gemma36" 28 "Italy" true [1003 2294 6157]]
["<NAME>" "ginger55" 28 "India" false [1254 3568 3729]]
["<NAME>" "hoyt50" 84 "Nigeria" true [3766 5168 9982]]
["<NAME>" "aurora72" 20 "France" true [1760 8484 8877]]
["<NAME>" "haviva49" 89 "France" false [5960 8768 9665]]
["<NAME>" "mona46" 66 "United Kingdom" true [2986 7238 9935]]
["<NAME>" "aimee42" 63 "France" true [3395 4261 8881]]
["<NAME>" "diana51" 56 "Canada" true [947 5752 5880]]
["<NAME>" "nicole35" 32 "Russia" true [1854 2218 9990]]
["<NAME>" "walter34" 63 "USA" true [2053 2625 3060]]
["<NAME>" "kalia33" 53 "France" false [1764 3385 8903]]
["<NAME>" "chaney12" 69 "Russia" false [1232 6500 6835]]
["<NAME>" "deirdre88" 41 "Nigeria" false [5795 9213 9320]]
["<NAME>" "aaron31" 74 "Nigeria" false [3210 4731 9219]]
["<NAME>" "holly67" 28 "China" false [622 6589 8292]]
["<NAME>" "thaddeus49" 85 "France" true [2263 6338 6511]]
["<NAME>" "jonah45" 47 "USA" true [1214 6827 8473]]
["<NAME>" "aurora30" 74 "Canada" true [1511 2698 8421]]
["<NAME>" "josephine87" 58 "Canada" false [3053 3574 6815]]
["<NAME>" "kibo52" 17 "Niger<NAME>" false [3447 4796 5276]]
["<NAME>" "casey45" 16 "USA" false [2841 4158 5738]]
["<NAME>" "jackson27" 41 "China" true [1070 8241 9625]]
["<NAME>" "matthew84" 85 "United Kingdom" true [141 6946 9020]]
["<NAME>" "thaddeus83" 46 "Nigeria" true [79 7575 9969]]
["<NAME>" "stacy43" 84 "United Kingdom" true [1123 1864 3019]]
["<NAME>" "raven39" 69 "China" false [1101 1253 6028]]
["<NAME>" "dahlia86" 39 "France" false [4793 5101 7701]]
["<NAME>" "hashim39" 69 "USA" true [6011 8510 9358]]
["<NAME>" "nayda44" 30 "Canada" true [4313 8095 9035]]
["<NAME>" "addison71" 52 "Canada" false [2406 3973 4254]]
["<NAME>" "lavinia29" 29 "France" true [3910 7304 9778]]
["<NAME>" "sierra15" 38 "Italy" false [5344 7354 9184]]
["<NAME>" "catherine16" 40 "Italy" true [988 1527 9053]]
["<NAME>" "yasir69" 43 "Germany" true [890 8394 8961]]
["<NAME>" "beau30" 10 "France" true [1514 5632 6357]]
["<NAME>" "kirby23" 20 "France" false [1483 3895 7371]]
["<NAME>" "petra54" 85 "France" true [3484 6561 7823]]
["<NAME>" "ivory73" 30 "India" false [2486 5981 6835]]
["<NAME>" "odette51" 85 "Italy" true [11 4295 5434]]
["<NAME>" "priscilla14" 19 "Russia" true [4343 7930 9612]]
["<NAME>" "clark43" 28 "USA" false [1183 2439 9437]]
["<NAME>" "xerxes26" 51 "Russia" true [5280 6868 9437]]
["<NAME>" "karen56" 29 "France" false [2015 2211 9756]]
["<NAME>" "ulric66" 85 "India" true [6604 6682 9823]]
["<NAME>" "paula67" 27 "Germany" true [1516 5435 6379]]
["<NAME>" "ezra30" 59 "Canada" true [3026 7939 9189]]
["<NAME>" "september40" 18 "Germany" true [2425 2860 9653]]
["<NAME>" "helen55" 16 "Nigeria" true [1427 5429 5994]]
["<NAME>" "bevis74" 75 "Germany" false [4346 6661 6706]]
["<NAME>" "montana18" 48 "Canada" true [703 2156 8865]]
["<NAME>" "tasha61" 23 "China" false [1086 1520 4289]]
["<NAME>" "jameson71" 75 "USA" true [5492 6934 7778]]
["<NAME>" "danielle44" 61 "Italy" true [3567 9002 9648]]
["<NAME>" "anastasia23" 76 "Russia" false [1186 4547 9583]]
["<NAME>" "destiny72" 83 "China" true [4440 5820 9134]]
["<NAME>" "kirestin73" 20 "India" true [705 877 9422]]
["<NAME>" "graiden55" 15 "USA" false [906 4092 4790]]
["<NAME>" "tatum40" 81 "India" true [1388 3401 6073]]
["<NAME>" "sylvia72" 44 "USA" false [804 1190 1646]]
["<NAME>" "azalia34" 25 "India" true [3639 8747 9332]]
["<NAME>" "paula52" 82 "Russia" false [5715 8723 8930]]
["<NAME>" "wilma68" 70 "Nigeria" true [1569 1953 2555]]
["<NAME>" "lacy61" 15 "Canada" false [1210 6628 9801]]
["<NAME>" "lillith68" 75 "India" true [164 5298 6587]]
["<NAME>" "oprah71" 27 "Italy" false [4394 5510 8434]]
["<NAME>" "steel78" 18 "USA" true [393 7152 9237]]
["<NAME>" "karyn70" 55 "Germany" false [4362 9557 9919]]
["<NAME>" "dora70" 50 "Canada" false [3483 4651 5211]]
["<NAME>" "daria11" 76 "Nigeria" true [1941 2067 8393]]
["<NAME>" "norman72" 63 "India" true [700 7305 9115]]
["<NAME>" "burton78" 19 "Russia" true [262 4673 7463]]
["<NAME>" "xerxes63" 54 "Italy" false [126 6167 7327]]
["<NAME>" "remedios22" 86 "Nigeria" false [3926 5164 6605]]
["<NAME>" "hammett73" 12 "Canada" true [7143 7639 8806]]
["<NAME>" "nasim81" 64 "United Kingdom" true [1739 3696 5196]]
["<NAME>" "ezra64" 57 "Italy" true [1993 2107 4763]]
["<NAME>" "simone31" 52 "Canada" false [1372 1874 8058]]
["<NAME>" "alexander48" 22 "Russia" false [2518 5388 6788]]
["<NAME>" "magee48" 39 "France" true [6613 8296 9275]]
["<NAME>" "bernard83" 30 "Canada" false [3696 4072 6848]]
["<NAME>" "timothy52" 63 "Nigeria" false [2781 3951 9883]]
["<NAME>" "yoshi69" 29 "Germany" false [831 7567 7780]]
["<NAME>" "erica38" 27 "Italy" true [1975 2341 4171]]
["<NAME>" "charde59" 36 "Germany" true [2415 3913 4980]]
["<NAME>" "laura38" 76 "Italy" true [1301 7826 9946]]
["<NAME>" "anastasia28" 40 "India" false [584 2002 7615]]
["<NAME>" "castor27" 73 "China" false [1076 2884 5735]]
["<NAME>" "connor74" 10 "USA" false [1238 1814 8695]]
["<NAME>" "tashya28" 14 "France" true [2031 4219 9475]]
["<NAME>" "martin51" 40 "Nigeria" false [7554 8787 9356]]
["<NAME>" "arden72" 29 "Italy" true [745 773 1443]]
["<NAME>" "alexandra30" 55 "United Kingdom" false [5126 6065 8152]]
["<NAME>" "dai74" 88 "United Kingdom" true [925 6624 7150]]
["<NAME>" "germane78" 53 "Canada" true [5085 5452 5649]]
["<NAME>" "mohammad18" 33 "India" false [333 2935 8873]]
["<NAME>" "colby84" 25 "Nigeria" true [2657 9225 9248]]
["<NAME>" "igor79" 82 "India" false [3587 5376 9271]]
["<NAME>" "aileen56" 61 "United Kingdom" false [3054 8025 9611]]
["<NAME>" "ivan17" 62 "India" false [1601 1762 5925]]
["<NAME>" "donovan67" 29 "France" true [5332 6667 8449]]
["<NAME>" "bert41" 56 "Italy" true [1508 2603 7136]]
["<NAME>" "pascale15" 59 "USA" true [7222 7449 8540]]
["<NAME>" "genevieve47" 29 "Canada" false [578 6578 7060]]
["<NAME>" "daphne60" 64 "China" false [5686 6343 8300]]
["<NAME>" "kylan45" 24 "India" false [641 5918 9928]]
["<NAME>" "sarah50" 68 "China" true [2673 6490 7009]]
["<NAME>" "sharon59" 84 "India" false [745 5453 8052]]
["<NAME>" "kevyn30" 78 "Russia" false [3639 7353 8997]]
["<NAME>" "tobias36" 74 "France" false [2166 7251 7973]]
["<NAME>" "victor16" 33 "Nigeria" false [5796 8390 9390]]
["<NAME>" "george23" 23 "Italy" false [679 4154 7011]]
["<NAME>" "chanda71" 47 "Nigeria" true [1257 3643 8734]]
["<NAME>" "garth51" 36 "Canada" false [492 5037 6860]]
["<NAME>" "joshua83" 80 "Russia" true [4198 6548 9626]]
["<NAME>" "hedwig38" 87 "Nigeria" true [2367 3676 7177]]
["<NAME>" "rosalyn15" 14 "India" false [2661 3869 6289]]
["<NAME>" "basil66" 71 "Nigeria" true [1487 9074 9552]]
["<NAME>" "quinn58" 25 "France" true [8120 8491 8745]]
["<NAME>" "kasper13" 77 "Canada" true [116 1548 2699]]
["<NAME>" "morgan62" 40 "France" false [3345 8729 8906]]
["<NAME>" "tatiana74" 78 "United Kingdom" true [3816 3974 5444]]
["<NAME>" "nevada43" 29 "China" false [350 426 5559]]
["<NAME>" "haley61" 23 "China" false [701 4716 6370]]
["<NAME>" "samantha45" 56 "Russia" false [1282 4123 6062]]
["<NAME>" "cadman15" 33 "Germany" false [898 3003 6029]]
["<NAME>" "stone10" 39 "Canada" true [1138 7584 9050]]
["<NAME>" "troy60" 44 "Nigeria" false [859 6161 7311]]
["<NAME>" "desirae41" 18 "USA" true [1515 8155 8663]]
["<NAME>" "deanna86" 18 "Germany" false [122 1170 4701]]
["<NAME>" "amena85" 45 "France" true [2483 4360 6297]]
["<NAME>" "keefe87" 79 "Nigeria" true [317 885 7701]]
["<NAME>" "cailin19" 44 "Italy" true [1669 3988 6901]]
["<NAME>" "ian38" 71 "France" false [961 2456 3947]]
["<NAME>" "aphrodite65" 89 "Russia" false [1121 7222 7970]]
["<NAME>" "uriel18" 16 "Italy" false [956 7183 9466]]
["<NAME>" "aileen31" 53 "Italy" false [309 5598 8987]]
["<NAME>" "denise49" 38 "France" false [839 4988 6751]]
["<NAME>" "lance38" 47 "India" true [3760 5862 9333]]
["<NAME>" "wynter10" 86 "Italy" false [4801 4885 6248]]
["<NAME>" "ulric81" 29 "Canada" false [1050 3329 6147]]
["<NAME>" "carolyn1<NAME>" 45 "United Kingdom" true [3434 5257 8324]]
["<NAME>" "lewis81" 40 "India" false [5414 8879 9349]]
["<NAME>" "sharon52" 59 "Russia" false [4077 8404 9380]]
["<NAME>" "gail55" 29 "China" true [5259 7332 7389]]
["<NAME>" "mackensie25" 19 "China" true [1969 4833 9342]]
["<NAME>" "pearl25" 67 "United Kingdom" false [3050 4646 7948]]
["<NAME>" "dara11" 66 "India" true [2425 3597 7538]]
["<NAME>" "quamar51" 87 "USA" false [2550 4315 8374]]
["<NAME>" "riley59" 69 "Germany" true [2217 2790 7977]]
["<NAME>" "libby49" 19 "USA" false [5697 6146 7882]]
["<NAME>" "lacota30" 56 "Germany" false [443 3813 4952]]
["<NAME>" "kirby51" 32 "Nigeria" true [1657 4018 4264]]
["<NAME>" "freya55" 66 "China" true [2832 3741 9379]]
["<NAME>" "jaime68" 39 "Italy" true [1871 2066 8222]]
["<NAME>" "kato44" 86 "United Kingdom" false [401 624 4884]]
["<NAME>" "herrod72" 73 "Canada" false [2046 5744 9873]]
["<NAME>" "cassady11" 14 "Canada" true [4290 4754 7879]]
["<NAME>" "quinlan29" 60 "France" true [1829 3237 7099]]
["<NAME>" "shelly66" 44 "Canada" false [1300 2016 2765]]
["<NAME>" "brenden56" 27 "China" true [5346 8309 9272]]
["<NAME>" "joel57" 14 "United Kingdom" false [4817 4958 6061]]
["<NAME>" "mackensie35" 10 "Russia" true [825 4567 6062]]
["<NAME>" "portia62" 46 "USA" false [3754 5307 9800]]
["<NAME>" "hayden82" 29 "Germany" false [2960 5850 6305]]
["<NAME>" "clarke71" 58 "Russia" false [434 7754 9372]]
["<NAME>" "elmo27" 77 "China" false [7695 8460 9086]]
["<NAME>" "lila34" 19 "USA" true [572 2546 7939]]
["<NAME>" "levi81" 43 "Italy" false [1359 2396 3181]]
["<NAME>" "xavier75" 69 "Italy" false [2064 6948 9803]]
["<NAME>" "cullen84" 41 "France" true [3050 3628 6452]]
["<NAME>" "ima22" 50 "China" false [858 2547 3526]]
["<NAME>" "channing23" 60 "Canada" true [1811 4541 8885]]
["<NAME>" "madison10" 67 "Canada" true [5212 5298 7408]]
["<NAME>" "lysandra48" 22 "Nigeria" true [3611 3819 6176]]
["<NAME>" "anjolie63" 71 "France" false [3882 5707 9189]]
["<NAME>" "wesley14" 56 "India" false [1381 5205 7289]]
["<NAME>" "linda55" 40 "Germany" true [3708 5080 9109]]
["<NAME>" "donovan86" 59 "Canada" false [982 1144 9423]]
["<NAME>" "warren75" 74 "USA" false [5274 7151 8201]]
["<NAME>" "ursa68" 69 "Nigeria" false [1674 5583 8059]]
["<NAME>" "martena81" 22 "Nigeria" false [2770 4838 6460]]
["<NAME>" "uriel10" 64 "Italy" false [2502 5363 6249]]
["<NAME>" "aretha18" 66 "Italy" false [2241 5570 7808]]
["<NAME>" "celeste17" 49 "Germany" true [2743 3400 3970]]
["<NAME>" "lana51" 19 "China" false [922 4074 5594]]
["<NAME>" "kay27" 44 "USA" false [2292 6197 8147]]
["<NAME>" "alfonso54" 61 "Russia" false [3469 4615 5650]]
["<NAME>" "lester72" 63 "Germany" true [1370 9673 9939]]
["<NAME>" "maya33" 80 "Nigeria" true [4427 5830 6418]]
["<NAME>" "bruce77" 65 "Russia" false [1771 1955 3059]]
["<NAME>" "vladimir34" 67 "Canada" true [287 2888 7112]]
["<NAME>" "deirdre68" 20 "Italy" false [2734 3140 5409]]
["<NAME>" "mason44" 47 "Italy" false [6138 7493 8555]]
["<NAME>" "thor40" 77 "Italy" false [7192 7262 7654]]
["<NAME>" "chase16" 24 "USA" false [801 7955 8640]]
["<NAME>" "phillip85" 10 "USA" false [875 2514 2583]]
["<NAME>" "amos62" 88 "Italy" true [41 7036 7073]]
["<NAME>" "austin58" 41 "Russia" false [1871 2337 9139]]
["<NAME>" "christen33" 54 "Canada" false [988 3448 5575]]
["<NAME>" "cain77" 77 "Russia" true [2961 5344 8432]]
["<NAME>" "mckenzie26" 38 "USA" false [2096 2273 5982]]
["<NAME>" "quamar43" 85 "United Kingdom" false [7087 7398 8859]]
["<NAME>" "hall13" 23 "China" true [1350 6389 7708]]
["<NAME>" "galvin74" 33 "India" true [2443 4595 4940]]
["<NAME>" "lacota20" 76 "Italy" false [6285 7816 9570]]
["<NAME>" "patricia17" 74 "Russia" false [133 814 8418]]
["<NAME>" "kirk64" 62 "Russia" false [2232 2641 5602]]
["<NAME>" "anika29" 86 "Canada" true [1515 5900 9061]]
["<NAME>" "keane22" 49 "United Kingdom" false [2320 9152 9555]]
["<NAME>" "risa44" 11 "Germany" true [661 1702 2257]]
["<NAME>" "regan38" 70 "Nigeria" true [460 3832 8580]]
["<NAME>" "kieran79" 58 "Nigeria" false [1477 4723 9058]]
["<NAME>" "dante13" 56 "Italy" true [825 956 2113]]
["<NAME>" "wilma28" 15 "USA" true [1985 2454 8964]]
["<NAME>" "sylvester16" 22 "India" false [1741 5108 8330]]
["<NAME>" "clark60" 54 "Germany" false [4468 7611 8851]]
["<NAME>" "quon49" 79 "China" true [188 1412 1658]]
["<NAME>" "cullen68" 82 "Russia" false [1118 3993 7838]]
["<NAME>" "fleur72" 61 "France" true [4681 5320 6842]]
["<NAME>" "chancellor60" 50 "Italy" false [1972 5972 6096]]
["<NAME>" "allen48" 72 "China" false [4445 7575 8572]]
["<NAME>" "herman34" 76 "Russia" true [1079 3284 9855]]
["<NAME>" "upton78" 24 "France" true [3638 4676 9057]]
["<NAME>" "renee79" 47 "France" false [4444 7380 9595]]
["<NAME>" "hyatt22" 58 "India" false [4052 5816 8011]]
["<NAME>" "carl21" 54 "Germany" false [599 5010 7650]]
["<NAME>" "carolyn70" 47 "United Kingdom" false [765 2888 3572]]
["<NAME>" "anjolie86" 24 "Canada" true [3248 5382 9748]]
["<NAME>" "gail26" 40 "Italy" false [151 1909 2037]]
["<NAME>" "september34" 15 "China" false [1925 5407 7129]]
["<NAME>" "brandon14" 33 "USA" true [1278 1564 2379]]
["<NAME>" "preston49" 56 "Canada" false [2446 6960 7254]]
["<NAME>" "adena73" 89 "China" true [5461 8620 8636]]
["<NAME>" "alisa53" 81 "Canada" true [3900 6093 7103]]
["<NAME>" "kimberly49" 42 "India" true [3 5334 5620]]
["<NAME>co<NAME>" "cullen64" 77 "China" false [3697 8804 9032]]
["<NAME>" "brynn77" 79 "France" true [94 5187 9431]]
["<NAME>" "celeste64" 87 "Russia" false [443 2734 3658]]
["<NAME>" "austin60" 30 "India" false [980 2051 5377]]
["<NAME>" "justina41" 40 "India" true [738 1156 6279]]
["<NAME>" "larissa14" 77 "United Kingdom" false [2754 4109 7388]]
["<NAME>" "nissim63" 84 "China" false [2173 3317 9133]]
["<NAME>" "hall35" 17 "Russia" false [3906 4063 4294]]
["<NAME>" "cain50" 45 "United Kingdom" false [719 2355 6401]]
["<NAME>" "rahim27" 69 "Canada" true [1838 9027 9158]]
["<NAME>" "velma27" 22 "Italy" true [176 6916 9142]]
["<NAME>" "alfreda82" 15 "Canada" true [5993 7202 8589]]
["<NAME>" "rajah77" 67 "Nigeria" false [585 4593 9737]]
["<NAME>" "mollie21" 11 "United Kingdom" true [369 3144 9798]]
["<NAME>" "halla24" 16 "France" false [5018 5128 6979]]
["<NAME>" "alec29" 64 "Russia" false [2864 5316 9873]]
["<NAME>" "roth20" 49 "Italy" true [6873 7031 8726]]
["<NAME>" "curran13" 24 "India" true [1008 7021 7244]]
["<NAME>" "colt33" 29 "USA" false [1856 2853 4082]]
["<NAME>" "xander35" 22 "China" false [627 1979 6662]]
["<NAME>" "richard71" 76 "China" false [6135 9191 9708]]
["<NAME>" "haviva50" 30 "Nigeria" true [2686 8155 9028]]
["<NAME>" "eagan86" 71 "China" false [3376 3815 7538]]
["<NAME>" "dorothy75" 30 "Germany" false [7043 9188 9247]]
["<NAME>" "jenna55" 33 "Italy" true [1648 9865 9949]]
["<NAME>" "hope75" 10 "Germany" true [544 2346 2776]]
["<NAME>" "vladimir25" 47 "Russia" false [3430 4914 7996]]
["<NAME>" "bernard33" 85 "France" false [877 1216 6537]]
["<NAME>" "jessamine26" 62 "USA" false [4720 5522 9814]]
["<NAME>" "kelly87" 28 "China" false [493 9089 9846]]
["<NAME>" "adena62" 33 "Russia" false [1210 3996 6399]]
["<NAME>" "jaime26" 49 "India" false [149 755 5100]]
["<NAME>" "ocean72" 32 "Germany" false [1897 5535 7551]]
["<NAME>" "russell87" 75 "USA" true [4618 5589 6655]]
["<NAME>" "zelenia82" 62 "China" true [386 3041 8841]]
["<NAME>" "mckenzie55" 53 "Canada" true [2044 5225 8094]]
["<NAME>" "flynn12" 36 "Canada" true [3085 4924 6354]]
["<NAME>" "erich82" 79 "Italy" true [4564 7319 9187]]
["<NAME>" "risa54" 80 "France" true [4731 6124 7475]]
["<NAME>" "aline52" 47 "India" false [648 7878 9432]]
["<NAME>" "maite57" 69 "USA" false [4066 5150 9588]]
["<NAME>" "naomi29" 50 "Germany" true [4520 4541 8405]]
["<NAME>" "tashya87" 52 "Canada" false [2870 9482 9864]]
["<NAME>" "emerson53" 72 "United Kingdom" false [1919 2041 7306]]
["<NAME>" "laith10" 10 "Germany" false [4751 7316 8284]]
["<NAME>" "cooper79" 82 "USA" true [3094 5374 6218]]
["<NAME>" "hayes53" 13 "Germany" true [4443 5010 9225]]
["<NAME>" "hollee45" 75 "Russia" false [77 3053 3839]]
["<NAME>" "grant69" 65 "United Kingdom" false [3149 4547 9136]]
["<NAME>" "amber41" 81 "USA" false [272 1762 2740]]
["<NAME>" "ahmed66" 16 "United Kingdom" true [428 4248 5957]]
["<NAME>" "caldwell18" 46 "Italy" false [2210 3747 4966]]
["<NAME>" "patrick87" 77 "Canada" true [1377 6880 8804]]
["<NAME>" "wanda30" 68 "Nigeria" true [2748 4290 5412]]
["<NAME>" "ali47" 26 "Russia" true [3062 3948 8530]]
["<NAME>" "scarlet10" 20 "Russia" false [3026 9025 9095]]
["<NAME>" "illana35" 12 "France" true [5435 5947 6820]]
["<NAME>" "damon11" 62 "United Kingdom" false [2941 9735 9901]]
["<NAME>" "farrah60" 37 "India" true [219 546 850]]
["<NAME>" "miranda48" 77 "Nigeria" false [1264 1559 3915]]
["<NAME>" "graham39" 36 "India" false [225 2106 5355]]
["<NAME>" "jane43" 42 "India" true [3473 4969 8610]]
["<NAME>" "latifah63" 51 "Nigeria" true [5056 6285 6867]]
["<NAME>" "sigourney67" 52 "India" false [2554 4752 8204]]
["<NAME>" "benjamin32" 85 "China" true [1621 3361 3568]]
["<NAME>" "elliott69" 55 "Nigeria" false [2056 5380 9922]]
["<NAME>" "linda20" 39 "France" false [3411 8191 8464]]
["<NAME>" "jada52" 42 "Russia" true [1602 2524 6570]]
["<NAME>" "tamara87" 72 "India" true [866 1695 6205]]
["<NAME>" "tatyana80" 89 "Canada" true [4863 5579 6304]]
["<NAME>" "harding75" 87 "Russia" false [429 2184 8146]]
["<NAME>" "lavinia81" 58 "United Kingdom" true [5426 5462 6610]]
["<NAME>" "desirae47" 58 "United Kingdom" true [1631 4646 5957]]
["<NAME>" "brenda62" 81 "Russia" true [435 7185 8950]]
["<NAME>" "gemma42" 42 "Italy" true [811 6570 9234]]
["<NAME>" "jamalia24" 78 "USA" true [314 2137 6055]]
["<NAME>" "natalie81" 23 "USA" true [4278 8454 8722]]
["<NAME>" "jamal82" 20 "USA" false [1900 4363 8474]]
["<NAME>" "reese83" 65 "Russia" true [903 3617 4218]]
["<NAME>" "clio29" 48 "Germany" false [1743 2192 9095]]
["<NAME>" "conan55" 10 "Canada" true [1614 3670 4319]]
["<NAME>" "abraham80" 18 "France" false [3839 7141 9407]]
["<NAME>" "violet60" 41 "Germany" true [4427 4831 7997]]
["<NAME>" "casey19" 38 "Russia" true [462 4163 4660]]
["<NAME>" "silas72" 17 "Italy" true [5587 7197 9909]]
["<NAME>" "pearl29" 78 "Canada" true [2030 2131 3805]]
["<NAME>" "rina65" 58 "USA" false [1029 1821 6056]]
["<NAME>" "amos63" 28 "Canada" true [3715 6737 9537]]
["<NAME>" "caesar58" 24 "Russia" false [1660 2767 6477]]
["<NAME>" "mark52" 73 "China" true [974 1694 2992]]
["<NAME>" "wylie42" 64 "Canada" true [2830 5757 7648]]
["<NAME>" "christen72" 12 "United Kingdom" false [1438 2814 7213]]
["<NAME>" "alexa42" 17 "China" false [5715 6765 9154]]
["<NAME>" "uriel22" 60 "USA" true [945 2176 4690]]
["<NAME>" "xyla14" 30 "Russia" false [121 4163 9957]]
["<NAME>" "noel45" 49 "France" false [1969 5701 5918]]
["<NAME>" "mallory47" 56 "Canada" false [2337 6228 7388]]
["<NAME>" "ahmed78" 81 "Germany" true [4863 5375 8136]]
["<NAME>" "cedric44" 11 "China" true [5245 6235 6642]]
["<NAME>" "hilel54" 69 "Russia" false [2064 3359 7652]]
["<NAME>" "deborah32" 26 "India" true [626 5121 8444]]
["<NAME>" "driscoll66" 64 "France" true [2051 2341 8366]]
["<NAME>" "jerry87" 79 "Italy" true [2280 4822 6847]]
["<NAME>" "brian46" 36 "Germany" false [2674 5072 7738]]
["<NAME>" "jorden78" 70 "Canada" false [2794 6445 6897]]
["<NAME>" "blythe58" 15 "China" false [3681 6296 8444]]
["<NAME>" "stacey44" 67 "Canada" true [684 2372 9499]]
["<NAME>" "bo28" 16 "United Kingdom" true [357 4317 7385]]
["<NAME>" "wynter72" 66 "India" true [742 7640 7654]]
["<NAME>" "noelle32" 55 "Canada" false [378 1748 8448]]
["<NAME>" "casey46" 68 "Russia" true [2992 4233 8463]]
["<NAME>" "brittany76" 42 "France" true [3429 4548 8112]]
["<NAME>" "byron36" 27 "Nigeria" false [1861 3528 7496]]
["<NAME>" "hamish68" 46 "China" true [226 2526 5174]]
["<NAME>" "florence38" 25 "Canada" false [619 2547 9462]]
["<NAME>" "germaine70" 55 "France" false [27 1572 8204]]
["<NAME>" "venus32" 22 "Nigeria" false [1550 2290 8096]]
["<NAME>" "mannix37" 88 "India" true [7655 8578 8788]]
["<NAME>" "willa87" 73 "United Kingdom" true [185 6342 8226]]
["<NAME>" "aline71" 33 "Canada" false [1806 2436 2746]]
["<NAME>" "keane69" 62 "France" false [910 1009 2269]]
["<NAME>" "thomas29" 54 "Germany" false [1294 3315 7378]]
["<NAME>" "jack71" 59 "USA" false [1165 5327 8931]]
["<NAME>" "elijah19" 30 "Germany" true [1688 3181 3661]]
["<NAME>" "angela67" 65 "Canada" true [1 7200 9529]]
["<NAME>" "germaine48" 74 "Nigeria" true [2711 7557 9394]]
["<NAME>" "illiana82" 47 "USA" false [5420 8178 8820]]
["<NAME>" "alec62" 20 "USA" false [1570 6633 9635]]
["<NAME>" "madison71" 32 "India" false [4786 6248 7229]]
["<NAME>" "sydnee39" 49 "Italy" false [4658 5355 8038]]
["<NAME>" "chantale56" 84 "Russia" false [3814 6922 9884]]
["<NAME>" "keefe60" 40 "Russia" true [1008 4228 5490]]
["<NAME>" "simon33" 54 "Canada" false [1607 2576 6662]]
["<NAME>" "keefe63" 46 "Germany" false [4114 6887 7764]]
["<NAME>" "upton40" 72 "China" true [2810 4821 5584]]
["<NAME>" "diana38" 53 "Russia" false [4517 6083 9151]]
["<NAME>" "nichole81" 53 "Italy" false [2209 2492 6296]]
["<NAME>" "seth87" 37 "USA" true [655 7348 9747]]
["<NAME>" "chelsea84" 15 "Nigeria" false [5231 7673 7805]]
["<NAME>" "lamar40" 43 "France" true [1783 6141 8346]]
["<NAME>" "brynne49" 78 "China" false [2243 2530 5893]]
["<NAME>" "jared74" 41 "Russia" true [125 198 2579]]
["<NAME>" "herrod40" 63 "United Kingdom" true [1473 1807 5023]]
["<NAME>" "britanney74" 63 "Germany" false [4251 4757 5447]]
["<NAME>" "tanisha44" 89 "India" false [416 3212 7590]]
["<NAME>" "yardley22" 84 "USA" false [968 5369 6151]]
["<NAME>" "dara41" 41 "USA" true [5592 8721 9426]]
["<NAME>" "chelsea81" 34 "Russia" false [3592 7823 9002]]
["<NAME>" "melvin35" 60 "Nigeria" true [937 1680 9025]]
["<NAME>" "ulla48" 10 "United Kingdom" true [3075 4997 6130]]
["<NAME>" "dustin85" 58 "USA" false [1487 3129 5107]]
["<NAME>" "allen80" 60 "India" true [1217 6343 8698]]
["<NAME>" "gisela83" 48 "India" true [3343 4185 7932]]
["<NAME>" "burton28" 66 "Canada" false [4959 8025 8560]]
["<NAME>" "adrian45" 45 "USA" false [1083 1617 4413]]
["<NAME>" "reece22" 89 "France" false [4619 9069 9620]]
["<NAME>" "maile71" 20 "Germany" true [5245 5443 8766]]
["<NAME>" "noble88" 58 "Russia" true [959 4913 8020]]
["<NAME>" "paula76" 45 "India" true [3863 5335 8528]]
["<NAME>" "anjolie48" 18 "USA" false [1426 3193 6544]]
["<NAME>" "shana71" 50 "United Kingdom" true [6296 6446 8518]]
["<NAME>" "nola75" 85 "France" false [41 1700 7271]]
["<NAME>" "kellie13" 80 "USA" false [2975 6348 9052]]
["<NAME>" "cherokee72" 19 "USA" false [1170 8698 9308]]
["<NAME>" "madeson58" 33 "China" false [2263 4081 5772]]
["<NAME>" "rashad57" 74 "Canada" false [6239 6874 8964]]
["<NAME>" "elmo31" 47 "USA" true [1321 4146 5439]]
["<NAME>" "tallulah76" 27 "Canada" true [2529 4067 8467]]
["<NAME>" "nerea18" 84 "France" false [1512 6858 7268]]
["<NAME>" "christen30" 25 "Russia" true [851 4509 7971]]
["<NAME>" "orson64" 69 "Germany" true [5339 5523 5651]]
["<NAME>" "silas51" 16 "Germany" true [345 814 9738]]
["<NAME>" "darrel37" 58 "Russia" true [54 6395 6894]]
["<NAME>" "edward19" 11 "USA" false [1927 6737 8691]]
["<NAME>" "holly89" 75 "China" false [6935 9704 9731]]
["<NAME>" "maile16" 65 "Nigeria" false [3652 7487 9306]]
["<NAME>" "jesse79" 78 "Germany" false [5553 7680 9597]]
["<NAME>" "gavin28" 86 "Nigeria" false [5107 7556 8070]]
["<NAME>" "dawn46" 80 "United Kingdom" true [266 1133 3284]]
["<NAME>" "colby82" 27 "France" true [879 5571 6607]]
["<NAME>" "marshall48" 17 "India" false [653 4650 9752]]
["<NAME>" "rae60" 35 "Nigeria" false [6857 7191 7224]]
["<NAME>" "ross58" 89 "Nigeria" false [457 5657 8576]]
["<NAME>" "leo24" 22 "Nigeria" true [1261 7693 9549]]
["<NAME>" "nadine28" 74 "Russia" false [2254 5222 5419]]
["<NAME>" "curran68" 61 "Nigeria" false [1082 3728 6558]]
["<NAME>" "quynn56" 64 "Italy" true [2401 2580 7921]]
["<NAME>" "raya32" 43 "Russia" false [2235 5765 6217]]
["<NAME>" "maya89" 59 "India" false [1148 4123 9091]]
["<NAME>" "adara53" 47 "France" false [5448 6404 8346]]
["<NAME>" "malcolm17" 72 "Canada" true [1006 3414 7382]]
["<NAME>" "finn83" 78 "Nigeria" true [2409 2425 6233]]
["<NAME>" "yoshio24" 16 "United Kingdom" true [320 4651 5306]]
["<NAME>" "britanni21" 68 "Canada" true [7422 7685 9290]]
["<NAME>" "ciaran11" 16 "Italy" true [728 7500 8420]]
["<NAME>" "bertha87" 67 "France" false [2632 5330 8542]]
["<NAME>" "gage17" 38 "Germany" true [260 1036 6570]]
["<NAME>" "ray77" 33 "United Kingdom" true [3616 4284 6705]]
["<NAME>" "kennedy61" 32 "Canada" true [177 625 6866]]
["<NAME>" "meredith30" 46 "Russia" true [692 4110 9482]]
["<NAME>" "carissa40" 49 "United Kingdom" false [587 759 7609]]
["<NAME>" "marvin63" 27 "Italy" false [905 7139 7833]]
["<NAME>" "yoshi46" 66 "United Kingdom" false [871 1163 2810]]
["<NAME>" "wendy71" 46 "Germany" false [3776 6587 7857]]
["<NAME>" "macaulay24" 64 "Russia" false [5702 8341 9614]]
["<NAME>" "neville58" 22 "Canada" false [1363 4195 7784]]
["<NAME>" "liberty66" 34 "India" true [1480 2022 5348]]
["<NAME>" "gretchen88" 28 "United Kingdom" true [772 3559 9124]]
["<NAME>" "myra35" 25 "Nigeria" false [4546 5812 7893]]
["<NAME>" "roary89" 37 "Italy" false [48 1843 8774]]
["<NAME>" "sasha44" 44 "Nigeria" true [5261 5880 7074]]
["<NAME>" "oscar59" 44 "United Kingdom" false [2451 4185 5991]]
["<NAME>" "reagan23" 19 "USA" true [1059 1176 6620]]
["<NAME>" "fitzgerald75" 77 "China" false [304 1624 5980]]
["<NAME>" "tashya32" 84 "USA" false [860 2220 6680]]
["<NAME>" "kirsten47" 39 "India" false [142 351 5433]]
["<NAME>" "sylvester63" 80 "USA" false [2295 2956 5659]]
["<NAME>" "zena21" 45 "Germany" false [1531 1667 4002]]
["<NAME>" "mariko73" 11 "France" true [347 2870 3284]]
["<NAME>" "julie59" 42 "Nigeria" true [77 4732 8755]]
["<NAME>" "taylor81" 60 "India" true [459 7618 9922]]
["<NAME>" "kamal39" 59 "India" true [479 9157 9643]]
["<NAME>" "cynthia48" 40 "Canada" true [1492 6138 7185]]
["<NAME>" "aurelia73" 64 "Germany" true [3723 5982 6762]]
["<NAME>" "gwendolyn78" 27 "India" false [542 5984 6031]]
["<NAME>" "richard65" 29 "Italy" true [5198 7631 8562]]
["<NAME>" "rhiannon40" 21 "USA" true [489 942 9034]]
["<NAME>" "halee23" 82 "United Kingdom" false [4029 4270 7771]]
["<NAME>" "aquila80" 26 "Nigeria" false [1703 5132 8383]]
["<NAME>" "tyler36" 47 "Canada" false [1701 7396 8233]]
["<NAME>" "moses40" 16 "France" true [1862 4574 4763]]
["<NAME>" "aiko18" 42 "United Kingdom" true [2567 7231 7269]]
["<NAME>" "miranda12" 44 "Canada" true [1260 2442 5433]]
["<NAME>" "india17" 26 "Canada" true [2321 5093 6033]]
["<NAME>" "wang88" 57 "Canada" true [1120 3692 7411]]
["<NAME>" "latifah51" 25 "Germany" true [682 8247 8745]]
["<NAME>" "buffy39" 55 "China" false [151 2834 7478]]
["<NAME>" "george49" 72 "China" true [4737 5970 9669]]
["<NAME>" "wyoming88" 13 "Nigeria" false [291 822 8363]]
["<NAME>" "dustin21" 39 "China" false [2468 8388 9647]]
["<NAME>" "farrah17" 30 "United Kingdom" false [442 2815 3150]]
["<NAME>" "kennedy40" 32 "United Kingdom" true [353 3605 4942]]
["<NAME>" "madeline45" 70 "USA" true [1626 6376 6839]]
["<NAME>" "nevada41" 50 "Can<NAME>" false [529 677 2306]]
["<NAME>" "lois51" 30 "USA" false [900 8152 8633]]
["<NAME>" "maris18" 14 "USA" true [554 2480 6859]]
["<NAME>" "barrett57" 44 "China" false [1271 2347 3175]]
["<NAME>" "sierra20" 38 "USA" false [5923 9030 9711]]
["<NAME>" "melodie16" 19 "Russia" true [6518 6774 9854]]
["<NAME>" "avram15" 76 "USA" false [2651 3941 6048]]
["<NAME>" "cooper22" 32 "Germany" true [3754 7243 8676]]
["<NAME>" "jane12" 55 "China" false [3343 4469 8120]]
["<NAME>" "penelope84" 82 "Germany" false [269 3554 6489]]
["<NAME>" "odysseus85" 11 "France" false [2727 3240 6959]]
["<NAME>" "daniel41" 44 "France" true [838 6453 7577]]
["<NAME>" "amir78" 68 "USA" true [569 1680 9755]]
["<NAME>" "ayanna74" 48 "India" true [1301 6711 9102]]
["<NAME>" "melvin29" 70 "Russia" false [6740 7368 8130]]
["<NAME>" "joy68" 20 "Russia" false [3505 4241 9698]]
["<NAME>" "hayfa36" 39 "Nigeria" false [575 2461 3740]]
["<NAME>" "yuri39" 70 "United Kingdom" true [8530 8535 9789]]
["<NAME>" "hedley54" 85 "India" false [1033 2695 8543]]]
)
| true |
(ns fast-data.data)
(def basic-data
{
;; :bytes (byte-array [(byte 1) (byte 2) (byte 3)])
:nil nil
:boolean true
:char-utf8 \ಬ
:string-utf8 "ಬಾ ಇಲ್ಲಿ ಸಂಭವಿಸ"
:string-long (apply str (range 1000))
:keyword :keyword
:ns-keyword ::keyword
:sorted-set (sorted-set 5 4 3 2 1)
:sorted-map (sorted-map :b 2 :a 1 :d 4 :c 3)
:list (list 1 2 3 4 5 (list 6 7 8 (list 9 10)))
:list-quoted '(1 2 3 4 5 (6 7 8 (9 10)))
:list-empty (list)
:vector [1 2 3 4 5 [6 7 8 [9 10]]]
:vector-empty []
:map {:a 1 :b 2 :c 3 :d {:e 4 :f {:g 5 :h 6 :i 7}}}
:map-empty {}
;; :set #{1 2 3 4 5 #{6 7 8 #{9 10}}}
:set-empty #{}
:meta (with-meta {:a :A} {:metakey :metaval})
:lazy-seq (repeatedly 1000 rand)
;; ; :byte (byte 16)
:short (short 42)
:integer (int 3)
:long (long 3)
:bigint (bigint 31415926535897932384626433832795)
:float (float 3.14)
:double (double 3.14)
:bigdec (bigdec 3.1415926535897932384626433832795)
:ratio 22/7
:uuid (java.util.UUID/randomUUID)
:date (java.util.Date.)
})
;;
;; THE DATA CONATINED IN THIS FILE IS RANDOMLY
;; GENERATED. NAMES, AGES, USERNAMES ARE
;; NOT REAL AND THERE IS NO REFERENCE
;; REAL GAMES AND REAL SCORE.
;; THIS DATA HAS BEEN RANDOMLY GENERATED FOR
;; EDUCATIONAL PURPOSES ONLY.
;;
(def users-data
[["PI:NAME:<NAME>END_PI" "kiayada33" 33 "France" true [2475 4344 6671]]
["PI:NAME:<NAME>END_PI" "dominic43" 72 "United Kingdom" false [599 4907 7394]]
["PI:NAME:<NAME>END_PI" "cherokee10" 22 "Russia" false [2803 4247 4896]]
["PI:NAME:<NAME>END_PI" "gemma36" 28 "Italy" true [1003 2294 6157]]
["PI:NAME:<NAME>END_PI" "ginger55" 28 "India" false [1254 3568 3729]]
["PI:NAME:<NAME>END_PI" "hoyt50" 84 "Nigeria" true [3766 5168 9982]]
["PI:NAME:<NAME>END_PI" "aurora72" 20 "France" true [1760 8484 8877]]
["PI:NAME:<NAME>END_PI" "haviva49" 89 "France" false [5960 8768 9665]]
["PI:NAME:<NAME>END_PI" "mona46" 66 "United Kingdom" true [2986 7238 9935]]
["PI:NAME:<NAME>END_PI" "aimee42" 63 "France" true [3395 4261 8881]]
["PI:NAME:<NAME>END_PI" "diana51" 56 "Canada" true [947 5752 5880]]
["PI:NAME:<NAME>END_PI" "nicole35" 32 "Russia" true [1854 2218 9990]]
["PI:NAME:<NAME>END_PI" "walter34" 63 "USA" true [2053 2625 3060]]
["PI:NAME:<NAME>END_PI" "kalia33" 53 "France" false [1764 3385 8903]]
["PI:NAME:<NAME>END_PI" "chaney12" 69 "Russia" false [1232 6500 6835]]
["PI:NAME:<NAME>END_PI" "deirdre88" 41 "Nigeria" false [5795 9213 9320]]
["PI:NAME:<NAME>END_PI" "aaron31" 74 "Nigeria" false [3210 4731 9219]]
["PI:NAME:<NAME>END_PI" "holly67" 28 "China" false [622 6589 8292]]
["PI:NAME:<NAME>END_PI" "thaddeus49" 85 "France" true [2263 6338 6511]]
["PI:NAME:<NAME>END_PI" "jonah45" 47 "USA" true [1214 6827 8473]]
["PI:NAME:<NAME>END_PI" "aurora30" 74 "Canada" true [1511 2698 8421]]
["PI:NAME:<NAME>END_PI" "josephine87" 58 "Canada" false [3053 3574 6815]]
["PI:NAME:<NAME>END_PI" "kibo52" 17 "NigerPI:NAME:<NAME>END_PI" false [3447 4796 5276]]
["PI:NAME:<NAME>END_PI" "casey45" 16 "USA" false [2841 4158 5738]]
["PI:NAME:<NAME>END_PI" "jackson27" 41 "China" true [1070 8241 9625]]
["PI:NAME:<NAME>END_PI" "matthew84" 85 "United Kingdom" true [141 6946 9020]]
["PI:NAME:<NAME>END_PI" "thaddeus83" 46 "Nigeria" true [79 7575 9969]]
["PI:NAME:<NAME>END_PI" "stacy43" 84 "United Kingdom" true [1123 1864 3019]]
["PI:NAME:<NAME>END_PI" "raven39" 69 "China" false [1101 1253 6028]]
["PI:NAME:<NAME>END_PI" "dahlia86" 39 "France" false [4793 5101 7701]]
["PI:NAME:<NAME>END_PI" "hashim39" 69 "USA" true [6011 8510 9358]]
["PI:NAME:<NAME>END_PI" "nayda44" 30 "Canada" true [4313 8095 9035]]
["PI:NAME:<NAME>END_PI" "addison71" 52 "Canada" false [2406 3973 4254]]
["PI:NAME:<NAME>END_PI" "lavinia29" 29 "France" true [3910 7304 9778]]
["PI:NAME:<NAME>END_PI" "sierra15" 38 "Italy" false [5344 7354 9184]]
["PI:NAME:<NAME>END_PI" "catherine16" 40 "Italy" true [988 1527 9053]]
["PI:NAME:<NAME>END_PI" "yasir69" 43 "Germany" true [890 8394 8961]]
["PI:NAME:<NAME>END_PI" "beau30" 10 "France" true [1514 5632 6357]]
["PI:NAME:<NAME>END_PI" "kirby23" 20 "France" false [1483 3895 7371]]
["PI:NAME:<NAME>END_PI" "petra54" 85 "France" true [3484 6561 7823]]
["PI:NAME:<NAME>END_PI" "ivory73" 30 "India" false [2486 5981 6835]]
["PI:NAME:<NAME>END_PI" "odette51" 85 "Italy" true [11 4295 5434]]
["PI:NAME:<NAME>END_PI" "priscilla14" 19 "Russia" true [4343 7930 9612]]
["PI:NAME:<NAME>END_PI" "clark43" 28 "USA" false [1183 2439 9437]]
["PI:NAME:<NAME>END_PI" "xerxes26" 51 "Russia" true [5280 6868 9437]]
["PI:NAME:<NAME>END_PI" "karen56" 29 "France" false [2015 2211 9756]]
["PI:NAME:<NAME>END_PI" "ulric66" 85 "India" true [6604 6682 9823]]
["PI:NAME:<NAME>END_PI" "paula67" 27 "Germany" true [1516 5435 6379]]
["PI:NAME:<NAME>END_PI" "ezra30" 59 "Canada" true [3026 7939 9189]]
["PI:NAME:<NAME>END_PI" "september40" 18 "Germany" true [2425 2860 9653]]
["PI:NAME:<NAME>END_PI" "helen55" 16 "Nigeria" true [1427 5429 5994]]
["PI:NAME:<NAME>END_PI" "bevis74" 75 "Germany" false [4346 6661 6706]]
["PI:NAME:<NAME>END_PI" "montana18" 48 "Canada" true [703 2156 8865]]
["PI:NAME:<NAME>END_PI" "tasha61" 23 "China" false [1086 1520 4289]]
["PI:NAME:<NAME>END_PI" "jameson71" 75 "USA" true [5492 6934 7778]]
["PI:NAME:<NAME>END_PI" "danielle44" 61 "Italy" true [3567 9002 9648]]
["PI:NAME:<NAME>END_PI" "anastasia23" 76 "Russia" false [1186 4547 9583]]
["PI:NAME:<NAME>END_PI" "destiny72" 83 "China" true [4440 5820 9134]]
["PI:NAME:<NAME>END_PI" "kirestin73" 20 "India" true [705 877 9422]]
["PI:NAME:<NAME>END_PI" "graiden55" 15 "USA" false [906 4092 4790]]
["PI:NAME:<NAME>END_PI" "tatum40" 81 "India" true [1388 3401 6073]]
["PI:NAME:<NAME>END_PI" "sylvia72" 44 "USA" false [804 1190 1646]]
["PI:NAME:<NAME>END_PI" "azalia34" 25 "India" true [3639 8747 9332]]
["PI:NAME:<NAME>END_PI" "paula52" 82 "Russia" false [5715 8723 8930]]
["PI:NAME:<NAME>END_PI" "wilma68" 70 "Nigeria" true [1569 1953 2555]]
["PI:NAME:<NAME>END_PI" "lacy61" 15 "Canada" false [1210 6628 9801]]
["PI:NAME:<NAME>END_PI" "lillith68" 75 "India" true [164 5298 6587]]
["PI:NAME:<NAME>END_PI" "oprah71" 27 "Italy" false [4394 5510 8434]]
["PI:NAME:<NAME>END_PI" "steel78" 18 "USA" true [393 7152 9237]]
["PI:NAME:<NAME>END_PI" "karyn70" 55 "Germany" false [4362 9557 9919]]
["PI:NAME:<NAME>END_PI" "dora70" 50 "Canada" false [3483 4651 5211]]
["PI:NAME:<NAME>END_PI" "daria11" 76 "Nigeria" true [1941 2067 8393]]
["PI:NAME:<NAME>END_PI" "norman72" 63 "India" true [700 7305 9115]]
["PI:NAME:<NAME>END_PI" "burton78" 19 "Russia" true [262 4673 7463]]
["PI:NAME:<NAME>END_PI" "xerxes63" 54 "Italy" false [126 6167 7327]]
["PI:NAME:<NAME>END_PI" "remedios22" 86 "Nigeria" false [3926 5164 6605]]
["PI:NAME:<NAME>END_PI" "hammett73" 12 "Canada" true [7143 7639 8806]]
["PI:NAME:<NAME>END_PI" "nasim81" 64 "United Kingdom" true [1739 3696 5196]]
["PI:NAME:<NAME>END_PI" "ezra64" 57 "Italy" true [1993 2107 4763]]
["PI:NAME:<NAME>END_PI" "simone31" 52 "Canada" false [1372 1874 8058]]
["PI:NAME:<NAME>END_PI" "alexander48" 22 "Russia" false [2518 5388 6788]]
["PI:NAME:<NAME>END_PI" "magee48" 39 "France" true [6613 8296 9275]]
["PI:NAME:<NAME>END_PI" "bernard83" 30 "Canada" false [3696 4072 6848]]
["PI:NAME:<NAME>END_PI" "timothy52" 63 "Nigeria" false [2781 3951 9883]]
["PI:NAME:<NAME>END_PI" "yoshi69" 29 "Germany" false [831 7567 7780]]
["PI:NAME:<NAME>END_PI" "erica38" 27 "Italy" true [1975 2341 4171]]
["PI:NAME:<NAME>END_PI" "charde59" 36 "Germany" true [2415 3913 4980]]
["PI:NAME:<NAME>END_PI" "laura38" 76 "Italy" true [1301 7826 9946]]
["PI:NAME:<NAME>END_PI" "anastasia28" 40 "India" false [584 2002 7615]]
["PI:NAME:<NAME>END_PI" "castor27" 73 "China" false [1076 2884 5735]]
["PI:NAME:<NAME>END_PI" "connor74" 10 "USA" false [1238 1814 8695]]
["PI:NAME:<NAME>END_PI" "tashya28" 14 "France" true [2031 4219 9475]]
["PI:NAME:<NAME>END_PI" "martin51" 40 "Nigeria" false [7554 8787 9356]]
["PI:NAME:<NAME>END_PI" "arden72" 29 "Italy" true [745 773 1443]]
["PI:NAME:<NAME>END_PI" "alexandra30" 55 "United Kingdom" false [5126 6065 8152]]
["PI:NAME:<NAME>END_PI" "dai74" 88 "United Kingdom" true [925 6624 7150]]
["PI:NAME:<NAME>END_PI" "germane78" 53 "Canada" true [5085 5452 5649]]
["PI:NAME:<NAME>END_PI" "mohammad18" 33 "India" false [333 2935 8873]]
["PI:NAME:<NAME>END_PI" "colby84" 25 "Nigeria" true [2657 9225 9248]]
["PI:NAME:<NAME>END_PI" "igor79" 82 "India" false [3587 5376 9271]]
["PI:NAME:<NAME>END_PI" "aileen56" 61 "United Kingdom" false [3054 8025 9611]]
["PI:NAME:<NAME>END_PI" "ivan17" 62 "India" false [1601 1762 5925]]
["PI:NAME:<NAME>END_PI" "donovan67" 29 "France" true [5332 6667 8449]]
["PI:NAME:<NAME>END_PI" "bert41" 56 "Italy" true [1508 2603 7136]]
["PI:NAME:<NAME>END_PI" "pascale15" 59 "USA" true [7222 7449 8540]]
["PI:NAME:<NAME>END_PI" "genevieve47" 29 "Canada" false [578 6578 7060]]
["PI:NAME:<NAME>END_PI" "daphne60" 64 "China" false [5686 6343 8300]]
["PI:NAME:<NAME>END_PI" "kylan45" 24 "India" false [641 5918 9928]]
["PI:NAME:<NAME>END_PI" "sarah50" 68 "China" true [2673 6490 7009]]
["PI:NAME:<NAME>END_PI" "sharon59" 84 "India" false [745 5453 8052]]
["PI:NAME:<NAME>END_PI" "kevyn30" 78 "Russia" false [3639 7353 8997]]
["PI:NAME:<NAME>END_PI" "tobias36" 74 "France" false [2166 7251 7973]]
["PI:NAME:<NAME>END_PI" "victor16" 33 "Nigeria" false [5796 8390 9390]]
["PI:NAME:<NAME>END_PI" "george23" 23 "Italy" false [679 4154 7011]]
["PI:NAME:<NAME>END_PI" "chanda71" 47 "Nigeria" true [1257 3643 8734]]
["PI:NAME:<NAME>END_PI" "garth51" 36 "Canada" false [492 5037 6860]]
["PI:NAME:<NAME>END_PI" "joshua83" 80 "Russia" true [4198 6548 9626]]
["PI:NAME:<NAME>END_PI" "hedwig38" 87 "Nigeria" true [2367 3676 7177]]
["PI:NAME:<NAME>END_PI" "rosalyn15" 14 "India" false [2661 3869 6289]]
["PI:NAME:<NAME>END_PI" "basil66" 71 "Nigeria" true [1487 9074 9552]]
["PI:NAME:<NAME>END_PI" "quinn58" 25 "France" true [8120 8491 8745]]
["PI:NAME:<NAME>END_PI" "kasper13" 77 "Canada" true [116 1548 2699]]
["PI:NAME:<NAME>END_PI" "morgan62" 40 "France" false [3345 8729 8906]]
["PI:NAME:<NAME>END_PI" "tatiana74" 78 "United Kingdom" true [3816 3974 5444]]
["PI:NAME:<NAME>END_PI" "nevada43" 29 "China" false [350 426 5559]]
["PI:NAME:<NAME>END_PI" "haley61" 23 "China" false [701 4716 6370]]
["PI:NAME:<NAME>END_PI" "samantha45" 56 "Russia" false [1282 4123 6062]]
["PI:NAME:<NAME>END_PI" "cadman15" 33 "Germany" false [898 3003 6029]]
["PI:NAME:<NAME>END_PI" "stone10" 39 "Canada" true [1138 7584 9050]]
["PI:NAME:<NAME>END_PI" "troy60" 44 "Nigeria" false [859 6161 7311]]
["PI:NAME:<NAME>END_PI" "desirae41" 18 "USA" true [1515 8155 8663]]
["PI:NAME:<NAME>END_PI" "deanna86" 18 "Germany" false [122 1170 4701]]
["PI:NAME:<NAME>END_PI" "amena85" 45 "France" true [2483 4360 6297]]
["PI:NAME:<NAME>END_PI" "keefe87" 79 "Nigeria" true [317 885 7701]]
["PI:NAME:<NAME>END_PI" "cailin19" 44 "Italy" true [1669 3988 6901]]
["PI:NAME:<NAME>END_PI" "ian38" 71 "France" false [961 2456 3947]]
["PI:NAME:<NAME>END_PI" "aphrodite65" 89 "Russia" false [1121 7222 7970]]
["PI:NAME:<NAME>END_PI" "uriel18" 16 "Italy" false [956 7183 9466]]
["PI:NAME:<NAME>END_PI" "aileen31" 53 "Italy" false [309 5598 8987]]
["PI:NAME:<NAME>END_PI" "denise49" 38 "France" false [839 4988 6751]]
["PI:NAME:<NAME>END_PI" "lance38" 47 "India" true [3760 5862 9333]]
["PI:NAME:<NAME>END_PI" "wynter10" 86 "Italy" false [4801 4885 6248]]
["PI:NAME:<NAME>END_PI" "ulric81" 29 "Canada" false [1050 3329 6147]]
["PI:NAME:<NAME>END_PI" "carolyn1PI:NAME:<NAME>END_PI" 45 "United Kingdom" true [3434 5257 8324]]
["PI:NAME:<NAME>END_PI" "lewis81" 40 "India" false [5414 8879 9349]]
["PI:NAME:<NAME>END_PI" "sharon52" 59 "Russia" false [4077 8404 9380]]
["PI:NAME:<NAME>END_PI" "gail55" 29 "China" true [5259 7332 7389]]
["PI:NAME:<NAME>END_PI" "mackensie25" 19 "China" true [1969 4833 9342]]
["PI:NAME:<NAME>END_PI" "pearl25" 67 "United Kingdom" false [3050 4646 7948]]
["PI:NAME:<NAME>END_PI" "dara11" 66 "India" true [2425 3597 7538]]
["PI:NAME:<NAME>END_PI" "quamar51" 87 "USA" false [2550 4315 8374]]
["PI:NAME:<NAME>END_PI" "riley59" 69 "Germany" true [2217 2790 7977]]
["PI:NAME:<NAME>END_PI" "libby49" 19 "USA" false [5697 6146 7882]]
["PI:NAME:<NAME>END_PI" "lacota30" 56 "Germany" false [443 3813 4952]]
["PI:NAME:<NAME>END_PI" "kirby51" 32 "Nigeria" true [1657 4018 4264]]
["PI:NAME:<NAME>END_PI" "freya55" 66 "China" true [2832 3741 9379]]
["PI:NAME:<NAME>END_PI" "jaime68" 39 "Italy" true [1871 2066 8222]]
["PI:NAME:<NAME>END_PI" "kato44" 86 "United Kingdom" false [401 624 4884]]
["PI:NAME:<NAME>END_PI" "herrod72" 73 "Canada" false [2046 5744 9873]]
["PI:NAME:<NAME>END_PI" "cassady11" 14 "Canada" true [4290 4754 7879]]
["PI:NAME:<NAME>END_PI" "quinlan29" 60 "France" true [1829 3237 7099]]
["PI:NAME:<NAME>END_PI" "shelly66" 44 "Canada" false [1300 2016 2765]]
["PI:NAME:<NAME>END_PI" "brenden56" 27 "China" true [5346 8309 9272]]
["PI:NAME:<NAME>END_PI" "joel57" 14 "United Kingdom" false [4817 4958 6061]]
["PI:NAME:<NAME>END_PI" "mackensie35" 10 "Russia" true [825 4567 6062]]
["PI:NAME:<NAME>END_PI" "portia62" 46 "USA" false [3754 5307 9800]]
["PI:NAME:<NAME>END_PI" "hayden82" 29 "Germany" false [2960 5850 6305]]
["PI:NAME:<NAME>END_PI" "clarke71" 58 "Russia" false [434 7754 9372]]
["PI:NAME:<NAME>END_PI" "elmo27" 77 "China" false [7695 8460 9086]]
["PI:NAME:<NAME>END_PI" "lila34" 19 "USA" true [572 2546 7939]]
["PI:NAME:<NAME>END_PI" "levi81" 43 "Italy" false [1359 2396 3181]]
["PI:NAME:<NAME>END_PI" "xavier75" 69 "Italy" false [2064 6948 9803]]
["PI:NAME:<NAME>END_PI" "cullen84" 41 "France" true [3050 3628 6452]]
["PI:NAME:<NAME>END_PI" "ima22" 50 "China" false [858 2547 3526]]
["PI:NAME:<NAME>END_PI" "channing23" 60 "Canada" true [1811 4541 8885]]
["PI:NAME:<NAME>END_PI" "madison10" 67 "Canada" true [5212 5298 7408]]
["PI:NAME:<NAME>END_PI" "lysandra48" 22 "Nigeria" true [3611 3819 6176]]
["PI:NAME:<NAME>END_PI" "anjolie63" 71 "France" false [3882 5707 9189]]
["PI:NAME:<NAME>END_PI" "wesley14" 56 "India" false [1381 5205 7289]]
["PI:NAME:<NAME>END_PI" "linda55" 40 "Germany" true [3708 5080 9109]]
["PI:NAME:<NAME>END_PI" "donovan86" 59 "Canada" false [982 1144 9423]]
["PI:NAME:<NAME>END_PI" "warren75" 74 "USA" false [5274 7151 8201]]
["PI:NAME:<NAME>END_PI" "ursa68" 69 "Nigeria" false [1674 5583 8059]]
["PI:NAME:<NAME>END_PI" "martena81" 22 "Nigeria" false [2770 4838 6460]]
["PI:NAME:<NAME>END_PI" "uriel10" 64 "Italy" false [2502 5363 6249]]
["PI:NAME:<NAME>END_PI" "aretha18" 66 "Italy" false [2241 5570 7808]]
["PI:NAME:<NAME>END_PI" "celeste17" 49 "Germany" true [2743 3400 3970]]
["PI:NAME:<NAME>END_PI" "lana51" 19 "China" false [922 4074 5594]]
["PI:NAME:<NAME>END_PI" "kay27" 44 "USA" false [2292 6197 8147]]
["PI:NAME:<NAME>END_PI" "alfonso54" 61 "Russia" false [3469 4615 5650]]
["PI:NAME:<NAME>END_PI" "lester72" 63 "Germany" true [1370 9673 9939]]
["PI:NAME:<NAME>END_PI" "maya33" 80 "Nigeria" true [4427 5830 6418]]
["PI:NAME:<NAME>END_PI" "bruce77" 65 "Russia" false [1771 1955 3059]]
["PI:NAME:<NAME>END_PI" "vladimir34" 67 "Canada" true [287 2888 7112]]
["PI:NAME:<NAME>END_PI" "deirdre68" 20 "Italy" false [2734 3140 5409]]
["PI:NAME:<NAME>END_PI" "mason44" 47 "Italy" false [6138 7493 8555]]
["PI:NAME:<NAME>END_PI" "thor40" 77 "Italy" false [7192 7262 7654]]
["PI:NAME:<NAME>END_PI" "chase16" 24 "USA" false [801 7955 8640]]
["PI:NAME:<NAME>END_PI" "phillip85" 10 "USA" false [875 2514 2583]]
["PI:NAME:<NAME>END_PI" "amos62" 88 "Italy" true [41 7036 7073]]
["PI:NAME:<NAME>END_PI" "austin58" 41 "Russia" false [1871 2337 9139]]
["PI:NAME:<NAME>END_PI" "christen33" 54 "Canada" false [988 3448 5575]]
["PI:NAME:<NAME>END_PI" "cain77" 77 "Russia" true [2961 5344 8432]]
["PI:NAME:<NAME>END_PI" "mckenzie26" 38 "USA" false [2096 2273 5982]]
["PI:NAME:<NAME>END_PI" "quamar43" 85 "United Kingdom" false [7087 7398 8859]]
["PI:NAME:<NAME>END_PI" "hall13" 23 "China" true [1350 6389 7708]]
["PI:NAME:<NAME>END_PI" "galvin74" 33 "India" true [2443 4595 4940]]
["PI:NAME:<NAME>END_PI" "lacota20" 76 "Italy" false [6285 7816 9570]]
["PI:NAME:<NAME>END_PI" "patricia17" 74 "Russia" false [133 814 8418]]
["PI:NAME:<NAME>END_PI" "kirk64" 62 "Russia" false [2232 2641 5602]]
["PI:NAME:<NAME>END_PI" "anika29" 86 "Canada" true [1515 5900 9061]]
["PI:NAME:<NAME>END_PI" "keane22" 49 "United Kingdom" false [2320 9152 9555]]
["PI:NAME:<NAME>END_PI" "risa44" 11 "Germany" true [661 1702 2257]]
["PI:NAME:<NAME>END_PI" "regan38" 70 "Nigeria" true [460 3832 8580]]
["PI:NAME:<NAME>END_PI" "kieran79" 58 "Nigeria" false [1477 4723 9058]]
["PI:NAME:<NAME>END_PI" "dante13" 56 "Italy" true [825 956 2113]]
["PI:NAME:<NAME>END_PI" "wilma28" 15 "USA" true [1985 2454 8964]]
["PI:NAME:<NAME>END_PI" "sylvester16" 22 "India" false [1741 5108 8330]]
["PI:NAME:<NAME>END_PI" "clark60" 54 "Germany" false [4468 7611 8851]]
["PI:NAME:<NAME>END_PI" "quon49" 79 "China" true [188 1412 1658]]
["PI:NAME:<NAME>END_PI" "cullen68" 82 "Russia" false [1118 3993 7838]]
["PI:NAME:<NAME>END_PI" "fleur72" 61 "France" true [4681 5320 6842]]
["PI:NAME:<NAME>END_PI" "chancellor60" 50 "Italy" false [1972 5972 6096]]
["PI:NAME:<NAME>END_PI" "allen48" 72 "China" false [4445 7575 8572]]
["PI:NAME:<NAME>END_PI" "herman34" 76 "Russia" true [1079 3284 9855]]
["PI:NAME:<NAME>END_PI" "upton78" 24 "France" true [3638 4676 9057]]
["PI:NAME:<NAME>END_PI" "renee79" 47 "France" false [4444 7380 9595]]
["PI:NAME:<NAME>END_PI" "hyatt22" 58 "India" false [4052 5816 8011]]
["PI:NAME:<NAME>END_PI" "carl21" 54 "Germany" false [599 5010 7650]]
["PI:NAME:<NAME>END_PI" "carolyn70" 47 "United Kingdom" false [765 2888 3572]]
["PI:NAME:<NAME>END_PI" "anjolie86" 24 "Canada" true [3248 5382 9748]]
["PI:NAME:<NAME>END_PI" "gail26" 40 "Italy" false [151 1909 2037]]
["PI:NAME:<NAME>END_PI" "september34" 15 "China" false [1925 5407 7129]]
["PI:NAME:<NAME>END_PI" "brandon14" 33 "USA" true [1278 1564 2379]]
["PI:NAME:<NAME>END_PI" "preston49" 56 "Canada" false [2446 6960 7254]]
["PI:NAME:<NAME>END_PI" "adena73" 89 "China" true [5461 8620 8636]]
["PI:NAME:<NAME>END_PI" "alisa53" 81 "Canada" true [3900 6093 7103]]
["PI:NAME:<NAME>END_PI" "kimberly49" 42 "India" true [3 5334 5620]]
["PI:NAME:<NAME>END_PIcoPI:NAME:<NAME>END_PI" "cullen64" 77 "China" false [3697 8804 9032]]
["PI:NAME:<NAME>END_PI" "brynn77" 79 "France" true [94 5187 9431]]
["PI:NAME:<NAME>END_PI" "celeste64" 87 "Russia" false [443 2734 3658]]
["PI:NAME:<NAME>END_PI" "austin60" 30 "India" false [980 2051 5377]]
["PI:NAME:<NAME>END_PI" "justina41" 40 "India" true [738 1156 6279]]
["PI:NAME:<NAME>END_PI" "larissa14" 77 "United Kingdom" false [2754 4109 7388]]
["PI:NAME:<NAME>END_PI" "nissim63" 84 "China" false [2173 3317 9133]]
["PI:NAME:<NAME>END_PI" "hall35" 17 "Russia" false [3906 4063 4294]]
["PI:NAME:<NAME>END_PI" "cain50" 45 "United Kingdom" false [719 2355 6401]]
["PI:NAME:<NAME>END_PI" "rahim27" 69 "Canada" true [1838 9027 9158]]
["PI:NAME:<NAME>END_PI" "velma27" 22 "Italy" true [176 6916 9142]]
["PI:NAME:<NAME>END_PI" "alfreda82" 15 "Canada" true [5993 7202 8589]]
["PI:NAME:<NAME>END_PI" "rajah77" 67 "Nigeria" false [585 4593 9737]]
["PI:NAME:<NAME>END_PI" "mollie21" 11 "United Kingdom" true [369 3144 9798]]
["PI:NAME:<NAME>END_PI" "halla24" 16 "France" false [5018 5128 6979]]
["PI:NAME:<NAME>END_PI" "alec29" 64 "Russia" false [2864 5316 9873]]
["PI:NAME:<NAME>END_PI" "roth20" 49 "Italy" true [6873 7031 8726]]
["PI:NAME:<NAME>END_PI" "curran13" 24 "India" true [1008 7021 7244]]
["PI:NAME:<NAME>END_PI" "colt33" 29 "USA" false [1856 2853 4082]]
["PI:NAME:<NAME>END_PI" "xander35" 22 "China" false [627 1979 6662]]
["PI:NAME:<NAME>END_PI" "richard71" 76 "China" false [6135 9191 9708]]
["PI:NAME:<NAME>END_PI" "haviva50" 30 "Nigeria" true [2686 8155 9028]]
["PI:NAME:<NAME>END_PI" "eagan86" 71 "China" false [3376 3815 7538]]
["PI:NAME:<NAME>END_PI" "dorothy75" 30 "Germany" false [7043 9188 9247]]
["PI:NAME:<NAME>END_PI" "jenna55" 33 "Italy" true [1648 9865 9949]]
["PI:NAME:<NAME>END_PI" "hope75" 10 "Germany" true [544 2346 2776]]
["PI:NAME:<NAME>END_PI" "vladimir25" 47 "Russia" false [3430 4914 7996]]
["PI:NAME:<NAME>END_PI" "bernard33" 85 "France" false [877 1216 6537]]
["PI:NAME:<NAME>END_PI" "jessamine26" 62 "USA" false [4720 5522 9814]]
["PI:NAME:<NAME>END_PI" "kelly87" 28 "China" false [493 9089 9846]]
["PI:NAME:<NAME>END_PI" "adena62" 33 "Russia" false [1210 3996 6399]]
["PI:NAME:<NAME>END_PI" "jaime26" 49 "India" false [149 755 5100]]
["PI:NAME:<NAME>END_PI" "ocean72" 32 "Germany" false [1897 5535 7551]]
["PI:NAME:<NAME>END_PI" "russell87" 75 "USA" true [4618 5589 6655]]
["PI:NAME:<NAME>END_PI" "zelenia82" 62 "China" true [386 3041 8841]]
["PI:NAME:<NAME>END_PI" "mckenzie55" 53 "Canada" true [2044 5225 8094]]
["PI:NAME:<NAME>END_PI" "flynn12" 36 "Canada" true [3085 4924 6354]]
["PI:NAME:<NAME>END_PI" "erich82" 79 "Italy" true [4564 7319 9187]]
["PI:NAME:<NAME>END_PI" "risa54" 80 "France" true [4731 6124 7475]]
["PI:NAME:<NAME>END_PI" "aline52" 47 "India" false [648 7878 9432]]
["PI:NAME:<NAME>END_PI" "maite57" 69 "USA" false [4066 5150 9588]]
["PI:NAME:<NAME>END_PI" "naomi29" 50 "Germany" true [4520 4541 8405]]
["PI:NAME:<NAME>END_PI" "tashya87" 52 "Canada" false [2870 9482 9864]]
["PI:NAME:<NAME>END_PI" "emerson53" 72 "United Kingdom" false [1919 2041 7306]]
["PI:NAME:<NAME>END_PI" "laith10" 10 "Germany" false [4751 7316 8284]]
["PI:NAME:<NAME>END_PI" "cooper79" 82 "USA" true [3094 5374 6218]]
["PI:NAME:<NAME>END_PI" "hayes53" 13 "Germany" true [4443 5010 9225]]
["PI:NAME:<NAME>END_PI" "hollee45" 75 "Russia" false [77 3053 3839]]
["PI:NAME:<NAME>END_PI" "grant69" 65 "United Kingdom" false [3149 4547 9136]]
["PI:NAME:<NAME>END_PI" "amber41" 81 "USA" false [272 1762 2740]]
["PI:NAME:<NAME>END_PI" "ahmed66" 16 "United Kingdom" true [428 4248 5957]]
["PI:NAME:<NAME>END_PI" "caldwell18" 46 "Italy" false [2210 3747 4966]]
["PI:NAME:<NAME>END_PI" "patrick87" 77 "Canada" true [1377 6880 8804]]
["PI:NAME:<NAME>END_PI" "wanda30" 68 "Nigeria" true [2748 4290 5412]]
["PI:NAME:<NAME>END_PI" "ali47" 26 "Russia" true [3062 3948 8530]]
["PI:NAME:<NAME>END_PI" "scarlet10" 20 "Russia" false [3026 9025 9095]]
["PI:NAME:<NAME>END_PI" "illana35" 12 "France" true [5435 5947 6820]]
["PI:NAME:<NAME>END_PI" "damon11" 62 "United Kingdom" false [2941 9735 9901]]
["PI:NAME:<NAME>END_PI" "farrah60" 37 "India" true [219 546 850]]
["PI:NAME:<NAME>END_PI" "miranda48" 77 "Nigeria" false [1264 1559 3915]]
["PI:NAME:<NAME>END_PI" "graham39" 36 "India" false [225 2106 5355]]
["PI:NAME:<NAME>END_PI" "jane43" 42 "India" true [3473 4969 8610]]
["PI:NAME:<NAME>END_PI" "latifah63" 51 "Nigeria" true [5056 6285 6867]]
["PI:NAME:<NAME>END_PI" "sigourney67" 52 "India" false [2554 4752 8204]]
["PI:NAME:<NAME>END_PI" "benjamin32" 85 "China" true [1621 3361 3568]]
["PI:NAME:<NAME>END_PI" "elliott69" 55 "Nigeria" false [2056 5380 9922]]
["PI:NAME:<NAME>END_PI" "linda20" 39 "France" false [3411 8191 8464]]
["PI:NAME:<NAME>END_PI" "jada52" 42 "Russia" true [1602 2524 6570]]
["PI:NAME:<NAME>END_PI" "tamara87" 72 "India" true [866 1695 6205]]
["PI:NAME:<NAME>END_PI" "tatyana80" 89 "Canada" true [4863 5579 6304]]
["PI:NAME:<NAME>END_PI" "harding75" 87 "Russia" false [429 2184 8146]]
["PI:NAME:<NAME>END_PI" "lavinia81" 58 "United Kingdom" true [5426 5462 6610]]
["PI:NAME:<NAME>END_PI" "desirae47" 58 "United Kingdom" true [1631 4646 5957]]
["PI:NAME:<NAME>END_PI" "brenda62" 81 "Russia" true [435 7185 8950]]
["PI:NAME:<NAME>END_PI" "gemma42" 42 "Italy" true [811 6570 9234]]
["PI:NAME:<NAME>END_PI" "jamalia24" 78 "USA" true [314 2137 6055]]
["PI:NAME:<NAME>END_PI" "natalie81" 23 "USA" true [4278 8454 8722]]
["PI:NAME:<NAME>END_PI" "jamal82" 20 "USA" false [1900 4363 8474]]
["PI:NAME:<NAME>END_PI" "reese83" 65 "Russia" true [903 3617 4218]]
["PI:NAME:<NAME>END_PI" "clio29" 48 "Germany" false [1743 2192 9095]]
["PI:NAME:<NAME>END_PI" "conan55" 10 "Canada" true [1614 3670 4319]]
["PI:NAME:<NAME>END_PI" "abraham80" 18 "France" false [3839 7141 9407]]
["PI:NAME:<NAME>END_PI" "violet60" 41 "Germany" true [4427 4831 7997]]
["PI:NAME:<NAME>END_PI" "casey19" 38 "Russia" true [462 4163 4660]]
["PI:NAME:<NAME>END_PI" "silas72" 17 "Italy" true [5587 7197 9909]]
["PI:NAME:<NAME>END_PI" "pearl29" 78 "Canada" true [2030 2131 3805]]
["PI:NAME:<NAME>END_PI" "rina65" 58 "USA" false [1029 1821 6056]]
["PI:NAME:<NAME>END_PI" "amos63" 28 "Canada" true [3715 6737 9537]]
["PI:NAME:<NAME>END_PI" "caesar58" 24 "Russia" false [1660 2767 6477]]
["PI:NAME:<NAME>END_PI" "mark52" 73 "China" true [974 1694 2992]]
["PI:NAME:<NAME>END_PI" "wylie42" 64 "Canada" true [2830 5757 7648]]
["PI:NAME:<NAME>END_PI" "christen72" 12 "United Kingdom" false [1438 2814 7213]]
["PI:NAME:<NAME>END_PI" "alexa42" 17 "China" false [5715 6765 9154]]
["PI:NAME:<NAME>END_PI" "uriel22" 60 "USA" true [945 2176 4690]]
["PI:NAME:<NAME>END_PI" "xyla14" 30 "Russia" false [121 4163 9957]]
["PI:NAME:<NAME>END_PI" "noel45" 49 "France" false [1969 5701 5918]]
["PI:NAME:<NAME>END_PI" "mallory47" 56 "Canada" false [2337 6228 7388]]
["PI:NAME:<NAME>END_PI" "ahmed78" 81 "Germany" true [4863 5375 8136]]
["PI:NAME:<NAME>END_PI" "cedric44" 11 "China" true [5245 6235 6642]]
["PI:NAME:<NAME>END_PI" "hilel54" 69 "Russia" false [2064 3359 7652]]
["PI:NAME:<NAME>END_PI" "deborah32" 26 "India" true [626 5121 8444]]
["PI:NAME:<NAME>END_PI" "driscoll66" 64 "France" true [2051 2341 8366]]
["PI:NAME:<NAME>END_PI" "jerry87" 79 "Italy" true [2280 4822 6847]]
["PI:NAME:<NAME>END_PI" "brian46" 36 "Germany" false [2674 5072 7738]]
["PI:NAME:<NAME>END_PI" "jorden78" 70 "Canada" false [2794 6445 6897]]
["PI:NAME:<NAME>END_PI" "blythe58" 15 "China" false [3681 6296 8444]]
["PI:NAME:<NAME>END_PI" "stacey44" 67 "Canada" true [684 2372 9499]]
["PI:NAME:<NAME>END_PI" "bo28" 16 "United Kingdom" true [357 4317 7385]]
["PI:NAME:<NAME>END_PI" "wynter72" 66 "India" true [742 7640 7654]]
["PI:NAME:<NAME>END_PI" "noelle32" 55 "Canada" false [378 1748 8448]]
["PI:NAME:<NAME>END_PI" "casey46" 68 "Russia" true [2992 4233 8463]]
["PI:NAME:<NAME>END_PI" "brittany76" 42 "France" true [3429 4548 8112]]
["PI:NAME:<NAME>END_PI" "byron36" 27 "Nigeria" false [1861 3528 7496]]
["PI:NAME:<NAME>END_PI" "hamish68" 46 "China" true [226 2526 5174]]
["PI:NAME:<NAME>END_PI" "florence38" 25 "Canada" false [619 2547 9462]]
["PI:NAME:<NAME>END_PI" "germaine70" 55 "France" false [27 1572 8204]]
["PI:NAME:<NAME>END_PI" "venus32" 22 "Nigeria" false [1550 2290 8096]]
["PI:NAME:<NAME>END_PI" "mannix37" 88 "India" true [7655 8578 8788]]
["PI:NAME:<NAME>END_PI" "willa87" 73 "United Kingdom" true [185 6342 8226]]
["PI:NAME:<NAME>END_PI" "aline71" 33 "Canada" false [1806 2436 2746]]
["PI:NAME:<NAME>END_PI" "keane69" 62 "France" false [910 1009 2269]]
["PI:NAME:<NAME>END_PI" "thomas29" 54 "Germany" false [1294 3315 7378]]
["PI:NAME:<NAME>END_PI" "jack71" 59 "USA" false [1165 5327 8931]]
["PI:NAME:<NAME>END_PI" "elijah19" 30 "Germany" true [1688 3181 3661]]
["PI:NAME:<NAME>END_PI" "angela67" 65 "Canada" true [1 7200 9529]]
["PI:NAME:<NAME>END_PI" "germaine48" 74 "Nigeria" true [2711 7557 9394]]
["PI:NAME:<NAME>END_PI" "illiana82" 47 "USA" false [5420 8178 8820]]
["PI:NAME:<NAME>END_PI" "alec62" 20 "USA" false [1570 6633 9635]]
["PI:NAME:<NAME>END_PI" "madison71" 32 "India" false [4786 6248 7229]]
["PI:NAME:<NAME>END_PI" "sydnee39" 49 "Italy" false [4658 5355 8038]]
["PI:NAME:<NAME>END_PI" "chantale56" 84 "Russia" false [3814 6922 9884]]
["PI:NAME:<NAME>END_PI" "keefe60" 40 "Russia" true [1008 4228 5490]]
["PI:NAME:<NAME>END_PI" "simon33" 54 "Canada" false [1607 2576 6662]]
["PI:NAME:<NAME>END_PI" "keefe63" 46 "Germany" false [4114 6887 7764]]
["PI:NAME:<NAME>END_PI" "upton40" 72 "China" true [2810 4821 5584]]
["PI:NAME:<NAME>END_PI" "diana38" 53 "Russia" false [4517 6083 9151]]
["PI:NAME:<NAME>END_PI" "nichole81" 53 "Italy" false [2209 2492 6296]]
["PI:NAME:<NAME>END_PI" "seth87" 37 "USA" true [655 7348 9747]]
["PI:NAME:<NAME>END_PI" "chelsea84" 15 "Nigeria" false [5231 7673 7805]]
["PI:NAME:<NAME>END_PI" "lamar40" 43 "France" true [1783 6141 8346]]
["PI:NAME:<NAME>END_PI" "brynne49" 78 "China" false [2243 2530 5893]]
["PI:NAME:<NAME>END_PI" "jared74" 41 "Russia" true [125 198 2579]]
["PI:NAME:<NAME>END_PI" "herrod40" 63 "United Kingdom" true [1473 1807 5023]]
["PI:NAME:<NAME>END_PI" "britanney74" 63 "Germany" false [4251 4757 5447]]
["PI:NAME:<NAME>END_PI" "tanisha44" 89 "India" false [416 3212 7590]]
["PI:NAME:<NAME>END_PI" "yardley22" 84 "USA" false [968 5369 6151]]
["PI:NAME:<NAME>END_PI" "dara41" 41 "USA" true [5592 8721 9426]]
["PI:NAME:<NAME>END_PI" "chelsea81" 34 "Russia" false [3592 7823 9002]]
["PI:NAME:<NAME>END_PI" "melvin35" 60 "Nigeria" true [937 1680 9025]]
["PI:NAME:<NAME>END_PI" "ulla48" 10 "United Kingdom" true [3075 4997 6130]]
["PI:NAME:<NAME>END_PI" "dustin85" 58 "USA" false [1487 3129 5107]]
["PI:NAME:<NAME>END_PI" "allen80" 60 "India" true [1217 6343 8698]]
["PI:NAME:<NAME>END_PI" "gisela83" 48 "India" true [3343 4185 7932]]
["PI:NAME:<NAME>END_PI" "burton28" 66 "Canada" false [4959 8025 8560]]
["PI:NAME:<NAME>END_PI" "adrian45" 45 "USA" false [1083 1617 4413]]
["PI:NAME:<NAME>END_PI" "reece22" 89 "France" false [4619 9069 9620]]
["PI:NAME:<NAME>END_PI" "maile71" 20 "Germany" true [5245 5443 8766]]
["PI:NAME:<NAME>END_PI" "noble88" 58 "Russia" true [959 4913 8020]]
["PI:NAME:<NAME>END_PI" "paula76" 45 "India" true [3863 5335 8528]]
["PI:NAME:<NAME>END_PI" "anjolie48" 18 "USA" false [1426 3193 6544]]
["PI:NAME:<NAME>END_PI" "shana71" 50 "United Kingdom" true [6296 6446 8518]]
["PI:NAME:<NAME>END_PI" "nola75" 85 "France" false [41 1700 7271]]
["PI:NAME:<NAME>END_PI" "kellie13" 80 "USA" false [2975 6348 9052]]
["PI:NAME:<NAME>END_PI" "cherokee72" 19 "USA" false [1170 8698 9308]]
["PI:NAME:<NAME>END_PI" "madeson58" 33 "China" false [2263 4081 5772]]
["PI:NAME:<NAME>END_PI" "rashad57" 74 "Canada" false [6239 6874 8964]]
["PI:NAME:<NAME>END_PI" "elmo31" 47 "USA" true [1321 4146 5439]]
["PI:NAME:<NAME>END_PI" "tallulah76" 27 "Canada" true [2529 4067 8467]]
["PI:NAME:<NAME>END_PI" "nerea18" 84 "France" false [1512 6858 7268]]
["PI:NAME:<NAME>END_PI" "christen30" 25 "Russia" true [851 4509 7971]]
["PI:NAME:<NAME>END_PI" "orson64" 69 "Germany" true [5339 5523 5651]]
["PI:NAME:<NAME>END_PI" "silas51" 16 "Germany" true [345 814 9738]]
["PI:NAME:<NAME>END_PI" "darrel37" 58 "Russia" true [54 6395 6894]]
["PI:NAME:<NAME>END_PI" "edward19" 11 "USA" false [1927 6737 8691]]
["PI:NAME:<NAME>END_PI" "holly89" 75 "China" false [6935 9704 9731]]
["PI:NAME:<NAME>END_PI" "maile16" 65 "Nigeria" false [3652 7487 9306]]
["PI:NAME:<NAME>END_PI" "jesse79" 78 "Germany" false [5553 7680 9597]]
["PI:NAME:<NAME>END_PI" "gavin28" 86 "Nigeria" false [5107 7556 8070]]
["PI:NAME:<NAME>END_PI" "dawn46" 80 "United Kingdom" true [266 1133 3284]]
["PI:NAME:<NAME>END_PI" "colby82" 27 "France" true [879 5571 6607]]
["PI:NAME:<NAME>END_PI" "marshall48" 17 "India" false [653 4650 9752]]
["PI:NAME:<NAME>END_PI" "rae60" 35 "Nigeria" false [6857 7191 7224]]
["PI:NAME:<NAME>END_PI" "ross58" 89 "Nigeria" false [457 5657 8576]]
["PI:NAME:<NAME>END_PI" "leo24" 22 "Nigeria" true [1261 7693 9549]]
["PI:NAME:<NAME>END_PI" "nadine28" 74 "Russia" false [2254 5222 5419]]
["PI:NAME:<NAME>END_PI" "curran68" 61 "Nigeria" false [1082 3728 6558]]
["PI:NAME:<NAME>END_PI" "quynn56" 64 "Italy" true [2401 2580 7921]]
["PI:NAME:<NAME>END_PI" "raya32" 43 "Russia" false [2235 5765 6217]]
["PI:NAME:<NAME>END_PI" "maya89" 59 "India" false [1148 4123 9091]]
["PI:NAME:<NAME>END_PI" "adara53" 47 "France" false [5448 6404 8346]]
["PI:NAME:<NAME>END_PI" "malcolm17" 72 "Canada" true [1006 3414 7382]]
["PI:NAME:<NAME>END_PI" "finn83" 78 "Nigeria" true [2409 2425 6233]]
["PI:NAME:<NAME>END_PI" "yoshio24" 16 "United Kingdom" true [320 4651 5306]]
["PI:NAME:<NAME>END_PI" "britanni21" 68 "Canada" true [7422 7685 9290]]
["PI:NAME:<NAME>END_PI" "ciaran11" 16 "Italy" true [728 7500 8420]]
["PI:NAME:<NAME>END_PI" "bertha87" 67 "France" false [2632 5330 8542]]
["PI:NAME:<NAME>END_PI" "gage17" 38 "Germany" true [260 1036 6570]]
["PI:NAME:<NAME>END_PI" "ray77" 33 "United Kingdom" true [3616 4284 6705]]
["PI:NAME:<NAME>END_PI" "kennedy61" 32 "Canada" true [177 625 6866]]
["PI:NAME:<NAME>END_PI" "meredith30" 46 "Russia" true [692 4110 9482]]
["PI:NAME:<NAME>END_PI" "carissa40" 49 "United Kingdom" false [587 759 7609]]
["PI:NAME:<NAME>END_PI" "marvin63" 27 "Italy" false [905 7139 7833]]
["PI:NAME:<NAME>END_PI" "yoshi46" 66 "United Kingdom" false [871 1163 2810]]
["PI:NAME:<NAME>END_PI" "wendy71" 46 "Germany" false [3776 6587 7857]]
["PI:NAME:<NAME>END_PI" "macaulay24" 64 "Russia" false [5702 8341 9614]]
["PI:NAME:<NAME>END_PI" "neville58" 22 "Canada" false [1363 4195 7784]]
["PI:NAME:<NAME>END_PI" "liberty66" 34 "India" true [1480 2022 5348]]
["PI:NAME:<NAME>END_PI" "gretchen88" 28 "United Kingdom" true [772 3559 9124]]
["PI:NAME:<NAME>END_PI" "myra35" 25 "Nigeria" false [4546 5812 7893]]
["PI:NAME:<NAME>END_PI" "roary89" 37 "Italy" false [48 1843 8774]]
["PI:NAME:<NAME>END_PI" "sasha44" 44 "Nigeria" true [5261 5880 7074]]
["PI:NAME:<NAME>END_PI" "oscar59" 44 "United Kingdom" false [2451 4185 5991]]
["PI:NAME:<NAME>END_PI" "reagan23" 19 "USA" true [1059 1176 6620]]
["PI:NAME:<NAME>END_PI" "fitzgerald75" 77 "China" false [304 1624 5980]]
["PI:NAME:<NAME>END_PI" "tashya32" 84 "USA" false [860 2220 6680]]
["PI:NAME:<NAME>END_PI" "kirsten47" 39 "India" false [142 351 5433]]
["PI:NAME:<NAME>END_PI" "sylvester63" 80 "USA" false [2295 2956 5659]]
["PI:NAME:<NAME>END_PI" "zena21" 45 "Germany" false [1531 1667 4002]]
["PI:NAME:<NAME>END_PI" "mariko73" 11 "France" true [347 2870 3284]]
["PI:NAME:<NAME>END_PI" "julie59" 42 "Nigeria" true [77 4732 8755]]
["PI:NAME:<NAME>END_PI" "taylor81" 60 "India" true [459 7618 9922]]
["PI:NAME:<NAME>END_PI" "kamal39" 59 "India" true [479 9157 9643]]
["PI:NAME:<NAME>END_PI" "cynthia48" 40 "Canada" true [1492 6138 7185]]
["PI:NAME:<NAME>END_PI" "aurelia73" 64 "Germany" true [3723 5982 6762]]
["PI:NAME:<NAME>END_PI" "gwendolyn78" 27 "India" false [542 5984 6031]]
["PI:NAME:<NAME>END_PI" "richard65" 29 "Italy" true [5198 7631 8562]]
["PI:NAME:<NAME>END_PI" "rhiannon40" 21 "USA" true [489 942 9034]]
["PI:NAME:<NAME>END_PI" "halee23" 82 "United Kingdom" false [4029 4270 7771]]
["PI:NAME:<NAME>END_PI" "aquila80" 26 "Nigeria" false [1703 5132 8383]]
["PI:NAME:<NAME>END_PI" "tyler36" 47 "Canada" false [1701 7396 8233]]
["PI:NAME:<NAME>END_PI" "moses40" 16 "France" true [1862 4574 4763]]
["PI:NAME:<NAME>END_PI" "aiko18" 42 "United Kingdom" true [2567 7231 7269]]
["PI:NAME:<NAME>END_PI" "miranda12" 44 "Canada" true [1260 2442 5433]]
["PI:NAME:<NAME>END_PI" "india17" 26 "Canada" true [2321 5093 6033]]
["PI:NAME:<NAME>END_PI" "wang88" 57 "Canada" true [1120 3692 7411]]
["PI:NAME:<NAME>END_PI" "latifah51" 25 "Germany" true [682 8247 8745]]
["PI:NAME:<NAME>END_PI" "buffy39" 55 "China" false [151 2834 7478]]
["PI:NAME:<NAME>END_PI" "george49" 72 "China" true [4737 5970 9669]]
["PI:NAME:<NAME>END_PI" "wyoming88" 13 "Nigeria" false [291 822 8363]]
["PI:NAME:<NAME>END_PI" "dustin21" 39 "China" false [2468 8388 9647]]
["PI:NAME:<NAME>END_PI" "farrah17" 30 "United Kingdom" false [442 2815 3150]]
["PI:NAME:<NAME>END_PI" "kennedy40" 32 "United Kingdom" true [353 3605 4942]]
["PI:NAME:<NAME>END_PI" "madeline45" 70 "USA" true [1626 6376 6839]]
["PI:NAME:<NAME>END_PI" "nevada41" 50 "CanPI:NAME:<NAME>END_PI" false [529 677 2306]]
["PI:NAME:<NAME>END_PI" "lois51" 30 "USA" false [900 8152 8633]]
["PI:NAME:<NAME>END_PI" "maris18" 14 "USA" true [554 2480 6859]]
["PI:NAME:<NAME>END_PI" "barrett57" 44 "China" false [1271 2347 3175]]
["PI:NAME:<NAME>END_PI" "sierra20" 38 "USA" false [5923 9030 9711]]
["PI:NAME:<NAME>END_PI" "melodie16" 19 "Russia" true [6518 6774 9854]]
["PI:NAME:<NAME>END_PI" "avram15" 76 "USA" false [2651 3941 6048]]
["PI:NAME:<NAME>END_PI" "cooper22" 32 "Germany" true [3754 7243 8676]]
["PI:NAME:<NAME>END_PI" "jane12" 55 "China" false [3343 4469 8120]]
["PI:NAME:<NAME>END_PI" "penelope84" 82 "Germany" false [269 3554 6489]]
["PI:NAME:<NAME>END_PI" "odysseus85" 11 "France" false [2727 3240 6959]]
["PI:NAME:<NAME>END_PI" "daniel41" 44 "France" true [838 6453 7577]]
["PI:NAME:<NAME>END_PI" "amir78" 68 "USA" true [569 1680 9755]]
["PI:NAME:<NAME>END_PI" "ayanna74" 48 "India" true [1301 6711 9102]]
["PI:NAME:<NAME>END_PI" "melvin29" 70 "Russia" false [6740 7368 8130]]
["PI:NAME:<NAME>END_PI" "joy68" 20 "Russia" false [3505 4241 9698]]
["PI:NAME:<NAME>END_PI" "hayfa36" 39 "Nigeria" false [575 2461 3740]]
["PI:NAME:<NAME>END_PI" "yuri39" 70 "United Kingdom" true [8530 8535 9789]]
["PI:NAME:<NAME>END_PI" "hedley54" 85 "India" false [1033 2695 8543]]]
)
|
[
{
"context": "setup minimal hotkeys\"\n :url \"https://github.com/narracion/reagent-hotkeys\"\n :license {:name \"MIT\"\n ",
"end": 161,
"score": 0.9860377311706543,
"start": 152,
"tag": "USERNAME",
"value": "narracion"
},
{
"context": " :comment \"MIT License\"\n :author \"Yannick Scherer\"\n :year 2021\n :key \"mit\"}\n ",
"end": 333,
"score": 0.9998828768730164,
"start": 318,
"tag": "NAME",
"value": "Yannick Scherer"
}
] |
project.clj
|
narracion/reagent-hotkeys
| 0 |
(defproject io.github.narracion/reagent-hotkeys "0.1.0-SNAPSHOT"
:description "Reagent component to setup minimal hotkeys"
:url "https://github.com/narracion/reagent-hotkeys"
:license {:name "MIT"
:url "https://choosealicense.com/licenses/mit"
:comment "MIT License"
:author "Yannick Scherer"
:year 2021
:key "mit"}
:dependencies [[org.clojure/clojure "1.10.3" :scope "provided"]
[org.clojure/clojurescript "1.10.866" :scope "provided"]
[reagent "1.1.0" :scope "provided"]]
:pedantic? :abort)
|
23718
|
(defproject io.github.narracion/reagent-hotkeys "0.1.0-SNAPSHOT"
:description "Reagent component to setup minimal hotkeys"
:url "https://github.com/narracion/reagent-hotkeys"
:license {:name "MIT"
:url "https://choosealicense.com/licenses/mit"
:comment "MIT License"
:author "<NAME>"
:year 2021
:key "mit"}
:dependencies [[org.clojure/clojure "1.10.3" :scope "provided"]
[org.clojure/clojurescript "1.10.866" :scope "provided"]
[reagent "1.1.0" :scope "provided"]]
:pedantic? :abort)
| true |
(defproject io.github.narracion/reagent-hotkeys "0.1.0-SNAPSHOT"
:description "Reagent component to setup minimal hotkeys"
:url "https://github.com/narracion/reagent-hotkeys"
:license {:name "MIT"
:url "https://choosealicense.com/licenses/mit"
:comment "MIT License"
:author "PI:NAME:<NAME>END_PI"
:year 2021
:key "mit"}
:dependencies [[org.clojure/clojure "1.10.3" :scope "provided"]
[org.clojure/clojurescript "1.10.866" :scope "provided"]
[reagent "1.1.0" :scope "provided"]]
:pedantic? :abort)
|
[
{
"context": "; Space on the sleigh is limited this year, and so Santa will be bringing his\n; list as a digital copy",
"end": 265,
"score": 0.9554623961448669,
"start": 264,
"tag": "NAME",
"value": "S"
}
] |
src/aoc/day8.clj
|
magopian/adventofcode
| 0 |
; http://adventofcode.com/day/8
(ns aoc.day8)
(defmacro dbg[x] `(let [x# ~x] (println "dbg:" '~x "=" x#) x#))
(def input (clojure.string/split-lines (slurp "src/aoc/day8.input")))
; --- Day 8: Matchsticks ---
; Space on the sleigh is limited this year, and so Santa will be bringing his
; list as a digital copy. He needs to know how much space it will take up when
; stored.
; It is common in many programming languages to provide a way to escape special
; characters in strings. For example, C, JavaScript, Perl, Python, and even PHP
; handle special characters in very similar ways.
; However, it is important to realize the difference between the number of
; characters in the code representation of the string literal and the number of
; characters in the in-memory string itself.
; For example:
; - "" is 2 characters of code (the two double quotes), but the string
; contains zero characters.
; - "abc" is 5 characters of code, but 3 characters in the string data.
; - "aaa\"aaa" is 10 characters of code, but the string itself contains six
; "a" characters and a single, escaped quote character, for a total of 7
; characters in the string data.
; - "\x27" is 6 characters of code, but the string itself contains just one -
; an apostrophe ('), escaped using hexadecimal notation.
; Santa's list is a file that contains many double-quoted string literals, one
; on each line. The only escape sequences used are \\ (which represents a
; single backslash), \" (which represents a lone double-quote character), and
; \x plus two hexadecimal characters (which represents a single character with
; that ASCII code).
; Disregarding the whitespace in the file, what is the number of characters of
; code for string literals minus the number of characters in memory for the
; values of the strings in total for the entire file?
; For example, given the four strings above, the total number of characters of
; string code (2 + 5 + 10 + 6 = 23) minus the total number of characters in
; memory for string values (0 + 3 + 7 + 1 = 11) is 23 - 11 = 12.
(defn full-count [input]
"Return the total count of code characters."
(reduce + (map count input)))
(assert (= (full-count ["\"dwz\""]) 5))
(assert (= (full-count ["\"v\\xfb\\\"lgs\\\"kvjfywmut\\x9cr\""]) 28))
(defn replace-multi-chars [line]
"Replace the 'multi-characters' by a single character.
\\\\ => @
\\\" => _
\\x7e => *
Also removes the first and last quotes."
(let [stripped (apply str (drop-last (rest line)))]
(-> stripped
(clojure.string/replace #"\\\\" "@")
(clojure.string/replace #"\\\"" "_")
(clojure.string/replace #"\\x.." "*"))))
(assert (= (replace-multi-chars "\"dwz\"") "dwz"))
(assert (= (replace-multi-chars "\"v\\xfb\\\"lgs\\\"kvjfywmut\\x9cr\"")
"v*_lgs_kvjfywmut*r"))
(defn char-count [input]
"Return the number of in-memory characters."
(reduce + (map count (map replace-multi-chars input))))
(assert (= (char-count ["\"dwz\""]) 3))
(assert (= (char-count ["\"v\\xfb\\\"lgs\\\"kvjfywmut\\x9cr\""]) 18))
(defn part1 []
(println "The number of characters is"
(- (full-count input) (char-count input))))
; --- Part Two ---
; Now, let's go the other way. In addition to finding the number of characters
; of code, you should now encode each code representation as a new string and
; find the number of characters of the new encoded representation, including
; the surrounding double quotes.
; For example:
; - "" encodes to "\"\"", an increase from 2 characters to 6.
; - "abc" encodes to "\"abc\"", an increase from 5 characters to 9.
; - "aaa\"aaa" encodes to "\"aaa\\\"aaa\"", an increase from 10 characters to
; 16.
; - "\x27" encodes to "\"\\x27\"", an increase from 6 characters to 11.
; Your task is to find the total number of characters to represent the newly
; encoded strings minus the number of characters of code in each original
; string literal. For example, for the strings above, the total encoded length
; (6 + 9 + 16 + 11 = 42) minus the characters in the original code
; representation (23, just like in the first part of this puzzle) is 42 - 23 =
; 19.
(defn encode-multi-chars [line]
"Encode the 'multi-characters'.
\\ => \\\\
\" => \\\"
\\x7e => \\\\x7e"
(-> line
(clojure.string/replace #"\\" "\\\\\\\\")
(clojure.string/replace #"\"" "\\\\\"")
))
(assert (= (encode-multi-chars "\"dwz\"") "\\\"dwz\\\""))
(assert (= (encode-multi-chars "\"v\\xfb\\\"lgs\\\"kvjfywmut\\x9cr\"")
"\\\"v\\\\xfb\\\\\\\"lgs\\\\\\\"kvjfywmut\\\\x9cr\\\"" ))
(defn encoded-char-count [input]
"Return the number of encoded characters."
(reduce + (map #(+ 2 (count %)) ;; Add 2 for beginning and end quotes.
(map encode-multi-chars input))))
(assert (= (encoded-char-count ["\"dwz\""]) 9))
(assert (= (encoded-char-count ["\"v\\xfb\\\"lgs\\\"kvjfywmut\\x9cr\""]) 38))
(assert (= (encoded-char-count ["\"\""
"\"abc\""
"\"aaa\\\"aaa\""
"\"\\x27\""]) 42))
(defn part2 []
(println
"The difference of characters between newly encoded and in the code is"
(- (encoded-char-count input) (full-count input))))
|
108356
|
; http://adventofcode.com/day/8
(ns aoc.day8)
(defmacro dbg[x] `(let [x# ~x] (println "dbg:" '~x "=" x#) x#))
(def input (clojure.string/split-lines (slurp "src/aoc/day8.input")))
; --- Day 8: Matchsticks ---
; Space on the sleigh is limited this year, and so <NAME>anta will be bringing his
; list as a digital copy. He needs to know how much space it will take up when
; stored.
; It is common in many programming languages to provide a way to escape special
; characters in strings. For example, C, JavaScript, Perl, Python, and even PHP
; handle special characters in very similar ways.
; However, it is important to realize the difference between the number of
; characters in the code representation of the string literal and the number of
; characters in the in-memory string itself.
; For example:
; - "" is 2 characters of code (the two double quotes), but the string
; contains zero characters.
; - "abc" is 5 characters of code, but 3 characters in the string data.
; - "aaa\"aaa" is 10 characters of code, but the string itself contains six
; "a" characters and a single, escaped quote character, for a total of 7
; characters in the string data.
; - "\x27" is 6 characters of code, but the string itself contains just one -
; an apostrophe ('), escaped using hexadecimal notation.
; Santa's list is a file that contains many double-quoted string literals, one
; on each line. The only escape sequences used are \\ (which represents a
; single backslash), \" (which represents a lone double-quote character), and
; \x plus two hexadecimal characters (which represents a single character with
; that ASCII code).
; Disregarding the whitespace in the file, what is the number of characters of
; code for string literals minus the number of characters in memory for the
; values of the strings in total for the entire file?
; For example, given the four strings above, the total number of characters of
; string code (2 + 5 + 10 + 6 = 23) minus the total number of characters in
; memory for string values (0 + 3 + 7 + 1 = 11) is 23 - 11 = 12.
(defn full-count [input]
"Return the total count of code characters."
(reduce + (map count input)))
(assert (= (full-count ["\"dwz\""]) 5))
(assert (= (full-count ["\"v\\xfb\\\"lgs\\\"kvjfywmut\\x9cr\""]) 28))
(defn replace-multi-chars [line]
"Replace the 'multi-characters' by a single character.
\\\\ => @
\\\" => _
\\x7e => *
Also removes the first and last quotes."
(let [stripped (apply str (drop-last (rest line)))]
(-> stripped
(clojure.string/replace #"\\\\" "@")
(clojure.string/replace #"\\\"" "_")
(clojure.string/replace #"\\x.." "*"))))
(assert (= (replace-multi-chars "\"dwz\"") "dwz"))
(assert (= (replace-multi-chars "\"v\\xfb\\\"lgs\\\"kvjfywmut\\x9cr\"")
"v*_lgs_kvjfywmut*r"))
(defn char-count [input]
"Return the number of in-memory characters."
(reduce + (map count (map replace-multi-chars input))))
(assert (= (char-count ["\"dwz\""]) 3))
(assert (= (char-count ["\"v\\xfb\\\"lgs\\\"kvjfywmut\\x9cr\""]) 18))
(defn part1 []
(println "The number of characters is"
(- (full-count input) (char-count input))))
; --- Part Two ---
; Now, let's go the other way. In addition to finding the number of characters
; of code, you should now encode each code representation as a new string and
; find the number of characters of the new encoded representation, including
; the surrounding double quotes.
; For example:
; - "" encodes to "\"\"", an increase from 2 characters to 6.
; - "abc" encodes to "\"abc\"", an increase from 5 characters to 9.
; - "aaa\"aaa" encodes to "\"aaa\\\"aaa\"", an increase from 10 characters to
; 16.
; - "\x27" encodes to "\"\\x27\"", an increase from 6 characters to 11.
; Your task is to find the total number of characters to represent the newly
; encoded strings minus the number of characters of code in each original
; string literal. For example, for the strings above, the total encoded length
; (6 + 9 + 16 + 11 = 42) minus the characters in the original code
; representation (23, just like in the first part of this puzzle) is 42 - 23 =
; 19.
(defn encode-multi-chars [line]
"Encode the 'multi-characters'.
\\ => \\\\
\" => \\\"
\\x7e => \\\\x7e"
(-> line
(clojure.string/replace #"\\" "\\\\\\\\")
(clojure.string/replace #"\"" "\\\\\"")
))
(assert (= (encode-multi-chars "\"dwz\"") "\\\"dwz\\\""))
(assert (= (encode-multi-chars "\"v\\xfb\\\"lgs\\\"kvjfywmut\\x9cr\"")
"\\\"v\\\\xfb\\\\\\\"lgs\\\\\\\"kvjfywmut\\\\x9cr\\\"" ))
(defn encoded-char-count [input]
"Return the number of encoded characters."
(reduce + (map #(+ 2 (count %)) ;; Add 2 for beginning and end quotes.
(map encode-multi-chars input))))
(assert (= (encoded-char-count ["\"dwz\""]) 9))
(assert (= (encoded-char-count ["\"v\\xfb\\\"lgs\\\"kvjfywmut\\x9cr\""]) 38))
(assert (= (encoded-char-count ["\"\""
"\"abc\""
"\"aaa\\\"aaa\""
"\"\\x27\""]) 42))
(defn part2 []
(println
"The difference of characters between newly encoded and in the code is"
(- (encoded-char-count input) (full-count input))))
| true |
; http://adventofcode.com/day/8
(ns aoc.day8)
(defmacro dbg[x] `(let [x# ~x] (println "dbg:" '~x "=" x#) x#))
(def input (clojure.string/split-lines (slurp "src/aoc/day8.input")))
; --- Day 8: Matchsticks ---
; Space on the sleigh is limited this year, and so PI:NAME:<NAME>END_PIanta will be bringing his
; list as a digital copy. He needs to know how much space it will take up when
; stored.
; It is common in many programming languages to provide a way to escape special
; characters in strings. For example, C, JavaScript, Perl, Python, and even PHP
; handle special characters in very similar ways.
; However, it is important to realize the difference between the number of
; characters in the code representation of the string literal and the number of
; characters in the in-memory string itself.
; For example:
; - "" is 2 characters of code (the two double quotes), but the string
; contains zero characters.
; - "abc" is 5 characters of code, but 3 characters in the string data.
; - "aaa\"aaa" is 10 characters of code, but the string itself contains six
; "a" characters and a single, escaped quote character, for a total of 7
; characters in the string data.
; - "\x27" is 6 characters of code, but the string itself contains just one -
; an apostrophe ('), escaped using hexadecimal notation.
; Santa's list is a file that contains many double-quoted string literals, one
; on each line. The only escape sequences used are \\ (which represents a
; single backslash), \" (which represents a lone double-quote character), and
; \x plus two hexadecimal characters (which represents a single character with
; that ASCII code).
; Disregarding the whitespace in the file, what is the number of characters of
; code for string literals minus the number of characters in memory for the
; values of the strings in total for the entire file?
; For example, given the four strings above, the total number of characters of
; string code (2 + 5 + 10 + 6 = 23) minus the total number of characters in
; memory for string values (0 + 3 + 7 + 1 = 11) is 23 - 11 = 12.
(defn full-count [input]
"Return the total count of code characters."
(reduce + (map count input)))
(assert (= (full-count ["\"dwz\""]) 5))
(assert (= (full-count ["\"v\\xfb\\\"lgs\\\"kvjfywmut\\x9cr\""]) 28))
(defn replace-multi-chars [line]
"Replace the 'multi-characters' by a single character.
\\\\ => @
\\\" => _
\\x7e => *
Also removes the first and last quotes."
(let [stripped (apply str (drop-last (rest line)))]
(-> stripped
(clojure.string/replace #"\\\\" "@")
(clojure.string/replace #"\\\"" "_")
(clojure.string/replace #"\\x.." "*"))))
(assert (= (replace-multi-chars "\"dwz\"") "dwz"))
(assert (= (replace-multi-chars "\"v\\xfb\\\"lgs\\\"kvjfywmut\\x9cr\"")
"v*_lgs_kvjfywmut*r"))
(defn char-count [input]
"Return the number of in-memory characters."
(reduce + (map count (map replace-multi-chars input))))
(assert (= (char-count ["\"dwz\""]) 3))
(assert (= (char-count ["\"v\\xfb\\\"lgs\\\"kvjfywmut\\x9cr\""]) 18))
(defn part1 []
(println "The number of characters is"
(- (full-count input) (char-count input))))
; --- Part Two ---
; Now, let's go the other way. In addition to finding the number of characters
; of code, you should now encode each code representation as a new string and
; find the number of characters of the new encoded representation, including
; the surrounding double quotes.
; For example:
; - "" encodes to "\"\"", an increase from 2 characters to 6.
; - "abc" encodes to "\"abc\"", an increase from 5 characters to 9.
; - "aaa\"aaa" encodes to "\"aaa\\\"aaa\"", an increase from 10 characters to
; 16.
; - "\x27" encodes to "\"\\x27\"", an increase from 6 characters to 11.
; Your task is to find the total number of characters to represent the newly
; encoded strings minus the number of characters of code in each original
; string literal. For example, for the strings above, the total encoded length
; (6 + 9 + 16 + 11 = 42) minus the characters in the original code
; representation (23, just like in the first part of this puzzle) is 42 - 23 =
; 19.
(defn encode-multi-chars [line]
"Encode the 'multi-characters'.
\\ => \\\\
\" => \\\"
\\x7e => \\\\x7e"
(-> line
(clojure.string/replace #"\\" "\\\\\\\\")
(clojure.string/replace #"\"" "\\\\\"")
))
(assert (= (encode-multi-chars "\"dwz\"") "\\\"dwz\\\""))
(assert (= (encode-multi-chars "\"v\\xfb\\\"lgs\\\"kvjfywmut\\x9cr\"")
"\\\"v\\\\xfb\\\\\\\"lgs\\\\\\\"kvjfywmut\\\\x9cr\\\"" ))
(defn encoded-char-count [input]
"Return the number of encoded characters."
(reduce + (map #(+ 2 (count %)) ;; Add 2 for beginning and end quotes.
(map encode-multi-chars input))))
(assert (= (encoded-char-count ["\"dwz\""]) 9))
(assert (= (encoded-char-count ["\"v\\xfb\\\"lgs\\\"kvjfywmut\\x9cr\""]) 38))
(assert (= (encoded-char-count ["\"\""
"\"abc\""
"\"aaa\\\"aaa\""
"\"\\x27\""]) 42))
(defn part2 []
(println
"The difference of characters between newly encoded and in the code is"
(- (encoded-char-count input) (full-count input))))
|
[
{
"context": " }]\n \"Credentials schema is\n {\n username (string): Username or email. ,\n password (st",
"end": 438,
"score": 0.9483282566070557,
"start": 430,
"tag": "USERNAME",
"value": "username"
},
{
"context": "Credentials schema is\n {\n username (string): Username or email. ,\n password (string): Password\n }",
"end": 457,
"score": 0.9920960068702698,
"start": 449,
"tag": "USERNAME",
"value": "Username"
},
{
"context": "ng): Username or email. ,\n password (string): Password\n }.\n On succesful request return object that co",
"end": 503,
"score": 0.9574898481369019,
"start": 495,
"tag": "PASSWORD",
"value": "Password"
}
] |
src/trustroots/api.cljs
|
daiyitastic/Trustroots-React-Native
| 0 |
(ns trustroots.api
(:require
[trustroots.helpers :refer [log info debug]]
[trustroots.fetch-helper :as f :refer [fetch-json]]
[re-frame.core :refer [dispatch]]
))
; Api call
; ----------------------------------------------------------------------------
(defn signin [& {:keys [user on-success on-error fetch-fn]
:or [fetch-fn f/fetch-json]
}]
"Credentials schema is
{
username (string): Username or email. ,
password (string): Password
}.
On succesful request return object that contains user data and autehtication cookie."
(let [fetch (if (nil? fetch-fn) f/fetch-json fetch-fn)]
(fetch
:method "POST"
:endpoint :sign-in
:body user
:on-success on-success
:on-error (fn [err]
(on-error
(if (= 400 (:status err))
(assoc err :type :invalid-credentials)
err))))))
(defn messages [& {:keys [on-success on-error fetch-fn]
:or [fetch-fn f/fetch-json]
}]
"On succesful request return object that contains user data and autehtication cookie."
(let [fetch (if (nil? fetch-fn) f/fetch-json fetch-fn)]
(fetch
:method "GET"
:endpoint :messages
:on-success on-success
:on-error on-error
)))
|
75585
|
(ns trustroots.api
(:require
[trustroots.helpers :refer [log info debug]]
[trustroots.fetch-helper :as f :refer [fetch-json]]
[re-frame.core :refer [dispatch]]
))
; Api call
; ----------------------------------------------------------------------------
(defn signin [& {:keys [user on-success on-error fetch-fn]
:or [fetch-fn f/fetch-json]
}]
"Credentials schema is
{
username (string): Username or email. ,
password (string): <PASSWORD>
}.
On succesful request return object that contains user data and autehtication cookie."
(let [fetch (if (nil? fetch-fn) f/fetch-json fetch-fn)]
(fetch
:method "POST"
:endpoint :sign-in
:body user
:on-success on-success
:on-error (fn [err]
(on-error
(if (= 400 (:status err))
(assoc err :type :invalid-credentials)
err))))))
(defn messages [& {:keys [on-success on-error fetch-fn]
:or [fetch-fn f/fetch-json]
}]
"On succesful request return object that contains user data and autehtication cookie."
(let [fetch (if (nil? fetch-fn) f/fetch-json fetch-fn)]
(fetch
:method "GET"
:endpoint :messages
:on-success on-success
:on-error on-error
)))
| true |
(ns trustroots.api
(:require
[trustroots.helpers :refer [log info debug]]
[trustroots.fetch-helper :as f :refer [fetch-json]]
[re-frame.core :refer [dispatch]]
))
; Api call
; ----------------------------------------------------------------------------
(defn signin [& {:keys [user on-success on-error fetch-fn]
:or [fetch-fn f/fetch-json]
}]
"Credentials schema is
{
username (string): Username or email. ,
password (string): PI:PASSWORD:<PASSWORD>END_PI
}.
On succesful request return object that contains user data and autehtication cookie."
(let [fetch (if (nil? fetch-fn) f/fetch-json fetch-fn)]
(fetch
:method "POST"
:endpoint :sign-in
:body user
:on-success on-success
:on-error (fn [err]
(on-error
(if (= 400 (:status err))
(assoc err :type :invalid-credentials)
err))))))
(defn messages [& {:keys [on-success on-error fetch-fn]
:or [fetch-fn f/fetch-json]
}]
"On succesful request return object that contains user data and autehtication cookie."
(let [fetch (if (nil? fetch-fn) f/fetch-json fetch-fn)]
(fetch
:method "GET"
:endpoint :messages
:on-success on-success
:on-error on-error
)))
|
[
{
"context": ";\n; Copyright © 2021 Peter Monks\n;\n; Licensed under the Apache License, Version 2.",
"end": 32,
"score": 0.9995899796485901,
"start": 21,
"tag": "NAME",
"value": "Peter Monks"
}
] |
test/lice_comb/spdx_test.clj
|
pmonks/lice-comb
| 3 |
;
; Copyright © 2021 Peter Monks
;
; Licensed under the Apache License, Version 2.0 (the "License");
; you may not use this file except in compliance with the License.
; You may obtain a copy of the License at
;
; http://www.apache.org/licenses/LICENSE-2.0
;
; Unless required by applicable law or agreed to in writing, software
; distributed under the License is distributed on an "AS IS" BASIS,
; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
; See the License for the specific language governing permissions and
; limitations under the License.
;
; SPDX-License-Identifier: Apache-2.0
;
(ns lice-comb.spdx-test
(:require [clojure.test :refer [deftest testing is use-fixtures]]
[clojure.java.io :as io]
[lice-comb.test-boilerplate :refer [fixture]]
[lice-comb.spdx :refer [name->ids uri->id text->ids]]))
(use-fixtures :once fixture)
; Note: these tests should be extended indefinitely, as it exercises the guts of the matching algorithm
(deftest name->ids-tests
(testing "Nil, empty or blank names"
(is (nil? (name->ids nil)))
(is (nil? (name->ids "")))
(is (nil? (name->ids " ")))
(is (nil? (name->ids "\n")))
(is (nil? (name->ids "\t"))))
(testing "Names that are SPDX license ids"
(is (= #{"AGPL-3.0"} (name->ids "AGPL-3.0")))
(is (= #{"AGPL-3.0-only"} (name->ids "AGPL-3.0-only")))
(is (= #{"Apache-2.0"} (name->ids " Apache-2.0 "))) ; Test whitespace
(is (= #{"Apache-2.0"} (name->ids "Apache-2.0")))
(is (= #{"CC-BY-SA-4.0"} (name->ids "CC-BY-SA-4.0")))
(is (= #{"GPL-2.0"} (name->ids "GPL-2.0")))
(is (= #{"GPL-2.0-with-classpath-exception"} (name->ids "GPL-2.0-with-classpath-exception"))))
(testing "Names"
(is (= #{"AGPL-3.0"} (name->ids "GNU Affero General Public License (AGPL) version 3.0")))
(is (= #{"AGPL-3.0"} (name->ids "GNU Affero General Public License v3.0")))
(is (= #{"AGPL-3.0-only"} (name->ids "GNU Affero General Public License v3.0 only")))
(is (= #{"Apache-1.0"} (name->ids "Apache Software License")))
(is (= #{"Apache-1.0"} (name->ids "Apache License 1")))
(is (= #{"Apache-1.0"} (name->ids "Apache License 1.0")))
(is (= #{"Apache-1.0"} (name->ids "Apache License Version 1.0")))
(is (= #{"Apache-1.0"} (name->ids "Apache License, Version 1.0")))
(is (= #{"Apache-1.0"} (name->ids "Apache Software License - Version 1.0")))
(is (= #{"Apache-1.1"} (name->ids "Apache License 1.1")))
(is (= #{"Apache-1.1"} (name->ids "Apache License Version 1.1")))
(is (= #{"Apache-1.1"} (name->ids "Apache License, Version 1.1")))
(is (= #{"Apache-1.1"} (name->ids "Apache Software License - Version 1.1")))
(is (= #{"Apache-1.1"} (name->ids "The MX4J License, version 1.0")))
(is (= #{"Apache-2.0"} (name->ids " Apache Software License, Version 2.0 "))) ; Test whitespace
(is (= #{"Apache-2.0"} (name->ids "Apache 2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache License 2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache License Version 2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache License, Version 2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache Software License - Version 2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache Software License 2")))
(is (= #{"Apache-2.0"} (name->ids "Apache Software License 2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache Software License Version 2")))
(is (= #{"Apache-2.0"} (name->ids "Apache Software License Version 2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache Software License v2")))
(is (= #{"Apache-2.0"} (name->ids "Apache Software License v2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache Software License, Version 2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache v2")))
(is (= #{"Apache-2.0"} (name->ids "The Apache Software License, Version 2.0")))
(is (= #{"MIT"} (name->ids "Bouncy Castle Licence"))) ; Note spelling of "licence"
(is (= #{"BSD-3-Clause"} (name->ids "3-Clause BSD License")))
(is (= #{"BSD-3-Clause"} (name->ids "BSD 3-Clause License")))
(is (= #{"BSD-3-Clause"} (name->ids "The BSD 3-Clause License (BSD3)")))
(is (= #{"BSD-3-Clause-Attribution"} (name->ids "BSD 3-Clause Attribution")))
(is (= #{"CC-BY-3.0"} (name->ids "Attribution 3.0 Unported")))
(is (= #{"CC-BY-3.0"} (name->ids "Creative Commons Legal Code Attribution 3.0 Unported")))
(is (= #{"CC-BY-4.0"} (name->ids "Attribution 4.0 International")))
(is (= #{"CC-BY-SA-4.0"} (name->ids "Creative Commons Attribution Share Alike 4.0 International")))
(is (= #{"CDDL-1.0"} (name->ids "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1")))
(is (= #{"CDDL-1.0"} (name->ids "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1.0")))
(is (= #{"CDDL-1.0"} (name->ids "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0")))
(is (= #{"CDDL-1.1"} (name->ids "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1.1")))
(is (= #{"CDDL-1.1"} (name->ids "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1")))
(is (= #{"EPL-1.0"} (name->ids "Eclipse Public License")))
(is (= #{"EPL-1.0"} (name->ids "Eclipse Public License (EPL)")))
(is (= #{"EPL-1.0"} (name->ids "Eclipse Public License - v 1.0")))
(is (= #{"EPL-1.0"} (name->ids "Eclipse Public License 1.0")))
(is (= #{"EPL-1.0"} (name->ids "Eclipse Public License")))
(is (= #{"EPL-1.0"} (name->ids "Eclipse Public License, Version 1.0")))
(is (= #{"EPL-2.0"} (name->ids "Eclipse Public License 2.0")))
(is (= #{"EPL-2.0"} (name->ids "Eclipse Public License version 2")))
(is (= #{"GPL-2.0"} (name->ids "GNU General Public License, version 2")))
(is (= #{"GPL-2.0-with-classpath-exception"} (name->ids "GNU General Public License, version 2 (GPL2), with the classpath exception")))
(is (= #{"GPL-2.0-with-classpath-exception"} (name->ids "GNU General Public License, version 2 with the GNU Classpath Exception")))
(is (= #{"GPL-2.0-with-classpath-exception"} (name->ids "GNU General Public License v2.0 w/Classpath exception")))
(is (= #{"JSON"} (name->ids "JSON License")))
(is (= #{"LGPL-2.0"} (name->ids "GNU Library General Public License")))
(is (= #{"LGPL-2.1"} (name->ids "GNU Lesser General Public License (LGPL)")))
(is (= #{"LGPL-2.1"} (name->ids "GNU Lesser General Public License")))
(is (= #{"MIT"} (name->ids "MIT License")))
(is (= #{"MIT"} (name->ids "MIT license"))) ; Test capitalisation
(is (= #{"MIT"} (name->ids "The MIT License")))
(is (= #{"MPL-1.0"} (name->ids "Mozilla Public License")))
(is (= #{"MPL-2.0"} (name->ids "Mozilla Public License Version 2.0")))
(is (= #{"Plexus"} (name->ids "Similar to Apache License but with the acknowledgment clause removed")))) ; JDOM - see https://lists.linuxfoundation.org/pipermail/spdx-legal/2014-December/001280.html
(testing "Names that appear in licensey things, but are ambiguous"
(is (nil? (name->ids "BSD"))))
(testing "Names that appear in licensey things, but aren't in the SPDX license list, and don't have identified SPDX identifiers"
(is (= #{"NON-SPDX-Public-Domain"} (name->ids "Public Domain")))
(is (= #{"NON-SPDX-Public-Domain"} (name->ids "Public domain")))))
(deftest uri->id-tests
(testing "Nil, empty or blank uri"
(is (nil? (uri->id nil)))
(is (nil? (uri->id "")))
(is (nil? (uri->id " ")))
(is (nil? (uri->id "\n")))
(is (nil? (uri->id "\t"))))
(testing "URIs that appear verbatim in the SPDX license list"
(is (= "Apache-2.0" (uri->id "https://www.apache.org/licenses/LICENSE-2.0")))
(is (= "Apache-2.0" (uri->id "http://www.apache.org/licenses/LICENSE-2.0.html")))
(is (= "Apache-2.0" (uri->id "https://apache.org/licenses/LICENSE-2.0.txt")))
(is (= "Apache-2.0" (uri->id " https://www.apache.org/licenses/LICENSE-2.0 "))) ; Test whitespace
(is (= "AGPL-3.0" (uri->id "https://www.gnu.org/licenses/agpl.txt")))
(is (= "CC-BY-SA-4.0" (uri->id "https://creativecommons.org/licenses/by-sa/4.0/legalcode")))
(is (= "GPL-2.0-with-classpath-exception" (uri->id "https://www.gnu.org/software/classpath/license.html"))))
(testing "URIs that appear in licensey things, but aren't in the SPDX license list"
(is (= "Apache-2.0" (uri->id "http://www.apache.org/licenses/LICENSE-2.0")))
(is (= "Apache-2.0" (uri->id "https://www.apache.org/licenses/LICENSE-2.0.txt")))))
(defn- string-text->ids
[s]
(with-open [is (io/input-stream (.getBytes s "UTF-8"))]
(text->ids is)))
(deftest text->ids-tests
(testing "Nil, empty or blank text"
(is (nil? (text->ids nil)))
(is (thrown? java.io.FileNotFoundException (text->ids "")))
(is (thrown? java.io.FileNotFoundException (text->ids " ")))
(is (thrown? java.io.FileNotFoundException (text->ids "\n")))
(is (thrown? java.io.FileNotFoundException (text->ids "\t"))))
(testing "Text"
(is (= #{"Apache-2.0"} (string-text->ids "Apache License\nVersion 2.0, January 2004")))
(is (= #{"Apache-2.0"} (string-text->ids " Apache License\n Version 2.0, January 2004 ")))
(is (= #{"AGPL-3.0"} (string-text->ids "GNU AFFERO GENERAL PUBLIC LICENSE\nVersion 3, 19 November 2007")))
(is (= #{"CC-BY-SA-4.0"} (string-text->ids "Creative Commons Attribution-ShareAlike\n4.0 International Public License")))
(is (= #{"JSON"} (string-text->ids "Copyright (c) 2002 JSON.org")))))
|
27612
|
;
; Copyright © 2021 <NAME>
;
; Licensed under the Apache License, Version 2.0 (the "License");
; you may not use this file except in compliance with the License.
; You may obtain a copy of the License at
;
; http://www.apache.org/licenses/LICENSE-2.0
;
; Unless required by applicable law or agreed to in writing, software
; distributed under the License is distributed on an "AS IS" BASIS,
; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
; See the License for the specific language governing permissions and
; limitations under the License.
;
; SPDX-License-Identifier: Apache-2.0
;
(ns lice-comb.spdx-test
(:require [clojure.test :refer [deftest testing is use-fixtures]]
[clojure.java.io :as io]
[lice-comb.test-boilerplate :refer [fixture]]
[lice-comb.spdx :refer [name->ids uri->id text->ids]]))
(use-fixtures :once fixture)
; Note: these tests should be extended indefinitely, as it exercises the guts of the matching algorithm
(deftest name->ids-tests
(testing "Nil, empty or blank names"
(is (nil? (name->ids nil)))
(is (nil? (name->ids "")))
(is (nil? (name->ids " ")))
(is (nil? (name->ids "\n")))
(is (nil? (name->ids "\t"))))
(testing "Names that are SPDX license ids"
(is (= #{"AGPL-3.0"} (name->ids "AGPL-3.0")))
(is (= #{"AGPL-3.0-only"} (name->ids "AGPL-3.0-only")))
(is (= #{"Apache-2.0"} (name->ids " Apache-2.0 "))) ; Test whitespace
(is (= #{"Apache-2.0"} (name->ids "Apache-2.0")))
(is (= #{"CC-BY-SA-4.0"} (name->ids "CC-BY-SA-4.0")))
(is (= #{"GPL-2.0"} (name->ids "GPL-2.0")))
(is (= #{"GPL-2.0-with-classpath-exception"} (name->ids "GPL-2.0-with-classpath-exception"))))
(testing "Names"
(is (= #{"AGPL-3.0"} (name->ids "GNU Affero General Public License (AGPL) version 3.0")))
(is (= #{"AGPL-3.0"} (name->ids "GNU Affero General Public License v3.0")))
(is (= #{"AGPL-3.0-only"} (name->ids "GNU Affero General Public License v3.0 only")))
(is (= #{"Apache-1.0"} (name->ids "Apache Software License")))
(is (= #{"Apache-1.0"} (name->ids "Apache License 1")))
(is (= #{"Apache-1.0"} (name->ids "Apache License 1.0")))
(is (= #{"Apache-1.0"} (name->ids "Apache License Version 1.0")))
(is (= #{"Apache-1.0"} (name->ids "Apache License, Version 1.0")))
(is (= #{"Apache-1.0"} (name->ids "Apache Software License - Version 1.0")))
(is (= #{"Apache-1.1"} (name->ids "Apache License 1.1")))
(is (= #{"Apache-1.1"} (name->ids "Apache License Version 1.1")))
(is (= #{"Apache-1.1"} (name->ids "Apache License, Version 1.1")))
(is (= #{"Apache-1.1"} (name->ids "Apache Software License - Version 1.1")))
(is (= #{"Apache-1.1"} (name->ids "The MX4J License, version 1.0")))
(is (= #{"Apache-2.0"} (name->ids " Apache Software License, Version 2.0 "))) ; Test whitespace
(is (= #{"Apache-2.0"} (name->ids "Apache 2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache License 2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache License Version 2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache License, Version 2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache Software License - Version 2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache Software License 2")))
(is (= #{"Apache-2.0"} (name->ids "Apache Software License 2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache Software License Version 2")))
(is (= #{"Apache-2.0"} (name->ids "Apache Software License Version 2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache Software License v2")))
(is (= #{"Apache-2.0"} (name->ids "Apache Software License v2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache Software License, Version 2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache v2")))
(is (= #{"Apache-2.0"} (name->ids "The Apache Software License, Version 2.0")))
(is (= #{"MIT"} (name->ids "Bouncy Castle Licence"))) ; Note spelling of "licence"
(is (= #{"BSD-3-Clause"} (name->ids "3-Clause BSD License")))
(is (= #{"BSD-3-Clause"} (name->ids "BSD 3-Clause License")))
(is (= #{"BSD-3-Clause"} (name->ids "The BSD 3-Clause License (BSD3)")))
(is (= #{"BSD-3-Clause-Attribution"} (name->ids "BSD 3-Clause Attribution")))
(is (= #{"CC-BY-3.0"} (name->ids "Attribution 3.0 Unported")))
(is (= #{"CC-BY-3.0"} (name->ids "Creative Commons Legal Code Attribution 3.0 Unported")))
(is (= #{"CC-BY-4.0"} (name->ids "Attribution 4.0 International")))
(is (= #{"CC-BY-SA-4.0"} (name->ids "Creative Commons Attribution Share Alike 4.0 International")))
(is (= #{"CDDL-1.0"} (name->ids "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1")))
(is (= #{"CDDL-1.0"} (name->ids "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1.0")))
(is (= #{"CDDL-1.0"} (name->ids "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0")))
(is (= #{"CDDL-1.1"} (name->ids "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1.1")))
(is (= #{"CDDL-1.1"} (name->ids "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1")))
(is (= #{"EPL-1.0"} (name->ids "Eclipse Public License")))
(is (= #{"EPL-1.0"} (name->ids "Eclipse Public License (EPL)")))
(is (= #{"EPL-1.0"} (name->ids "Eclipse Public License - v 1.0")))
(is (= #{"EPL-1.0"} (name->ids "Eclipse Public License 1.0")))
(is (= #{"EPL-1.0"} (name->ids "Eclipse Public License")))
(is (= #{"EPL-1.0"} (name->ids "Eclipse Public License, Version 1.0")))
(is (= #{"EPL-2.0"} (name->ids "Eclipse Public License 2.0")))
(is (= #{"EPL-2.0"} (name->ids "Eclipse Public License version 2")))
(is (= #{"GPL-2.0"} (name->ids "GNU General Public License, version 2")))
(is (= #{"GPL-2.0-with-classpath-exception"} (name->ids "GNU General Public License, version 2 (GPL2), with the classpath exception")))
(is (= #{"GPL-2.0-with-classpath-exception"} (name->ids "GNU General Public License, version 2 with the GNU Classpath Exception")))
(is (= #{"GPL-2.0-with-classpath-exception"} (name->ids "GNU General Public License v2.0 w/Classpath exception")))
(is (= #{"JSON"} (name->ids "JSON License")))
(is (= #{"LGPL-2.0"} (name->ids "GNU Library General Public License")))
(is (= #{"LGPL-2.1"} (name->ids "GNU Lesser General Public License (LGPL)")))
(is (= #{"LGPL-2.1"} (name->ids "GNU Lesser General Public License")))
(is (= #{"MIT"} (name->ids "MIT License")))
(is (= #{"MIT"} (name->ids "MIT license"))) ; Test capitalisation
(is (= #{"MIT"} (name->ids "The MIT License")))
(is (= #{"MPL-1.0"} (name->ids "Mozilla Public License")))
(is (= #{"MPL-2.0"} (name->ids "Mozilla Public License Version 2.0")))
(is (= #{"Plexus"} (name->ids "Similar to Apache License but with the acknowledgment clause removed")))) ; JDOM - see https://lists.linuxfoundation.org/pipermail/spdx-legal/2014-December/001280.html
(testing "Names that appear in licensey things, but are ambiguous"
(is (nil? (name->ids "BSD"))))
(testing "Names that appear in licensey things, but aren't in the SPDX license list, and don't have identified SPDX identifiers"
(is (= #{"NON-SPDX-Public-Domain"} (name->ids "Public Domain")))
(is (= #{"NON-SPDX-Public-Domain"} (name->ids "Public domain")))))
(deftest uri->id-tests
(testing "Nil, empty or blank uri"
(is (nil? (uri->id nil)))
(is (nil? (uri->id "")))
(is (nil? (uri->id " ")))
(is (nil? (uri->id "\n")))
(is (nil? (uri->id "\t"))))
(testing "URIs that appear verbatim in the SPDX license list"
(is (= "Apache-2.0" (uri->id "https://www.apache.org/licenses/LICENSE-2.0")))
(is (= "Apache-2.0" (uri->id "http://www.apache.org/licenses/LICENSE-2.0.html")))
(is (= "Apache-2.0" (uri->id "https://apache.org/licenses/LICENSE-2.0.txt")))
(is (= "Apache-2.0" (uri->id " https://www.apache.org/licenses/LICENSE-2.0 "))) ; Test whitespace
(is (= "AGPL-3.0" (uri->id "https://www.gnu.org/licenses/agpl.txt")))
(is (= "CC-BY-SA-4.0" (uri->id "https://creativecommons.org/licenses/by-sa/4.0/legalcode")))
(is (= "GPL-2.0-with-classpath-exception" (uri->id "https://www.gnu.org/software/classpath/license.html"))))
(testing "URIs that appear in licensey things, but aren't in the SPDX license list"
(is (= "Apache-2.0" (uri->id "http://www.apache.org/licenses/LICENSE-2.0")))
(is (= "Apache-2.0" (uri->id "https://www.apache.org/licenses/LICENSE-2.0.txt")))))
(defn- string-text->ids
[s]
(with-open [is (io/input-stream (.getBytes s "UTF-8"))]
(text->ids is)))
(deftest text->ids-tests
(testing "Nil, empty or blank text"
(is (nil? (text->ids nil)))
(is (thrown? java.io.FileNotFoundException (text->ids "")))
(is (thrown? java.io.FileNotFoundException (text->ids " ")))
(is (thrown? java.io.FileNotFoundException (text->ids "\n")))
(is (thrown? java.io.FileNotFoundException (text->ids "\t"))))
(testing "Text"
(is (= #{"Apache-2.0"} (string-text->ids "Apache License\nVersion 2.0, January 2004")))
(is (= #{"Apache-2.0"} (string-text->ids " Apache License\n Version 2.0, January 2004 ")))
(is (= #{"AGPL-3.0"} (string-text->ids "GNU AFFERO GENERAL PUBLIC LICENSE\nVersion 3, 19 November 2007")))
(is (= #{"CC-BY-SA-4.0"} (string-text->ids "Creative Commons Attribution-ShareAlike\n4.0 International Public License")))
(is (= #{"JSON"} (string-text->ids "Copyright (c) 2002 JSON.org")))))
| true |
;
; Copyright © 2021 PI:NAME:<NAME>END_PI
;
; Licensed under the Apache License, Version 2.0 (the "License");
; you may not use this file except in compliance with the License.
; You may obtain a copy of the License at
;
; http://www.apache.org/licenses/LICENSE-2.0
;
; Unless required by applicable law or agreed to in writing, software
; distributed under the License is distributed on an "AS IS" BASIS,
; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
; See the License for the specific language governing permissions and
; limitations under the License.
;
; SPDX-License-Identifier: Apache-2.0
;
(ns lice-comb.spdx-test
(:require [clojure.test :refer [deftest testing is use-fixtures]]
[clojure.java.io :as io]
[lice-comb.test-boilerplate :refer [fixture]]
[lice-comb.spdx :refer [name->ids uri->id text->ids]]))
(use-fixtures :once fixture)
; Note: these tests should be extended indefinitely, as it exercises the guts of the matching algorithm
(deftest name->ids-tests
(testing "Nil, empty or blank names"
(is (nil? (name->ids nil)))
(is (nil? (name->ids "")))
(is (nil? (name->ids " ")))
(is (nil? (name->ids "\n")))
(is (nil? (name->ids "\t"))))
(testing "Names that are SPDX license ids"
(is (= #{"AGPL-3.0"} (name->ids "AGPL-3.0")))
(is (= #{"AGPL-3.0-only"} (name->ids "AGPL-3.0-only")))
(is (= #{"Apache-2.0"} (name->ids " Apache-2.0 "))) ; Test whitespace
(is (= #{"Apache-2.0"} (name->ids "Apache-2.0")))
(is (= #{"CC-BY-SA-4.0"} (name->ids "CC-BY-SA-4.0")))
(is (= #{"GPL-2.0"} (name->ids "GPL-2.0")))
(is (= #{"GPL-2.0-with-classpath-exception"} (name->ids "GPL-2.0-with-classpath-exception"))))
(testing "Names"
(is (= #{"AGPL-3.0"} (name->ids "GNU Affero General Public License (AGPL) version 3.0")))
(is (= #{"AGPL-3.0"} (name->ids "GNU Affero General Public License v3.0")))
(is (= #{"AGPL-3.0-only"} (name->ids "GNU Affero General Public License v3.0 only")))
(is (= #{"Apache-1.0"} (name->ids "Apache Software License")))
(is (= #{"Apache-1.0"} (name->ids "Apache License 1")))
(is (= #{"Apache-1.0"} (name->ids "Apache License 1.0")))
(is (= #{"Apache-1.0"} (name->ids "Apache License Version 1.0")))
(is (= #{"Apache-1.0"} (name->ids "Apache License, Version 1.0")))
(is (= #{"Apache-1.0"} (name->ids "Apache Software License - Version 1.0")))
(is (= #{"Apache-1.1"} (name->ids "Apache License 1.1")))
(is (= #{"Apache-1.1"} (name->ids "Apache License Version 1.1")))
(is (= #{"Apache-1.1"} (name->ids "Apache License, Version 1.1")))
(is (= #{"Apache-1.1"} (name->ids "Apache Software License - Version 1.1")))
(is (= #{"Apache-1.1"} (name->ids "The MX4J License, version 1.0")))
(is (= #{"Apache-2.0"} (name->ids " Apache Software License, Version 2.0 "))) ; Test whitespace
(is (= #{"Apache-2.0"} (name->ids "Apache 2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache License 2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache License Version 2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache License, Version 2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache Software License - Version 2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache Software License 2")))
(is (= #{"Apache-2.0"} (name->ids "Apache Software License 2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache Software License Version 2")))
(is (= #{"Apache-2.0"} (name->ids "Apache Software License Version 2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache Software License v2")))
(is (= #{"Apache-2.0"} (name->ids "Apache Software License v2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache Software License, Version 2.0")))
(is (= #{"Apache-2.0"} (name->ids "Apache v2")))
(is (= #{"Apache-2.0"} (name->ids "The Apache Software License, Version 2.0")))
(is (= #{"MIT"} (name->ids "Bouncy Castle Licence"))) ; Note spelling of "licence"
(is (= #{"BSD-3-Clause"} (name->ids "3-Clause BSD License")))
(is (= #{"BSD-3-Clause"} (name->ids "BSD 3-Clause License")))
(is (= #{"BSD-3-Clause"} (name->ids "The BSD 3-Clause License (BSD3)")))
(is (= #{"BSD-3-Clause-Attribution"} (name->ids "BSD 3-Clause Attribution")))
(is (= #{"CC-BY-3.0"} (name->ids "Attribution 3.0 Unported")))
(is (= #{"CC-BY-3.0"} (name->ids "Creative Commons Legal Code Attribution 3.0 Unported")))
(is (= #{"CC-BY-4.0"} (name->ids "Attribution 4.0 International")))
(is (= #{"CC-BY-SA-4.0"} (name->ids "Creative Commons Attribution Share Alike 4.0 International")))
(is (= #{"CDDL-1.0"} (name->ids "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1")))
(is (= #{"CDDL-1.0"} (name->ids "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1.0")))
(is (= #{"CDDL-1.0"} (name->ids "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0")))
(is (= #{"CDDL-1.1"} (name->ids "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1.1")))
(is (= #{"CDDL-1.1"} (name->ids "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1")))
(is (= #{"EPL-1.0"} (name->ids "Eclipse Public License")))
(is (= #{"EPL-1.0"} (name->ids "Eclipse Public License (EPL)")))
(is (= #{"EPL-1.0"} (name->ids "Eclipse Public License - v 1.0")))
(is (= #{"EPL-1.0"} (name->ids "Eclipse Public License 1.0")))
(is (= #{"EPL-1.0"} (name->ids "Eclipse Public License")))
(is (= #{"EPL-1.0"} (name->ids "Eclipse Public License, Version 1.0")))
(is (= #{"EPL-2.0"} (name->ids "Eclipse Public License 2.0")))
(is (= #{"EPL-2.0"} (name->ids "Eclipse Public License version 2")))
(is (= #{"GPL-2.0"} (name->ids "GNU General Public License, version 2")))
(is (= #{"GPL-2.0-with-classpath-exception"} (name->ids "GNU General Public License, version 2 (GPL2), with the classpath exception")))
(is (= #{"GPL-2.0-with-classpath-exception"} (name->ids "GNU General Public License, version 2 with the GNU Classpath Exception")))
(is (= #{"GPL-2.0-with-classpath-exception"} (name->ids "GNU General Public License v2.0 w/Classpath exception")))
(is (= #{"JSON"} (name->ids "JSON License")))
(is (= #{"LGPL-2.0"} (name->ids "GNU Library General Public License")))
(is (= #{"LGPL-2.1"} (name->ids "GNU Lesser General Public License (LGPL)")))
(is (= #{"LGPL-2.1"} (name->ids "GNU Lesser General Public License")))
(is (= #{"MIT"} (name->ids "MIT License")))
(is (= #{"MIT"} (name->ids "MIT license"))) ; Test capitalisation
(is (= #{"MIT"} (name->ids "The MIT License")))
(is (= #{"MPL-1.0"} (name->ids "Mozilla Public License")))
(is (= #{"MPL-2.0"} (name->ids "Mozilla Public License Version 2.0")))
(is (= #{"Plexus"} (name->ids "Similar to Apache License but with the acknowledgment clause removed")))) ; JDOM - see https://lists.linuxfoundation.org/pipermail/spdx-legal/2014-December/001280.html
(testing "Names that appear in licensey things, but are ambiguous"
(is (nil? (name->ids "BSD"))))
(testing "Names that appear in licensey things, but aren't in the SPDX license list, and don't have identified SPDX identifiers"
(is (= #{"NON-SPDX-Public-Domain"} (name->ids "Public Domain")))
(is (= #{"NON-SPDX-Public-Domain"} (name->ids "Public domain")))))
(deftest uri->id-tests
(testing "Nil, empty or blank uri"
(is (nil? (uri->id nil)))
(is (nil? (uri->id "")))
(is (nil? (uri->id " ")))
(is (nil? (uri->id "\n")))
(is (nil? (uri->id "\t"))))
(testing "URIs that appear verbatim in the SPDX license list"
(is (= "Apache-2.0" (uri->id "https://www.apache.org/licenses/LICENSE-2.0")))
(is (= "Apache-2.0" (uri->id "http://www.apache.org/licenses/LICENSE-2.0.html")))
(is (= "Apache-2.0" (uri->id "https://apache.org/licenses/LICENSE-2.0.txt")))
(is (= "Apache-2.0" (uri->id " https://www.apache.org/licenses/LICENSE-2.0 "))) ; Test whitespace
(is (= "AGPL-3.0" (uri->id "https://www.gnu.org/licenses/agpl.txt")))
(is (= "CC-BY-SA-4.0" (uri->id "https://creativecommons.org/licenses/by-sa/4.0/legalcode")))
(is (= "GPL-2.0-with-classpath-exception" (uri->id "https://www.gnu.org/software/classpath/license.html"))))
(testing "URIs that appear in licensey things, but aren't in the SPDX license list"
(is (= "Apache-2.0" (uri->id "http://www.apache.org/licenses/LICENSE-2.0")))
(is (= "Apache-2.0" (uri->id "https://www.apache.org/licenses/LICENSE-2.0.txt")))))
(defn- string-text->ids
[s]
(with-open [is (io/input-stream (.getBytes s "UTF-8"))]
(text->ids is)))
(deftest text->ids-tests
(testing "Nil, empty or blank text"
(is (nil? (text->ids nil)))
(is (thrown? java.io.FileNotFoundException (text->ids "")))
(is (thrown? java.io.FileNotFoundException (text->ids " ")))
(is (thrown? java.io.FileNotFoundException (text->ids "\n")))
(is (thrown? java.io.FileNotFoundException (text->ids "\t"))))
(testing "Text"
(is (= #{"Apache-2.0"} (string-text->ids "Apache License\nVersion 2.0, January 2004")))
(is (= #{"Apache-2.0"} (string-text->ids " Apache License\n Version 2.0, January 2004 ")))
(is (= #{"AGPL-3.0"} (string-text->ids "GNU AFFERO GENERAL PUBLIC LICENSE\nVersion 3, 19 November 2007")))
(is (= #{"CC-BY-SA-4.0"} (string-text->ids "Creative Commons Attribution-ShareAlike\n4.0 International Public License")))
(is (= #{"JSON"} (string-text->ids "Copyright (c) 2002 JSON.org")))))
|
[
{
"context": "alhost:5432/automigrate?user=automigrate&password=automigrate\"\n :number 4}\n db (db-util/d",
"end": 30762,
"score": 0.9903572797775269,
"start": 30751,
"tag": "PASSWORD",
"value": "automigrate"
},
{
"context": "alhost:5432/automigrate?user=automigrate&password=automigrate\"}\n db (db-util/db-conn (:jdbc-url config))",
"end": 31463,
"score": 0.9890871644020081,
"start": 31452,
"tag": "PASSWORD",
"value": "automigrate"
}
] |
src/automigrate/migrations.clj
|
abogoyavlensky/automigrate
| 26 |
(ns automigrate.migrations
"Module for applying changes to migrations and db.
Also contains tools for inspection of db state by migrations
and state of migrations itself."
(:require [next.jdbc :as jdbc]
#_{:clj-kondo/ignore [:unused-namespace]}
[clojure.spec.alpha :as s]
[clojure.java.io :as io]
[clojure.string :as str]
[clojure.set :as set]
[clojure.pprint :as pprint]
#_{:clj-kondo/ignore [:unused-referred-var]}
[slingshot.slingshot :refer [throw+ try+]]
[differ.core :as differ]
[weavejester.dependency :as dep]
[automigrate.actions :as actions]
[automigrate.models :as models]
[automigrate.errors :as errors]
[automigrate.sql :as sql]
[automigrate.schema :as schema]
[automigrate.util.file :as file-util]
[automigrate.util.db :as db-util]
[automigrate.util.spec :as spec-util]
[automigrate.util.model :as model-util])
(:import [java.io FileNotFoundException]))
(def ^:private DROPPED-ENTITY-VALUE 0)
(def ^:private DEFAULT-ROOT-NODE :root)
(def ^:private AUTO-MIGRATION-PREFIX "auto")
(def ^:private FORWARD-DIRECTION :forward)
(def ^:private BACKWARD-DIRECTION :backward)
(def ^:private AUTO-MIGRATION-EXT :edn)
(def ^:private SQL-MIGRATION-EXT :sql)
(def EMPTY-SQL-MIGRATION-TYPE :empty-sql)
(def ^:private FORWARD-MIGRATION-DELIMITER "-- FORWARD")
(def ^:private BACKWARD-MIGRATION-DELIMITER "-- BACKWARD")
(def ^:private SQL-MIGRATION-TEMPLATE
(format "%s\n\n\n%s\n" FORWARD-MIGRATION-DELIMITER BACKWARD-MIGRATION-DELIMITER))
(defn- get-migration-type
"Return migration type by migration file extension."
[migration-name]
(-> (str/split migration-name #"\.")
(last)
(keyword)))
(defmulti read-migration #(get-migration-type (:file-name %)))
(defmethod read-migration :default
;"Return models' definitions."
[{:keys [file-name migrations-dir]}]
(let [migration-file-path (file-util/join-path migrations-dir file-name)]
(file-util/read-edn migration-file-path)))
(defn- get-forward-sql-migration
[migration]
(-> (str/split migration (re-pattern BACKWARD-MIGRATION-DELIMITER))
(first)
(str/replace (re-pattern FORWARD-MIGRATION-DELIMITER) "")
(vector)))
(defn- get-backward-sql-migration
[migration]
(-> (str/split migration (re-pattern BACKWARD-MIGRATION-DELIMITER))
(last)
(vector)))
(defmethod read-migration SQL-MIGRATION-EXT
; Return model definitions.
[{:keys [file-name migrations-dir]}]
(-> (file-util/join-path migrations-dir file-name)
(slurp)
(vector)))
(defn- create-migrations-dir
"Create migrations root dir if it is not exist."
[migrations-dir]
(when-not (.isDirectory (io/file migrations-dir))
(.mkdir (java.io.File. migrations-dir))))
(defn- save-migration!
"Save migration to db after applying it."
[db migration-name migrations-table]
(->> {:insert-into migrations-table
:values [{:name migration-name}]}
(db-util/exec! db))
(println (str "Successfully migrated: " migration-name)))
(defn- delete-migration!
"Delete unapplied migration from db."
[db migration-name migrations-table]
(->> {:delete-from migrations-table
:where [:= :name migration-name]}
(db-util/exec! db))
(println (str "Successfully unapplied: " migration-name)))
(defn- get-migration-name
"Return migration name without file format."
[file-name]
(first (str/split file-name #"\.")))
(defn- get-migration-number
[migration-name]
(-> (str/split migration-name #"_")
(first)
(Integer/parseInt)))
(defn- validate-migration-numbers
[migrations]
(let [duplicated-numbers (->> migrations
(map get-migration-number)
(frequencies)
(filter #(> (val %) 1))
(keys)
(set))]
(when (seq duplicated-numbers)
(throw+ {:type ::duplicated-migration-numbers
:numbers duplicated-numbers
:message (str "There are duplicated migration numbers: "
(str/join ", " duplicated-numbers)
". Please resolve the conflict and try again.")}))
migrations))
(defn- migrations-list
"Get migrations' files list."
[migrations-dir]
(->> (file-util/list-files migrations-dir)
(map #(.getName %))
(sort)
(validate-migration-numbers)))
(defn- next-migration-number
[file-names]
; migration numbers starting from 1
(file-util/zfill (inc (count file-names))))
(defn- extract-item-name
[action]
(condp contains? (:action action)
#{actions/CREATE-TABLE-ACTION
actions/DROP-TABLE-ACTION} (:model-name action)
#{actions/ADD-COLUMN-ACTION
actions/DROP-COLUMN-ACTION
actions/ALTER-COLUMN-ACTION} (:field-name action)
#{actions/CREATE-INDEX-ACTION
actions/DROP-INDEX-ACTION
actions/ALTER-INDEX-ACTION} (:index-name action)))
(defn- get-action-name
[action]
(let [action-name (-> action :action name)
item-name (-> action extract-item-name name)]
(str/join #"_" [AUTO-MIGRATION-PREFIX action-name item-name])))
(defn- get-next-migration-name
"Return given custom name with underscores or first action name."
[actions custom-name]
(let [migration-name (or custom-name (get-action-name (first actions)))]
(str/replace migration-name #"-" "_")))
(defn- new-field?
[old-model fields-diff field-name]
(and (contains? fields-diff field-name)
(not (contains? (:fields old-model) field-name))))
(defn- drop-field?
[fields-removals field-name]
(= DROPPED-ENTITY-VALUE (get fields-removals field-name)))
(defn- options-dropped
[removals]
(-> (filter #(= DROPPED-ENTITY-VALUE (val %)) removals)
(keys)
(set)
(set/difference #{:type})))
(defn- assoc-option-to-add
[old-field changes option-key new-option-value]
(let [old-option-value (if (contains? old-field option-key)
(get old-field option-key)
model-util/EMPTY-OPTION)]
(-> changes
(assoc-in [option-key :from] old-option-value)
(assoc-in [option-key :to] new-option-value))))
(defn- assoc-option-to-drop
[old-field changes option-key]
(-> changes
(assoc-in [option-key :from] (get old-field option-key))
(assoc-in [option-key :to] model-util/EMPTY-OPTION)))
(defn- get-changes
[old-options options-to-add options-to-drop]
(as-> {} $
(reduce-kv (partial assoc-option-to-add old-options) $ options-to-add)
(reduce (partial assoc-option-to-drop old-options) $ options-to-drop)))
(defn- get-options-to-add
"Update option in diff to option from new model if diff is a vector.
It is a caveat how differ lib works with changes in vectors. For example, it uses
in case when we change field type [:varchar 100] to [:varchar 200]. In diff we see [1 200]
cause just second item of a vector has been changed. So for us it is important to have whole
new type in options to add, and we just copy it from new model."
[fields-diff field-name new-model]
(let [field-options-diff (get fields-diff field-name)
fields-options-new (get-in new-model [:fields field-name])]
(reduce-kv
(fn [m k v]
(if (vector? v)
(assoc m k (get fields-options-new k))
(assoc m k v)))
{}
field-options-diff)))
(defn- parse-fields-diff
"Return field's migrations for model."
[{:keys [model-diff removals old-model new-model model-name]}]
(let [fields-diff (:fields model-diff)
fields-removals (:fields removals)
changed-fields (-> (set (keys fields-diff))
(set/union (set (keys fields-removals))))]
(for [field-name changed-fields
:let [options-to-add (get-options-to-add fields-diff field-name new-model)
options-to-drop (get fields-removals field-name)
new-field?* (new-field? old-model fields-diff field-name)
drop-field?* (drop-field? fields-removals field-name)
field-options-old (get-in old-model [:fields field-name])
field-options-new (get-in new-model [:fields field-name])]]
(cond
new-field?* {:action actions/ADD-COLUMN-ACTION
:field-name field-name
:model-name model-name
:options options-to-add}
drop-field?* {:action actions/DROP-COLUMN-ACTION
:field-name field-name
:model-name model-name}
:else {:action actions/ALTER-COLUMN-ACTION
:field-name field-name
:model-name model-name
:options field-options-new
:changes (get-changes field-options-old
options-to-add
(options-dropped options-to-drop))}))))
(defn- new-model?
[alterations old-schema model-name]
(and (contains? alterations model-name)
(not (contains? old-schema model-name))))
(defn- drop-model?
[removals model-name]
(= DROPPED-ENTITY-VALUE (get removals model-name)))
(defn- read-models
"Read and validate models from file."
[models-file]
(->> models-file
(file-util/read-edn)
(models/->internal-models)))
(defn- action-dependencies
"Return dependencies as vector of vectors for an action or nil.
return: [[:model-name :field-name] ...]"
[action]
(let [changes-to-add (model-util/changes-to-add (:changes action))
fk (condp contains? (:action action)
#{actions/ADD-COLUMN-ACTION} (get-in action [:options :foreign-key])
#{actions/ALTER-COLUMN-ACTION} (:foreign-key changes-to-add)
nil)]
(->> (condp contains? (:action action)
#{actions/ADD-COLUMN-ACTION
actions/ALTER-COLUMN-ACTION
actions/DROP-COLUMN-ACTION} (cond-> [[(:model-name action) nil]]
(some? fk) (conj (model-util/kw->vec fk)))
#{actions/CREATE-TABLE-ACTION} (mapv (comp model-util/kw->vec :foreign-key)
(vals (:fields action)))
#{actions/CREATE-INDEX-ACTION
actions/ALTER-INDEX-ACTION} (mapv (fn [field] [(:model-name action) field])
(get-in action [:options :fields]))
[])
(remove nil?))))
(defn- parent-action?
"Check if action is parent to one with presented dependencies."
[deps action]
(let [model-names (set (map first deps))]
(condp contains? (:action action)
#{actions/CREATE-TABLE-ACTION} (contains? model-names (:model-name action))
#{actions/ADD-COLUMN-ACTION
actions/ALTER-COLUMN-ACTION} (some
#(and (= (:model-name action) (first %))
(= (:field-name action) (last %)))
deps)
false)))
(defn- assoc-action-deps
"Assoc dependencies to graph by actions."
[actions graph next-action]
(let [deps (action-dependencies next-action)
parent-actions (filter (partial parent-action? deps) actions)]
(as-> graph g
(dep/depend g next-action DEFAULT-ROOT-NODE)
(reduce #(dep/depend %1 next-action %2) g parent-actions))))
(defn- compare-actions
"Secondary comparator for sorting actions in migration the same way."
[a b]
(< (hash a) (hash b)))
(defn- sort-actions
"Apply order for migration's actions by foreign key between models."
[actions]
(->> actions
(reduce (partial assoc-action-deps actions) (dep/graph))
(dep/topo-sort compare-actions)
; drop first default root node `:root`
(drop 1)))
(defn- new-index?
[old-model indexes-diff index-name]
(and (contains? indexes-diff index-name)
(not (contains? (:indexes old-model) index-name))))
(defn- drop-index?
[indexes-removals index-name]
(= DROPPED-ENTITY-VALUE (get indexes-removals index-name)))
(defn- parse-indexes-diff
"Return index's migrations for model."
[model-diff removals old-model new-model model-name]
(let [indexes-diff (:indexes model-diff)
indexes-removals (if (= DROPPED-ENTITY-VALUE (:indexes removals))
(->> (:indexes old-model)
(reduce-kv (fn [m k _v] (assoc m k DROPPED-ENTITY-VALUE)) {}))
(:indexes removals))
changed-indexes (-> (set (keys indexes-diff))
(set/union (set (keys indexes-removals))))]
(for [index-name changed-indexes
:let [options-to-add (get indexes-diff index-name)
options-to-alter (get-in new-model [:indexes index-name])
new-index?* (new-index? old-model indexes-diff index-name)
drop-index?* (drop-index? indexes-removals index-name)]]
(cond
new-index?* {:action actions/CREATE-INDEX-ACTION
:index-name index-name
:model-name model-name
:options options-to-add}
drop-index?* {:action actions/DROP-INDEX-ACTION
:index-name index-name
:model-name model-name}
:else {:action actions/ALTER-INDEX-ACTION
:index-name index-name
:model-name model-name
:options options-to-alter}))))
(defn- make-migration*
[models-file migrations-files]
(let [old-schema (schema/current-db-schema migrations-files)
new-schema (read-models models-file)
[alterations removals] (differ/diff old-schema new-schema)
changed-models (-> (set (keys alterations))
(set/union (set (keys removals))))
actions (for [model-name changed-models
:let [old-model (get old-schema model-name)
new-model (get new-schema model-name)
model-diff (get alterations model-name)
model-removals (get removals model-name)
new-model?* (new-model? alterations old-schema model-name)
drop-model?* (drop-model? removals model-name)]]
(concat
(cond
new-model?* [{:action actions/CREATE-TABLE-ACTION
:model-name model-name
:fields (:fields model-diff)}]
drop-model?* [{:action actions/DROP-TABLE-ACTION
:model-name model-name}]
:else (parse-fields-diff {:model-diff model-diff
:removals model-removals
:old-model old-model
:new-model new-model
:model-name model-name}))
(parse-indexes-diff model-diff model-removals old-model new-model model-name)))]
(->> actions
(flatten)
(sort-actions)
(actions/->migrations))))
(defn- get-next-migration-file-name
"Return next migration file name based on existing migrations."
[{:keys [migration-type migrations-dir next-migration-name]}]
(let [migration-names (migrations-list migrations-dir)
migration-number (next-migration-number migration-names)
migration-file-name (str migration-number "_" next-migration-name)
migration-file-with-ext (str migration-file-name "." (name migration-type))]
(file-util/join-path migrations-dir migration-file-with-ext)))
(defn- auto-migration?
"Return true if migration has been created automatically false otherwise."
[f]
(str/ends-with? (.getName f) (str "." (name AUTO-MIGRATION-EXT))))
(defn- make-next-migration
"Return actions for next migration."
[{:keys [models-file migrations-dir]}]
(->> (file-util/list-files migrations-dir)
(filter auto-migration?)
(make-migration* models-file)
(flatten)
(seq)))
(defn- get-action-name-verbose
[action]
(let [action-name (-> action :action name (str/replace #"-" " "))
item-name (-> action extract-item-name name (str/replace #"-" "_"))
model-name (:model-name action)
at-model (when-not (contains? #{actions/CREATE-TABLE-ACTION
actions/DROP-TABLE-ACTION}
(:action action))
(str "in table " (-> model-name name (str/replace #"-" "_"))))
full-action-name-vec (cond-> [action-name item-name]
(some? at-model) (conj at-model))]
(str/join " " full-action-name-vec)))
(defn- print-action-names
[actions]
(let [action-names (mapv (comp #(str " - " %)
get-action-name-verbose)
actions)]
(file-util/safe-println (cons "Actions:" action-names) "")))
(defmulti make-migration :type)
(defmethod make-migration :default
; Make new migration based on models definitions automatically.
[{:keys [models-file migrations-dir]
custom-migration-name :name}]
(try+
(if-let [next-migration (make-next-migration {:models-file models-file
:migrations-dir migrations-dir})]
(let [_ (create-migrations-dir migrations-dir)
next-migration-name (get-next-migration-name next-migration custom-migration-name)
migration-file-name-full-path (get-next-migration-file-name
{:migration-type AUTO-MIGRATION-EXT
:migrations-dir migrations-dir
:next-migration-name next-migration-name})]
(spit migration-file-name-full-path
(with-out-str
(pprint/pprint next-migration)))
(println (str "Created migration: " migration-file-name-full-path))
; Print all actions from migration in human-readable format
(print-action-names next-migration))
(println "There are no changes in models."))
(catch [:type ::s/invalid] e
(file-util/prn-err e))
(catch #(contains? #{::models/missing-referenced-model
::models/missing-referenced-field
::models/referenced-field-is-not-unique
::models/fk-fields-have-different-types} (:type %)) e
(-> e
(errors/custom-error->error-report)
(file-util/prn-err)))
(catch [:reason ::dep/circular-dependency] e
(-> {:title "MIGRATION ERROR"
:message (format (str "Circular dependency between two migration actions: \n %s\nand\n %s\n\n"
"Please split actions by different migrations.")
(pr-str (:dependency e))
(pr-str (:node e)))}
(errors/custom-error->error-report)
(file-util/prn-err)))
(catch FileNotFoundException e
(-> {:title "ERROR"
:message (format "Missing file:\n\n %s" (ex-message e))}
(errors/custom-error->error-report)
(file-util/prn-err)))))
(defmethod make-migration EMPTY-SQL-MIGRATION-TYPE
; Make new migrations based on models definitions automatically.
[{next-migration-name :name
migrations-dir :migrations-dir}]
(try+
(when (empty? next-migration-name)
(throw+ {:type ::missing-migration-name
:message "Missing migration name."}))
(let [_ (create-migrations-dir migrations-dir)
next-migration-name* (str/replace next-migration-name #"-" "_")
migration-file-name-full-path (get-next-migration-file-name
{:migration-type SQL-MIGRATION-EXT
:migrations-dir migrations-dir
:next-migration-name next-migration-name*})]
(spit migration-file-name-full-path SQL-MIGRATION-TEMPLATE)
(println (str "Created migration: " migration-file-name-full-path)))
(catch [:type ::s/invalid] e
(file-util/prn-err e))
(catch #(contains? #{::missing-migration-name
::duplicated-migration-numbers} (:type %)) e
(-> e
(errors/custom-error->error-report)
(file-util/prn-err)))))
(defn- get-migration-by-number
"Return migration file name by number."
[migration-names number]
{:pre [(s/assert (s/coll-of string?) migration-names)
(s/assert integer? number)]}
(->> migration-names
(filter #(= number (get-migration-number %)))
(first)))
(defmulti explain*
(juxt #(get-migration-type (:file-name %)) :direction))
(defn- add-transaction-to-explain
[actions]
(concat ["BEGIN"] actions ["COMMIT;"]))
(defmethod explain* [AUTO-MIGRATION-EXT FORWARD-DIRECTION]
; Generate raw sql from migration.
[{:keys [file-name migrations-dir] :as _args}]
(->> (read-migration {:file-name file-name
:migrations-dir migrations-dir})
(mapv sql/->sql)
(flatten)
(add-transaction-to-explain)
(file-util/safe-println)))
(defmethod explain* [AUTO-MIGRATION-EXT BACKWARD-DIRECTION]
[_]
(println "WARNING: backward migration isn't fully implemented yet."))
(defmethod explain* [SQL-MIGRATION-EXT FORWARD-DIRECTION]
; Generate raw sql from migration for forward direction.
[{:keys [file-name migrations-dir] :as _args}]
(->> (read-migration {:file-name file-name
:migrations-dir migrations-dir})
(first)
(get-forward-sql-migration)
(file-util/safe-println)))
(defmethod explain* [SQL-MIGRATION-EXT BACKWARD-DIRECTION]
; Generate raw sql from migration for backward direction.
[{:keys [file-name migrations-dir] :as _args}]
(->> (read-migration {:file-name file-name
:migrations-dir migrations-dir})
(first)
(get-backward-sql-migration)
(file-util/safe-println)))
(defn explain
; Generate raw sql from migration.
[{:keys [migrations-dir number direction] :or {direction FORWARD-DIRECTION} :as _args}]
(try+
(let [migration-names (migrations-list migrations-dir)
file-name (get-migration-by-number migration-names number)]
(when-not (some? file-name)
(throw+ {:type ::no-migration-by-number
:number number
:message (format "Missing migration by number %s" (str number))}))
(file-util/safe-println
[(format "SQL for migration %s:\n" file-name)])
(explain* {:file-name file-name
:migrations-dir migrations-dir
:direction direction}))
(catch [:type ::s/invalid] e
(file-util/prn-err e))
(catch #(contains? #{::no-migration-by-number
::duplicated-migration-numbers} (:type %)) e
(-> e
(errors/custom-error->error-report)
(file-util/prn-err)))))
(defn- already-migrated
"Get names of previously migrated migrations from db."
[db migrations-table]
(try
(->> {:select [:name]
:from [migrations-table]
:order-by [:created-at]}
(db-util/exec! db)
(map :name))
(catch Exception e
(let [msg (ex-message e)
table-exists-err-pattern #"relation .+ does not exist"]
(if (re-find table-exists-err-pattern msg)
(throw+ {:type ::no-migrations-table
:message "Migrations table does not exist."})
(throw+ {:type ::unexpected-db-error
:data (or (ex-message e) (str e))
:message "Unexpected db error."}))))))
(defmulti exec-action! (juxt :migration-type :direction))
(defmethod exec-action! [AUTO-MIGRATION-EXT FORWARD-DIRECTION]
[{:keys [db action]}]
(let [formatted-action (spec-util/conform ::sql/->sql action)]
(if (sequential? formatted-action)
(doseq [sub-action formatted-action]
(db-util/exec! db sub-action))
(db-util/exec! db formatted-action))))
(defmethod exec-action! [AUTO-MIGRATION-EXT BACKWARD-DIRECTION]
[_])
; TODO: implement backward migration!
(defmethod exec-action! [SQL-MIGRATION-EXT FORWARD-DIRECTION]
[{:keys [db action]}]
(->> action
(get-forward-sql-migration)
(db-util/exec-raw! db)))
(defmethod exec-action! [SQL-MIGRATION-EXT BACKWARD-DIRECTION]
[{:keys [db action]}]
(->> action
(get-backward-sql-migration)
(db-util/exec-raw! db)))
(defn- exec-actions!
"Perform list of actions on a database."
[{:keys [db actions direction migration-type]}]
(when (and (= AUTO-MIGRATION-EXT migration-type)
(= BACKWARD-DIRECTION direction))
(println (str "WARNING: backward migration isn't fully implemented yet. "
"Database schema has not been changed!")))
(doseq [action actions]
(exec-action! {:db db
:action action
:direction direction
:migration-type migration-type})))
(defn- current-migration-number
"Return current migration name."
[migrated]
(if (seq migrated)
(let [res (->> (last migrated)
(get-migration-number))]
res)
0))
(defn- detailed-migration
"Return detailed info for each migration file."
[file-name]
{:file-name file-name
:migration-name (get-migration-name file-name)
:number-int (get-migration-number file-name)
:migration-type (get-migration-type file-name)})
(defn- get-detailed-migrations-to-migrate
"Return migrations to migrate and migration direction."
[all-migrations migrated target-number]
(if-not (seq all-migrations)
{}
(let [all-migrations-detailed (map detailed-migration all-migrations)
all-numbers (set (map :number-int all-migrations-detailed))
last-number (apply max all-numbers)
target-number* (or target-number last-number)
current-number (current-migration-number migrated)
direction (if (> target-number* current-number)
FORWARD-DIRECTION
BACKWARD-DIRECTION)]
(when-not (or (contains? all-numbers target-number*)
(= 0 target-number*))
(throw+ {:type ::invalid-target-migration-number
:number target-number*
:message "Invalid target migration number."}))
(if (= target-number* current-number)
[]
(condp contains? direction
#{FORWARD-DIRECTION} {:to-migrate (->> all-migrations-detailed
(drop-while #(>= current-number (:number-int %)))
(take-while #(>= target-number* (:number-int %))))
:direction direction}
#{BACKWARD-DIRECTION} {:to-migrate (->> all-migrations-detailed
(drop-while #(>= target-number* (:number-int %)))
(take-while #(>= current-number (:number-int %)))
(sort-by :number-int >))
:direction direction})))))
(defn migrate
"Run migration on a db."
[{:keys [migrations-dir jdbc-url number migrations-table]
:or {migrations-table db-util/MIGRATIONS-TABLE}}]
(try+
(let [db (db-util/db-conn jdbc-url)
_ (db-util/create-migrations-table db migrations-table)
migrated (already-migrated db migrations-table)
all-migrations (migrations-list migrations-dir)
{:keys [to-migrate direction]}
(get-detailed-migrations-to-migrate all-migrations migrated number)]
(if (seq to-migrate)
(doseq [{:keys [migration-name file-name migration-type]} to-migrate]
(if (= direction FORWARD-DIRECTION)
(println (str "Migrating: " migration-name "..."))
(println (str "Unapplying: " migration-name "...")))
(jdbc/with-transaction [tx db]
(let [actions (read-migration {:file-name file-name
:migrations-dir migrations-dir})]
(exec-actions! {:db tx
:actions actions
:direction direction
:migration-type migration-type}))
(if (= direction FORWARD-DIRECTION)
(save-migration! db migration-name migrations-table)
(delete-migration! db migration-name migrations-table))))
(println "Nothing to migrate.")))
(catch [:type ::s/invalid] e
(file-util/prn-err e))
(catch #(contains? #{::duplicated-migration-numbers
::invalid-target-migration-number} (:type %)) e
(-> e
(errors/custom-error->error-report)
(file-util/prn-err)))))
(defn- get-already-migrated-migrations
[db migrations-table]
(try+
(set (already-migrated db migrations-table))
(catch [:type ::no-migrations-table]
; There is no migrated migrations if table doesn't exist.
[])))
(defn list-migrations
"Print migration list with status."
[{:keys [migrations-dir jdbc-url migrations-table]
:or {migrations-table db-util/MIGRATIONS-TABLE}}]
; TODO: reduce duplication with `migrate` fn!
(try+
(let [migration-names (migrations-list migrations-dir)
db (db-util/db-conn jdbc-url)
migrated (set (get-already-migrated-migrations db migrations-table))]
(if (seq migration-names)
(do
(println "Existing migrations:\n")
(doseq [file-name migration-names
:let [migration-name (get-migration-name file-name)
sign (if (contains? migrated migration-name) "✓" " ")]]
(file-util/safe-println [(format "[%s] %s" sign file-name)])))
(println "Migrations not found.")))
(catch [:type ::s/invalid] e
(file-util/prn-err e))
(catch #(contains? #{::duplicated-migration-numbers
::no-migrations-table
::unexpected-db-error} (:type %)) e
(-> e
(errors/custom-error->error-report)
(file-util/prn-err)))))
; Comments for development.
(comment
(let [config {:models-file "src/automigrate/models.edn"
;:models-file "test/automigrate/models/feed_add_column.edn"
:migrations-dir "src/automigrate/migrations"
:jdbc-url "jdbc:postgresql://localhost:5432/automigrate?user=automigrate&password=automigrate"
:number 4}
db (db-util/db-conn (:jdbc-url config))
migrations-files (file-util/list-files (:migrations-dir config))
models-file (:models-file config)]
(try+
(->> (read-models models-file))
;(->> (make-migration* models-file migrations-files))
;(make-next-migration config)
; (flatten))
(catch [:type ::s/invalid] e
(print (:message e))
(:data e)))))
(comment
(let [config {:models-file "src/automigrate/models.edn"
:migrations-dir "src/automigrate/migrations"
:jdbc-url "jdbc:postgresql://localhost:5432/automigrate?user=automigrate&password=automigrate"}
db (db-util/db-conn (:jdbc-url config))]
(make-migration config)))
|
23183
|
(ns automigrate.migrations
"Module for applying changes to migrations and db.
Also contains tools for inspection of db state by migrations
and state of migrations itself."
(:require [next.jdbc :as jdbc]
#_{:clj-kondo/ignore [:unused-namespace]}
[clojure.spec.alpha :as s]
[clojure.java.io :as io]
[clojure.string :as str]
[clojure.set :as set]
[clojure.pprint :as pprint]
#_{:clj-kondo/ignore [:unused-referred-var]}
[slingshot.slingshot :refer [throw+ try+]]
[differ.core :as differ]
[weavejester.dependency :as dep]
[automigrate.actions :as actions]
[automigrate.models :as models]
[automigrate.errors :as errors]
[automigrate.sql :as sql]
[automigrate.schema :as schema]
[automigrate.util.file :as file-util]
[automigrate.util.db :as db-util]
[automigrate.util.spec :as spec-util]
[automigrate.util.model :as model-util])
(:import [java.io FileNotFoundException]))
(def ^:private DROPPED-ENTITY-VALUE 0)
(def ^:private DEFAULT-ROOT-NODE :root)
(def ^:private AUTO-MIGRATION-PREFIX "auto")
(def ^:private FORWARD-DIRECTION :forward)
(def ^:private BACKWARD-DIRECTION :backward)
(def ^:private AUTO-MIGRATION-EXT :edn)
(def ^:private SQL-MIGRATION-EXT :sql)
(def EMPTY-SQL-MIGRATION-TYPE :empty-sql)
(def ^:private FORWARD-MIGRATION-DELIMITER "-- FORWARD")
(def ^:private BACKWARD-MIGRATION-DELIMITER "-- BACKWARD")
(def ^:private SQL-MIGRATION-TEMPLATE
(format "%s\n\n\n%s\n" FORWARD-MIGRATION-DELIMITER BACKWARD-MIGRATION-DELIMITER))
(defn- get-migration-type
"Return migration type by migration file extension."
[migration-name]
(-> (str/split migration-name #"\.")
(last)
(keyword)))
(defmulti read-migration #(get-migration-type (:file-name %)))
(defmethod read-migration :default
;"Return models' definitions."
[{:keys [file-name migrations-dir]}]
(let [migration-file-path (file-util/join-path migrations-dir file-name)]
(file-util/read-edn migration-file-path)))
(defn- get-forward-sql-migration
[migration]
(-> (str/split migration (re-pattern BACKWARD-MIGRATION-DELIMITER))
(first)
(str/replace (re-pattern FORWARD-MIGRATION-DELIMITER) "")
(vector)))
(defn- get-backward-sql-migration
[migration]
(-> (str/split migration (re-pattern BACKWARD-MIGRATION-DELIMITER))
(last)
(vector)))
(defmethod read-migration SQL-MIGRATION-EXT
; Return model definitions.
[{:keys [file-name migrations-dir]}]
(-> (file-util/join-path migrations-dir file-name)
(slurp)
(vector)))
(defn- create-migrations-dir
"Create migrations root dir if it is not exist."
[migrations-dir]
(when-not (.isDirectory (io/file migrations-dir))
(.mkdir (java.io.File. migrations-dir))))
(defn- save-migration!
"Save migration to db after applying it."
[db migration-name migrations-table]
(->> {:insert-into migrations-table
:values [{:name migration-name}]}
(db-util/exec! db))
(println (str "Successfully migrated: " migration-name)))
(defn- delete-migration!
"Delete unapplied migration from db."
[db migration-name migrations-table]
(->> {:delete-from migrations-table
:where [:= :name migration-name]}
(db-util/exec! db))
(println (str "Successfully unapplied: " migration-name)))
(defn- get-migration-name
"Return migration name without file format."
[file-name]
(first (str/split file-name #"\.")))
(defn- get-migration-number
[migration-name]
(-> (str/split migration-name #"_")
(first)
(Integer/parseInt)))
(defn- validate-migration-numbers
[migrations]
(let [duplicated-numbers (->> migrations
(map get-migration-number)
(frequencies)
(filter #(> (val %) 1))
(keys)
(set))]
(when (seq duplicated-numbers)
(throw+ {:type ::duplicated-migration-numbers
:numbers duplicated-numbers
:message (str "There are duplicated migration numbers: "
(str/join ", " duplicated-numbers)
". Please resolve the conflict and try again.")}))
migrations))
(defn- migrations-list
"Get migrations' files list."
[migrations-dir]
(->> (file-util/list-files migrations-dir)
(map #(.getName %))
(sort)
(validate-migration-numbers)))
(defn- next-migration-number
[file-names]
; migration numbers starting from 1
(file-util/zfill (inc (count file-names))))
(defn- extract-item-name
[action]
(condp contains? (:action action)
#{actions/CREATE-TABLE-ACTION
actions/DROP-TABLE-ACTION} (:model-name action)
#{actions/ADD-COLUMN-ACTION
actions/DROP-COLUMN-ACTION
actions/ALTER-COLUMN-ACTION} (:field-name action)
#{actions/CREATE-INDEX-ACTION
actions/DROP-INDEX-ACTION
actions/ALTER-INDEX-ACTION} (:index-name action)))
(defn- get-action-name
[action]
(let [action-name (-> action :action name)
item-name (-> action extract-item-name name)]
(str/join #"_" [AUTO-MIGRATION-PREFIX action-name item-name])))
(defn- get-next-migration-name
"Return given custom name with underscores or first action name."
[actions custom-name]
(let [migration-name (or custom-name (get-action-name (first actions)))]
(str/replace migration-name #"-" "_")))
(defn- new-field?
[old-model fields-diff field-name]
(and (contains? fields-diff field-name)
(not (contains? (:fields old-model) field-name))))
(defn- drop-field?
[fields-removals field-name]
(= DROPPED-ENTITY-VALUE (get fields-removals field-name)))
(defn- options-dropped
[removals]
(-> (filter #(= DROPPED-ENTITY-VALUE (val %)) removals)
(keys)
(set)
(set/difference #{:type})))
(defn- assoc-option-to-add
[old-field changes option-key new-option-value]
(let [old-option-value (if (contains? old-field option-key)
(get old-field option-key)
model-util/EMPTY-OPTION)]
(-> changes
(assoc-in [option-key :from] old-option-value)
(assoc-in [option-key :to] new-option-value))))
(defn- assoc-option-to-drop
[old-field changes option-key]
(-> changes
(assoc-in [option-key :from] (get old-field option-key))
(assoc-in [option-key :to] model-util/EMPTY-OPTION)))
(defn- get-changes
[old-options options-to-add options-to-drop]
(as-> {} $
(reduce-kv (partial assoc-option-to-add old-options) $ options-to-add)
(reduce (partial assoc-option-to-drop old-options) $ options-to-drop)))
(defn- get-options-to-add
"Update option in diff to option from new model if diff is a vector.
It is a caveat how differ lib works with changes in vectors. For example, it uses
in case when we change field type [:varchar 100] to [:varchar 200]. In diff we see [1 200]
cause just second item of a vector has been changed. So for us it is important to have whole
new type in options to add, and we just copy it from new model."
[fields-diff field-name new-model]
(let [field-options-diff (get fields-diff field-name)
fields-options-new (get-in new-model [:fields field-name])]
(reduce-kv
(fn [m k v]
(if (vector? v)
(assoc m k (get fields-options-new k))
(assoc m k v)))
{}
field-options-diff)))
(defn- parse-fields-diff
"Return field's migrations for model."
[{:keys [model-diff removals old-model new-model model-name]}]
(let [fields-diff (:fields model-diff)
fields-removals (:fields removals)
changed-fields (-> (set (keys fields-diff))
(set/union (set (keys fields-removals))))]
(for [field-name changed-fields
:let [options-to-add (get-options-to-add fields-diff field-name new-model)
options-to-drop (get fields-removals field-name)
new-field?* (new-field? old-model fields-diff field-name)
drop-field?* (drop-field? fields-removals field-name)
field-options-old (get-in old-model [:fields field-name])
field-options-new (get-in new-model [:fields field-name])]]
(cond
new-field?* {:action actions/ADD-COLUMN-ACTION
:field-name field-name
:model-name model-name
:options options-to-add}
drop-field?* {:action actions/DROP-COLUMN-ACTION
:field-name field-name
:model-name model-name}
:else {:action actions/ALTER-COLUMN-ACTION
:field-name field-name
:model-name model-name
:options field-options-new
:changes (get-changes field-options-old
options-to-add
(options-dropped options-to-drop))}))))
(defn- new-model?
[alterations old-schema model-name]
(and (contains? alterations model-name)
(not (contains? old-schema model-name))))
(defn- drop-model?
[removals model-name]
(= DROPPED-ENTITY-VALUE (get removals model-name)))
(defn- read-models
"Read and validate models from file."
[models-file]
(->> models-file
(file-util/read-edn)
(models/->internal-models)))
(defn- action-dependencies
"Return dependencies as vector of vectors for an action or nil.
return: [[:model-name :field-name] ...]"
[action]
(let [changes-to-add (model-util/changes-to-add (:changes action))
fk (condp contains? (:action action)
#{actions/ADD-COLUMN-ACTION} (get-in action [:options :foreign-key])
#{actions/ALTER-COLUMN-ACTION} (:foreign-key changes-to-add)
nil)]
(->> (condp contains? (:action action)
#{actions/ADD-COLUMN-ACTION
actions/ALTER-COLUMN-ACTION
actions/DROP-COLUMN-ACTION} (cond-> [[(:model-name action) nil]]
(some? fk) (conj (model-util/kw->vec fk)))
#{actions/CREATE-TABLE-ACTION} (mapv (comp model-util/kw->vec :foreign-key)
(vals (:fields action)))
#{actions/CREATE-INDEX-ACTION
actions/ALTER-INDEX-ACTION} (mapv (fn [field] [(:model-name action) field])
(get-in action [:options :fields]))
[])
(remove nil?))))
(defn- parent-action?
"Check if action is parent to one with presented dependencies."
[deps action]
(let [model-names (set (map first deps))]
(condp contains? (:action action)
#{actions/CREATE-TABLE-ACTION} (contains? model-names (:model-name action))
#{actions/ADD-COLUMN-ACTION
actions/ALTER-COLUMN-ACTION} (some
#(and (= (:model-name action) (first %))
(= (:field-name action) (last %)))
deps)
false)))
(defn- assoc-action-deps
"Assoc dependencies to graph by actions."
[actions graph next-action]
(let [deps (action-dependencies next-action)
parent-actions (filter (partial parent-action? deps) actions)]
(as-> graph g
(dep/depend g next-action DEFAULT-ROOT-NODE)
(reduce #(dep/depend %1 next-action %2) g parent-actions))))
(defn- compare-actions
"Secondary comparator for sorting actions in migration the same way."
[a b]
(< (hash a) (hash b)))
(defn- sort-actions
"Apply order for migration's actions by foreign key between models."
[actions]
(->> actions
(reduce (partial assoc-action-deps actions) (dep/graph))
(dep/topo-sort compare-actions)
; drop first default root node `:root`
(drop 1)))
(defn- new-index?
[old-model indexes-diff index-name]
(and (contains? indexes-diff index-name)
(not (contains? (:indexes old-model) index-name))))
(defn- drop-index?
[indexes-removals index-name]
(= DROPPED-ENTITY-VALUE (get indexes-removals index-name)))
(defn- parse-indexes-diff
"Return index's migrations for model."
[model-diff removals old-model new-model model-name]
(let [indexes-diff (:indexes model-diff)
indexes-removals (if (= DROPPED-ENTITY-VALUE (:indexes removals))
(->> (:indexes old-model)
(reduce-kv (fn [m k _v] (assoc m k DROPPED-ENTITY-VALUE)) {}))
(:indexes removals))
changed-indexes (-> (set (keys indexes-diff))
(set/union (set (keys indexes-removals))))]
(for [index-name changed-indexes
:let [options-to-add (get indexes-diff index-name)
options-to-alter (get-in new-model [:indexes index-name])
new-index?* (new-index? old-model indexes-diff index-name)
drop-index?* (drop-index? indexes-removals index-name)]]
(cond
new-index?* {:action actions/CREATE-INDEX-ACTION
:index-name index-name
:model-name model-name
:options options-to-add}
drop-index?* {:action actions/DROP-INDEX-ACTION
:index-name index-name
:model-name model-name}
:else {:action actions/ALTER-INDEX-ACTION
:index-name index-name
:model-name model-name
:options options-to-alter}))))
(defn- make-migration*
[models-file migrations-files]
(let [old-schema (schema/current-db-schema migrations-files)
new-schema (read-models models-file)
[alterations removals] (differ/diff old-schema new-schema)
changed-models (-> (set (keys alterations))
(set/union (set (keys removals))))
actions (for [model-name changed-models
:let [old-model (get old-schema model-name)
new-model (get new-schema model-name)
model-diff (get alterations model-name)
model-removals (get removals model-name)
new-model?* (new-model? alterations old-schema model-name)
drop-model?* (drop-model? removals model-name)]]
(concat
(cond
new-model?* [{:action actions/CREATE-TABLE-ACTION
:model-name model-name
:fields (:fields model-diff)}]
drop-model?* [{:action actions/DROP-TABLE-ACTION
:model-name model-name}]
:else (parse-fields-diff {:model-diff model-diff
:removals model-removals
:old-model old-model
:new-model new-model
:model-name model-name}))
(parse-indexes-diff model-diff model-removals old-model new-model model-name)))]
(->> actions
(flatten)
(sort-actions)
(actions/->migrations))))
(defn- get-next-migration-file-name
"Return next migration file name based on existing migrations."
[{:keys [migration-type migrations-dir next-migration-name]}]
(let [migration-names (migrations-list migrations-dir)
migration-number (next-migration-number migration-names)
migration-file-name (str migration-number "_" next-migration-name)
migration-file-with-ext (str migration-file-name "." (name migration-type))]
(file-util/join-path migrations-dir migration-file-with-ext)))
(defn- auto-migration?
"Return true if migration has been created automatically false otherwise."
[f]
(str/ends-with? (.getName f) (str "." (name AUTO-MIGRATION-EXT))))
(defn- make-next-migration
"Return actions for next migration."
[{:keys [models-file migrations-dir]}]
(->> (file-util/list-files migrations-dir)
(filter auto-migration?)
(make-migration* models-file)
(flatten)
(seq)))
(defn- get-action-name-verbose
[action]
(let [action-name (-> action :action name (str/replace #"-" " "))
item-name (-> action extract-item-name name (str/replace #"-" "_"))
model-name (:model-name action)
at-model (when-not (contains? #{actions/CREATE-TABLE-ACTION
actions/DROP-TABLE-ACTION}
(:action action))
(str "in table " (-> model-name name (str/replace #"-" "_"))))
full-action-name-vec (cond-> [action-name item-name]
(some? at-model) (conj at-model))]
(str/join " " full-action-name-vec)))
(defn- print-action-names
[actions]
(let [action-names (mapv (comp #(str " - " %)
get-action-name-verbose)
actions)]
(file-util/safe-println (cons "Actions:" action-names) "")))
(defmulti make-migration :type)
(defmethod make-migration :default
; Make new migration based on models definitions automatically.
[{:keys [models-file migrations-dir]
custom-migration-name :name}]
(try+
(if-let [next-migration (make-next-migration {:models-file models-file
:migrations-dir migrations-dir})]
(let [_ (create-migrations-dir migrations-dir)
next-migration-name (get-next-migration-name next-migration custom-migration-name)
migration-file-name-full-path (get-next-migration-file-name
{:migration-type AUTO-MIGRATION-EXT
:migrations-dir migrations-dir
:next-migration-name next-migration-name})]
(spit migration-file-name-full-path
(with-out-str
(pprint/pprint next-migration)))
(println (str "Created migration: " migration-file-name-full-path))
; Print all actions from migration in human-readable format
(print-action-names next-migration))
(println "There are no changes in models."))
(catch [:type ::s/invalid] e
(file-util/prn-err e))
(catch #(contains? #{::models/missing-referenced-model
::models/missing-referenced-field
::models/referenced-field-is-not-unique
::models/fk-fields-have-different-types} (:type %)) e
(-> e
(errors/custom-error->error-report)
(file-util/prn-err)))
(catch [:reason ::dep/circular-dependency] e
(-> {:title "MIGRATION ERROR"
:message (format (str "Circular dependency between two migration actions: \n %s\nand\n %s\n\n"
"Please split actions by different migrations.")
(pr-str (:dependency e))
(pr-str (:node e)))}
(errors/custom-error->error-report)
(file-util/prn-err)))
(catch FileNotFoundException e
(-> {:title "ERROR"
:message (format "Missing file:\n\n %s" (ex-message e))}
(errors/custom-error->error-report)
(file-util/prn-err)))))
(defmethod make-migration EMPTY-SQL-MIGRATION-TYPE
; Make new migrations based on models definitions automatically.
[{next-migration-name :name
migrations-dir :migrations-dir}]
(try+
(when (empty? next-migration-name)
(throw+ {:type ::missing-migration-name
:message "Missing migration name."}))
(let [_ (create-migrations-dir migrations-dir)
next-migration-name* (str/replace next-migration-name #"-" "_")
migration-file-name-full-path (get-next-migration-file-name
{:migration-type SQL-MIGRATION-EXT
:migrations-dir migrations-dir
:next-migration-name next-migration-name*})]
(spit migration-file-name-full-path SQL-MIGRATION-TEMPLATE)
(println (str "Created migration: " migration-file-name-full-path)))
(catch [:type ::s/invalid] e
(file-util/prn-err e))
(catch #(contains? #{::missing-migration-name
::duplicated-migration-numbers} (:type %)) e
(-> e
(errors/custom-error->error-report)
(file-util/prn-err)))))
(defn- get-migration-by-number
"Return migration file name by number."
[migration-names number]
{:pre [(s/assert (s/coll-of string?) migration-names)
(s/assert integer? number)]}
(->> migration-names
(filter #(= number (get-migration-number %)))
(first)))
(defmulti explain*
(juxt #(get-migration-type (:file-name %)) :direction))
(defn- add-transaction-to-explain
[actions]
(concat ["BEGIN"] actions ["COMMIT;"]))
(defmethod explain* [AUTO-MIGRATION-EXT FORWARD-DIRECTION]
; Generate raw sql from migration.
[{:keys [file-name migrations-dir] :as _args}]
(->> (read-migration {:file-name file-name
:migrations-dir migrations-dir})
(mapv sql/->sql)
(flatten)
(add-transaction-to-explain)
(file-util/safe-println)))
(defmethod explain* [AUTO-MIGRATION-EXT BACKWARD-DIRECTION]
[_]
(println "WARNING: backward migration isn't fully implemented yet."))
(defmethod explain* [SQL-MIGRATION-EXT FORWARD-DIRECTION]
; Generate raw sql from migration for forward direction.
[{:keys [file-name migrations-dir] :as _args}]
(->> (read-migration {:file-name file-name
:migrations-dir migrations-dir})
(first)
(get-forward-sql-migration)
(file-util/safe-println)))
(defmethod explain* [SQL-MIGRATION-EXT BACKWARD-DIRECTION]
; Generate raw sql from migration for backward direction.
[{:keys [file-name migrations-dir] :as _args}]
(->> (read-migration {:file-name file-name
:migrations-dir migrations-dir})
(first)
(get-backward-sql-migration)
(file-util/safe-println)))
(defn explain
; Generate raw sql from migration.
[{:keys [migrations-dir number direction] :or {direction FORWARD-DIRECTION} :as _args}]
(try+
(let [migration-names (migrations-list migrations-dir)
file-name (get-migration-by-number migration-names number)]
(when-not (some? file-name)
(throw+ {:type ::no-migration-by-number
:number number
:message (format "Missing migration by number %s" (str number))}))
(file-util/safe-println
[(format "SQL for migration %s:\n" file-name)])
(explain* {:file-name file-name
:migrations-dir migrations-dir
:direction direction}))
(catch [:type ::s/invalid] e
(file-util/prn-err e))
(catch #(contains? #{::no-migration-by-number
::duplicated-migration-numbers} (:type %)) e
(-> e
(errors/custom-error->error-report)
(file-util/prn-err)))))
(defn- already-migrated
"Get names of previously migrated migrations from db."
[db migrations-table]
(try
(->> {:select [:name]
:from [migrations-table]
:order-by [:created-at]}
(db-util/exec! db)
(map :name))
(catch Exception e
(let [msg (ex-message e)
table-exists-err-pattern #"relation .+ does not exist"]
(if (re-find table-exists-err-pattern msg)
(throw+ {:type ::no-migrations-table
:message "Migrations table does not exist."})
(throw+ {:type ::unexpected-db-error
:data (or (ex-message e) (str e))
:message "Unexpected db error."}))))))
(defmulti exec-action! (juxt :migration-type :direction))
(defmethod exec-action! [AUTO-MIGRATION-EXT FORWARD-DIRECTION]
[{:keys [db action]}]
(let [formatted-action (spec-util/conform ::sql/->sql action)]
(if (sequential? formatted-action)
(doseq [sub-action formatted-action]
(db-util/exec! db sub-action))
(db-util/exec! db formatted-action))))
(defmethod exec-action! [AUTO-MIGRATION-EXT BACKWARD-DIRECTION]
[_])
; TODO: implement backward migration!
(defmethod exec-action! [SQL-MIGRATION-EXT FORWARD-DIRECTION]
[{:keys [db action]}]
(->> action
(get-forward-sql-migration)
(db-util/exec-raw! db)))
(defmethod exec-action! [SQL-MIGRATION-EXT BACKWARD-DIRECTION]
[{:keys [db action]}]
(->> action
(get-backward-sql-migration)
(db-util/exec-raw! db)))
(defn- exec-actions!
"Perform list of actions on a database."
[{:keys [db actions direction migration-type]}]
(when (and (= AUTO-MIGRATION-EXT migration-type)
(= BACKWARD-DIRECTION direction))
(println (str "WARNING: backward migration isn't fully implemented yet. "
"Database schema has not been changed!")))
(doseq [action actions]
(exec-action! {:db db
:action action
:direction direction
:migration-type migration-type})))
(defn- current-migration-number
"Return current migration name."
[migrated]
(if (seq migrated)
(let [res (->> (last migrated)
(get-migration-number))]
res)
0))
(defn- detailed-migration
"Return detailed info for each migration file."
[file-name]
{:file-name file-name
:migration-name (get-migration-name file-name)
:number-int (get-migration-number file-name)
:migration-type (get-migration-type file-name)})
(defn- get-detailed-migrations-to-migrate
"Return migrations to migrate and migration direction."
[all-migrations migrated target-number]
(if-not (seq all-migrations)
{}
(let [all-migrations-detailed (map detailed-migration all-migrations)
all-numbers (set (map :number-int all-migrations-detailed))
last-number (apply max all-numbers)
target-number* (or target-number last-number)
current-number (current-migration-number migrated)
direction (if (> target-number* current-number)
FORWARD-DIRECTION
BACKWARD-DIRECTION)]
(when-not (or (contains? all-numbers target-number*)
(= 0 target-number*))
(throw+ {:type ::invalid-target-migration-number
:number target-number*
:message "Invalid target migration number."}))
(if (= target-number* current-number)
[]
(condp contains? direction
#{FORWARD-DIRECTION} {:to-migrate (->> all-migrations-detailed
(drop-while #(>= current-number (:number-int %)))
(take-while #(>= target-number* (:number-int %))))
:direction direction}
#{BACKWARD-DIRECTION} {:to-migrate (->> all-migrations-detailed
(drop-while #(>= target-number* (:number-int %)))
(take-while #(>= current-number (:number-int %)))
(sort-by :number-int >))
:direction direction})))))
(defn migrate
"Run migration on a db."
[{:keys [migrations-dir jdbc-url number migrations-table]
:or {migrations-table db-util/MIGRATIONS-TABLE}}]
(try+
(let [db (db-util/db-conn jdbc-url)
_ (db-util/create-migrations-table db migrations-table)
migrated (already-migrated db migrations-table)
all-migrations (migrations-list migrations-dir)
{:keys [to-migrate direction]}
(get-detailed-migrations-to-migrate all-migrations migrated number)]
(if (seq to-migrate)
(doseq [{:keys [migration-name file-name migration-type]} to-migrate]
(if (= direction FORWARD-DIRECTION)
(println (str "Migrating: " migration-name "..."))
(println (str "Unapplying: " migration-name "...")))
(jdbc/with-transaction [tx db]
(let [actions (read-migration {:file-name file-name
:migrations-dir migrations-dir})]
(exec-actions! {:db tx
:actions actions
:direction direction
:migration-type migration-type}))
(if (= direction FORWARD-DIRECTION)
(save-migration! db migration-name migrations-table)
(delete-migration! db migration-name migrations-table))))
(println "Nothing to migrate.")))
(catch [:type ::s/invalid] e
(file-util/prn-err e))
(catch #(contains? #{::duplicated-migration-numbers
::invalid-target-migration-number} (:type %)) e
(-> e
(errors/custom-error->error-report)
(file-util/prn-err)))))
(defn- get-already-migrated-migrations
[db migrations-table]
(try+
(set (already-migrated db migrations-table))
(catch [:type ::no-migrations-table]
; There is no migrated migrations if table doesn't exist.
[])))
(defn list-migrations
"Print migration list with status."
[{:keys [migrations-dir jdbc-url migrations-table]
:or {migrations-table db-util/MIGRATIONS-TABLE}}]
; TODO: reduce duplication with `migrate` fn!
(try+
(let [migration-names (migrations-list migrations-dir)
db (db-util/db-conn jdbc-url)
migrated (set (get-already-migrated-migrations db migrations-table))]
(if (seq migration-names)
(do
(println "Existing migrations:\n")
(doseq [file-name migration-names
:let [migration-name (get-migration-name file-name)
sign (if (contains? migrated migration-name) "✓" " ")]]
(file-util/safe-println [(format "[%s] %s" sign file-name)])))
(println "Migrations not found.")))
(catch [:type ::s/invalid] e
(file-util/prn-err e))
(catch #(contains? #{::duplicated-migration-numbers
::no-migrations-table
::unexpected-db-error} (:type %)) e
(-> e
(errors/custom-error->error-report)
(file-util/prn-err)))))
; Comments for development.
(comment
(let [config {:models-file "src/automigrate/models.edn"
;:models-file "test/automigrate/models/feed_add_column.edn"
:migrations-dir "src/automigrate/migrations"
:jdbc-url "jdbc:postgresql://localhost:5432/automigrate?user=automigrate&password=<PASSWORD>"
:number 4}
db (db-util/db-conn (:jdbc-url config))
migrations-files (file-util/list-files (:migrations-dir config))
models-file (:models-file config)]
(try+
(->> (read-models models-file))
;(->> (make-migration* models-file migrations-files))
;(make-next-migration config)
; (flatten))
(catch [:type ::s/invalid] e
(print (:message e))
(:data e)))))
(comment
(let [config {:models-file "src/automigrate/models.edn"
:migrations-dir "src/automigrate/migrations"
:jdbc-url "jdbc:postgresql://localhost:5432/automigrate?user=automigrate&password=<PASSWORD>"}
db (db-util/db-conn (:jdbc-url config))]
(make-migration config)))
| true |
(ns automigrate.migrations
"Module for applying changes to migrations and db.
Also contains tools for inspection of db state by migrations
and state of migrations itself."
(:require [next.jdbc :as jdbc]
#_{:clj-kondo/ignore [:unused-namespace]}
[clojure.spec.alpha :as s]
[clojure.java.io :as io]
[clojure.string :as str]
[clojure.set :as set]
[clojure.pprint :as pprint]
#_{:clj-kondo/ignore [:unused-referred-var]}
[slingshot.slingshot :refer [throw+ try+]]
[differ.core :as differ]
[weavejester.dependency :as dep]
[automigrate.actions :as actions]
[automigrate.models :as models]
[automigrate.errors :as errors]
[automigrate.sql :as sql]
[automigrate.schema :as schema]
[automigrate.util.file :as file-util]
[automigrate.util.db :as db-util]
[automigrate.util.spec :as spec-util]
[automigrate.util.model :as model-util])
(:import [java.io FileNotFoundException]))
(def ^:private DROPPED-ENTITY-VALUE 0)
(def ^:private DEFAULT-ROOT-NODE :root)
(def ^:private AUTO-MIGRATION-PREFIX "auto")
(def ^:private FORWARD-DIRECTION :forward)
(def ^:private BACKWARD-DIRECTION :backward)
(def ^:private AUTO-MIGRATION-EXT :edn)
(def ^:private SQL-MIGRATION-EXT :sql)
(def EMPTY-SQL-MIGRATION-TYPE :empty-sql)
(def ^:private FORWARD-MIGRATION-DELIMITER "-- FORWARD")
(def ^:private BACKWARD-MIGRATION-DELIMITER "-- BACKWARD")
(def ^:private SQL-MIGRATION-TEMPLATE
(format "%s\n\n\n%s\n" FORWARD-MIGRATION-DELIMITER BACKWARD-MIGRATION-DELIMITER))
(defn- get-migration-type
"Return migration type by migration file extension."
[migration-name]
(-> (str/split migration-name #"\.")
(last)
(keyword)))
(defmulti read-migration #(get-migration-type (:file-name %)))
(defmethod read-migration :default
;"Return models' definitions."
[{:keys [file-name migrations-dir]}]
(let [migration-file-path (file-util/join-path migrations-dir file-name)]
(file-util/read-edn migration-file-path)))
(defn- get-forward-sql-migration
[migration]
(-> (str/split migration (re-pattern BACKWARD-MIGRATION-DELIMITER))
(first)
(str/replace (re-pattern FORWARD-MIGRATION-DELIMITER) "")
(vector)))
(defn- get-backward-sql-migration
[migration]
(-> (str/split migration (re-pattern BACKWARD-MIGRATION-DELIMITER))
(last)
(vector)))
(defmethod read-migration SQL-MIGRATION-EXT
; Return model definitions.
[{:keys [file-name migrations-dir]}]
(-> (file-util/join-path migrations-dir file-name)
(slurp)
(vector)))
(defn- create-migrations-dir
"Create migrations root dir if it is not exist."
[migrations-dir]
(when-not (.isDirectory (io/file migrations-dir))
(.mkdir (java.io.File. migrations-dir))))
(defn- save-migration!
"Save migration to db after applying it."
[db migration-name migrations-table]
(->> {:insert-into migrations-table
:values [{:name migration-name}]}
(db-util/exec! db))
(println (str "Successfully migrated: " migration-name)))
(defn- delete-migration!
"Delete unapplied migration from db."
[db migration-name migrations-table]
(->> {:delete-from migrations-table
:where [:= :name migration-name]}
(db-util/exec! db))
(println (str "Successfully unapplied: " migration-name)))
(defn- get-migration-name
"Return migration name without file format."
[file-name]
(first (str/split file-name #"\.")))
(defn- get-migration-number
[migration-name]
(-> (str/split migration-name #"_")
(first)
(Integer/parseInt)))
(defn- validate-migration-numbers
[migrations]
(let [duplicated-numbers (->> migrations
(map get-migration-number)
(frequencies)
(filter #(> (val %) 1))
(keys)
(set))]
(when (seq duplicated-numbers)
(throw+ {:type ::duplicated-migration-numbers
:numbers duplicated-numbers
:message (str "There are duplicated migration numbers: "
(str/join ", " duplicated-numbers)
". Please resolve the conflict and try again.")}))
migrations))
(defn- migrations-list
"Get migrations' files list."
[migrations-dir]
(->> (file-util/list-files migrations-dir)
(map #(.getName %))
(sort)
(validate-migration-numbers)))
(defn- next-migration-number
[file-names]
; migration numbers starting from 1
(file-util/zfill (inc (count file-names))))
(defn- extract-item-name
[action]
(condp contains? (:action action)
#{actions/CREATE-TABLE-ACTION
actions/DROP-TABLE-ACTION} (:model-name action)
#{actions/ADD-COLUMN-ACTION
actions/DROP-COLUMN-ACTION
actions/ALTER-COLUMN-ACTION} (:field-name action)
#{actions/CREATE-INDEX-ACTION
actions/DROP-INDEX-ACTION
actions/ALTER-INDEX-ACTION} (:index-name action)))
(defn- get-action-name
[action]
(let [action-name (-> action :action name)
item-name (-> action extract-item-name name)]
(str/join #"_" [AUTO-MIGRATION-PREFIX action-name item-name])))
(defn- get-next-migration-name
"Return given custom name with underscores or first action name."
[actions custom-name]
(let [migration-name (or custom-name (get-action-name (first actions)))]
(str/replace migration-name #"-" "_")))
(defn- new-field?
[old-model fields-diff field-name]
(and (contains? fields-diff field-name)
(not (contains? (:fields old-model) field-name))))
(defn- drop-field?
[fields-removals field-name]
(= DROPPED-ENTITY-VALUE (get fields-removals field-name)))
(defn- options-dropped
[removals]
(-> (filter #(= DROPPED-ENTITY-VALUE (val %)) removals)
(keys)
(set)
(set/difference #{:type})))
(defn- assoc-option-to-add
[old-field changes option-key new-option-value]
(let [old-option-value (if (contains? old-field option-key)
(get old-field option-key)
model-util/EMPTY-OPTION)]
(-> changes
(assoc-in [option-key :from] old-option-value)
(assoc-in [option-key :to] new-option-value))))
(defn- assoc-option-to-drop
[old-field changes option-key]
(-> changes
(assoc-in [option-key :from] (get old-field option-key))
(assoc-in [option-key :to] model-util/EMPTY-OPTION)))
(defn- get-changes
[old-options options-to-add options-to-drop]
(as-> {} $
(reduce-kv (partial assoc-option-to-add old-options) $ options-to-add)
(reduce (partial assoc-option-to-drop old-options) $ options-to-drop)))
(defn- get-options-to-add
"Update option in diff to option from new model if diff is a vector.
It is a caveat how differ lib works with changes in vectors. For example, it uses
in case when we change field type [:varchar 100] to [:varchar 200]. In diff we see [1 200]
cause just second item of a vector has been changed. So for us it is important to have whole
new type in options to add, and we just copy it from new model."
[fields-diff field-name new-model]
(let [field-options-diff (get fields-diff field-name)
fields-options-new (get-in new-model [:fields field-name])]
(reduce-kv
(fn [m k v]
(if (vector? v)
(assoc m k (get fields-options-new k))
(assoc m k v)))
{}
field-options-diff)))
(defn- parse-fields-diff
"Return field's migrations for model."
[{:keys [model-diff removals old-model new-model model-name]}]
(let [fields-diff (:fields model-diff)
fields-removals (:fields removals)
changed-fields (-> (set (keys fields-diff))
(set/union (set (keys fields-removals))))]
(for [field-name changed-fields
:let [options-to-add (get-options-to-add fields-diff field-name new-model)
options-to-drop (get fields-removals field-name)
new-field?* (new-field? old-model fields-diff field-name)
drop-field?* (drop-field? fields-removals field-name)
field-options-old (get-in old-model [:fields field-name])
field-options-new (get-in new-model [:fields field-name])]]
(cond
new-field?* {:action actions/ADD-COLUMN-ACTION
:field-name field-name
:model-name model-name
:options options-to-add}
drop-field?* {:action actions/DROP-COLUMN-ACTION
:field-name field-name
:model-name model-name}
:else {:action actions/ALTER-COLUMN-ACTION
:field-name field-name
:model-name model-name
:options field-options-new
:changes (get-changes field-options-old
options-to-add
(options-dropped options-to-drop))}))))
(defn- new-model?
[alterations old-schema model-name]
(and (contains? alterations model-name)
(not (contains? old-schema model-name))))
(defn- drop-model?
[removals model-name]
(= DROPPED-ENTITY-VALUE (get removals model-name)))
(defn- read-models
"Read and validate models from file."
[models-file]
(->> models-file
(file-util/read-edn)
(models/->internal-models)))
(defn- action-dependencies
"Return dependencies as vector of vectors for an action or nil.
return: [[:model-name :field-name] ...]"
[action]
(let [changes-to-add (model-util/changes-to-add (:changes action))
fk (condp contains? (:action action)
#{actions/ADD-COLUMN-ACTION} (get-in action [:options :foreign-key])
#{actions/ALTER-COLUMN-ACTION} (:foreign-key changes-to-add)
nil)]
(->> (condp contains? (:action action)
#{actions/ADD-COLUMN-ACTION
actions/ALTER-COLUMN-ACTION
actions/DROP-COLUMN-ACTION} (cond-> [[(:model-name action) nil]]
(some? fk) (conj (model-util/kw->vec fk)))
#{actions/CREATE-TABLE-ACTION} (mapv (comp model-util/kw->vec :foreign-key)
(vals (:fields action)))
#{actions/CREATE-INDEX-ACTION
actions/ALTER-INDEX-ACTION} (mapv (fn [field] [(:model-name action) field])
(get-in action [:options :fields]))
[])
(remove nil?))))
(defn- parent-action?
"Check if action is parent to one with presented dependencies."
[deps action]
(let [model-names (set (map first deps))]
(condp contains? (:action action)
#{actions/CREATE-TABLE-ACTION} (contains? model-names (:model-name action))
#{actions/ADD-COLUMN-ACTION
actions/ALTER-COLUMN-ACTION} (some
#(and (= (:model-name action) (first %))
(= (:field-name action) (last %)))
deps)
false)))
(defn- assoc-action-deps
"Assoc dependencies to graph by actions."
[actions graph next-action]
(let [deps (action-dependencies next-action)
parent-actions (filter (partial parent-action? deps) actions)]
(as-> graph g
(dep/depend g next-action DEFAULT-ROOT-NODE)
(reduce #(dep/depend %1 next-action %2) g parent-actions))))
(defn- compare-actions
"Secondary comparator for sorting actions in migration the same way."
[a b]
(< (hash a) (hash b)))
(defn- sort-actions
"Apply order for migration's actions by foreign key between models."
[actions]
(->> actions
(reduce (partial assoc-action-deps actions) (dep/graph))
(dep/topo-sort compare-actions)
; drop first default root node `:root`
(drop 1)))
(defn- new-index?
[old-model indexes-diff index-name]
(and (contains? indexes-diff index-name)
(not (contains? (:indexes old-model) index-name))))
(defn- drop-index?
[indexes-removals index-name]
(= DROPPED-ENTITY-VALUE (get indexes-removals index-name)))
(defn- parse-indexes-diff
"Return index's migrations for model."
[model-diff removals old-model new-model model-name]
(let [indexes-diff (:indexes model-diff)
indexes-removals (if (= DROPPED-ENTITY-VALUE (:indexes removals))
(->> (:indexes old-model)
(reduce-kv (fn [m k _v] (assoc m k DROPPED-ENTITY-VALUE)) {}))
(:indexes removals))
changed-indexes (-> (set (keys indexes-diff))
(set/union (set (keys indexes-removals))))]
(for [index-name changed-indexes
:let [options-to-add (get indexes-diff index-name)
options-to-alter (get-in new-model [:indexes index-name])
new-index?* (new-index? old-model indexes-diff index-name)
drop-index?* (drop-index? indexes-removals index-name)]]
(cond
new-index?* {:action actions/CREATE-INDEX-ACTION
:index-name index-name
:model-name model-name
:options options-to-add}
drop-index?* {:action actions/DROP-INDEX-ACTION
:index-name index-name
:model-name model-name}
:else {:action actions/ALTER-INDEX-ACTION
:index-name index-name
:model-name model-name
:options options-to-alter}))))
(defn- make-migration*
[models-file migrations-files]
(let [old-schema (schema/current-db-schema migrations-files)
new-schema (read-models models-file)
[alterations removals] (differ/diff old-schema new-schema)
changed-models (-> (set (keys alterations))
(set/union (set (keys removals))))
actions (for [model-name changed-models
:let [old-model (get old-schema model-name)
new-model (get new-schema model-name)
model-diff (get alterations model-name)
model-removals (get removals model-name)
new-model?* (new-model? alterations old-schema model-name)
drop-model?* (drop-model? removals model-name)]]
(concat
(cond
new-model?* [{:action actions/CREATE-TABLE-ACTION
:model-name model-name
:fields (:fields model-diff)}]
drop-model?* [{:action actions/DROP-TABLE-ACTION
:model-name model-name}]
:else (parse-fields-diff {:model-diff model-diff
:removals model-removals
:old-model old-model
:new-model new-model
:model-name model-name}))
(parse-indexes-diff model-diff model-removals old-model new-model model-name)))]
(->> actions
(flatten)
(sort-actions)
(actions/->migrations))))
(defn- get-next-migration-file-name
"Return next migration file name based on existing migrations."
[{:keys [migration-type migrations-dir next-migration-name]}]
(let [migration-names (migrations-list migrations-dir)
migration-number (next-migration-number migration-names)
migration-file-name (str migration-number "_" next-migration-name)
migration-file-with-ext (str migration-file-name "." (name migration-type))]
(file-util/join-path migrations-dir migration-file-with-ext)))
(defn- auto-migration?
"Return true if migration has been created automatically false otherwise."
[f]
(str/ends-with? (.getName f) (str "." (name AUTO-MIGRATION-EXT))))
(defn- make-next-migration
"Return actions for next migration."
[{:keys [models-file migrations-dir]}]
(->> (file-util/list-files migrations-dir)
(filter auto-migration?)
(make-migration* models-file)
(flatten)
(seq)))
(defn- get-action-name-verbose
[action]
(let [action-name (-> action :action name (str/replace #"-" " "))
item-name (-> action extract-item-name name (str/replace #"-" "_"))
model-name (:model-name action)
at-model (when-not (contains? #{actions/CREATE-TABLE-ACTION
actions/DROP-TABLE-ACTION}
(:action action))
(str "in table " (-> model-name name (str/replace #"-" "_"))))
full-action-name-vec (cond-> [action-name item-name]
(some? at-model) (conj at-model))]
(str/join " " full-action-name-vec)))
(defn- print-action-names
[actions]
(let [action-names (mapv (comp #(str " - " %)
get-action-name-verbose)
actions)]
(file-util/safe-println (cons "Actions:" action-names) "")))
(defmulti make-migration :type)
(defmethod make-migration :default
; Make new migration based on models definitions automatically.
[{:keys [models-file migrations-dir]
custom-migration-name :name}]
(try+
(if-let [next-migration (make-next-migration {:models-file models-file
:migrations-dir migrations-dir})]
(let [_ (create-migrations-dir migrations-dir)
next-migration-name (get-next-migration-name next-migration custom-migration-name)
migration-file-name-full-path (get-next-migration-file-name
{:migration-type AUTO-MIGRATION-EXT
:migrations-dir migrations-dir
:next-migration-name next-migration-name})]
(spit migration-file-name-full-path
(with-out-str
(pprint/pprint next-migration)))
(println (str "Created migration: " migration-file-name-full-path))
; Print all actions from migration in human-readable format
(print-action-names next-migration))
(println "There are no changes in models."))
(catch [:type ::s/invalid] e
(file-util/prn-err e))
(catch #(contains? #{::models/missing-referenced-model
::models/missing-referenced-field
::models/referenced-field-is-not-unique
::models/fk-fields-have-different-types} (:type %)) e
(-> e
(errors/custom-error->error-report)
(file-util/prn-err)))
(catch [:reason ::dep/circular-dependency] e
(-> {:title "MIGRATION ERROR"
:message (format (str "Circular dependency between two migration actions: \n %s\nand\n %s\n\n"
"Please split actions by different migrations.")
(pr-str (:dependency e))
(pr-str (:node e)))}
(errors/custom-error->error-report)
(file-util/prn-err)))
(catch FileNotFoundException e
(-> {:title "ERROR"
:message (format "Missing file:\n\n %s" (ex-message e))}
(errors/custom-error->error-report)
(file-util/prn-err)))))
(defmethod make-migration EMPTY-SQL-MIGRATION-TYPE
; Make new migrations based on models definitions automatically.
[{next-migration-name :name
migrations-dir :migrations-dir}]
(try+
(when (empty? next-migration-name)
(throw+ {:type ::missing-migration-name
:message "Missing migration name."}))
(let [_ (create-migrations-dir migrations-dir)
next-migration-name* (str/replace next-migration-name #"-" "_")
migration-file-name-full-path (get-next-migration-file-name
{:migration-type SQL-MIGRATION-EXT
:migrations-dir migrations-dir
:next-migration-name next-migration-name*})]
(spit migration-file-name-full-path SQL-MIGRATION-TEMPLATE)
(println (str "Created migration: " migration-file-name-full-path)))
(catch [:type ::s/invalid] e
(file-util/prn-err e))
(catch #(contains? #{::missing-migration-name
::duplicated-migration-numbers} (:type %)) e
(-> e
(errors/custom-error->error-report)
(file-util/prn-err)))))
(defn- get-migration-by-number
"Return migration file name by number."
[migration-names number]
{:pre [(s/assert (s/coll-of string?) migration-names)
(s/assert integer? number)]}
(->> migration-names
(filter #(= number (get-migration-number %)))
(first)))
(defmulti explain*
(juxt #(get-migration-type (:file-name %)) :direction))
(defn- add-transaction-to-explain
[actions]
(concat ["BEGIN"] actions ["COMMIT;"]))
(defmethod explain* [AUTO-MIGRATION-EXT FORWARD-DIRECTION]
; Generate raw sql from migration.
[{:keys [file-name migrations-dir] :as _args}]
(->> (read-migration {:file-name file-name
:migrations-dir migrations-dir})
(mapv sql/->sql)
(flatten)
(add-transaction-to-explain)
(file-util/safe-println)))
(defmethod explain* [AUTO-MIGRATION-EXT BACKWARD-DIRECTION]
[_]
(println "WARNING: backward migration isn't fully implemented yet."))
(defmethod explain* [SQL-MIGRATION-EXT FORWARD-DIRECTION]
; Generate raw sql from migration for forward direction.
[{:keys [file-name migrations-dir] :as _args}]
(->> (read-migration {:file-name file-name
:migrations-dir migrations-dir})
(first)
(get-forward-sql-migration)
(file-util/safe-println)))
(defmethod explain* [SQL-MIGRATION-EXT BACKWARD-DIRECTION]
; Generate raw sql from migration for backward direction.
[{:keys [file-name migrations-dir] :as _args}]
(->> (read-migration {:file-name file-name
:migrations-dir migrations-dir})
(first)
(get-backward-sql-migration)
(file-util/safe-println)))
(defn explain
; Generate raw sql from migration.
[{:keys [migrations-dir number direction] :or {direction FORWARD-DIRECTION} :as _args}]
(try+
(let [migration-names (migrations-list migrations-dir)
file-name (get-migration-by-number migration-names number)]
(when-not (some? file-name)
(throw+ {:type ::no-migration-by-number
:number number
:message (format "Missing migration by number %s" (str number))}))
(file-util/safe-println
[(format "SQL for migration %s:\n" file-name)])
(explain* {:file-name file-name
:migrations-dir migrations-dir
:direction direction}))
(catch [:type ::s/invalid] e
(file-util/prn-err e))
(catch #(contains? #{::no-migration-by-number
::duplicated-migration-numbers} (:type %)) e
(-> e
(errors/custom-error->error-report)
(file-util/prn-err)))))
(defn- already-migrated
"Get names of previously migrated migrations from db."
[db migrations-table]
(try
(->> {:select [:name]
:from [migrations-table]
:order-by [:created-at]}
(db-util/exec! db)
(map :name))
(catch Exception e
(let [msg (ex-message e)
table-exists-err-pattern #"relation .+ does not exist"]
(if (re-find table-exists-err-pattern msg)
(throw+ {:type ::no-migrations-table
:message "Migrations table does not exist."})
(throw+ {:type ::unexpected-db-error
:data (or (ex-message e) (str e))
:message "Unexpected db error."}))))))
(defmulti exec-action! (juxt :migration-type :direction))
(defmethod exec-action! [AUTO-MIGRATION-EXT FORWARD-DIRECTION]
[{:keys [db action]}]
(let [formatted-action (spec-util/conform ::sql/->sql action)]
(if (sequential? formatted-action)
(doseq [sub-action formatted-action]
(db-util/exec! db sub-action))
(db-util/exec! db formatted-action))))
(defmethod exec-action! [AUTO-MIGRATION-EXT BACKWARD-DIRECTION]
[_])
; TODO: implement backward migration!
(defmethod exec-action! [SQL-MIGRATION-EXT FORWARD-DIRECTION]
[{:keys [db action]}]
(->> action
(get-forward-sql-migration)
(db-util/exec-raw! db)))
(defmethod exec-action! [SQL-MIGRATION-EXT BACKWARD-DIRECTION]
[{:keys [db action]}]
(->> action
(get-backward-sql-migration)
(db-util/exec-raw! db)))
(defn- exec-actions!
"Perform list of actions on a database."
[{:keys [db actions direction migration-type]}]
(when (and (= AUTO-MIGRATION-EXT migration-type)
(= BACKWARD-DIRECTION direction))
(println (str "WARNING: backward migration isn't fully implemented yet. "
"Database schema has not been changed!")))
(doseq [action actions]
(exec-action! {:db db
:action action
:direction direction
:migration-type migration-type})))
(defn- current-migration-number
"Return current migration name."
[migrated]
(if (seq migrated)
(let [res (->> (last migrated)
(get-migration-number))]
res)
0))
(defn- detailed-migration
"Return detailed info for each migration file."
[file-name]
{:file-name file-name
:migration-name (get-migration-name file-name)
:number-int (get-migration-number file-name)
:migration-type (get-migration-type file-name)})
(defn- get-detailed-migrations-to-migrate
"Return migrations to migrate and migration direction."
[all-migrations migrated target-number]
(if-not (seq all-migrations)
{}
(let [all-migrations-detailed (map detailed-migration all-migrations)
all-numbers (set (map :number-int all-migrations-detailed))
last-number (apply max all-numbers)
target-number* (or target-number last-number)
current-number (current-migration-number migrated)
direction (if (> target-number* current-number)
FORWARD-DIRECTION
BACKWARD-DIRECTION)]
(when-not (or (contains? all-numbers target-number*)
(= 0 target-number*))
(throw+ {:type ::invalid-target-migration-number
:number target-number*
:message "Invalid target migration number."}))
(if (= target-number* current-number)
[]
(condp contains? direction
#{FORWARD-DIRECTION} {:to-migrate (->> all-migrations-detailed
(drop-while #(>= current-number (:number-int %)))
(take-while #(>= target-number* (:number-int %))))
:direction direction}
#{BACKWARD-DIRECTION} {:to-migrate (->> all-migrations-detailed
(drop-while #(>= target-number* (:number-int %)))
(take-while #(>= current-number (:number-int %)))
(sort-by :number-int >))
:direction direction})))))
(defn migrate
"Run migration on a db."
[{:keys [migrations-dir jdbc-url number migrations-table]
:or {migrations-table db-util/MIGRATIONS-TABLE}}]
(try+
(let [db (db-util/db-conn jdbc-url)
_ (db-util/create-migrations-table db migrations-table)
migrated (already-migrated db migrations-table)
all-migrations (migrations-list migrations-dir)
{:keys [to-migrate direction]}
(get-detailed-migrations-to-migrate all-migrations migrated number)]
(if (seq to-migrate)
(doseq [{:keys [migration-name file-name migration-type]} to-migrate]
(if (= direction FORWARD-DIRECTION)
(println (str "Migrating: " migration-name "..."))
(println (str "Unapplying: " migration-name "...")))
(jdbc/with-transaction [tx db]
(let [actions (read-migration {:file-name file-name
:migrations-dir migrations-dir})]
(exec-actions! {:db tx
:actions actions
:direction direction
:migration-type migration-type}))
(if (= direction FORWARD-DIRECTION)
(save-migration! db migration-name migrations-table)
(delete-migration! db migration-name migrations-table))))
(println "Nothing to migrate.")))
(catch [:type ::s/invalid] e
(file-util/prn-err e))
(catch #(contains? #{::duplicated-migration-numbers
::invalid-target-migration-number} (:type %)) e
(-> e
(errors/custom-error->error-report)
(file-util/prn-err)))))
(defn- get-already-migrated-migrations
[db migrations-table]
(try+
(set (already-migrated db migrations-table))
(catch [:type ::no-migrations-table]
; There is no migrated migrations if table doesn't exist.
[])))
(defn list-migrations
"Print migration list with status."
[{:keys [migrations-dir jdbc-url migrations-table]
:or {migrations-table db-util/MIGRATIONS-TABLE}}]
; TODO: reduce duplication with `migrate` fn!
(try+
(let [migration-names (migrations-list migrations-dir)
db (db-util/db-conn jdbc-url)
migrated (set (get-already-migrated-migrations db migrations-table))]
(if (seq migration-names)
(do
(println "Existing migrations:\n")
(doseq [file-name migration-names
:let [migration-name (get-migration-name file-name)
sign (if (contains? migrated migration-name) "✓" " ")]]
(file-util/safe-println [(format "[%s] %s" sign file-name)])))
(println "Migrations not found.")))
(catch [:type ::s/invalid] e
(file-util/prn-err e))
(catch #(contains? #{::duplicated-migration-numbers
::no-migrations-table
::unexpected-db-error} (:type %)) e
(-> e
(errors/custom-error->error-report)
(file-util/prn-err)))))
; Comments for development.
(comment
(let [config {:models-file "src/automigrate/models.edn"
;:models-file "test/automigrate/models/feed_add_column.edn"
:migrations-dir "src/automigrate/migrations"
:jdbc-url "jdbc:postgresql://localhost:5432/automigrate?user=automigrate&password=PI:PASSWORD:<PASSWORD>END_PI"
:number 4}
db (db-util/db-conn (:jdbc-url config))
migrations-files (file-util/list-files (:migrations-dir config))
models-file (:models-file config)]
(try+
(->> (read-models models-file))
;(->> (make-migration* models-file migrations-files))
;(make-next-migration config)
; (flatten))
(catch [:type ::s/invalid] e
(print (:message e))
(:data e)))))
(comment
(let [config {:models-file "src/automigrate/models.edn"
:migrations-dir "src/automigrate/migrations"
:jdbc-url "jdbc:postgresql://localhost:5432/automigrate?user=automigrate&password=PI:PASSWORD:<PASSWORD>END_PI"}
db (db-util/db-conn (:jdbc-url config))]
(make-migration config)))
|
[
{
"context": "nt\n (str \"AssistantBot/1.2.0 (https://github.com/KyleErhabor/assistant; [email protected])\"\n \" Cloju",
"end": 23778,
"score": 0.9918544888496399,
"start": 23767,
"tag": "USERNAME",
"value": "KyleErhabor"
},
{
"context": "t/1.2.0 (https://github.com/KyleErhabor/assistant; [email protected])\"\n \" Clojure/\" (clojure-version) \";\"\n ",
"end": 23811,
"score": 0.9999263286590576,
"start": 23790,
"tag": "EMAIL",
"value": "[email protected]"
}
] |
src/assistant/commands.clj
|
LiteLT/assistant
| 2 |
(ns assistant.commands
"Command facilities for Assistant.
Commands are declared as functions with `^:command`. The function name, documentation, and metadata is used to
extract the data about a command to the `commands` and `discord-commands` vars. There's no special handling for
subcommands or subcommand groups. Conventionally, they're declared as regular functions following the format
command-group-subcommand. If the subcommand doesn't have a group, it should be excluded from the name. For example,
tag-get rather than tag-?-get."
(:refer-clojure :exclude [range])
(:require [clojure.core :as c]
[clojure.core.async :refer [>! <! chan go timeout]]
[clojure.edn :as edn]
[clojure.set :refer [rename-keys]]
[clojure.string :as str]
[clojure.walk :refer [postwalk]]
[assistant.db :as db]
[clj-http.client :as http]
[datascript.core :as d]
[discljord.cdn :as ds.cdn]
[discljord.formatting :as ds.fmt]
[discljord.messaging :refer [bulk-delete-messages! create-guild-ban! create-interaction-response!
delete-message! delete-original-interaction-response! get-guild!
get-channel-messages!]]
[discljord.messaging.specs :refer [command-option-types interaction-response-types]]
[discljord.permissions :as ds.p]
[hickory.core :as hick]
[hickory.select :as hick.s]
[tick.core :as tick]))
(defn option->option
[data & [k & more]]
;; Using (get ... k) instead of (k ...) to avoid callers triggering an error when providing no arguments.
(if-let [option (get (:options data) k)]
(if more
(recur option more)
option)))
(defn interaction->option
[interaction & ks]
(apply option->option (:data interaction) ks))
(defn interaction->value
[interaction & ks]
(:value (apply interaction->option interaction ks)))
(defn respond
"Responds to an interaction with the connection, ID, and token supplied."
[conn interaction & args]
(apply create-interaction-response! conn (:id interaction) (:token interaction) args))
(defn resize-image
"Resizes an image if `url` is not `nil`."
[url]
(and url (ds.cdn/resize url 4096)))
(defn ^:command avatar
"Gets a user's avatar."
{:options [{:type (:user command-option-types)
:name "user"
:description "The user to get the avatar of."
:required true}
{:type (:integer command-option-types)
:name "size"
:description "The maximum size of the avatar."
:choices (map #(zipmap [:name :value] (repeat %)) [16 32 64 128 256 512 1024 2048 4096])}]}
[conn interaction]
(let [user (get (:users (:resolved (:data interaction)))
(interaction->value interaction :user))
size (or (interaction->value interaction :size) 4096)]
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:content (ds.cdn/resize (ds.cdn/effective-user-avatar user) size)})))
(defn ^:command ban
"Bans a user."
{:options (concat [{:type (:user command-option-types)
:name "user"
:description "The user to ban."
:required true}
{:type (:string command-option-types)
:name "reason"
:description "The reason for the ban."}
;; This option is probably confusing to users.
{:type (:integer command-option-types)
:name "messages"
:description "Deletes messages younger than the number of days specified."
:min_value 1
:max_value 7}]
(for [unit [:seconds :minutes :hours :days :weeks :months :years]]
{:type (:integer command-option-types)
:name unit
:description (str "The number of " (name unit) " to ban the user for.")}))}
[conn interaction]
(go
(let [user (interaction->value interaction :user)
reason (interaction->value interaction :reason)
messages (interaction->value interaction :messages)
;; Duration stuff.
seconds (interaction->value interaction :seconds)
minutes (interaction->value interaction :minutes)
hours (interaction->value interaction :hours)
days (interaction->value interaction :days)
weeks (interaction->value interaction :weeks)
months (interaction->value interaction :months)
years (interaction->value interaction :years)
;; This sucks.
duration (cond-> (tick/new-duration 0 :seconds)
seconds (tick/+ (tick/new-duration seconds :seconds))
minutes (tick/+ (tick/new-duration minutes :minutes))
hours (tick/+ (tick/new-duration hours :hours))
days (tick/+ (tick/new-duration days :days))
weeks (tick/+ (tick/new-duration (* 7 weeks) :days))
months (tick/+ (tick/new-duration (* 30 months) :days))
years (tick/+ (tick/new-duration (* 365 years) :days)))]
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:content (if (ds.p/has-permission-flag? :ban-members (:permissions (:member interaction)))
(if (<! (create-guild-ban! conn (:guild-id interaction) user
:audit-reason reason
:delete-message-days messages))
(do (d/transact! db/conn [(cond-> {:ban/user user
:ban/guild (:guild-id interaction)
:ban/timestamp (tick/instant)}
(not (or (.isZero duration) (.isNegative duration))) (assoc :ban/duration duration))])
"Banned.")
"Ban failed.")
"Missing Ban Members permission.")}))))
(defn ^:command purge
"Deletes messages from a channel."
{:options [{:type (:integer command-option-types)
:name "amount"
:description "The number of messages to delete."
:required true
:min_value 2
:max_value 100}
{:type (:user command-option-types)
:name "user"
;; Although the user may not be a member of the guild, they may have left messages in the channel.
:description "The user to delete messages from."}]}
[conn interaction]
(go
(if (ds.p/has-permission-flag? :manage-messages (:permissions (:member interaction)))
(let [amount (interaction->value interaction :amount)
user (interaction->value interaction :user)
msgs (transduce (comp (filter #(>= 14 (tick/days (tick/between (tick/instant (:timestamp %))
(tick/instant)))))
(filter (complement :pinned))
(filter #(or (nil? user) (= user (:id (:author %)))))
(map :id))
conj
(<! (get-channel-messages! conn (:channel-id interaction)
:limit amount)))]
(when (<! (respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:content (or (case (count msgs)
0 "No messages to purge."
1 (if (<! (delete-message! conn (:channel-id interaction) (first msgs)))
"Deleted one message.")
(if (<! (bulk-delete-messages! conn (:channel-id interaction) msgs))
"Purge successful."))
"Purge failed.")}))
(<! (timeout 2000))
(delete-original-interaction-response! conn (:application-id interaction) (:token interaction))))
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:content "Missing Manage Messages permission."}))))
(defn ^:command range
"Picks a random number from a range."
{:options [{:type (:integer command-option-types)
:name "max"
:description "The highest number."
:required true}
{:type (:integer command-option-types)
:name "min"
:description "The lowest number (defaults to 1)."}
{:type (:integer command-option-types)
:name "amount"
:description "The amount of numbers to pick (defaults to 1). May return less than requested."
:min_value 1}]}
[conn interaction]
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:content (let [high (interaction->value interaction :max)
low (or (interaction->value interaction :min) 1)
;; The output would've been clamped by 600, so there's no point in collecting the total
;; beyond that.
amount (min 600 (or (interaction->value interaction :amount) 1))
s (str/join " " (if (>= amount (- high low))
;; There's no point in running the randomizer (loop) if we know all
;; the numbers. Unfortunately, this optimization trick isn't useful
;; for values lower (e.g. 99 of 100).
(c/range low (inc high))
(let [amount (min amount (- high low))]
(sort (loop [nums #{}]
(if (= amount (count nums))
nums
(recur (conj nums (+ (long (rand (- (inc high) low)))
low)))))))))]
(cond
(= 0 (count s)) "No numbers."
(< 2000 (count s)) (str (subs s 0 1997) "...")
:else s))}))
(defn ^:command server
"Gets information about the server."
[conn interaction]
(go
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:embeds [(let [guild (<! (get-guild! conn (:guild-id interaction)
:with-counts true))
afk (:afk-channel-id guild)]
{:title (:name guild)
:url (:vanity-url-code guild)
:description (:description guild)
:thumbnail {:url (resize-image (ds.cdn/guild-icon guild))}
:image {:url (resize-image (ds.cdn/guild-banner guild))}
:fields (cond-> [{:name "Owner"
:value (ds.fmt/mention-user (:owner-id guild))
:inline true}
{:name "Members"
:value (str "~" (:approximate-member-count guild))
:inline true}
{:name "Roles"
:value (count (:roles guild))
:inline true}
{:name "Emojis"
:value (count (:emojis guild))
:inline true}]
afk (conj {:name "AFK Channel"
:value (let [mins (tick/minutes (tick/new-duration (:afk-timeout guild) :seconds))]
(str (ds.fmt/mention-channel afk)
" ("
(if (= mins 60)
"1 hour"
(str mins " minute" (if-not (= mins 1) \s)))
\)))
:inline true}))})]})))
(defn tagq*
"Queries the database for a tag by its `name`. `env` should be either `:tag/guild` or `:tag/user` with `id` being used
to match the value."
[patterns name env id]
(d/q '[:find (pull ?e ?patterns) .
:in $ ?patterns ?name ?env ?id
:where [?e :tag/name ?name]
[?e ?env ?id]] @db/conn patterns name env id))
(defn tagq-args [q interaction]
(q (if (:guild-id interaction)
:tag/guild
:tag/user) (or (:guild-id interaction) (:id (:user interaction)))))
(defn tagq
[name interaction patterns]
(tagq-args (partial tagq* patterns name) interaction))
(defn tag-autocomplete
"Handles tag autocompletion searching by name."
[conn interaction name]
(respond conn interaction (:application-command-autocomplete-result interaction-response-types)
:data {:choices (for [name (tagq-args (partial d/q
'[:find [?tag-name ...]
:in $ ?name ?env ?id
:where [?e :tag/name ?tag-name]
[?e ?env ?id]
[(clojure.string/lower-case ?tag-name) ?lower-tag-name]
[(clojure.string/includes? ?lower-tag-name ?name)]]
@db/conn (str/lower-case name))
interaction)]
{:name name
:value name})}))
(defn tag-get
"Subcommand for retrieving a tag by name."
[conn interaction]
(let [name (interaction->option interaction :get :name)]
(if (:focused name)
(tag-autocomplete conn interaction (:value name))
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data (if-let [tag (tagq (:value name) interaction [:tag/name :tag/content])]
{:embeds [{:title (:tag/name tag)
:description (:tag/content tag)}]}
{:content "Tag not found."})))))
(defn tag-create
"Subcommand for creating a tag with a name and content."
[conn interaction]
(go
(let [name (interaction->value interaction :create :name)
content (interaction->value interaction :create :content)]
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:content (if (tagq name interaction [])
"Tag already exists."
(do (d/transact! db/conn [(let [gid (:guild-id interaction)
uid (:id (:user interaction))]
(cond-> {:tag/name name
:tag/content content}
gid (assoc :tag/guild gid)
uid (assoc :tag/user uid)))])
"Tag created."))}))))
(defn tag-delete
"Subcommand for deleting a tag by name."
[conn interaction]
(let [name (interaction->option interaction :delete :name)]
(if (:focused name)
(tag-autocomplete conn interaction (:value name))
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:content (if-let [tag (tagq (:value name) interaction [:db/id])]
(do (d/transact! db/conn [[:db.fn/retractEntity (:db/id tag)]])
"Tag deleted.")
"Tag not found.")}))))
(defn ^:command tag
"Facilities for getting and managing message responses."
{:options [{:type (:sub-command command-option-types)
:name "get"
:description "Displays a tag."
:options [{:type (:string command-option-types)
:name "name"
:description "The name of the tag."
:required true
:autocomplete true}]}
{:type (:sub-command command-option-types)
:name "create"
:description "Creates a tag."
:options [{:type (:string command-option-types)
:name "name"
:description "The name of the tag."
:required true}
{:type (:string command-option-types)
:name "content"
:description "The contents of the tag."
:required true}]}
{:type (:sub-command command-option-types)
:name "delete"
:description "Deletes a tag."
:options [{:type (:string command-option-types)
:name "name"
:description "The name of the tag."
:required true
:autocomplete true}]}]}
[conn interaction]
(case (key (first (:options (:data interaction))))
:get (tag-get conn interaction)
:create (tag-create conn interaction)
:delete (tag-delete conn interaction)))
(defonce trivia-categories (reduce #(assoc %1 (:name %2) (:id %2)) {}
;; In case Open Trivia DB adds more than 25.
(take 25 (:trivia_categories (:body (http/get "https://opentdb.com/api_category.php" {:as :json}))))))
(defn ^:command trivia
"Runs a trivia."
{:options [{:type (:string command-option-types)
:name "category"
:description "The category the question belongs to."
:choices (map #(zipmap [:name :value] (repeat %)) (keys trivia-categories))}
{:type (:string command-option-types)
:name "difficulty"
:description "The difficulty of the question."
:choices (map #(zipmap [:name :value] (repeat %)) ["Easy" "Medium" "Hard"])}
{:type (:string command-option-types)
:name "type"
:description "The amount of answers the question should have."
:choices (map #(zipmap [:name :value] (repeat %)) ["Multiple Choice" "True/False"])}]}
[conn interaction]
(go
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data (if (= 3 (:type interaction))
{:content (let [data (:data interaction)
answer (first (:values data))]
(str answer "—" (if (= answer (:custom-id data))
"Correct! 🎉"
"Wrong. 😔")))
:flags (bit-shift-left 1 6)}
(let [res (chan)
category (interaction->value interaction :category)
difficulty (interaction->value interaction :difficulty)
type (interaction->value interaction :type)]
(http/get "https://opentdb.com/api.php"
{:as :json
:async? true
:query-params {:amount 1
:category (trivia-categories category)
:difficulty (if difficulty
(str/lower-case difficulty))
:type (case type
"Multiple Choice" "multiple"
"True/False" "boolean"
nil)}}
#(go (>! res %))
(constantly nil))
(let [trivia (first (:results (postwalk #(if (string? %)
;; For some reason, Open Trivia DB corrupts the HTML
;; entity encoding.
(.text (first (hick/parse-fragment (str/replace % "amp;" ""))))
%) (:body (<! res)))))]
{:content (:question trivia)
:components [{:type 1
:components [{:type 3
:custom_id (:correct_answer trivia)
:options (for [answer (if (= "boolean" (:type trivia))
;; It's often annoying to have boolean
;; answers shuffled, so we're going to
;; keep them in the same order. If you've
;; ever played Kahoot, you know the pain.
["True" "False"]
(shuffle (conj (:incorrect_answers trivia) (:correct_answer trivia))))]
{:label answer
:value answer})}]}]}))))))
(defonce wm-user-agent
(str "AssistantBot/1.2.0 (https://github.com/KyleErhabor/assistant; [email protected])"
" Clojure/" (clojure-version) ";"
" clj-http/" (-> (edn/read-string (slurp "deps.edn"))
:deps
('clj-http/clj-http)
:mvn/version)))
(defn wp-snippet-content
"Converts HTML in an article snippet into Markdown. Currently only transforms `<span class=searchmatch ...>` into
`**...**`."
[snippet]
(str/join (for [fragment (hick/parse-fragment snippet)]
(if (instance? org.jsoup.nodes.TextNode fragment)
(str fragment)
(->> fragment
hick/as-hickory
(hick.s/select (hick.s/child (hick.s/and (hick.s/tag :span)
(hick.s/class :searchmatch))))
first
:content
first
ds.fmt/bold)))))
(defn ^:command wikipedia
"Searches Wikipedia."
{:options [{:type (:string command-option-types)
:name "query"
:description "The terms to search for."
:required true}]}
[conn interaction]
(go
(let [res (chan)
query (interaction->value interaction :query)]
(http/get "https://en.wikipedia.org/w/api.php" {:as :json
:async? true
:headers {:User-Agent wm-user-agent}
:query-params {:action "query"
:format "json"
:list "search"
:srsearch query
:srnamespace 0}}
#(go (>! res %))
(constantly nil))
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:embeds [{:title "Results"
:fields (for [result (:search (:query (:body (<! res))))]
{:name (:title result)
:value (wp-snippet-content (:snippet result))})}]}))))
(def commands
"A map of keywordized command names to command details conforming to the [Create Global Application Command](https://discord.com/developers/docs/interactions/application-commands#create-global-application-command)
endpoint."
(reduce-kv (fn [m k v]
(let [meta (meta v)]
(if (:command meta)
(assoc m (keyword k) (-> meta
(select-keys [:default-permission :doc :options :required :type])
(rename-keys {:doc :description})
(assoc :fn v)))
m))) {} (ns-publics *ns*)))
(def discord-commands
"A vector of command maps conforming to the [Bulk Overwrite Global Application Commands](https://discord.com/developers/docs/interactions/application-commands#bulk-overwrite-global-application-commands)
endpoint."
(reduce-kv #(conj %1 (-> %3
(assoc :name %2)
(dissoc :fn))) [] commands))
|
109927
|
(ns assistant.commands
"Command facilities for Assistant.
Commands are declared as functions with `^:command`. The function name, documentation, and metadata is used to
extract the data about a command to the `commands` and `discord-commands` vars. There's no special handling for
subcommands or subcommand groups. Conventionally, they're declared as regular functions following the format
command-group-subcommand. If the subcommand doesn't have a group, it should be excluded from the name. For example,
tag-get rather than tag-?-get."
(:refer-clojure :exclude [range])
(:require [clojure.core :as c]
[clojure.core.async :refer [>! <! chan go timeout]]
[clojure.edn :as edn]
[clojure.set :refer [rename-keys]]
[clojure.string :as str]
[clojure.walk :refer [postwalk]]
[assistant.db :as db]
[clj-http.client :as http]
[datascript.core :as d]
[discljord.cdn :as ds.cdn]
[discljord.formatting :as ds.fmt]
[discljord.messaging :refer [bulk-delete-messages! create-guild-ban! create-interaction-response!
delete-message! delete-original-interaction-response! get-guild!
get-channel-messages!]]
[discljord.messaging.specs :refer [command-option-types interaction-response-types]]
[discljord.permissions :as ds.p]
[hickory.core :as hick]
[hickory.select :as hick.s]
[tick.core :as tick]))
(defn option->option
[data & [k & more]]
;; Using (get ... k) instead of (k ...) to avoid callers triggering an error when providing no arguments.
(if-let [option (get (:options data) k)]
(if more
(recur option more)
option)))
(defn interaction->option
[interaction & ks]
(apply option->option (:data interaction) ks))
(defn interaction->value
[interaction & ks]
(:value (apply interaction->option interaction ks)))
(defn respond
"Responds to an interaction with the connection, ID, and token supplied."
[conn interaction & args]
(apply create-interaction-response! conn (:id interaction) (:token interaction) args))
(defn resize-image
"Resizes an image if `url` is not `nil`."
[url]
(and url (ds.cdn/resize url 4096)))
(defn ^:command avatar
"Gets a user's avatar."
{:options [{:type (:user command-option-types)
:name "user"
:description "The user to get the avatar of."
:required true}
{:type (:integer command-option-types)
:name "size"
:description "The maximum size of the avatar."
:choices (map #(zipmap [:name :value] (repeat %)) [16 32 64 128 256 512 1024 2048 4096])}]}
[conn interaction]
(let [user (get (:users (:resolved (:data interaction)))
(interaction->value interaction :user))
size (or (interaction->value interaction :size) 4096)]
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:content (ds.cdn/resize (ds.cdn/effective-user-avatar user) size)})))
(defn ^:command ban
"Bans a user."
{:options (concat [{:type (:user command-option-types)
:name "user"
:description "The user to ban."
:required true}
{:type (:string command-option-types)
:name "reason"
:description "The reason for the ban."}
;; This option is probably confusing to users.
{:type (:integer command-option-types)
:name "messages"
:description "Deletes messages younger than the number of days specified."
:min_value 1
:max_value 7}]
(for [unit [:seconds :minutes :hours :days :weeks :months :years]]
{:type (:integer command-option-types)
:name unit
:description (str "The number of " (name unit) " to ban the user for.")}))}
[conn interaction]
(go
(let [user (interaction->value interaction :user)
reason (interaction->value interaction :reason)
messages (interaction->value interaction :messages)
;; Duration stuff.
seconds (interaction->value interaction :seconds)
minutes (interaction->value interaction :minutes)
hours (interaction->value interaction :hours)
days (interaction->value interaction :days)
weeks (interaction->value interaction :weeks)
months (interaction->value interaction :months)
years (interaction->value interaction :years)
;; This sucks.
duration (cond-> (tick/new-duration 0 :seconds)
seconds (tick/+ (tick/new-duration seconds :seconds))
minutes (tick/+ (tick/new-duration minutes :minutes))
hours (tick/+ (tick/new-duration hours :hours))
days (tick/+ (tick/new-duration days :days))
weeks (tick/+ (tick/new-duration (* 7 weeks) :days))
months (tick/+ (tick/new-duration (* 30 months) :days))
years (tick/+ (tick/new-duration (* 365 years) :days)))]
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:content (if (ds.p/has-permission-flag? :ban-members (:permissions (:member interaction)))
(if (<! (create-guild-ban! conn (:guild-id interaction) user
:audit-reason reason
:delete-message-days messages))
(do (d/transact! db/conn [(cond-> {:ban/user user
:ban/guild (:guild-id interaction)
:ban/timestamp (tick/instant)}
(not (or (.isZero duration) (.isNegative duration))) (assoc :ban/duration duration))])
"Banned.")
"Ban failed.")
"Missing Ban Members permission.")}))))
(defn ^:command purge
"Deletes messages from a channel."
{:options [{:type (:integer command-option-types)
:name "amount"
:description "The number of messages to delete."
:required true
:min_value 2
:max_value 100}
{:type (:user command-option-types)
:name "user"
;; Although the user may not be a member of the guild, they may have left messages in the channel.
:description "The user to delete messages from."}]}
[conn interaction]
(go
(if (ds.p/has-permission-flag? :manage-messages (:permissions (:member interaction)))
(let [amount (interaction->value interaction :amount)
user (interaction->value interaction :user)
msgs (transduce (comp (filter #(>= 14 (tick/days (tick/between (tick/instant (:timestamp %))
(tick/instant)))))
(filter (complement :pinned))
(filter #(or (nil? user) (= user (:id (:author %)))))
(map :id))
conj
(<! (get-channel-messages! conn (:channel-id interaction)
:limit amount)))]
(when (<! (respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:content (or (case (count msgs)
0 "No messages to purge."
1 (if (<! (delete-message! conn (:channel-id interaction) (first msgs)))
"Deleted one message.")
(if (<! (bulk-delete-messages! conn (:channel-id interaction) msgs))
"Purge successful."))
"Purge failed.")}))
(<! (timeout 2000))
(delete-original-interaction-response! conn (:application-id interaction) (:token interaction))))
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:content "Missing Manage Messages permission."}))))
(defn ^:command range
"Picks a random number from a range."
{:options [{:type (:integer command-option-types)
:name "max"
:description "The highest number."
:required true}
{:type (:integer command-option-types)
:name "min"
:description "The lowest number (defaults to 1)."}
{:type (:integer command-option-types)
:name "amount"
:description "The amount of numbers to pick (defaults to 1). May return less than requested."
:min_value 1}]}
[conn interaction]
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:content (let [high (interaction->value interaction :max)
low (or (interaction->value interaction :min) 1)
;; The output would've been clamped by 600, so there's no point in collecting the total
;; beyond that.
amount (min 600 (or (interaction->value interaction :amount) 1))
s (str/join " " (if (>= amount (- high low))
;; There's no point in running the randomizer (loop) if we know all
;; the numbers. Unfortunately, this optimization trick isn't useful
;; for values lower (e.g. 99 of 100).
(c/range low (inc high))
(let [amount (min amount (- high low))]
(sort (loop [nums #{}]
(if (= amount (count nums))
nums
(recur (conj nums (+ (long (rand (- (inc high) low)))
low)))))))))]
(cond
(= 0 (count s)) "No numbers."
(< 2000 (count s)) (str (subs s 0 1997) "...")
:else s))}))
(defn ^:command server
"Gets information about the server."
[conn interaction]
(go
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:embeds [(let [guild (<! (get-guild! conn (:guild-id interaction)
:with-counts true))
afk (:afk-channel-id guild)]
{:title (:name guild)
:url (:vanity-url-code guild)
:description (:description guild)
:thumbnail {:url (resize-image (ds.cdn/guild-icon guild))}
:image {:url (resize-image (ds.cdn/guild-banner guild))}
:fields (cond-> [{:name "Owner"
:value (ds.fmt/mention-user (:owner-id guild))
:inline true}
{:name "Members"
:value (str "~" (:approximate-member-count guild))
:inline true}
{:name "Roles"
:value (count (:roles guild))
:inline true}
{:name "Emojis"
:value (count (:emojis guild))
:inline true}]
afk (conj {:name "AFK Channel"
:value (let [mins (tick/minutes (tick/new-duration (:afk-timeout guild) :seconds))]
(str (ds.fmt/mention-channel afk)
" ("
(if (= mins 60)
"1 hour"
(str mins " minute" (if-not (= mins 1) \s)))
\)))
:inline true}))})]})))
(defn tagq*
"Queries the database for a tag by its `name`. `env` should be either `:tag/guild` or `:tag/user` with `id` being used
to match the value."
[patterns name env id]
(d/q '[:find (pull ?e ?patterns) .
:in $ ?patterns ?name ?env ?id
:where [?e :tag/name ?name]
[?e ?env ?id]] @db/conn patterns name env id))
(defn tagq-args [q interaction]
(q (if (:guild-id interaction)
:tag/guild
:tag/user) (or (:guild-id interaction) (:id (:user interaction)))))
(defn tagq
[name interaction patterns]
(tagq-args (partial tagq* patterns name) interaction))
(defn tag-autocomplete
"Handles tag autocompletion searching by name."
[conn interaction name]
(respond conn interaction (:application-command-autocomplete-result interaction-response-types)
:data {:choices (for [name (tagq-args (partial d/q
'[:find [?tag-name ...]
:in $ ?name ?env ?id
:where [?e :tag/name ?tag-name]
[?e ?env ?id]
[(clojure.string/lower-case ?tag-name) ?lower-tag-name]
[(clojure.string/includes? ?lower-tag-name ?name)]]
@db/conn (str/lower-case name))
interaction)]
{:name name
:value name})}))
(defn tag-get
"Subcommand for retrieving a tag by name."
[conn interaction]
(let [name (interaction->option interaction :get :name)]
(if (:focused name)
(tag-autocomplete conn interaction (:value name))
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data (if-let [tag (tagq (:value name) interaction [:tag/name :tag/content])]
{:embeds [{:title (:tag/name tag)
:description (:tag/content tag)}]}
{:content "Tag not found."})))))
(defn tag-create
"Subcommand for creating a tag with a name and content."
[conn interaction]
(go
(let [name (interaction->value interaction :create :name)
content (interaction->value interaction :create :content)]
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:content (if (tagq name interaction [])
"Tag already exists."
(do (d/transact! db/conn [(let [gid (:guild-id interaction)
uid (:id (:user interaction))]
(cond-> {:tag/name name
:tag/content content}
gid (assoc :tag/guild gid)
uid (assoc :tag/user uid)))])
"Tag created."))}))))
(defn tag-delete
"Subcommand for deleting a tag by name."
[conn interaction]
(let [name (interaction->option interaction :delete :name)]
(if (:focused name)
(tag-autocomplete conn interaction (:value name))
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:content (if-let [tag (tagq (:value name) interaction [:db/id])]
(do (d/transact! db/conn [[:db.fn/retractEntity (:db/id tag)]])
"Tag deleted.")
"Tag not found.")}))))
(defn ^:command tag
"Facilities for getting and managing message responses."
{:options [{:type (:sub-command command-option-types)
:name "get"
:description "Displays a tag."
:options [{:type (:string command-option-types)
:name "name"
:description "The name of the tag."
:required true
:autocomplete true}]}
{:type (:sub-command command-option-types)
:name "create"
:description "Creates a tag."
:options [{:type (:string command-option-types)
:name "name"
:description "The name of the tag."
:required true}
{:type (:string command-option-types)
:name "content"
:description "The contents of the tag."
:required true}]}
{:type (:sub-command command-option-types)
:name "delete"
:description "Deletes a tag."
:options [{:type (:string command-option-types)
:name "name"
:description "The name of the tag."
:required true
:autocomplete true}]}]}
[conn interaction]
(case (key (first (:options (:data interaction))))
:get (tag-get conn interaction)
:create (tag-create conn interaction)
:delete (tag-delete conn interaction)))
(defonce trivia-categories (reduce #(assoc %1 (:name %2) (:id %2)) {}
;; In case Open Trivia DB adds more than 25.
(take 25 (:trivia_categories (:body (http/get "https://opentdb.com/api_category.php" {:as :json}))))))
(defn ^:command trivia
"Runs a trivia."
{:options [{:type (:string command-option-types)
:name "category"
:description "The category the question belongs to."
:choices (map #(zipmap [:name :value] (repeat %)) (keys trivia-categories))}
{:type (:string command-option-types)
:name "difficulty"
:description "The difficulty of the question."
:choices (map #(zipmap [:name :value] (repeat %)) ["Easy" "Medium" "Hard"])}
{:type (:string command-option-types)
:name "type"
:description "The amount of answers the question should have."
:choices (map #(zipmap [:name :value] (repeat %)) ["Multiple Choice" "True/False"])}]}
[conn interaction]
(go
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data (if (= 3 (:type interaction))
{:content (let [data (:data interaction)
answer (first (:values data))]
(str answer "—" (if (= answer (:custom-id data))
"Correct! 🎉"
"Wrong. 😔")))
:flags (bit-shift-left 1 6)}
(let [res (chan)
category (interaction->value interaction :category)
difficulty (interaction->value interaction :difficulty)
type (interaction->value interaction :type)]
(http/get "https://opentdb.com/api.php"
{:as :json
:async? true
:query-params {:amount 1
:category (trivia-categories category)
:difficulty (if difficulty
(str/lower-case difficulty))
:type (case type
"Multiple Choice" "multiple"
"True/False" "boolean"
nil)}}
#(go (>! res %))
(constantly nil))
(let [trivia (first (:results (postwalk #(if (string? %)
;; For some reason, Open Trivia DB corrupts the HTML
;; entity encoding.
(.text (first (hick/parse-fragment (str/replace % "amp;" ""))))
%) (:body (<! res)))))]
{:content (:question trivia)
:components [{:type 1
:components [{:type 3
:custom_id (:correct_answer trivia)
:options (for [answer (if (= "boolean" (:type trivia))
;; It's often annoying to have boolean
;; answers shuffled, so we're going to
;; keep them in the same order. If you've
;; ever played Kahoot, you know the pain.
["True" "False"]
(shuffle (conj (:incorrect_answers trivia) (:correct_answer trivia))))]
{:label answer
:value answer})}]}]}))))))
(defonce wm-user-agent
(str "AssistantBot/1.2.0 (https://github.com/KyleErhabor/assistant; <EMAIL>)"
" Clojure/" (clojure-version) ";"
" clj-http/" (-> (edn/read-string (slurp "deps.edn"))
:deps
('clj-http/clj-http)
:mvn/version)))
(defn wp-snippet-content
"Converts HTML in an article snippet into Markdown. Currently only transforms `<span class=searchmatch ...>` into
`**...**`."
[snippet]
(str/join (for [fragment (hick/parse-fragment snippet)]
(if (instance? org.jsoup.nodes.TextNode fragment)
(str fragment)
(->> fragment
hick/as-hickory
(hick.s/select (hick.s/child (hick.s/and (hick.s/tag :span)
(hick.s/class :searchmatch))))
first
:content
first
ds.fmt/bold)))))
(defn ^:command wikipedia
"Searches Wikipedia."
{:options [{:type (:string command-option-types)
:name "query"
:description "The terms to search for."
:required true}]}
[conn interaction]
(go
(let [res (chan)
query (interaction->value interaction :query)]
(http/get "https://en.wikipedia.org/w/api.php" {:as :json
:async? true
:headers {:User-Agent wm-user-agent}
:query-params {:action "query"
:format "json"
:list "search"
:srsearch query
:srnamespace 0}}
#(go (>! res %))
(constantly nil))
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:embeds [{:title "Results"
:fields (for [result (:search (:query (:body (<! res))))]
{:name (:title result)
:value (wp-snippet-content (:snippet result))})}]}))))
(def commands
"A map of keywordized command names to command details conforming to the [Create Global Application Command](https://discord.com/developers/docs/interactions/application-commands#create-global-application-command)
endpoint."
(reduce-kv (fn [m k v]
(let [meta (meta v)]
(if (:command meta)
(assoc m (keyword k) (-> meta
(select-keys [:default-permission :doc :options :required :type])
(rename-keys {:doc :description})
(assoc :fn v)))
m))) {} (ns-publics *ns*)))
(def discord-commands
"A vector of command maps conforming to the [Bulk Overwrite Global Application Commands](https://discord.com/developers/docs/interactions/application-commands#bulk-overwrite-global-application-commands)
endpoint."
(reduce-kv #(conj %1 (-> %3
(assoc :name %2)
(dissoc :fn))) [] commands))
| true |
(ns assistant.commands
"Command facilities for Assistant.
Commands are declared as functions with `^:command`. The function name, documentation, and metadata is used to
extract the data about a command to the `commands` and `discord-commands` vars. There's no special handling for
subcommands or subcommand groups. Conventionally, they're declared as regular functions following the format
command-group-subcommand. If the subcommand doesn't have a group, it should be excluded from the name. For example,
tag-get rather than tag-?-get."
(:refer-clojure :exclude [range])
(:require [clojure.core :as c]
[clojure.core.async :refer [>! <! chan go timeout]]
[clojure.edn :as edn]
[clojure.set :refer [rename-keys]]
[clojure.string :as str]
[clojure.walk :refer [postwalk]]
[assistant.db :as db]
[clj-http.client :as http]
[datascript.core :as d]
[discljord.cdn :as ds.cdn]
[discljord.formatting :as ds.fmt]
[discljord.messaging :refer [bulk-delete-messages! create-guild-ban! create-interaction-response!
delete-message! delete-original-interaction-response! get-guild!
get-channel-messages!]]
[discljord.messaging.specs :refer [command-option-types interaction-response-types]]
[discljord.permissions :as ds.p]
[hickory.core :as hick]
[hickory.select :as hick.s]
[tick.core :as tick]))
(defn option->option
[data & [k & more]]
;; Using (get ... k) instead of (k ...) to avoid callers triggering an error when providing no arguments.
(if-let [option (get (:options data) k)]
(if more
(recur option more)
option)))
(defn interaction->option
[interaction & ks]
(apply option->option (:data interaction) ks))
(defn interaction->value
[interaction & ks]
(:value (apply interaction->option interaction ks)))
(defn respond
"Responds to an interaction with the connection, ID, and token supplied."
[conn interaction & args]
(apply create-interaction-response! conn (:id interaction) (:token interaction) args))
(defn resize-image
"Resizes an image if `url` is not `nil`."
[url]
(and url (ds.cdn/resize url 4096)))
(defn ^:command avatar
"Gets a user's avatar."
{:options [{:type (:user command-option-types)
:name "user"
:description "The user to get the avatar of."
:required true}
{:type (:integer command-option-types)
:name "size"
:description "The maximum size of the avatar."
:choices (map #(zipmap [:name :value] (repeat %)) [16 32 64 128 256 512 1024 2048 4096])}]}
[conn interaction]
(let [user (get (:users (:resolved (:data interaction)))
(interaction->value interaction :user))
size (or (interaction->value interaction :size) 4096)]
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:content (ds.cdn/resize (ds.cdn/effective-user-avatar user) size)})))
(defn ^:command ban
"Bans a user."
{:options (concat [{:type (:user command-option-types)
:name "user"
:description "The user to ban."
:required true}
{:type (:string command-option-types)
:name "reason"
:description "The reason for the ban."}
;; This option is probably confusing to users.
{:type (:integer command-option-types)
:name "messages"
:description "Deletes messages younger than the number of days specified."
:min_value 1
:max_value 7}]
(for [unit [:seconds :minutes :hours :days :weeks :months :years]]
{:type (:integer command-option-types)
:name unit
:description (str "The number of " (name unit) " to ban the user for.")}))}
[conn interaction]
(go
(let [user (interaction->value interaction :user)
reason (interaction->value interaction :reason)
messages (interaction->value interaction :messages)
;; Duration stuff.
seconds (interaction->value interaction :seconds)
minutes (interaction->value interaction :minutes)
hours (interaction->value interaction :hours)
days (interaction->value interaction :days)
weeks (interaction->value interaction :weeks)
months (interaction->value interaction :months)
years (interaction->value interaction :years)
;; This sucks.
duration (cond-> (tick/new-duration 0 :seconds)
seconds (tick/+ (tick/new-duration seconds :seconds))
minutes (tick/+ (tick/new-duration minutes :minutes))
hours (tick/+ (tick/new-duration hours :hours))
days (tick/+ (tick/new-duration days :days))
weeks (tick/+ (tick/new-duration (* 7 weeks) :days))
months (tick/+ (tick/new-duration (* 30 months) :days))
years (tick/+ (tick/new-duration (* 365 years) :days)))]
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:content (if (ds.p/has-permission-flag? :ban-members (:permissions (:member interaction)))
(if (<! (create-guild-ban! conn (:guild-id interaction) user
:audit-reason reason
:delete-message-days messages))
(do (d/transact! db/conn [(cond-> {:ban/user user
:ban/guild (:guild-id interaction)
:ban/timestamp (tick/instant)}
(not (or (.isZero duration) (.isNegative duration))) (assoc :ban/duration duration))])
"Banned.")
"Ban failed.")
"Missing Ban Members permission.")}))))
(defn ^:command purge
"Deletes messages from a channel."
{:options [{:type (:integer command-option-types)
:name "amount"
:description "The number of messages to delete."
:required true
:min_value 2
:max_value 100}
{:type (:user command-option-types)
:name "user"
;; Although the user may not be a member of the guild, they may have left messages in the channel.
:description "The user to delete messages from."}]}
[conn interaction]
(go
(if (ds.p/has-permission-flag? :manage-messages (:permissions (:member interaction)))
(let [amount (interaction->value interaction :amount)
user (interaction->value interaction :user)
msgs (transduce (comp (filter #(>= 14 (tick/days (tick/between (tick/instant (:timestamp %))
(tick/instant)))))
(filter (complement :pinned))
(filter #(or (nil? user) (= user (:id (:author %)))))
(map :id))
conj
(<! (get-channel-messages! conn (:channel-id interaction)
:limit amount)))]
(when (<! (respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:content (or (case (count msgs)
0 "No messages to purge."
1 (if (<! (delete-message! conn (:channel-id interaction) (first msgs)))
"Deleted one message.")
(if (<! (bulk-delete-messages! conn (:channel-id interaction) msgs))
"Purge successful."))
"Purge failed.")}))
(<! (timeout 2000))
(delete-original-interaction-response! conn (:application-id interaction) (:token interaction))))
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:content "Missing Manage Messages permission."}))))
(defn ^:command range
"Picks a random number from a range."
{:options [{:type (:integer command-option-types)
:name "max"
:description "The highest number."
:required true}
{:type (:integer command-option-types)
:name "min"
:description "The lowest number (defaults to 1)."}
{:type (:integer command-option-types)
:name "amount"
:description "The amount of numbers to pick (defaults to 1). May return less than requested."
:min_value 1}]}
[conn interaction]
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:content (let [high (interaction->value interaction :max)
low (or (interaction->value interaction :min) 1)
;; The output would've been clamped by 600, so there's no point in collecting the total
;; beyond that.
amount (min 600 (or (interaction->value interaction :amount) 1))
s (str/join " " (if (>= amount (- high low))
;; There's no point in running the randomizer (loop) if we know all
;; the numbers. Unfortunately, this optimization trick isn't useful
;; for values lower (e.g. 99 of 100).
(c/range low (inc high))
(let [amount (min amount (- high low))]
(sort (loop [nums #{}]
(if (= amount (count nums))
nums
(recur (conj nums (+ (long (rand (- (inc high) low)))
low)))))))))]
(cond
(= 0 (count s)) "No numbers."
(< 2000 (count s)) (str (subs s 0 1997) "...")
:else s))}))
(defn ^:command server
"Gets information about the server."
[conn interaction]
(go
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:embeds [(let [guild (<! (get-guild! conn (:guild-id interaction)
:with-counts true))
afk (:afk-channel-id guild)]
{:title (:name guild)
:url (:vanity-url-code guild)
:description (:description guild)
:thumbnail {:url (resize-image (ds.cdn/guild-icon guild))}
:image {:url (resize-image (ds.cdn/guild-banner guild))}
:fields (cond-> [{:name "Owner"
:value (ds.fmt/mention-user (:owner-id guild))
:inline true}
{:name "Members"
:value (str "~" (:approximate-member-count guild))
:inline true}
{:name "Roles"
:value (count (:roles guild))
:inline true}
{:name "Emojis"
:value (count (:emojis guild))
:inline true}]
afk (conj {:name "AFK Channel"
:value (let [mins (tick/minutes (tick/new-duration (:afk-timeout guild) :seconds))]
(str (ds.fmt/mention-channel afk)
" ("
(if (= mins 60)
"1 hour"
(str mins " minute" (if-not (= mins 1) \s)))
\)))
:inline true}))})]})))
(defn tagq*
"Queries the database for a tag by its `name`. `env` should be either `:tag/guild` or `:tag/user` with `id` being used
to match the value."
[patterns name env id]
(d/q '[:find (pull ?e ?patterns) .
:in $ ?patterns ?name ?env ?id
:where [?e :tag/name ?name]
[?e ?env ?id]] @db/conn patterns name env id))
(defn tagq-args [q interaction]
(q (if (:guild-id interaction)
:tag/guild
:tag/user) (or (:guild-id interaction) (:id (:user interaction)))))
(defn tagq
[name interaction patterns]
(tagq-args (partial tagq* patterns name) interaction))
(defn tag-autocomplete
"Handles tag autocompletion searching by name."
[conn interaction name]
(respond conn interaction (:application-command-autocomplete-result interaction-response-types)
:data {:choices (for [name (tagq-args (partial d/q
'[:find [?tag-name ...]
:in $ ?name ?env ?id
:where [?e :tag/name ?tag-name]
[?e ?env ?id]
[(clojure.string/lower-case ?tag-name) ?lower-tag-name]
[(clojure.string/includes? ?lower-tag-name ?name)]]
@db/conn (str/lower-case name))
interaction)]
{:name name
:value name})}))
(defn tag-get
"Subcommand for retrieving a tag by name."
[conn interaction]
(let [name (interaction->option interaction :get :name)]
(if (:focused name)
(tag-autocomplete conn interaction (:value name))
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data (if-let [tag (tagq (:value name) interaction [:tag/name :tag/content])]
{:embeds [{:title (:tag/name tag)
:description (:tag/content tag)}]}
{:content "Tag not found."})))))
(defn tag-create
"Subcommand for creating a tag with a name and content."
[conn interaction]
(go
(let [name (interaction->value interaction :create :name)
content (interaction->value interaction :create :content)]
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:content (if (tagq name interaction [])
"Tag already exists."
(do (d/transact! db/conn [(let [gid (:guild-id interaction)
uid (:id (:user interaction))]
(cond-> {:tag/name name
:tag/content content}
gid (assoc :tag/guild gid)
uid (assoc :tag/user uid)))])
"Tag created."))}))))
(defn tag-delete
"Subcommand for deleting a tag by name."
[conn interaction]
(let [name (interaction->option interaction :delete :name)]
(if (:focused name)
(tag-autocomplete conn interaction (:value name))
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:content (if-let [tag (tagq (:value name) interaction [:db/id])]
(do (d/transact! db/conn [[:db.fn/retractEntity (:db/id tag)]])
"Tag deleted.")
"Tag not found.")}))))
(defn ^:command tag
"Facilities for getting and managing message responses."
{:options [{:type (:sub-command command-option-types)
:name "get"
:description "Displays a tag."
:options [{:type (:string command-option-types)
:name "name"
:description "The name of the tag."
:required true
:autocomplete true}]}
{:type (:sub-command command-option-types)
:name "create"
:description "Creates a tag."
:options [{:type (:string command-option-types)
:name "name"
:description "The name of the tag."
:required true}
{:type (:string command-option-types)
:name "content"
:description "The contents of the tag."
:required true}]}
{:type (:sub-command command-option-types)
:name "delete"
:description "Deletes a tag."
:options [{:type (:string command-option-types)
:name "name"
:description "The name of the tag."
:required true
:autocomplete true}]}]}
[conn interaction]
(case (key (first (:options (:data interaction))))
:get (tag-get conn interaction)
:create (tag-create conn interaction)
:delete (tag-delete conn interaction)))
(defonce trivia-categories (reduce #(assoc %1 (:name %2) (:id %2)) {}
;; In case Open Trivia DB adds more than 25.
(take 25 (:trivia_categories (:body (http/get "https://opentdb.com/api_category.php" {:as :json}))))))
(defn ^:command trivia
"Runs a trivia."
{:options [{:type (:string command-option-types)
:name "category"
:description "The category the question belongs to."
:choices (map #(zipmap [:name :value] (repeat %)) (keys trivia-categories))}
{:type (:string command-option-types)
:name "difficulty"
:description "The difficulty of the question."
:choices (map #(zipmap [:name :value] (repeat %)) ["Easy" "Medium" "Hard"])}
{:type (:string command-option-types)
:name "type"
:description "The amount of answers the question should have."
:choices (map #(zipmap [:name :value] (repeat %)) ["Multiple Choice" "True/False"])}]}
[conn interaction]
(go
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data (if (= 3 (:type interaction))
{:content (let [data (:data interaction)
answer (first (:values data))]
(str answer "—" (if (= answer (:custom-id data))
"Correct! 🎉"
"Wrong. 😔")))
:flags (bit-shift-left 1 6)}
(let [res (chan)
category (interaction->value interaction :category)
difficulty (interaction->value interaction :difficulty)
type (interaction->value interaction :type)]
(http/get "https://opentdb.com/api.php"
{:as :json
:async? true
:query-params {:amount 1
:category (trivia-categories category)
:difficulty (if difficulty
(str/lower-case difficulty))
:type (case type
"Multiple Choice" "multiple"
"True/False" "boolean"
nil)}}
#(go (>! res %))
(constantly nil))
(let [trivia (first (:results (postwalk #(if (string? %)
;; For some reason, Open Trivia DB corrupts the HTML
;; entity encoding.
(.text (first (hick/parse-fragment (str/replace % "amp;" ""))))
%) (:body (<! res)))))]
{:content (:question trivia)
:components [{:type 1
:components [{:type 3
:custom_id (:correct_answer trivia)
:options (for [answer (if (= "boolean" (:type trivia))
;; It's often annoying to have boolean
;; answers shuffled, so we're going to
;; keep them in the same order. If you've
;; ever played Kahoot, you know the pain.
["True" "False"]
(shuffle (conj (:incorrect_answers trivia) (:correct_answer trivia))))]
{:label answer
:value answer})}]}]}))))))
(defonce wm-user-agent
(str "AssistantBot/1.2.0 (https://github.com/KyleErhabor/assistant; PI:EMAIL:<EMAIL>END_PI)"
" Clojure/" (clojure-version) ";"
" clj-http/" (-> (edn/read-string (slurp "deps.edn"))
:deps
('clj-http/clj-http)
:mvn/version)))
(defn wp-snippet-content
"Converts HTML in an article snippet into Markdown. Currently only transforms `<span class=searchmatch ...>` into
`**...**`."
[snippet]
(str/join (for [fragment (hick/parse-fragment snippet)]
(if (instance? org.jsoup.nodes.TextNode fragment)
(str fragment)
(->> fragment
hick/as-hickory
(hick.s/select (hick.s/child (hick.s/and (hick.s/tag :span)
(hick.s/class :searchmatch))))
first
:content
first
ds.fmt/bold)))))
(defn ^:command wikipedia
"Searches Wikipedia."
{:options [{:type (:string command-option-types)
:name "query"
:description "The terms to search for."
:required true}]}
[conn interaction]
(go
(let [res (chan)
query (interaction->value interaction :query)]
(http/get "https://en.wikipedia.org/w/api.php" {:as :json
:async? true
:headers {:User-Agent wm-user-agent}
:query-params {:action "query"
:format "json"
:list "search"
:srsearch query
:srnamespace 0}}
#(go (>! res %))
(constantly nil))
(respond conn interaction (:channel-message-with-source interaction-response-types)
:data {:embeds [{:title "Results"
:fields (for [result (:search (:query (:body (<! res))))]
{:name (:title result)
:value (wp-snippet-content (:snippet result))})}]}))))
(def commands
"A map of keywordized command names to command details conforming to the [Create Global Application Command](https://discord.com/developers/docs/interactions/application-commands#create-global-application-command)
endpoint."
(reduce-kv (fn [m k v]
(let [meta (meta v)]
(if (:command meta)
(assoc m (keyword k) (-> meta
(select-keys [:default-permission :doc :options :required :type])
(rename-keys {:doc :description})
(assoc :fn v)))
m))) {} (ns-publics *ns*)))
(def discord-commands
"A vector of command maps conforming to the [Bulk Overwrite Global Application Commands](https://discord.com/developers/docs/interactions/application-commands#bulk-overwrite-global-application-commands)
endpoint."
(reduce-kv #(conj %1 (-> %3
(assoc :name %2)
(dissoc :fn))) [] commands))
|
[
{
"context": " \"name\" \"milt\"}},\n \"verb\" {\"id\" \"aaa:/",
"end": 3516,
"score": 0.521905779838562,
"start": 3515,
"tag": "NAME",
"value": "m"
},
{
"context": " \"name\" \"milt\"}},\n \"verb\" {\"id\" \"aaa://aa",
"end": 3519,
"score": 0.8802021145820618,
"start": 3516,
"tag": "USERNAME",
"value": "ilt"
},
{
"context": " \"object\" {\"objectType\" \"Agent\", \"mbox\" \"mailto:[email protected]\"},\n \"timestamp\" \"1970-01-01",
"end": 3667,
"score": 0.8833735585212708,
"start": 3656,
"tag": "EMAIL",
"value": "[email protected]"
},
{
"context": "bjectType\" \"Agent\",\n \"name\" \"xAPI account\",\n \"mbox\" \"mailto:xapi@adlne",
"end": 5362,
"score": 0.9987215399742126,
"start": 5350,
"tag": "NAME",
"value": "xAPI account"
},
{
"context": "PI account\",\n \"mbox\" \"mailto:[email protected]\"},\n \"verb\"\n ",
"end": 5417,
"score": 0.9999275207519531,
"start": 5402,
"tag": "EMAIL",
"value": "[email protected]"
}
] |
test/com/yetanalytics/dave/datalog_test.cljc
|
yetanalytics/dave
| 25 |
(ns com.yetanalytics.dave.datalog-test
(:require
[clojure.test #?(:cljs :refer-macros
:clj :refer) [deftest is testing]]
[clojure.spec.alpha :as s]
[xapi-schema.spec :as xs]
[clojure.spec.test.alpha :as stest]
clojure.test.check.generators
[clojure.test.check :as tc]
[clojure.test.check.properties :as prop :include-macros true]
[clojure.test.check.clojure-test #?(:cljs :refer-macros
:clj :refer) [defspec]]
[com.yetanalytics.dave.datalog :as datalog]
[com.yetanalytics.dave.datalog.schema :as schema]
[datascript.core :as d]
[com.yetanalytics.dave.test-support :refer [failures stc-opts read-json]]
[clojure.pprint :refer [pprint]]))
;; known-good-statements to use in testing
(def statements
(read-json "resources/public/data/dave/ds.json"))
(deftest statements-sanity-test
(is (= 224 (count statements)))
(is (s/valid? ::xs/statements statements)))
(deftest ->tx-test
(let [tx (datalog/->tx schema/xapi statements)]
(testing "tx expectations"
(is (s/valid? (s/every map?)
tx))
(is (= 224 (count tx))))
(testing "static statements"
(let [db (d/db-with (d/init-db [] schema/xapi) tx)]
(is (d/db? db))
(is (= 2816 (count (d/datoms db :eavt))))
(is (= 224
(d/q '[:find (count-distinct ?s) .
:where
[?s :statement/id]]
db))))))
#?(:clj (testing "generated statements"
(is (empty?
(failures
(stest/check
`datalog/->tx
{stc-opts
{:num-tests 10 :max-size 3}
})))))))
#?(:clj (deftest idempotency-test
(testing "transactions to datalog db are idempotent"
(let [tx (datalog/->tx schema/xapi statements)
db-1 (-> (d/init-db [] schema/xapi)
(d/db-with tx))
db-1-datoms (d/datoms db-1 :eavt)
db-1-attr-freqs (frequencies (map :a db-1-datoms))
db-2 (-> db-1
(d/db-with tx))
db-2-datoms (d/datoms db-2 :eavt)
db-2-attr-freqs (frequencies (map :a db-2-datoms))
]
(is (= db-1
db-2))
(is (= db-1-attr-freqs
db-2-attr-freqs))))
(testing "even more so with transact"
(let [db-1 (-> (d/init-db [] schema/xapi)
(datalog/transact statements))
db-1-datoms (d/datoms db-1 :eavt)
db-1-attr-freqs (frequencies (map :a db-1-datoms))
db-2 (-> db-1
(datalog/transact statements)) ;; should be a no-op
db-2-datoms (d/datoms db-2 :eavt)
db-2-attr-freqs (frequencies (map :a db-2-datoms))
]
(is (= db-1
db-2))
(is (= db-1-attr-freqs
db-2-attr-freqs))))))
(deftest account-upsert-test
(testing "some strange behaviours of agent/group accounts"
(testing "agent"
(let [statement {"id" "0a029ae8-bd87-441e-b879-a4c5da2d6722",
;; actor is identified by account
"actor" {"account" {"homePage" "https://example.org"
"name" "milt"}},
"verb" {"id" "aaa://aaa.aaa.aaa/aaa"},
"object" {"objectType" "Agent", "mbox" "mailto:[email protected]"},
"timestamp" "1970-01-01T00:00:00.0Z",
"stored" "1970-01-01T00:00:00.0Z",
"version" "1.0.0"}
tx (datalog/->tx schema/xapi [statement])]
(is (d/db? (-> (d/init-db [] schema/xapi)
(d/db-with tx)
(d/db-with tx))))))))
#?(:clj (defspec idempotency-gen-test 10
(prop/for-all
[ss (s/gen ::xs/lrs-statements)]
(let [tx (datalog/->tx schema/xapi ss)
db-1 (-> (d/init-db [] schema/xapi)
(d/db-with tx))
db-1-datoms (d/datoms db-1 :eavt)
db-1-attr-freqs (frequencies (map :a db-1-datoms))
db-2 (-> db-1
(d/db-with tx))
db-2-datoms (d/datoms db-2 :eavt)
db-2-attr-freqs (frequencies (map :a db-2-datoms))
]
(is (= db-1
db-2))
(is (= db-1-attr-freqs
db-2-attr-freqs))))))
#?(:clj (deftest transact-test
(is (empty?
(failures
(stest/check
`datalog/transact
{stc-opts
{:num-tests 10 :max-size 3}
}))))))
(deftest empty-db-test
(is (empty?
(failures
(stest/check
`datalog/empty-db
{stc-opts
{:num-tests 10 :max-size 3}
})))))
(deftest empty-extensions-test
(testing "our coercion properly handles empty extensions"
(let [statement {"actor"
{"objectType" "Agent",
"name" "xAPI account",
"mbox" "mailto:[email protected]"},
"verb"
{"id" "http://adlnet.gov/expapi/verbs/attended",
"display" {"en-GB" "attended", "en-US" "attended"}},
"object"
{"objectType" "Activity",
"id" "http://www.example.com/meetings/occurances/34534",
"definition"
{"type" "http://adlnet.gov/expapi/activities/meeting",
"name" {"en-GB" "example meeting", "en-US" "example meeting"},
"description"
{"en-GB"
"An example meeting that happened on a specific occasion with certain people present.",
"en-US"
"An example meeting that happened on a specific occasion with certain people present."},
"moreInfo" "http://virtualmeeting.example.com/345256",
"extensions" {}}},
"id" "5e46f8a1-6bef-451e-9cea-d1bdd304d0ca",
"timestamp" "2020-02-14T19:44:33.512Z",
"stored" "2020-02-14T19:44:33.512Z"}]
(testing "spec allows it"
(is (s/valid? ::xs/statement statement)))
(testing "it transacts"
(is (d/db? (datalog/transact (datalog/empty-db) [statement])))))))
|
85425
|
(ns com.yetanalytics.dave.datalog-test
(:require
[clojure.test #?(:cljs :refer-macros
:clj :refer) [deftest is testing]]
[clojure.spec.alpha :as s]
[xapi-schema.spec :as xs]
[clojure.spec.test.alpha :as stest]
clojure.test.check.generators
[clojure.test.check :as tc]
[clojure.test.check.properties :as prop :include-macros true]
[clojure.test.check.clojure-test #?(:cljs :refer-macros
:clj :refer) [defspec]]
[com.yetanalytics.dave.datalog :as datalog]
[com.yetanalytics.dave.datalog.schema :as schema]
[datascript.core :as d]
[com.yetanalytics.dave.test-support :refer [failures stc-opts read-json]]
[clojure.pprint :refer [pprint]]))
;; known-good-statements to use in testing
(def statements
(read-json "resources/public/data/dave/ds.json"))
(deftest statements-sanity-test
(is (= 224 (count statements)))
(is (s/valid? ::xs/statements statements)))
(deftest ->tx-test
(let [tx (datalog/->tx schema/xapi statements)]
(testing "tx expectations"
(is (s/valid? (s/every map?)
tx))
(is (= 224 (count tx))))
(testing "static statements"
(let [db (d/db-with (d/init-db [] schema/xapi) tx)]
(is (d/db? db))
(is (= 2816 (count (d/datoms db :eavt))))
(is (= 224
(d/q '[:find (count-distinct ?s) .
:where
[?s :statement/id]]
db))))))
#?(:clj (testing "generated statements"
(is (empty?
(failures
(stest/check
`datalog/->tx
{stc-opts
{:num-tests 10 :max-size 3}
})))))))
#?(:clj (deftest idempotency-test
(testing "transactions to datalog db are idempotent"
(let [tx (datalog/->tx schema/xapi statements)
db-1 (-> (d/init-db [] schema/xapi)
(d/db-with tx))
db-1-datoms (d/datoms db-1 :eavt)
db-1-attr-freqs (frequencies (map :a db-1-datoms))
db-2 (-> db-1
(d/db-with tx))
db-2-datoms (d/datoms db-2 :eavt)
db-2-attr-freqs (frequencies (map :a db-2-datoms))
]
(is (= db-1
db-2))
(is (= db-1-attr-freqs
db-2-attr-freqs))))
(testing "even more so with transact"
(let [db-1 (-> (d/init-db [] schema/xapi)
(datalog/transact statements))
db-1-datoms (d/datoms db-1 :eavt)
db-1-attr-freqs (frequencies (map :a db-1-datoms))
db-2 (-> db-1
(datalog/transact statements)) ;; should be a no-op
db-2-datoms (d/datoms db-2 :eavt)
db-2-attr-freqs (frequencies (map :a db-2-datoms))
]
(is (= db-1
db-2))
(is (= db-1-attr-freqs
db-2-attr-freqs))))))
(deftest account-upsert-test
(testing "some strange behaviours of agent/group accounts"
(testing "agent"
(let [statement {"id" "0a029ae8-bd87-441e-b879-a4c5da2d6722",
;; actor is identified by account
"actor" {"account" {"homePage" "https://example.org"
"name" "<NAME>ilt"}},
"verb" {"id" "aaa://aaa.aaa.aaa/aaa"},
"object" {"objectType" "Agent", "mbox" "mailto:<EMAIL>"},
"timestamp" "1970-01-01T00:00:00.0Z",
"stored" "1970-01-01T00:00:00.0Z",
"version" "1.0.0"}
tx (datalog/->tx schema/xapi [statement])]
(is (d/db? (-> (d/init-db [] schema/xapi)
(d/db-with tx)
(d/db-with tx))))))))
#?(:clj (defspec idempotency-gen-test 10
(prop/for-all
[ss (s/gen ::xs/lrs-statements)]
(let [tx (datalog/->tx schema/xapi ss)
db-1 (-> (d/init-db [] schema/xapi)
(d/db-with tx))
db-1-datoms (d/datoms db-1 :eavt)
db-1-attr-freqs (frequencies (map :a db-1-datoms))
db-2 (-> db-1
(d/db-with tx))
db-2-datoms (d/datoms db-2 :eavt)
db-2-attr-freqs (frequencies (map :a db-2-datoms))
]
(is (= db-1
db-2))
(is (= db-1-attr-freqs
db-2-attr-freqs))))))
#?(:clj (deftest transact-test
(is (empty?
(failures
(stest/check
`datalog/transact
{stc-opts
{:num-tests 10 :max-size 3}
}))))))
(deftest empty-db-test
(is (empty?
(failures
(stest/check
`datalog/empty-db
{stc-opts
{:num-tests 10 :max-size 3}
})))))
(deftest empty-extensions-test
(testing "our coercion properly handles empty extensions"
(let [statement {"actor"
{"objectType" "Agent",
"name" "<NAME>",
"mbox" "mailto:<EMAIL>"},
"verb"
{"id" "http://adlnet.gov/expapi/verbs/attended",
"display" {"en-GB" "attended", "en-US" "attended"}},
"object"
{"objectType" "Activity",
"id" "http://www.example.com/meetings/occurances/34534",
"definition"
{"type" "http://adlnet.gov/expapi/activities/meeting",
"name" {"en-GB" "example meeting", "en-US" "example meeting"},
"description"
{"en-GB"
"An example meeting that happened on a specific occasion with certain people present.",
"en-US"
"An example meeting that happened on a specific occasion with certain people present."},
"moreInfo" "http://virtualmeeting.example.com/345256",
"extensions" {}}},
"id" "5e46f8a1-6bef-451e-9cea-d1bdd304d0ca",
"timestamp" "2020-02-14T19:44:33.512Z",
"stored" "2020-02-14T19:44:33.512Z"}]
(testing "spec allows it"
(is (s/valid? ::xs/statement statement)))
(testing "it transacts"
(is (d/db? (datalog/transact (datalog/empty-db) [statement])))))))
| true |
(ns com.yetanalytics.dave.datalog-test
(:require
[clojure.test #?(:cljs :refer-macros
:clj :refer) [deftest is testing]]
[clojure.spec.alpha :as s]
[xapi-schema.spec :as xs]
[clojure.spec.test.alpha :as stest]
clojure.test.check.generators
[clojure.test.check :as tc]
[clojure.test.check.properties :as prop :include-macros true]
[clojure.test.check.clojure-test #?(:cljs :refer-macros
:clj :refer) [defspec]]
[com.yetanalytics.dave.datalog :as datalog]
[com.yetanalytics.dave.datalog.schema :as schema]
[datascript.core :as d]
[com.yetanalytics.dave.test-support :refer [failures stc-opts read-json]]
[clojure.pprint :refer [pprint]]))
;; known-good-statements to use in testing
(def statements
(read-json "resources/public/data/dave/ds.json"))
(deftest statements-sanity-test
(is (= 224 (count statements)))
(is (s/valid? ::xs/statements statements)))
(deftest ->tx-test
(let [tx (datalog/->tx schema/xapi statements)]
(testing "tx expectations"
(is (s/valid? (s/every map?)
tx))
(is (= 224 (count tx))))
(testing "static statements"
(let [db (d/db-with (d/init-db [] schema/xapi) tx)]
(is (d/db? db))
(is (= 2816 (count (d/datoms db :eavt))))
(is (= 224
(d/q '[:find (count-distinct ?s) .
:where
[?s :statement/id]]
db))))))
#?(:clj (testing "generated statements"
(is (empty?
(failures
(stest/check
`datalog/->tx
{stc-opts
{:num-tests 10 :max-size 3}
})))))))
#?(:clj (deftest idempotency-test
(testing "transactions to datalog db are idempotent"
(let [tx (datalog/->tx schema/xapi statements)
db-1 (-> (d/init-db [] schema/xapi)
(d/db-with tx))
db-1-datoms (d/datoms db-1 :eavt)
db-1-attr-freqs (frequencies (map :a db-1-datoms))
db-2 (-> db-1
(d/db-with tx))
db-2-datoms (d/datoms db-2 :eavt)
db-2-attr-freqs (frequencies (map :a db-2-datoms))
]
(is (= db-1
db-2))
(is (= db-1-attr-freqs
db-2-attr-freqs))))
(testing "even more so with transact"
(let [db-1 (-> (d/init-db [] schema/xapi)
(datalog/transact statements))
db-1-datoms (d/datoms db-1 :eavt)
db-1-attr-freqs (frequencies (map :a db-1-datoms))
db-2 (-> db-1
(datalog/transact statements)) ;; should be a no-op
db-2-datoms (d/datoms db-2 :eavt)
db-2-attr-freqs (frequencies (map :a db-2-datoms))
]
(is (= db-1
db-2))
(is (= db-1-attr-freqs
db-2-attr-freqs))))))
(deftest account-upsert-test
(testing "some strange behaviours of agent/group accounts"
(testing "agent"
(let [statement {"id" "0a029ae8-bd87-441e-b879-a4c5da2d6722",
;; actor is identified by account
"actor" {"account" {"homePage" "https://example.org"
"name" "PI:NAME:<NAME>END_PIilt"}},
"verb" {"id" "aaa://aaa.aaa.aaa/aaa"},
"object" {"objectType" "Agent", "mbox" "mailto:PI:EMAIL:<EMAIL>END_PI"},
"timestamp" "1970-01-01T00:00:00.0Z",
"stored" "1970-01-01T00:00:00.0Z",
"version" "1.0.0"}
tx (datalog/->tx schema/xapi [statement])]
(is (d/db? (-> (d/init-db [] schema/xapi)
(d/db-with tx)
(d/db-with tx))))))))
#?(:clj (defspec idempotency-gen-test 10
(prop/for-all
[ss (s/gen ::xs/lrs-statements)]
(let [tx (datalog/->tx schema/xapi ss)
db-1 (-> (d/init-db [] schema/xapi)
(d/db-with tx))
db-1-datoms (d/datoms db-1 :eavt)
db-1-attr-freqs (frequencies (map :a db-1-datoms))
db-2 (-> db-1
(d/db-with tx))
db-2-datoms (d/datoms db-2 :eavt)
db-2-attr-freqs (frequencies (map :a db-2-datoms))
]
(is (= db-1
db-2))
(is (= db-1-attr-freqs
db-2-attr-freqs))))))
#?(:clj (deftest transact-test
(is (empty?
(failures
(stest/check
`datalog/transact
{stc-opts
{:num-tests 10 :max-size 3}
}))))))
(deftest empty-db-test
(is (empty?
(failures
(stest/check
`datalog/empty-db
{stc-opts
{:num-tests 10 :max-size 3}
})))))
(deftest empty-extensions-test
(testing "our coercion properly handles empty extensions"
(let [statement {"actor"
{"objectType" "Agent",
"name" "PI:NAME:<NAME>END_PI",
"mbox" "mailto:PI:EMAIL:<EMAIL>END_PI"},
"verb"
{"id" "http://adlnet.gov/expapi/verbs/attended",
"display" {"en-GB" "attended", "en-US" "attended"}},
"object"
{"objectType" "Activity",
"id" "http://www.example.com/meetings/occurances/34534",
"definition"
{"type" "http://adlnet.gov/expapi/activities/meeting",
"name" {"en-GB" "example meeting", "en-US" "example meeting"},
"description"
{"en-GB"
"An example meeting that happened on a specific occasion with certain people present.",
"en-US"
"An example meeting that happened on a specific occasion with certain people present."},
"moreInfo" "http://virtualmeeting.example.com/345256",
"extensions" {}}},
"id" "5e46f8a1-6bef-451e-9cea-d1bdd304d0ca",
"timestamp" "2020-02-14T19:44:33.512Z",
"stored" "2020-02-14T19:44:33.512Z"}]
(testing "spec allows it"
(is (s/valid? ::xs/statement statement)))
(testing "it transacts"
(is (d/db? (datalog/transact (datalog/empty-db) [statement])))))))
|
[
{
"context": "onverts maps to seqs\"\n (let [raw-data [{:name \"Pete\" :age 36 :city \"York\"}\n {:name",
"end": 254,
"score": 0.9997089505195618,
"start": 250,
"tag": "NAME",
"value": "Pete"
},
{
"context": ":age 36 :city \"York\"}\n {:name \"Sarah\" :age 34 :city \"Wallingford\"}\n ",
"end": 311,
"score": 0.999826967716217,
"start": 306,
"tag": "NAME",
"value": "Sarah"
},
{
"context": " :city \"Wallingford\"}\n {:name \"Shawn\" :age 29 :city \"Portland\"}]\n data-table ",
"end": 375,
"score": 0.9998372793197632,
"start": 370,
"tag": "NAME",
"value": "Shawn"
},
{
"context": "age 29 :city \"Portland\"}]\n data-table [[\"Pete\" 36]\n [\"Sarah\" 34]\n ",
"end": 432,
"score": 0.9997462034225464,
"start": 428,
"tag": "NAME",
"value": "Pete"
},
{
"context": " data-table [[\"Pete\" 36]\n [\"Sarah\" 34]\n [\"Shawn\" 29]]]\n (",
"end": 467,
"score": 0.9998288154602051,
"start": 462,
"tag": "NAME",
"value": "Sarah"
},
{
"context": " [\"Sarah\" 34]\n [\"Shawn\" 29]]]\n (is (= (get-data-table raw-data [:na",
"end": 502,
"score": 0.9998451471328735,
"start": 497,
"tag": "NAME",
"value": "Shawn"
}
] |
test/qu/test/data.clj
|
marcesher/qu
| 325 |
(ns qu.test.data
(:require [clojure.test :refer :all]
[qu.data :refer :all]
[qu.query :refer [is-aggregation? params->Query]]))
(deftest test-get-data-table
(testing "it converts maps to seqs"
(let [raw-data [{:name "Pete" :age 36 :city "York"}
{:name "Sarah" :age 34 :city "Wallingford"}
{:name "Shawn" :age 29 :city "Portland"}]
data-table [["Pete" 36]
["Sarah" 34]
["Shawn" 29]]]
(is (= (get-data-table raw-data [:name :age])
data-table)))))
;; (run-tests)
|
84122
|
(ns qu.test.data
(:require [clojure.test :refer :all]
[qu.data :refer :all]
[qu.query :refer [is-aggregation? params->Query]]))
(deftest test-get-data-table
(testing "it converts maps to seqs"
(let [raw-data [{:name "<NAME>" :age 36 :city "York"}
{:name "<NAME>" :age 34 :city "Wallingford"}
{:name "<NAME>" :age 29 :city "Portland"}]
data-table [["<NAME>" 36]
["<NAME>" 34]
["<NAME>" 29]]]
(is (= (get-data-table raw-data [:name :age])
data-table)))))
;; (run-tests)
| true |
(ns qu.test.data
(:require [clojure.test :refer :all]
[qu.data :refer :all]
[qu.query :refer [is-aggregation? params->Query]]))
(deftest test-get-data-table
(testing "it converts maps to seqs"
(let [raw-data [{:name "PI:NAME:<NAME>END_PI" :age 36 :city "York"}
{:name "PI:NAME:<NAME>END_PI" :age 34 :city "Wallingford"}
{:name "PI:NAME:<NAME>END_PI" :age 29 :city "Portland"}]
data-table [["PI:NAME:<NAME>END_PI" 36]
["PI:NAME:<NAME>END_PI" 34]
["PI:NAME:<NAME>END_PI" 29]]]
(is (= (get-data-table raw-data [:name :age])
data-table)))))
;; (run-tests)
|
[
{
"context": ";; Copyright 2014-2020 King\n;; Copyright 2009-2014 Ragnar Svensson, Christian Murray\n;; Licensed under the Defold Li",
"end": 111,
"score": 0.9998026490211487,
"start": 96,
"tag": "NAME",
"value": "Ragnar Svensson"
},
{
"context": "-2020 King\n;; Copyright 2009-2014 Ragnar Svensson, Christian Murray\n;; Licensed under the Defold License version 1.0 ",
"end": 129,
"score": 0.9998252391815186,
"start": 113,
"tag": "NAME",
"value": "Christian Murray"
}
] |
editor/src/clj/editor/pipeline.clj
|
cmarincia/defold
| 0 |
;; Copyright 2020-2022 The Defold Foundation
;; Copyright 2014-2020 King
;; Copyright 2009-2014 Ragnar Svensson, Christian Murray
;; Licensed under the Defold License version 1.0 (the "License"); you may not use
;; this file except in compliance with the License.
;;
;; You may obtain a copy of the License, together with FAQs at
;; https://www.defold.com/license
;;
;; Unless required by applicable law or agreed to in writing, software distributed
;; under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
;; CONDITIONS OF ANY KIND, either express or implied. See the License for the
;; specific language governing permissions and limitations under the License.
(ns editor.pipeline
(:require [clojure.java.io :as io]
[dynamo.graph :as g]
[editor.build-target :as bt]
[editor.fs :as fs]
[editor.progress :as progress]
[editor.protobuf :as protobuf]
[editor.resource :as resource]
[editor.workspace :as workspace]
[util.digest :as digest])
(:import [java.io File]))
(set! *warn-on-reflection* true)
(defn- resolve-resource-paths
[pb dep-resources resource-props]
(reduce (fn [m [prop resource]]
(assoc m prop (resource/proj-path (get dep-resources resource))))
pb
resource-props))
(defn- make-resource-props
[dep-build-targets m resource-keys]
(let [deps-by-source (into {}
(map (fn [build-target]
(let [build-resource (:resource build-target)
source-resource (:resource build-resource)]
(when-not (and (satisfies? resource/Resource build-resource)
(satisfies? resource/Resource source-resource))
(throw (ex-info "dep-build-targets contains an invalid build target"
{:build-target build-target
:build-resource build-resource
:source-resource source-resource})))
[source-resource build-resource])))
dep-build-targets)]
(keep (fn [resource-key]
(when-let [source-resource (m resource-key)]
(when-not (satisfies? resource/Resource source-resource)
(throw (ex-info "value for resource key in m is not a Resource"
{:key resource-key
:value source-resource
:resource-keys resource-keys})))
(if-let [build-resource (deps-by-source source-resource)]
[resource-key build-resource]
(throw (ex-info "deps-by-source is missing a referenced source-resource"
{:key resource-key
:deps-by-source deps-by-source
:source-resource source-resource})))))
resource-keys)))
(defn- build-protobuf
[resource dep-resources user-data]
(let [{:keys [pb-class pb-msg resource-keys]} user-data
pb-msg (resolve-resource-paths pb-msg dep-resources resource-keys)]
{:resource resource
:content (protobuf/map->bytes pb-class pb-msg)}))
(defn make-protobuf-build-target
[resource dep-build-targets pb-class pb-msg pb-resource-fields]
(let [dep-build-targets (flatten dep-build-targets)
resource-keys (make-resource-props dep-build-targets pb-msg pb-resource-fields)]
(bt/with-content-hash
{:resource (workspace/make-build-resource resource)
:build-fn build-protobuf
:user-data {:pb-class pb-class
:pb-msg (reduce dissoc pb-msg resource-keys)
:resource-keys resource-keys}
:deps dep-build-targets})))
;;--------------------------------------------------------------------
(defn flatten-build-targets
"Breadth first traversal / collection of build-targets and their child :deps,
skipping seen targets identified by the :content-hash of each build-target."
([build-targets]
(flatten-build-targets build-targets #{}))
([build-targets seen-content-hashes]
(assert (set? seen-content-hashes))
(loop [targets build-targets
queue []
seen seen-content-hashes
result (transient [])]
(if-some [target (first targets)]
(let [content-hash (:content-hash target)]
(assert (bt/content-hash? content-hash)
(str "Build target has invalid content-hash: "
(resource/resource->proj-path (:resource target))))
(if (contains? seen content-hash)
(recur (rest targets)
queue
seen
result)
(recur (rest targets)
(conj queue (flatten (:deps target)))
(conj seen content-hash)
(conj! result target))))
(if-some [targets (first queue)]
(recur targets
(rest queue)
seen
result)
(persistent! result))))))
(defn- make-build-targets-by-content-hash
[build-targets]
(into {}
(map (juxt :content-hash identity))
(flatten-build-targets build-targets)))
(defn- make-dep-resources
[deps build-targets-by-content-hash]
(into {}
(map (fn [{:keys [content-hash resource] :as _build-target}]
(assert (bt/content-hash? content-hash))
[resource (:resource (get build-targets-by-content-hash content-hash))]))
(flatten deps)))
(defn prune-artifact-map [artifact-map build-targets-by-content-hash]
(into {}
(filter (fn [[_resource-path result]]
(contains? build-targets-by-content-hash
(:content-hash result))))
artifact-map))
(defn- valid? [resource artifact]
(when-some [^File f (io/as-file resource)]
(let [{:keys [mtime size]} artifact]
(and (.exists f) (= mtime (.lastModified f)) (= size (.length f))))))
(defn- to-disk! [artifact content-hash]
(assert (some? (:content artifact)))
(fs/create-parent-directories! (io/as-file (:resource artifact)))
(let [^bytes content (:content artifact)]
(with-open [out (io/output-stream (:resource artifact))]
(.write out content))
(let [^File target-f (io/as-file (:resource artifact))
mtime (.lastModified target-f)
size (.length target-f)]
(-> artifact
(dissoc :content)
(assoc
:content-hash content-hash
:mtime mtime
:size size
:etag (digest/sha1-hex content))))))
(defn- prune-build-dir! [build-dir build-targets-by-content-hash]
(let [targets (into #{}
(map (fn [[_ target]]
(io/as-file (:resource target))))
build-targets-by-content-hash)]
(fs/create-directories! build-dir)
(doseq [^File f (file-seq build-dir)]
(when (and (not (.isDirectory f)) (not (contains? targets f)))
(fs/delete! f)))))
(defn- expensive? [build-target]
(contains? #{"fontc"} (resource/ext (:resource build-target))))
(defn- batched-pmap [f batches]
(->> batches
(pmap (fn [batch] (doall (map f batch))))
(reduce concat)
doall))
(def ^:private cheap-batch-size 500)
(def ^:private expensive-batch-size 5)
(defn build!
[build-targets build-dir old-artifact-map render-progress!]
(let [build-targets-by-content-hash (make-build-targets-by-content-hash build-targets)
pruned-old-artifact-map (prune-artifact-map old-artifact-map build-targets-by-content-hash)
progress (atom (progress/make "" (count build-targets-by-content-hash)))]
(prune-build-dir! build-dir build-targets-by-content-hash)
(let [{cheap-build-targets false expensive-build-targets true} (group-by expensive? (vals build-targets-by-content-hash))
build-target-batches (into (partition-all cheap-batch-size cheap-build-targets)
(partition-all expensive-batch-size expensive-build-targets))
results (batched-pmap
(fn [build-target]
(let [{:keys [content-hash node-id resource deps build-fn user-data]} build-target
resource-path (resource/proj-path resource)
cached-artifact (when-some [artifact (get pruned-old-artifact-map resource-path)]
(when (valid? resource artifact)
(assoc artifact :resource resource)))
message (str "Building " (resource/proj-path resource))]
(render-progress! (swap! progress progress/with-message message))
(let [result (or cached-artifact
(let [dep-resources (make-dep-resources deps build-targets-by-content-hash)
build-result (build-fn resource dep-resources user-data)]
;; Error results are assumed to be error-aggregates.
;; We need to inject the node-id of the source build
;; target into the causes, since the build-fn will
;; not have access to the node-id.
(if (g/error? build-result)
(update build-result :causes (partial mapv #(assoc % :_node-id node-id)))
(to-disk! build-result content-hash))))]
(render-progress! (swap! progress progress/advance))
result)))
build-target-batches)
{successful-results false error-results true} (group-by #(boolean (g/error? %)) results)
new-artifact-map (into {}
(map (fn [artifact]
[(resource/proj-path (:resource artifact))
(dissoc artifact :resource)]))
successful-results)
etags (workspace/artifact-map->etags new-artifact-map)]
(cond-> {:artifacts successful-results
:artifact-map new-artifact-map
:etags etags}
(seq error-results)
(assoc :error (g/error-aggregate error-results))))))
|
40847
|
;; Copyright 2020-2022 The Defold Foundation
;; Copyright 2014-2020 King
;; Copyright 2009-2014 <NAME>, <NAME>
;; Licensed under the Defold License version 1.0 (the "License"); you may not use
;; this file except in compliance with the License.
;;
;; You may obtain a copy of the License, together with FAQs at
;; https://www.defold.com/license
;;
;; Unless required by applicable law or agreed to in writing, software distributed
;; under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
;; CONDITIONS OF ANY KIND, either express or implied. See the License for the
;; specific language governing permissions and limitations under the License.
(ns editor.pipeline
(:require [clojure.java.io :as io]
[dynamo.graph :as g]
[editor.build-target :as bt]
[editor.fs :as fs]
[editor.progress :as progress]
[editor.protobuf :as protobuf]
[editor.resource :as resource]
[editor.workspace :as workspace]
[util.digest :as digest])
(:import [java.io File]))
(set! *warn-on-reflection* true)
(defn- resolve-resource-paths
[pb dep-resources resource-props]
(reduce (fn [m [prop resource]]
(assoc m prop (resource/proj-path (get dep-resources resource))))
pb
resource-props))
(defn- make-resource-props
[dep-build-targets m resource-keys]
(let [deps-by-source (into {}
(map (fn [build-target]
(let [build-resource (:resource build-target)
source-resource (:resource build-resource)]
(when-not (and (satisfies? resource/Resource build-resource)
(satisfies? resource/Resource source-resource))
(throw (ex-info "dep-build-targets contains an invalid build target"
{:build-target build-target
:build-resource build-resource
:source-resource source-resource})))
[source-resource build-resource])))
dep-build-targets)]
(keep (fn [resource-key]
(when-let [source-resource (m resource-key)]
(when-not (satisfies? resource/Resource source-resource)
(throw (ex-info "value for resource key in m is not a Resource"
{:key resource-key
:value source-resource
:resource-keys resource-keys})))
(if-let [build-resource (deps-by-source source-resource)]
[resource-key build-resource]
(throw (ex-info "deps-by-source is missing a referenced source-resource"
{:key resource-key
:deps-by-source deps-by-source
:source-resource source-resource})))))
resource-keys)))
(defn- build-protobuf
[resource dep-resources user-data]
(let [{:keys [pb-class pb-msg resource-keys]} user-data
pb-msg (resolve-resource-paths pb-msg dep-resources resource-keys)]
{:resource resource
:content (protobuf/map->bytes pb-class pb-msg)}))
(defn make-protobuf-build-target
[resource dep-build-targets pb-class pb-msg pb-resource-fields]
(let [dep-build-targets (flatten dep-build-targets)
resource-keys (make-resource-props dep-build-targets pb-msg pb-resource-fields)]
(bt/with-content-hash
{:resource (workspace/make-build-resource resource)
:build-fn build-protobuf
:user-data {:pb-class pb-class
:pb-msg (reduce dissoc pb-msg resource-keys)
:resource-keys resource-keys}
:deps dep-build-targets})))
;;--------------------------------------------------------------------
(defn flatten-build-targets
"Breadth first traversal / collection of build-targets and their child :deps,
skipping seen targets identified by the :content-hash of each build-target."
([build-targets]
(flatten-build-targets build-targets #{}))
([build-targets seen-content-hashes]
(assert (set? seen-content-hashes))
(loop [targets build-targets
queue []
seen seen-content-hashes
result (transient [])]
(if-some [target (first targets)]
(let [content-hash (:content-hash target)]
(assert (bt/content-hash? content-hash)
(str "Build target has invalid content-hash: "
(resource/resource->proj-path (:resource target))))
(if (contains? seen content-hash)
(recur (rest targets)
queue
seen
result)
(recur (rest targets)
(conj queue (flatten (:deps target)))
(conj seen content-hash)
(conj! result target))))
(if-some [targets (first queue)]
(recur targets
(rest queue)
seen
result)
(persistent! result))))))
(defn- make-build-targets-by-content-hash
[build-targets]
(into {}
(map (juxt :content-hash identity))
(flatten-build-targets build-targets)))
(defn- make-dep-resources
[deps build-targets-by-content-hash]
(into {}
(map (fn [{:keys [content-hash resource] :as _build-target}]
(assert (bt/content-hash? content-hash))
[resource (:resource (get build-targets-by-content-hash content-hash))]))
(flatten deps)))
(defn prune-artifact-map [artifact-map build-targets-by-content-hash]
(into {}
(filter (fn [[_resource-path result]]
(contains? build-targets-by-content-hash
(:content-hash result))))
artifact-map))
(defn- valid? [resource artifact]
(when-some [^File f (io/as-file resource)]
(let [{:keys [mtime size]} artifact]
(and (.exists f) (= mtime (.lastModified f)) (= size (.length f))))))
(defn- to-disk! [artifact content-hash]
(assert (some? (:content artifact)))
(fs/create-parent-directories! (io/as-file (:resource artifact)))
(let [^bytes content (:content artifact)]
(with-open [out (io/output-stream (:resource artifact))]
(.write out content))
(let [^File target-f (io/as-file (:resource artifact))
mtime (.lastModified target-f)
size (.length target-f)]
(-> artifact
(dissoc :content)
(assoc
:content-hash content-hash
:mtime mtime
:size size
:etag (digest/sha1-hex content))))))
(defn- prune-build-dir! [build-dir build-targets-by-content-hash]
(let [targets (into #{}
(map (fn [[_ target]]
(io/as-file (:resource target))))
build-targets-by-content-hash)]
(fs/create-directories! build-dir)
(doseq [^File f (file-seq build-dir)]
(when (and (not (.isDirectory f)) (not (contains? targets f)))
(fs/delete! f)))))
(defn- expensive? [build-target]
(contains? #{"fontc"} (resource/ext (:resource build-target))))
(defn- batched-pmap [f batches]
(->> batches
(pmap (fn [batch] (doall (map f batch))))
(reduce concat)
doall))
(def ^:private cheap-batch-size 500)
(def ^:private expensive-batch-size 5)
(defn build!
[build-targets build-dir old-artifact-map render-progress!]
(let [build-targets-by-content-hash (make-build-targets-by-content-hash build-targets)
pruned-old-artifact-map (prune-artifact-map old-artifact-map build-targets-by-content-hash)
progress (atom (progress/make "" (count build-targets-by-content-hash)))]
(prune-build-dir! build-dir build-targets-by-content-hash)
(let [{cheap-build-targets false expensive-build-targets true} (group-by expensive? (vals build-targets-by-content-hash))
build-target-batches (into (partition-all cheap-batch-size cheap-build-targets)
(partition-all expensive-batch-size expensive-build-targets))
results (batched-pmap
(fn [build-target]
(let [{:keys [content-hash node-id resource deps build-fn user-data]} build-target
resource-path (resource/proj-path resource)
cached-artifact (when-some [artifact (get pruned-old-artifact-map resource-path)]
(when (valid? resource artifact)
(assoc artifact :resource resource)))
message (str "Building " (resource/proj-path resource))]
(render-progress! (swap! progress progress/with-message message))
(let [result (or cached-artifact
(let [dep-resources (make-dep-resources deps build-targets-by-content-hash)
build-result (build-fn resource dep-resources user-data)]
;; Error results are assumed to be error-aggregates.
;; We need to inject the node-id of the source build
;; target into the causes, since the build-fn will
;; not have access to the node-id.
(if (g/error? build-result)
(update build-result :causes (partial mapv #(assoc % :_node-id node-id)))
(to-disk! build-result content-hash))))]
(render-progress! (swap! progress progress/advance))
result)))
build-target-batches)
{successful-results false error-results true} (group-by #(boolean (g/error? %)) results)
new-artifact-map (into {}
(map (fn [artifact]
[(resource/proj-path (:resource artifact))
(dissoc artifact :resource)]))
successful-results)
etags (workspace/artifact-map->etags new-artifact-map)]
(cond-> {:artifacts successful-results
:artifact-map new-artifact-map
:etags etags}
(seq error-results)
(assoc :error (g/error-aggregate error-results))))))
| true |
;; Copyright 2020-2022 The Defold Foundation
;; Copyright 2014-2020 King
;; Copyright 2009-2014 PI:NAME:<NAME>END_PI, PI:NAME:<NAME>END_PI
;; Licensed under the Defold License version 1.0 (the "License"); you may not use
;; this file except in compliance with the License.
;;
;; You may obtain a copy of the License, together with FAQs at
;; https://www.defold.com/license
;;
;; Unless required by applicable law or agreed to in writing, software distributed
;; under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
;; CONDITIONS OF ANY KIND, either express or implied. See the License for the
;; specific language governing permissions and limitations under the License.
(ns editor.pipeline
(:require [clojure.java.io :as io]
[dynamo.graph :as g]
[editor.build-target :as bt]
[editor.fs :as fs]
[editor.progress :as progress]
[editor.protobuf :as protobuf]
[editor.resource :as resource]
[editor.workspace :as workspace]
[util.digest :as digest])
(:import [java.io File]))
(set! *warn-on-reflection* true)
(defn- resolve-resource-paths
[pb dep-resources resource-props]
(reduce (fn [m [prop resource]]
(assoc m prop (resource/proj-path (get dep-resources resource))))
pb
resource-props))
(defn- make-resource-props
[dep-build-targets m resource-keys]
(let [deps-by-source (into {}
(map (fn [build-target]
(let [build-resource (:resource build-target)
source-resource (:resource build-resource)]
(when-not (and (satisfies? resource/Resource build-resource)
(satisfies? resource/Resource source-resource))
(throw (ex-info "dep-build-targets contains an invalid build target"
{:build-target build-target
:build-resource build-resource
:source-resource source-resource})))
[source-resource build-resource])))
dep-build-targets)]
(keep (fn [resource-key]
(when-let [source-resource (m resource-key)]
(when-not (satisfies? resource/Resource source-resource)
(throw (ex-info "value for resource key in m is not a Resource"
{:key resource-key
:value source-resource
:resource-keys resource-keys})))
(if-let [build-resource (deps-by-source source-resource)]
[resource-key build-resource]
(throw (ex-info "deps-by-source is missing a referenced source-resource"
{:key resource-key
:deps-by-source deps-by-source
:source-resource source-resource})))))
resource-keys)))
(defn- build-protobuf
[resource dep-resources user-data]
(let [{:keys [pb-class pb-msg resource-keys]} user-data
pb-msg (resolve-resource-paths pb-msg dep-resources resource-keys)]
{:resource resource
:content (protobuf/map->bytes pb-class pb-msg)}))
(defn make-protobuf-build-target
[resource dep-build-targets pb-class pb-msg pb-resource-fields]
(let [dep-build-targets (flatten dep-build-targets)
resource-keys (make-resource-props dep-build-targets pb-msg pb-resource-fields)]
(bt/with-content-hash
{:resource (workspace/make-build-resource resource)
:build-fn build-protobuf
:user-data {:pb-class pb-class
:pb-msg (reduce dissoc pb-msg resource-keys)
:resource-keys resource-keys}
:deps dep-build-targets})))
;;--------------------------------------------------------------------
(defn flatten-build-targets
"Breadth first traversal / collection of build-targets and their child :deps,
skipping seen targets identified by the :content-hash of each build-target."
([build-targets]
(flatten-build-targets build-targets #{}))
([build-targets seen-content-hashes]
(assert (set? seen-content-hashes))
(loop [targets build-targets
queue []
seen seen-content-hashes
result (transient [])]
(if-some [target (first targets)]
(let [content-hash (:content-hash target)]
(assert (bt/content-hash? content-hash)
(str "Build target has invalid content-hash: "
(resource/resource->proj-path (:resource target))))
(if (contains? seen content-hash)
(recur (rest targets)
queue
seen
result)
(recur (rest targets)
(conj queue (flatten (:deps target)))
(conj seen content-hash)
(conj! result target))))
(if-some [targets (first queue)]
(recur targets
(rest queue)
seen
result)
(persistent! result))))))
(defn- make-build-targets-by-content-hash
[build-targets]
(into {}
(map (juxt :content-hash identity))
(flatten-build-targets build-targets)))
(defn- make-dep-resources
[deps build-targets-by-content-hash]
(into {}
(map (fn [{:keys [content-hash resource] :as _build-target}]
(assert (bt/content-hash? content-hash))
[resource (:resource (get build-targets-by-content-hash content-hash))]))
(flatten deps)))
(defn prune-artifact-map [artifact-map build-targets-by-content-hash]
(into {}
(filter (fn [[_resource-path result]]
(contains? build-targets-by-content-hash
(:content-hash result))))
artifact-map))
(defn- valid? [resource artifact]
(when-some [^File f (io/as-file resource)]
(let [{:keys [mtime size]} artifact]
(and (.exists f) (= mtime (.lastModified f)) (= size (.length f))))))
(defn- to-disk! [artifact content-hash]
(assert (some? (:content artifact)))
(fs/create-parent-directories! (io/as-file (:resource artifact)))
(let [^bytes content (:content artifact)]
(with-open [out (io/output-stream (:resource artifact))]
(.write out content))
(let [^File target-f (io/as-file (:resource artifact))
mtime (.lastModified target-f)
size (.length target-f)]
(-> artifact
(dissoc :content)
(assoc
:content-hash content-hash
:mtime mtime
:size size
:etag (digest/sha1-hex content))))))
(defn- prune-build-dir! [build-dir build-targets-by-content-hash]
(let [targets (into #{}
(map (fn [[_ target]]
(io/as-file (:resource target))))
build-targets-by-content-hash)]
(fs/create-directories! build-dir)
(doseq [^File f (file-seq build-dir)]
(when (and (not (.isDirectory f)) (not (contains? targets f)))
(fs/delete! f)))))
(defn- expensive? [build-target]
(contains? #{"fontc"} (resource/ext (:resource build-target))))
(defn- batched-pmap [f batches]
(->> batches
(pmap (fn [batch] (doall (map f batch))))
(reduce concat)
doall))
(def ^:private cheap-batch-size 500)
(def ^:private expensive-batch-size 5)
(defn build!
[build-targets build-dir old-artifact-map render-progress!]
(let [build-targets-by-content-hash (make-build-targets-by-content-hash build-targets)
pruned-old-artifact-map (prune-artifact-map old-artifact-map build-targets-by-content-hash)
progress (atom (progress/make "" (count build-targets-by-content-hash)))]
(prune-build-dir! build-dir build-targets-by-content-hash)
(let [{cheap-build-targets false expensive-build-targets true} (group-by expensive? (vals build-targets-by-content-hash))
build-target-batches (into (partition-all cheap-batch-size cheap-build-targets)
(partition-all expensive-batch-size expensive-build-targets))
results (batched-pmap
(fn [build-target]
(let [{:keys [content-hash node-id resource deps build-fn user-data]} build-target
resource-path (resource/proj-path resource)
cached-artifact (when-some [artifact (get pruned-old-artifact-map resource-path)]
(when (valid? resource artifact)
(assoc artifact :resource resource)))
message (str "Building " (resource/proj-path resource))]
(render-progress! (swap! progress progress/with-message message))
(let [result (or cached-artifact
(let [dep-resources (make-dep-resources deps build-targets-by-content-hash)
build-result (build-fn resource dep-resources user-data)]
;; Error results are assumed to be error-aggregates.
;; We need to inject the node-id of the source build
;; target into the causes, since the build-fn will
;; not have access to the node-id.
(if (g/error? build-result)
(update build-result :causes (partial mapv #(assoc % :_node-id node-id)))
(to-disk! build-result content-hash))))]
(render-progress! (swap! progress progress/advance))
result)))
build-target-batches)
{successful-results false error-results true} (group-by #(boolean (g/error? %)) results)
new-artifact-map (into {}
(map (fn [artifact]
[(resource/proj-path (:resource artifact))
(dissoc artifact :resource)]))
successful-results)
etags (workspace/artifact-map->etags new-artifact-map)]
(cond-> {:artifacts successful-results
:artifact-map new-artifact-map
:etags etags}
(seq error-results)
(assoc :error (g/error-aggregate error-results))))))
|
[
{
"context": "llection {}))\n token (e/login (s/context) \"user1\")\n tag-key \"tag1\"]\n\n (tags/create-tag t",
"end": 9526,
"score": 0.5850340723991394,
"start": 9521,
"tag": "USERNAME",
"value": "user1"
},
{
"context": "en (e/login (s/context) \"user1\")\n tag-key \"tag1\"]\n\n (tags/create-tag token (tags/make-tag {:ta",
"end": 9550,
"score": 0.9294632077217102,
"start": 9546,
"tag": "KEY",
"value": "tag1"
},
{
"context": "itle \"et2\"}))\n token (e/login (s/context) \"user1\")]\n (tags/create-tag token (tags/make-tag {:ta",
"end": 16100,
"score": 0.6758949756622314,
"start": 16095,
"tag": "USERNAME",
"value": "user1"
},
{
"context": " (tags/create-tag token (tags/make-tag {:tag-key \"tag2\"}))\n (index/wait-until-indexed)\n\n ;; assoc",
"end": 16222,
"score": 0.7749629020690918,
"start": 16219,
"tag": "KEY",
"value": "tag"
}
] |
system-int-test/test/cmr/system_int_test/search/tagging/tag_association_collection_revisions_test.clj
|
sxu123/Common-Metadata-Repository
| 0 |
(ns cmr.system-int-test.search.tagging.tag-association-collection-revisions-test
"This tests associating tags with collection revisions."
(:require [clojure.test :refer :all]
[clojure.string :as str]
[cmr.common.util :refer [are2] :as util]
[cmr.system-int-test.utils.ingest-util :as ingest]
[cmr.system-int-test.utils.search-util :as search]
[cmr.system-int-test.utils.index-util :as index]
[cmr.system-int-test.utils.metadata-db-util :as mdb]
[cmr.system-int-test.utils.tag-util :as tags]
[cmr.system-int-test.data2.core :as d]
[cmr.system-int-test.data2.collection :as dc]
[cmr.transmit.tag :as tt]
[cmr.mock-echo.client.echo-util :as e]
[cmr.system-int-test.system :as s]))
(use-fixtures :each (join-fixtures
[(ingest/reset-fixture {"provguid1" "PROV1" "provguid2" "PROV2" "provguid3" "PROV3"}
{:grant-all-search? false})
tags/grant-all-tag-fixture]))
(defn- assert-tag-association
"Assert the collections are associated with the tag for the given tag-key.
If the options has :all-revisions true, the collections will be search on all collection revisions."
([token colls tag-key]
(assert-tag-association token colls tag-key {}))
([token colls tag-key options]
(is (d/refs-match?
colls
(search/find-refs :collection (merge {:token token :tag-key tag-key} options))))))
(deftest tag-association-collection-revisions-test
;; Grant all collections in PROV1 and 2
(e/grant-registered-users (s/context) (e/coll-catalog-item-id "provguid1"))
(e/grant-registered-users (s/context) (e/coll-catalog-item-id "provguid2"))
(let [coll1-1 (d/ingest "PROV1" (dc/collection {:entry-title "et1"}))
concept1 {:provider-id "PROV1"
:concept-type :collection
:native-id (:entry-title coll1-1)}
coll1-2-tombstone (merge (ingest/delete-concept concept1) concept1 {:deleted true})
coll1-3 (d/ingest "PROV1" (dc/collection {:entry-title "et1"}))
coll2-1 (d/ingest "PROV1" (dc/collection {:entry-title "et2"}))
coll2-2 (d/ingest "PROV1" (dc/collection {:entry-title "et2"}))
concept2 {:provider-id "PROV1"
:concept-type :collection
:native-id (:entry-title coll2-2)}
coll2-3-tombstone (merge (ingest/delete-concept concept2) concept2 {:deleted true})
coll3 (d/ingest "PROV2" (dc/collection {}))
coll4 (d/ingest "PROV3" (dc/collection {}))
token (e/login (s/context) "user1")
tag-key "tag1"]
(tags/create-tag token (tags/make-tag {:tag-key tag-key}))
(index/wait-until-indexed)
(testing "successful case, the tag association keys can have either _ or -"
(let [response (tags/associate-by-concept-ids
token tag-key [{:concept_id (:concept-id coll1-1)
:revision_id (:revision-id coll1-1)
:data "snow"}
{:concept-id (:concept-id coll3)
:data "cloud"}])]
(index/wait-until-indexed)
(tags/assert-tag-association-response-ok?
{[(:concept-id coll1-1) (:revision-id coll1-1)] {:concept-id "TA1200000005-CMR"
:revision-id 1}
[(:concept-id coll3)] {:concept-id "TA1200000006-CMR"
:revision-id 1}}
response)))
(testing "revision-id must be an integer"
(let [{:keys [status errors]} (tags/associate-by-concept-ids
token tag-key
[{:concept-id (:concept-id coll1-1)
:revision-id "1"}])
expected-msg "/0/revision_id instance type (string) does not match any allowed primitive type (allowed: [\"integer\"])"]
(is (= [400 [expected-msg]] [status errors]))))
(testing "tag a non-existent collection revision"
(let [concept-id (:concept-id coll1-1)
response (tags/associate-by-concept-ids
token tag-key
[{:concept-id concept-id
:revision-id 5}])]
(tags/assert-tag-association-response-ok?
{[concept-id 5]
{:errors [(format "Collection with concept id [%s] revision id [5] does not exist or is not visible."
concept-id)]}}
response)))
(testing "tag an invisible collection revision"
(let [concept-id (:concept-id coll4)
revision-id (:revision-id coll4)
response (tags/associate-by-concept-ids
token tag-key
[{:concept-id concept-id
:revision-id revision-id}])]
(tags/assert-tag-association-response-ok?
{[concept-id revision-id]
{:errors [(format "Collection with concept id [%s] revision id [%s] does not exist or is not visible."
concept-id revision-id)]}}
response)))
(testing "tag a tombstoned revision is invalid"
(let [concept-id (:concept-id coll1-2-tombstone)
revision-id (:revision-id coll1-2-tombstone)
response (tags/associate-by-concept-ids
token tag-key
[{:concept-id concept-id
:revision-id revision-id}])
expected-msg (format (str "Collection with concept id [%s] revision id [%s] is a tombstone. "
"We don't allow tagging individual revisions that are tombstones.")
concept-id revision-id)]
(tags/assert-tag-association-response-ok?
{[concept-id revision-id] {:errors [expected-msg]}}
response)))
(testing "Cannot tag collection that already has collection revision tagging"
(let [response (tags/associate-by-concept-ids
token tag-key [{:concept-id (:concept-id coll1-3)}])
expected-msg (format
(str "There are already tag associations with tag key [%s] on "
"collection [%s] revision ids [%s], cannot create tag association "
"on the same collection without revision id.")
tag-key (:concept-id coll1-1) (:revision-id coll1-1))]
(tags/assert-tag-association-response-ok?
{[(:concept-id coll1-3)] {:errors [expected-msg]}}
response)))
(testing "Cannot tag collection revision that already has collection tagging"
(let [concept-id (:concept-id coll3)
revision-id (:revision-id coll3)
response (tags/associate-by-concept-ids
token tag-key
[{:concept-id (:concept-id coll3)
:revision-id (:revision-id coll3)}])
expected-msg (format
(str "There are already tag associations with tag key [%s] on "
"collection [%s] without revision id, cannot create tag "
"association on the same collection with revision id [%s].")
tag-key concept-id revision-id)]
(tags/assert-tag-association-response-ok?
{[concept-id revision-id] {:errors [expected-msg]}}
response)))
(testing "tag collection revisions mixed response"
(let [concept-id (:concept-id coll1-1)
revision-id (:revision-id coll1-1)
response (tags/associate-by-concept-ids
token tag-key
[{:concept-id concept-id :revision-id 5}
{:concept-id concept-id :revision-id revision-id}])]
(tags/assert-tag-association-response-ok?
{[concept-id 5]
{:errors [(format "Collection with concept id [%s] revision id [5] does not exist or is not visible."
concept-id)]}
[concept-id revision-id] {:concept-id "TA1200000005-CMR" :revision-id 2}}
response)))))
(deftest tag-disassociation-collection-revisions-test
;; Grant all collections in PROV1 and 2
(e/grant-registered-users (s/context) (e/coll-catalog-item-id "provguid1"))
(e/grant-registered-users (s/context) (e/coll-catalog-item-id "provguid2"))
(let [coll1-1 (d/ingest "PROV1" (dc/collection {:entry-title "et1"}))
concept1 {:provider-id "PROV1"
:concept-type :collection
:native-id (:entry-title coll1-1)}
coll1-2-tombstone (merge (ingest/delete-concept concept1) concept1 {:deleted true})
coll1-3 (d/ingest "PROV1" (dc/collection {:entry-title "et1"}))
coll2-1 (d/ingest "PROV1" (dc/collection {:entry-title "et2"}))
coll2-2 (d/ingest "PROV1" (dc/collection {:entry-title "et2"}))
concept2 {:provider-id "PROV1"
:concept-type :collection
:native-id (:entry-title coll2-2)}
coll2-3-tombstone (merge (ingest/delete-concept concept2) concept2 {:deleted true})
coll3 (d/ingest "PROV2" (dc/collection {}))
coll4 (d/ingest "PROV3" (dc/collection {}))
token (e/login (s/context) "user1")
tag-key "tag1"]
(tags/create-tag token (tags/make-tag {:tag-key tag-key}))
(index/wait-until-indexed)
(tags/associate-by-concept-ids
token tag-key [{:concept-id (:concept-id coll1-1)
:revision-id (:revision-id coll1-1)}
{:concept-id (:concept-id coll1-3)
:revision-id (:revision-id coll1-3)}
{:concept-id (:concept-id coll2-1)
:revision-id (:revision-id coll2-1)
:data "snow"}
{:concept-id (:concept-id coll2-2)
:revision-id (:revision-id coll2-2)
:data "cloud"}
{:concept-id (:concept-id coll3)}])
(index/wait-until-indexed)
(testing "successful case"
(let [response (tags/disassociate-by-concept-ids
token tag-key [{:concept-id (:concept-id coll2-1)
:revision-id (:revision-id coll2-1)}
{:concept-id (:concept-id coll3)}])]
(index/wait-until-indexed)
(tags/assert-tag-disassociation-response-ok?
{[(:concept-id coll2-1) (:revision-id coll2-1)] {:concept-id "TA1200000007-CMR"
:revision-id 2}
[(:concept-id coll3)] {:concept-id "TA1200000009-CMR"
:revision-id 2}}
response)))
(testing "revision-id must be an integer"
(let [{:keys [status errors]} (tags/disassociate-by-concept-ids
token tag-key
[{:concept-id (:concept-id coll1-1)
:revision-id "1"}])
expected-msg "/0/revision_id instance type (string) does not match any allowed primitive type (allowed: [\"integer\"])"]
(is (= [400 [expected-msg]] [status errors]))))
(testing "disassociate tag of a non-existent collection revision"
(let [concept-id (:concept-id coll1-1)
response (tags/disassociate-by-concept-ids
token tag-key
[{:concept-id concept-id
:revision-id 5}])]
(tags/assert-tag-disassociation-response-ok?
{[concept-id 5]
{:errors [(format "Collection with concept id [%s] revision id [5] does not exist or is not visible."
concept-id)]}}
response)))
(testing "disassociate tag of an invisible collection revision"
(let [concept-id (:concept-id coll4)
revision-id (:revision-id coll4)
response (tags/disassociate-by-concept-ids
token tag-key
[{:concept-id concept-id
:revision-id revision-id}])]
(tags/assert-tag-disassociation-response-ok?
{[concept-id revision-id]
{:errors [(format "Collection with concept id [%s] revision id [%s] does not exist or is not visible."
concept-id revision-id)]}}
response)))
(testing "disassociate tag of a tombstoned revision is invalid"
(let [concept-id (:concept-id coll1-2-tombstone)
revision-id (:revision-id coll1-2-tombstone)
response (tags/disassociate-by-concept-ids
token tag-key
[{:concept-id concept-id
:revision-id revision-id}])
expected-msg (format (str "Collection with concept id [%s] revision id [%s] is a tombstone. "
"We don't allow tagging individual revisions that are tombstones.")
concept-id revision-id)]
(tags/assert-tag-disassociation-response-ok?
{[concept-id revision-id] {:errors [expected-msg]}}
response)))
(testing "disassociate tag of collection that already has collection revision tagging"
(let [response (tags/disassociate-by-concept-ids
token tag-key [{:concept-id (:concept-id coll1-3)}])
expected-msg (format "Tag [%s] is not associated with collection [%s]."
tag-key (:concept-id coll1-3))]
(tags/assert-tag-disassociation-response-ok?
{[(:concept-id coll1-3)] {:warnings [expected-msg]}}
response)))
(testing "disassociate tag of individual collection revision that already has been tagged at the collection level"
(let [concept-id (:concept-id coll3)
revision-id (:revision-id coll3)
response (tags/disassociate-by-concept-ids
token tag-key
[{:concept-id concept-id
:revision-id revision-id}])
expected-msg (format (str "Tag [%s] is not associated with the specific collection concept revision "
"concept id [%s] and revision id [%s].")
tag-key concept-id revision-id)]
(tags/assert-tag-disassociation-response-ok?
{[concept-id revision-id] {:warnings [expected-msg]}}
response)))
(testing "disassociate tag of collection revisions mixed response"
(let [concept-id (:concept-id coll1-1)
revision-id (:revision-id coll1-1)
response (tags/disassociate-by-concept-ids
token tag-key
[{:concept-id concept-id :revision-id 5}
{:concept-id concept-id :revision-id revision-id}])]
(tags/assert-tag-disassociation-response-ok?
{[concept-id 5]
{:errors [(format "Collection with concept id [%s] revision id [5] does not exist or is not visible."
concept-id)]}
[concept-id revision-id] {:concept-id "TA1200000005-CMR" :revision-id 2}}
response)))))
(deftest associate-disassociate-tag-with-collection-revisions-test
;; Grant all collections in PROV1
(e/grant-registered-users (s/context) (e/coll-catalog-item-id "provguid1"))
(let [coll1-1 (d/ingest "PROV1" (dc/collection {:entry-title "et1"}))
coll1-2 (d/ingest "PROV1" (dc/collection {:entry-title "et1"}))
coll1-3 (d/ingest "PROV1" (dc/collection {:entry-title "et1"}))
coll2-1 (d/ingest "PROV1" (dc/collection {:entry-title "et2"}))
coll2-2 (d/ingest "PROV1" (dc/collection {:entry-title "et2"}))
token (e/login (s/context) "user1")]
(tags/create-tag token (tags/make-tag {:tag-key "tag1"}))
(tags/create-tag token (tags/make-tag {:tag-key "tag2"}))
(index/wait-until-indexed)
;; associate tag1 to coll1-1, coll1-2, coll2-2
(tags/associate-by-concept-ids token "tag1" [{:concept-id (:concept-id coll1-1)
:revision-id (:revision-id coll1-1)}
{:concept-id (:concept-id coll1-2)
:revision-id (:revision-id coll1-2)}
{:concept-id (:concept-id coll2-2)
:revision-id (:revision-id coll2-2)}])
;; associate tag2 to coll1-3, coll2-1
(tags/associate-by-concept-ids token "tag2" [{:concept-id (:concept-id coll1-3)
:revision-id (:revision-id coll1-3)}
{:concept-id (:concept-id coll2-1)
:revision-id (:revision-id coll2-1)}])
(index/wait-until-indexed)
;; verify association, latest revision
(assert-tag-association token [coll2-2] "tag1")
(assert-tag-association token [coll1-3] "tag2")
;; verify association, all revisions
(assert-tag-association token [coll1-1 coll1-2 coll2-2] "tag1" {:all-revisions true})
(assert-tag-association token [coll1-3 coll2-1] "tag2" {:all-revisions true})
;; associate tag1 to coll1-1 again, also coll1-3
(tags/associate-by-concept-ids token "tag1" [{:concept-id (:concept-id coll1-3)
:revision-id (:revision-id coll1-3)}
{:concept-id (:concept-id coll1-1)
:revision-id (:revision-id coll1-1)}])
(index/wait-until-indexed)
;; verify association, latest revision
(assert-tag-association token [coll1-3 coll2-2] "tag1")
(assert-tag-association token [coll1-3] "tag2")
;; verify association, all revisions
(assert-tag-association token [coll1-1 coll1-2 coll1-3 coll2-2] "tag1" {:all-revisions true})
(assert-tag-association token [coll1-3 coll2-1] "tag2" {:all-revisions true})
;; disassociate tag1 from coll1-2 and coll2-2
(tags/disassociate-by-concept-ids token "tag1" [{:concept-id (:concept-id coll1-2)
:revision-id (:revision-id coll1-2)}
{:concept-id (:concept-id coll2-2)
:revision-id (:revision-id coll2-2)}])
;; disassociate tag2 from coll1-3
(tags/disassociate-by-concept-ids token "tag2" [{:concept-id (:concept-id coll1-3)
:revision-id (:revision-id coll1-3)}])
(index/wait-until-indexed)
;; verify association, latest revision
(assert-tag-association token [coll1-3] "tag1")
(assert-tag-association token [] "tag2")
;; verify association, all revisions
(assert-tag-association token [coll1-1 coll1-3] "tag1" {:all-revisions true})
(assert-tag-association token [coll2-1] "tag2" {:all-revisions true})))
|
39465
|
(ns cmr.system-int-test.search.tagging.tag-association-collection-revisions-test
"This tests associating tags with collection revisions."
(:require [clojure.test :refer :all]
[clojure.string :as str]
[cmr.common.util :refer [are2] :as util]
[cmr.system-int-test.utils.ingest-util :as ingest]
[cmr.system-int-test.utils.search-util :as search]
[cmr.system-int-test.utils.index-util :as index]
[cmr.system-int-test.utils.metadata-db-util :as mdb]
[cmr.system-int-test.utils.tag-util :as tags]
[cmr.system-int-test.data2.core :as d]
[cmr.system-int-test.data2.collection :as dc]
[cmr.transmit.tag :as tt]
[cmr.mock-echo.client.echo-util :as e]
[cmr.system-int-test.system :as s]))
(use-fixtures :each (join-fixtures
[(ingest/reset-fixture {"provguid1" "PROV1" "provguid2" "PROV2" "provguid3" "PROV3"}
{:grant-all-search? false})
tags/grant-all-tag-fixture]))
(defn- assert-tag-association
"Assert the collections are associated with the tag for the given tag-key.
If the options has :all-revisions true, the collections will be search on all collection revisions."
([token colls tag-key]
(assert-tag-association token colls tag-key {}))
([token colls tag-key options]
(is (d/refs-match?
colls
(search/find-refs :collection (merge {:token token :tag-key tag-key} options))))))
(deftest tag-association-collection-revisions-test
;; Grant all collections in PROV1 and 2
(e/grant-registered-users (s/context) (e/coll-catalog-item-id "provguid1"))
(e/grant-registered-users (s/context) (e/coll-catalog-item-id "provguid2"))
(let [coll1-1 (d/ingest "PROV1" (dc/collection {:entry-title "et1"}))
concept1 {:provider-id "PROV1"
:concept-type :collection
:native-id (:entry-title coll1-1)}
coll1-2-tombstone (merge (ingest/delete-concept concept1) concept1 {:deleted true})
coll1-3 (d/ingest "PROV1" (dc/collection {:entry-title "et1"}))
coll2-1 (d/ingest "PROV1" (dc/collection {:entry-title "et2"}))
coll2-2 (d/ingest "PROV1" (dc/collection {:entry-title "et2"}))
concept2 {:provider-id "PROV1"
:concept-type :collection
:native-id (:entry-title coll2-2)}
coll2-3-tombstone (merge (ingest/delete-concept concept2) concept2 {:deleted true})
coll3 (d/ingest "PROV2" (dc/collection {}))
coll4 (d/ingest "PROV3" (dc/collection {}))
token (e/login (s/context) "user1")
tag-key "tag1"]
(tags/create-tag token (tags/make-tag {:tag-key tag-key}))
(index/wait-until-indexed)
(testing "successful case, the tag association keys can have either _ or -"
(let [response (tags/associate-by-concept-ids
token tag-key [{:concept_id (:concept-id coll1-1)
:revision_id (:revision-id coll1-1)
:data "snow"}
{:concept-id (:concept-id coll3)
:data "cloud"}])]
(index/wait-until-indexed)
(tags/assert-tag-association-response-ok?
{[(:concept-id coll1-1) (:revision-id coll1-1)] {:concept-id "TA1200000005-CMR"
:revision-id 1}
[(:concept-id coll3)] {:concept-id "TA1200000006-CMR"
:revision-id 1}}
response)))
(testing "revision-id must be an integer"
(let [{:keys [status errors]} (tags/associate-by-concept-ids
token tag-key
[{:concept-id (:concept-id coll1-1)
:revision-id "1"}])
expected-msg "/0/revision_id instance type (string) does not match any allowed primitive type (allowed: [\"integer\"])"]
(is (= [400 [expected-msg]] [status errors]))))
(testing "tag a non-existent collection revision"
(let [concept-id (:concept-id coll1-1)
response (tags/associate-by-concept-ids
token tag-key
[{:concept-id concept-id
:revision-id 5}])]
(tags/assert-tag-association-response-ok?
{[concept-id 5]
{:errors [(format "Collection with concept id [%s] revision id [5] does not exist or is not visible."
concept-id)]}}
response)))
(testing "tag an invisible collection revision"
(let [concept-id (:concept-id coll4)
revision-id (:revision-id coll4)
response (tags/associate-by-concept-ids
token tag-key
[{:concept-id concept-id
:revision-id revision-id}])]
(tags/assert-tag-association-response-ok?
{[concept-id revision-id]
{:errors [(format "Collection with concept id [%s] revision id [%s] does not exist or is not visible."
concept-id revision-id)]}}
response)))
(testing "tag a tombstoned revision is invalid"
(let [concept-id (:concept-id coll1-2-tombstone)
revision-id (:revision-id coll1-2-tombstone)
response (tags/associate-by-concept-ids
token tag-key
[{:concept-id concept-id
:revision-id revision-id}])
expected-msg (format (str "Collection with concept id [%s] revision id [%s] is a tombstone. "
"We don't allow tagging individual revisions that are tombstones.")
concept-id revision-id)]
(tags/assert-tag-association-response-ok?
{[concept-id revision-id] {:errors [expected-msg]}}
response)))
(testing "Cannot tag collection that already has collection revision tagging"
(let [response (tags/associate-by-concept-ids
token tag-key [{:concept-id (:concept-id coll1-3)}])
expected-msg (format
(str "There are already tag associations with tag key [%s] on "
"collection [%s] revision ids [%s], cannot create tag association "
"on the same collection without revision id.")
tag-key (:concept-id coll1-1) (:revision-id coll1-1))]
(tags/assert-tag-association-response-ok?
{[(:concept-id coll1-3)] {:errors [expected-msg]}}
response)))
(testing "Cannot tag collection revision that already has collection tagging"
(let [concept-id (:concept-id coll3)
revision-id (:revision-id coll3)
response (tags/associate-by-concept-ids
token tag-key
[{:concept-id (:concept-id coll3)
:revision-id (:revision-id coll3)}])
expected-msg (format
(str "There are already tag associations with tag key [%s] on "
"collection [%s] without revision id, cannot create tag "
"association on the same collection with revision id [%s].")
tag-key concept-id revision-id)]
(tags/assert-tag-association-response-ok?
{[concept-id revision-id] {:errors [expected-msg]}}
response)))
(testing "tag collection revisions mixed response"
(let [concept-id (:concept-id coll1-1)
revision-id (:revision-id coll1-1)
response (tags/associate-by-concept-ids
token tag-key
[{:concept-id concept-id :revision-id 5}
{:concept-id concept-id :revision-id revision-id}])]
(tags/assert-tag-association-response-ok?
{[concept-id 5]
{:errors [(format "Collection with concept id [%s] revision id [5] does not exist or is not visible."
concept-id)]}
[concept-id revision-id] {:concept-id "TA1200000005-CMR" :revision-id 2}}
response)))))
(deftest tag-disassociation-collection-revisions-test
;; Grant all collections in PROV1 and 2
(e/grant-registered-users (s/context) (e/coll-catalog-item-id "provguid1"))
(e/grant-registered-users (s/context) (e/coll-catalog-item-id "provguid2"))
(let [coll1-1 (d/ingest "PROV1" (dc/collection {:entry-title "et1"}))
concept1 {:provider-id "PROV1"
:concept-type :collection
:native-id (:entry-title coll1-1)}
coll1-2-tombstone (merge (ingest/delete-concept concept1) concept1 {:deleted true})
coll1-3 (d/ingest "PROV1" (dc/collection {:entry-title "et1"}))
coll2-1 (d/ingest "PROV1" (dc/collection {:entry-title "et2"}))
coll2-2 (d/ingest "PROV1" (dc/collection {:entry-title "et2"}))
concept2 {:provider-id "PROV1"
:concept-type :collection
:native-id (:entry-title coll2-2)}
coll2-3-tombstone (merge (ingest/delete-concept concept2) concept2 {:deleted true})
coll3 (d/ingest "PROV2" (dc/collection {}))
coll4 (d/ingest "PROV3" (dc/collection {}))
token (e/login (s/context) "user1")
tag-key "<KEY>"]
(tags/create-tag token (tags/make-tag {:tag-key tag-key}))
(index/wait-until-indexed)
(tags/associate-by-concept-ids
token tag-key [{:concept-id (:concept-id coll1-1)
:revision-id (:revision-id coll1-1)}
{:concept-id (:concept-id coll1-3)
:revision-id (:revision-id coll1-3)}
{:concept-id (:concept-id coll2-1)
:revision-id (:revision-id coll2-1)
:data "snow"}
{:concept-id (:concept-id coll2-2)
:revision-id (:revision-id coll2-2)
:data "cloud"}
{:concept-id (:concept-id coll3)}])
(index/wait-until-indexed)
(testing "successful case"
(let [response (tags/disassociate-by-concept-ids
token tag-key [{:concept-id (:concept-id coll2-1)
:revision-id (:revision-id coll2-1)}
{:concept-id (:concept-id coll3)}])]
(index/wait-until-indexed)
(tags/assert-tag-disassociation-response-ok?
{[(:concept-id coll2-1) (:revision-id coll2-1)] {:concept-id "TA1200000007-CMR"
:revision-id 2}
[(:concept-id coll3)] {:concept-id "TA1200000009-CMR"
:revision-id 2}}
response)))
(testing "revision-id must be an integer"
(let [{:keys [status errors]} (tags/disassociate-by-concept-ids
token tag-key
[{:concept-id (:concept-id coll1-1)
:revision-id "1"}])
expected-msg "/0/revision_id instance type (string) does not match any allowed primitive type (allowed: [\"integer\"])"]
(is (= [400 [expected-msg]] [status errors]))))
(testing "disassociate tag of a non-existent collection revision"
(let [concept-id (:concept-id coll1-1)
response (tags/disassociate-by-concept-ids
token tag-key
[{:concept-id concept-id
:revision-id 5}])]
(tags/assert-tag-disassociation-response-ok?
{[concept-id 5]
{:errors [(format "Collection with concept id [%s] revision id [5] does not exist or is not visible."
concept-id)]}}
response)))
(testing "disassociate tag of an invisible collection revision"
(let [concept-id (:concept-id coll4)
revision-id (:revision-id coll4)
response (tags/disassociate-by-concept-ids
token tag-key
[{:concept-id concept-id
:revision-id revision-id}])]
(tags/assert-tag-disassociation-response-ok?
{[concept-id revision-id]
{:errors [(format "Collection with concept id [%s] revision id [%s] does not exist or is not visible."
concept-id revision-id)]}}
response)))
(testing "disassociate tag of a tombstoned revision is invalid"
(let [concept-id (:concept-id coll1-2-tombstone)
revision-id (:revision-id coll1-2-tombstone)
response (tags/disassociate-by-concept-ids
token tag-key
[{:concept-id concept-id
:revision-id revision-id}])
expected-msg (format (str "Collection with concept id [%s] revision id [%s] is a tombstone. "
"We don't allow tagging individual revisions that are tombstones.")
concept-id revision-id)]
(tags/assert-tag-disassociation-response-ok?
{[concept-id revision-id] {:errors [expected-msg]}}
response)))
(testing "disassociate tag of collection that already has collection revision tagging"
(let [response (tags/disassociate-by-concept-ids
token tag-key [{:concept-id (:concept-id coll1-3)}])
expected-msg (format "Tag [%s] is not associated with collection [%s]."
tag-key (:concept-id coll1-3))]
(tags/assert-tag-disassociation-response-ok?
{[(:concept-id coll1-3)] {:warnings [expected-msg]}}
response)))
(testing "disassociate tag of individual collection revision that already has been tagged at the collection level"
(let [concept-id (:concept-id coll3)
revision-id (:revision-id coll3)
response (tags/disassociate-by-concept-ids
token tag-key
[{:concept-id concept-id
:revision-id revision-id}])
expected-msg (format (str "Tag [%s] is not associated with the specific collection concept revision "
"concept id [%s] and revision id [%s].")
tag-key concept-id revision-id)]
(tags/assert-tag-disassociation-response-ok?
{[concept-id revision-id] {:warnings [expected-msg]}}
response)))
(testing "disassociate tag of collection revisions mixed response"
(let [concept-id (:concept-id coll1-1)
revision-id (:revision-id coll1-1)
response (tags/disassociate-by-concept-ids
token tag-key
[{:concept-id concept-id :revision-id 5}
{:concept-id concept-id :revision-id revision-id}])]
(tags/assert-tag-disassociation-response-ok?
{[concept-id 5]
{:errors [(format "Collection with concept id [%s] revision id [5] does not exist or is not visible."
concept-id)]}
[concept-id revision-id] {:concept-id "TA1200000005-CMR" :revision-id 2}}
response)))))
(deftest associate-disassociate-tag-with-collection-revisions-test
;; Grant all collections in PROV1
(e/grant-registered-users (s/context) (e/coll-catalog-item-id "provguid1"))
(let [coll1-1 (d/ingest "PROV1" (dc/collection {:entry-title "et1"}))
coll1-2 (d/ingest "PROV1" (dc/collection {:entry-title "et1"}))
coll1-3 (d/ingest "PROV1" (dc/collection {:entry-title "et1"}))
coll2-1 (d/ingest "PROV1" (dc/collection {:entry-title "et2"}))
coll2-2 (d/ingest "PROV1" (dc/collection {:entry-title "et2"}))
token (e/login (s/context) "user1")]
(tags/create-tag token (tags/make-tag {:tag-key "tag1"}))
(tags/create-tag token (tags/make-tag {:tag-key "<KEY>2"}))
(index/wait-until-indexed)
;; associate tag1 to coll1-1, coll1-2, coll2-2
(tags/associate-by-concept-ids token "tag1" [{:concept-id (:concept-id coll1-1)
:revision-id (:revision-id coll1-1)}
{:concept-id (:concept-id coll1-2)
:revision-id (:revision-id coll1-2)}
{:concept-id (:concept-id coll2-2)
:revision-id (:revision-id coll2-2)}])
;; associate tag2 to coll1-3, coll2-1
(tags/associate-by-concept-ids token "tag2" [{:concept-id (:concept-id coll1-3)
:revision-id (:revision-id coll1-3)}
{:concept-id (:concept-id coll2-1)
:revision-id (:revision-id coll2-1)}])
(index/wait-until-indexed)
;; verify association, latest revision
(assert-tag-association token [coll2-2] "tag1")
(assert-tag-association token [coll1-3] "tag2")
;; verify association, all revisions
(assert-tag-association token [coll1-1 coll1-2 coll2-2] "tag1" {:all-revisions true})
(assert-tag-association token [coll1-3 coll2-1] "tag2" {:all-revisions true})
;; associate tag1 to coll1-1 again, also coll1-3
(tags/associate-by-concept-ids token "tag1" [{:concept-id (:concept-id coll1-3)
:revision-id (:revision-id coll1-3)}
{:concept-id (:concept-id coll1-1)
:revision-id (:revision-id coll1-1)}])
(index/wait-until-indexed)
;; verify association, latest revision
(assert-tag-association token [coll1-3 coll2-2] "tag1")
(assert-tag-association token [coll1-3] "tag2")
;; verify association, all revisions
(assert-tag-association token [coll1-1 coll1-2 coll1-3 coll2-2] "tag1" {:all-revisions true})
(assert-tag-association token [coll1-3 coll2-1] "tag2" {:all-revisions true})
;; disassociate tag1 from coll1-2 and coll2-2
(tags/disassociate-by-concept-ids token "tag1" [{:concept-id (:concept-id coll1-2)
:revision-id (:revision-id coll1-2)}
{:concept-id (:concept-id coll2-2)
:revision-id (:revision-id coll2-2)}])
;; disassociate tag2 from coll1-3
(tags/disassociate-by-concept-ids token "tag2" [{:concept-id (:concept-id coll1-3)
:revision-id (:revision-id coll1-3)}])
(index/wait-until-indexed)
;; verify association, latest revision
(assert-tag-association token [coll1-3] "tag1")
(assert-tag-association token [] "tag2")
;; verify association, all revisions
(assert-tag-association token [coll1-1 coll1-3] "tag1" {:all-revisions true})
(assert-tag-association token [coll2-1] "tag2" {:all-revisions true})))
| true |
(ns cmr.system-int-test.search.tagging.tag-association-collection-revisions-test
"This tests associating tags with collection revisions."
(:require [clojure.test :refer :all]
[clojure.string :as str]
[cmr.common.util :refer [are2] :as util]
[cmr.system-int-test.utils.ingest-util :as ingest]
[cmr.system-int-test.utils.search-util :as search]
[cmr.system-int-test.utils.index-util :as index]
[cmr.system-int-test.utils.metadata-db-util :as mdb]
[cmr.system-int-test.utils.tag-util :as tags]
[cmr.system-int-test.data2.core :as d]
[cmr.system-int-test.data2.collection :as dc]
[cmr.transmit.tag :as tt]
[cmr.mock-echo.client.echo-util :as e]
[cmr.system-int-test.system :as s]))
(use-fixtures :each (join-fixtures
[(ingest/reset-fixture {"provguid1" "PROV1" "provguid2" "PROV2" "provguid3" "PROV3"}
{:grant-all-search? false})
tags/grant-all-tag-fixture]))
(defn- assert-tag-association
"Assert the collections are associated with the tag for the given tag-key.
If the options has :all-revisions true, the collections will be search on all collection revisions."
([token colls tag-key]
(assert-tag-association token colls tag-key {}))
([token colls tag-key options]
(is (d/refs-match?
colls
(search/find-refs :collection (merge {:token token :tag-key tag-key} options))))))
(deftest tag-association-collection-revisions-test
;; Grant all collections in PROV1 and 2
(e/grant-registered-users (s/context) (e/coll-catalog-item-id "provguid1"))
(e/grant-registered-users (s/context) (e/coll-catalog-item-id "provguid2"))
(let [coll1-1 (d/ingest "PROV1" (dc/collection {:entry-title "et1"}))
concept1 {:provider-id "PROV1"
:concept-type :collection
:native-id (:entry-title coll1-1)}
coll1-2-tombstone (merge (ingest/delete-concept concept1) concept1 {:deleted true})
coll1-3 (d/ingest "PROV1" (dc/collection {:entry-title "et1"}))
coll2-1 (d/ingest "PROV1" (dc/collection {:entry-title "et2"}))
coll2-2 (d/ingest "PROV1" (dc/collection {:entry-title "et2"}))
concept2 {:provider-id "PROV1"
:concept-type :collection
:native-id (:entry-title coll2-2)}
coll2-3-tombstone (merge (ingest/delete-concept concept2) concept2 {:deleted true})
coll3 (d/ingest "PROV2" (dc/collection {}))
coll4 (d/ingest "PROV3" (dc/collection {}))
token (e/login (s/context) "user1")
tag-key "tag1"]
(tags/create-tag token (tags/make-tag {:tag-key tag-key}))
(index/wait-until-indexed)
(testing "successful case, the tag association keys can have either _ or -"
(let [response (tags/associate-by-concept-ids
token tag-key [{:concept_id (:concept-id coll1-1)
:revision_id (:revision-id coll1-1)
:data "snow"}
{:concept-id (:concept-id coll3)
:data "cloud"}])]
(index/wait-until-indexed)
(tags/assert-tag-association-response-ok?
{[(:concept-id coll1-1) (:revision-id coll1-1)] {:concept-id "TA1200000005-CMR"
:revision-id 1}
[(:concept-id coll3)] {:concept-id "TA1200000006-CMR"
:revision-id 1}}
response)))
(testing "revision-id must be an integer"
(let [{:keys [status errors]} (tags/associate-by-concept-ids
token tag-key
[{:concept-id (:concept-id coll1-1)
:revision-id "1"}])
expected-msg "/0/revision_id instance type (string) does not match any allowed primitive type (allowed: [\"integer\"])"]
(is (= [400 [expected-msg]] [status errors]))))
(testing "tag a non-existent collection revision"
(let [concept-id (:concept-id coll1-1)
response (tags/associate-by-concept-ids
token tag-key
[{:concept-id concept-id
:revision-id 5}])]
(tags/assert-tag-association-response-ok?
{[concept-id 5]
{:errors [(format "Collection with concept id [%s] revision id [5] does not exist or is not visible."
concept-id)]}}
response)))
(testing "tag an invisible collection revision"
(let [concept-id (:concept-id coll4)
revision-id (:revision-id coll4)
response (tags/associate-by-concept-ids
token tag-key
[{:concept-id concept-id
:revision-id revision-id}])]
(tags/assert-tag-association-response-ok?
{[concept-id revision-id]
{:errors [(format "Collection with concept id [%s] revision id [%s] does not exist or is not visible."
concept-id revision-id)]}}
response)))
(testing "tag a tombstoned revision is invalid"
(let [concept-id (:concept-id coll1-2-tombstone)
revision-id (:revision-id coll1-2-tombstone)
response (tags/associate-by-concept-ids
token tag-key
[{:concept-id concept-id
:revision-id revision-id}])
expected-msg (format (str "Collection with concept id [%s] revision id [%s] is a tombstone. "
"We don't allow tagging individual revisions that are tombstones.")
concept-id revision-id)]
(tags/assert-tag-association-response-ok?
{[concept-id revision-id] {:errors [expected-msg]}}
response)))
(testing "Cannot tag collection that already has collection revision tagging"
(let [response (tags/associate-by-concept-ids
token tag-key [{:concept-id (:concept-id coll1-3)}])
expected-msg (format
(str "There are already tag associations with tag key [%s] on "
"collection [%s] revision ids [%s], cannot create tag association "
"on the same collection without revision id.")
tag-key (:concept-id coll1-1) (:revision-id coll1-1))]
(tags/assert-tag-association-response-ok?
{[(:concept-id coll1-3)] {:errors [expected-msg]}}
response)))
(testing "Cannot tag collection revision that already has collection tagging"
(let [concept-id (:concept-id coll3)
revision-id (:revision-id coll3)
response (tags/associate-by-concept-ids
token tag-key
[{:concept-id (:concept-id coll3)
:revision-id (:revision-id coll3)}])
expected-msg (format
(str "There are already tag associations with tag key [%s] on "
"collection [%s] without revision id, cannot create tag "
"association on the same collection with revision id [%s].")
tag-key concept-id revision-id)]
(tags/assert-tag-association-response-ok?
{[concept-id revision-id] {:errors [expected-msg]}}
response)))
(testing "tag collection revisions mixed response"
(let [concept-id (:concept-id coll1-1)
revision-id (:revision-id coll1-1)
response (tags/associate-by-concept-ids
token tag-key
[{:concept-id concept-id :revision-id 5}
{:concept-id concept-id :revision-id revision-id}])]
(tags/assert-tag-association-response-ok?
{[concept-id 5]
{:errors [(format "Collection with concept id [%s] revision id [5] does not exist or is not visible."
concept-id)]}
[concept-id revision-id] {:concept-id "TA1200000005-CMR" :revision-id 2}}
response)))))
(deftest tag-disassociation-collection-revisions-test
;; Grant all collections in PROV1 and 2
(e/grant-registered-users (s/context) (e/coll-catalog-item-id "provguid1"))
(e/grant-registered-users (s/context) (e/coll-catalog-item-id "provguid2"))
(let [coll1-1 (d/ingest "PROV1" (dc/collection {:entry-title "et1"}))
concept1 {:provider-id "PROV1"
:concept-type :collection
:native-id (:entry-title coll1-1)}
coll1-2-tombstone (merge (ingest/delete-concept concept1) concept1 {:deleted true})
coll1-3 (d/ingest "PROV1" (dc/collection {:entry-title "et1"}))
coll2-1 (d/ingest "PROV1" (dc/collection {:entry-title "et2"}))
coll2-2 (d/ingest "PROV1" (dc/collection {:entry-title "et2"}))
concept2 {:provider-id "PROV1"
:concept-type :collection
:native-id (:entry-title coll2-2)}
coll2-3-tombstone (merge (ingest/delete-concept concept2) concept2 {:deleted true})
coll3 (d/ingest "PROV2" (dc/collection {}))
coll4 (d/ingest "PROV3" (dc/collection {}))
token (e/login (s/context) "user1")
tag-key "PI:KEY:<KEY>END_PI"]
(tags/create-tag token (tags/make-tag {:tag-key tag-key}))
(index/wait-until-indexed)
(tags/associate-by-concept-ids
token tag-key [{:concept-id (:concept-id coll1-1)
:revision-id (:revision-id coll1-1)}
{:concept-id (:concept-id coll1-3)
:revision-id (:revision-id coll1-3)}
{:concept-id (:concept-id coll2-1)
:revision-id (:revision-id coll2-1)
:data "snow"}
{:concept-id (:concept-id coll2-2)
:revision-id (:revision-id coll2-2)
:data "cloud"}
{:concept-id (:concept-id coll3)}])
(index/wait-until-indexed)
(testing "successful case"
(let [response (tags/disassociate-by-concept-ids
token tag-key [{:concept-id (:concept-id coll2-1)
:revision-id (:revision-id coll2-1)}
{:concept-id (:concept-id coll3)}])]
(index/wait-until-indexed)
(tags/assert-tag-disassociation-response-ok?
{[(:concept-id coll2-1) (:revision-id coll2-1)] {:concept-id "TA1200000007-CMR"
:revision-id 2}
[(:concept-id coll3)] {:concept-id "TA1200000009-CMR"
:revision-id 2}}
response)))
(testing "revision-id must be an integer"
(let [{:keys [status errors]} (tags/disassociate-by-concept-ids
token tag-key
[{:concept-id (:concept-id coll1-1)
:revision-id "1"}])
expected-msg "/0/revision_id instance type (string) does not match any allowed primitive type (allowed: [\"integer\"])"]
(is (= [400 [expected-msg]] [status errors]))))
(testing "disassociate tag of a non-existent collection revision"
(let [concept-id (:concept-id coll1-1)
response (tags/disassociate-by-concept-ids
token tag-key
[{:concept-id concept-id
:revision-id 5}])]
(tags/assert-tag-disassociation-response-ok?
{[concept-id 5]
{:errors [(format "Collection with concept id [%s] revision id [5] does not exist or is not visible."
concept-id)]}}
response)))
(testing "disassociate tag of an invisible collection revision"
(let [concept-id (:concept-id coll4)
revision-id (:revision-id coll4)
response (tags/disassociate-by-concept-ids
token tag-key
[{:concept-id concept-id
:revision-id revision-id}])]
(tags/assert-tag-disassociation-response-ok?
{[concept-id revision-id]
{:errors [(format "Collection with concept id [%s] revision id [%s] does not exist or is not visible."
concept-id revision-id)]}}
response)))
(testing "disassociate tag of a tombstoned revision is invalid"
(let [concept-id (:concept-id coll1-2-tombstone)
revision-id (:revision-id coll1-2-tombstone)
response (tags/disassociate-by-concept-ids
token tag-key
[{:concept-id concept-id
:revision-id revision-id}])
expected-msg (format (str "Collection with concept id [%s] revision id [%s] is a tombstone. "
"We don't allow tagging individual revisions that are tombstones.")
concept-id revision-id)]
(tags/assert-tag-disassociation-response-ok?
{[concept-id revision-id] {:errors [expected-msg]}}
response)))
(testing "disassociate tag of collection that already has collection revision tagging"
(let [response (tags/disassociate-by-concept-ids
token tag-key [{:concept-id (:concept-id coll1-3)}])
expected-msg (format "Tag [%s] is not associated with collection [%s]."
tag-key (:concept-id coll1-3))]
(tags/assert-tag-disassociation-response-ok?
{[(:concept-id coll1-3)] {:warnings [expected-msg]}}
response)))
(testing "disassociate tag of individual collection revision that already has been tagged at the collection level"
(let [concept-id (:concept-id coll3)
revision-id (:revision-id coll3)
response (tags/disassociate-by-concept-ids
token tag-key
[{:concept-id concept-id
:revision-id revision-id}])
expected-msg (format (str "Tag [%s] is not associated with the specific collection concept revision "
"concept id [%s] and revision id [%s].")
tag-key concept-id revision-id)]
(tags/assert-tag-disassociation-response-ok?
{[concept-id revision-id] {:warnings [expected-msg]}}
response)))
(testing "disassociate tag of collection revisions mixed response"
(let [concept-id (:concept-id coll1-1)
revision-id (:revision-id coll1-1)
response (tags/disassociate-by-concept-ids
token tag-key
[{:concept-id concept-id :revision-id 5}
{:concept-id concept-id :revision-id revision-id}])]
(tags/assert-tag-disassociation-response-ok?
{[concept-id 5]
{:errors [(format "Collection with concept id [%s] revision id [5] does not exist or is not visible."
concept-id)]}
[concept-id revision-id] {:concept-id "TA1200000005-CMR" :revision-id 2}}
response)))))
(deftest associate-disassociate-tag-with-collection-revisions-test
;; Grant all collections in PROV1
(e/grant-registered-users (s/context) (e/coll-catalog-item-id "provguid1"))
(let [coll1-1 (d/ingest "PROV1" (dc/collection {:entry-title "et1"}))
coll1-2 (d/ingest "PROV1" (dc/collection {:entry-title "et1"}))
coll1-3 (d/ingest "PROV1" (dc/collection {:entry-title "et1"}))
coll2-1 (d/ingest "PROV1" (dc/collection {:entry-title "et2"}))
coll2-2 (d/ingest "PROV1" (dc/collection {:entry-title "et2"}))
token (e/login (s/context) "user1")]
(tags/create-tag token (tags/make-tag {:tag-key "tag1"}))
(tags/create-tag token (tags/make-tag {:tag-key "PI:KEY:<KEY>END_PI2"}))
(index/wait-until-indexed)
;; associate tag1 to coll1-1, coll1-2, coll2-2
(tags/associate-by-concept-ids token "tag1" [{:concept-id (:concept-id coll1-1)
:revision-id (:revision-id coll1-1)}
{:concept-id (:concept-id coll1-2)
:revision-id (:revision-id coll1-2)}
{:concept-id (:concept-id coll2-2)
:revision-id (:revision-id coll2-2)}])
;; associate tag2 to coll1-3, coll2-1
(tags/associate-by-concept-ids token "tag2" [{:concept-id (:concept-id coll1-3)
:revision-id (:revision-id coll1-3)}
{:concept-id (:concept-id coll2-1)
:revision-id (:revision-id coll2-1)}])
(index/wait-until-indexed)
;; verify association, latest revision
(assert-tag-association token [coll2-2] "tag1")
(assert-tag-association token [coll1-3] "tag2")
;; verify association, all revisions
(assert-tag-association token [coll1-1 coll1-2 coll2-2] "tag1" {:all-revisions true})
(assert-tag-association token [coll1-3 coll2-1] "tag2" {:all-revisions true})
;; associate tag1 to coll1-1 again, also coll1-3
(tags/associate-by-concept-ids token "tag1" [{:concept-id (:concept-id coll1-3)
:revision-id (:revision-id coll1-3)}
{:concept-id (:concept-id coll1-1)
:revision-id (:revision-id coll1-1)}])
(index/wait-until-indexed)
;; verify association, latest revision
(assert-tag-association token [coll1-3 coll2-2] "tag1")
(assert-tag-association token [coll1-3] "tag2")
;; verify association, all revisions
(assert-tag-association token [coll1-1 coll1-2 coll1-3 coll2-2] "tag1" {:all-revisions true})
(assert-tag-association token [coll1-3 coll2-1] "tag2" {:all-revisions true})
;; disassociate tag1 from coll1-2 and coll2-2
(tags/disassociate-by-concept-ids token "tag1" [{:concept-id (:concept-id coll1-2)
:revision-id (:revision-id coll1-2)}
{:concept-id (:concept-id coll2-2)
:revision-id (:revision-id coll2-2)}])
;; disassociate tag2 from coll1-3
(tags/disassociate-by-concept-ids token "tag2" [{:concept-id (:concept-id coll1-3)
:revision-id (:revision-id coll1-3)}])
(index/wait-until-indexed)
;; verify association, latest revision
(assert-tag-association token [coll1-3] "tag1")
(assert-tag-association token [] "tag2")
;; verify association, all revisions
(assert-tag-association token [coll1-1 coll1-3] "tag1" {:all-revisions true})
(assert-tag-association token [coll2-1] "tag2" {:all-revisions true})))
|
[
{
"context": ";;\n;; Copyright (C) 2011,2012 Carlo Sciolla\n;;\n;; Licensed under the Apache License, Version ",
"end": 43,
"score": 0.9998326301574707,
"start": 30,
"tag": "NAME",
"value": "Carlo Sciolla"
}
] |
itest/alfresco/nodes_itest.clj
|
deas/lambdalf
| 1 |
;;
;; Copyright (C) 2011,2012 Carlo Sciolla
;;
;; Licensed under the Apache License, Version 2.0 (the "License");
;; you may not use this file except in compliance with the License.
;; You may obtain a copy of the License at
;;
;; http://www.apache.org/licenses/LICENSE-2.0
;;
;; Unless required by applicable law or agreed to in writing, software
;; distributed under the License is distributed on an "AS IS" BASIS,
;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
;; See the License for the specific language governing permissions and
;; limitations under the License.
(ns alfresco.nodes_itest
(:use [midje.sweet]
;; [clojure.test]
[alfresco.itest])
(:require [clj-http.client :as http]
[alfresco.auth :as a]
[alfresco.nodes :as n]
[alfresco.model :as m]
;; [alfresco.transact :as t]
))
;; Fixtures do not kick in here
;; (defn init-fixture [f]
;; (ensure-context)
;; (f))
;; (use-fixtures :once init-fixture)
(background (before :facts (ensure-context)))
(facts "About nodes" :it
(fact "Company home node is in place" :it
(a/as-admin
(n/property (n/company-home)
:cm/name)) => "Company Home")
(fact "Company home is folder" :it
(m/qname-keyword
(a/as-admin
(n/type-qname (n/company-home)))) => :cm/folder)
(fact ""))
|
38434
|
;;
;; Copyright (C) 2011,2012 <NAME>
;;
;; Licensed under the Apache License, Version 2.0 (the "License");
;; you may not use this file except in compliance with the License.
;; You may obtain a copy of the License at
;;
;; http://www.apache.org/licenses/LICENSE-2.0
;;
;; Unless required by applicable law or agreed to in writing, software
;; distributed under the License is distributed on an "AS IS" BASIS,
;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
;; See the License for the specific language governing permissions and
;; limitations under the License.
(ns alfresco.nodes_itest
(:use [midje.sweet]
;; [clojure.test]
[alfresco.itest])
(:require [clj-http.client :as http]
[alfresco.auth :as a]
[alfresco.nodes :as n]
[alfresco.model :as m]
;; [alfresco.transact :as t]
))
;; Fixtures do not kick in here
;; (defn init-fixture [f]
;; (ensure-context)
;; (f))
;; (use-fixtures :once init-fixture)
(background (before :facts (ensure-context)))
(facts "About nodes" :it
(fact "Company home node is in place" :it
(a/as-admin
(n/property (n/company-home)
:cm/name)) => "Company Home")
(fact "Company home is folder" :it
(m/qname-keyword
(a/as-admin
(n/type-qname (n/company-home)))) => :cm/folder)
(fact ""))
| true |
;;
;; Copyright (C) 2011,2012 PI:NAME:<NAME>END_PI
;;
;; Licensed under the Apache License, Version 2.0 (the "License");
;; you may not use this file except in compliance with the License.
;; You may obtain a copy of the License at
;;
;; http://www.apache.org/licenses/LICENSE-2.0
;;
;; Unless required by applicable law or agreed to in writing, software
;; distributed under the License is distributed on an "AS IS" BASIS,
;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
;; See the License for the specific language governing permissions and
;; limitations under the License.
(ns alfresco.nodes_itest
(:use [midje.sweet]
;; [clojure.test]
[alfresco.itest])
(:require [clj-http.client :as http]
[alfresco.auth :as a]
[alfresco.nodes :as n]
[alfresco.model :as m]
;; [alfresco.transact :as t]
))
;; Fixtures do not kick in here
;; (defn init-fixture [f]
;; (ensure-context)
;; (f))
;; (use-fixtures :once init-fixture)
(background (before :facts (ensure-context)))
(facts "About nodes" :it
(fact "Company home node is in place" :it
(a/as-admin
(n/property (n/company-home)
:cm/name)) => "Company Home")
(fact "Company home is folder" :it
(m/qname-keyword
(a/as-admin
(n/type-qname (n/company-home)))) => :cm/folder)
(fact ""))
|
[
{
"context": " @header-hidden\n [:header\n [:h1 \"Carlos\"]\n \"Autogenerated SVG illustrations insp",
"end": 1847,
"score": 0.9993975162506104,
"start": 1841,
"tag": "NAME",
"value": "Carlos"
},
{
"context": " [:a {:href \"https://en.wikipedia.org/wiki/Carlos_Cruz-Diez\" :target \"_blank\"} \"Carlos Cruz-Diez\"]\n ",
"end": 1975,
"score": 0.9974081516265869,
"start": 1959,
"tag": "NAME",
"value": "Carlos_Cruz-Diez"
},
{
"context": "dia.org/wiki/Carlos_Cruz-Diez\" :target \"_blank\"} \"Carlos Cruz-Diez\"]\n \"' Physichromies. \"\n [:a {:h",
"end": 2012,
"score": 0.9998060464859009,
"start": 1996,
"tag": "NAME",
"value": "Carlos Cruz-Diez"
},
{
"context": "omies. \"\n [:a {:href \"https://github.com/polymeris/carlos\" :target \"_blank\"} \"Code on Github\"]\n ",
"end": 2095,
"score": 0.9984502792358398,
"start": 2086,
"tag": "USERNAME",
"value": "polymeris"
}
] |
src/carlos/core.cljs
|
polymeris/carlos
| 14 |
(ns carlos.core
(:require [reagent.core :as r]
[carlos.svg :refer [illustration]]
[dommy.core :refer-macros [sel1]]))
(def config (r/atom {:seed (rand-int 1e7)
:complexity 10
:animation true}))
(defn set-seed! [s]
(swap! config #(assoc % :seed s))
(-> (sel1 :#seed)
(.-value)
(set! s))
(println "Seed set to" (:seed @config)))
(defn seed-changed! []
(-> (sel1 :#seed)
(.-value)
(set-seed!)))
(defn random-seed! [ev]
(set-seed! (rand-int 1e7))
(.preventDefault ev))
(defn set-complexity! [c]
(swap! config #(assoc % :complexity c))
(println "Complexity set to" (:complexity @config)))
(defn set-animation! [c]
(swap! config #(assoc % :animation c))
(println "Animation set to" (:animation @config)))
(defn render! []
(let [data (-> (r/render-to-string [illustration @config])
(clojure.string/replace
#"<svg "
(str "<svg "
"xmlns=\"http://www.w3.org/2000/svg\" "
"xmlns:svg=\"http://www.w3.org/2000/svg\" "
"xmlns:xlink=\"http://www.w3.org/1999/xlink\" "
"width=\"720\" height=\"720\" ")))
blob (js/Blob. (clj->js [data]) #js {:type "data:image/svg+xml;"})]
(doto (js/document.createElement "a")
(aset "href" (js/URL.createObjectURL blob))
(aset "download" (str "carlos-" (:seed @config) ".svg"))
(js/document.body.appendChild)
(.click)
(js/document.body.removeChild))))
;; -------------------------
;; Views
(defn home-page []
(let [header-hidden (r/atom false)]
(fn []
[:div
[:a#show-hide {:on-click #(swap! header-hidden not)} "◹"]
(when-not @header-hidden
[:header
[:h1 "Carlos"]
"Autogenerated SVG illustrations inspired by "
[:a {:href "https://en.wikipedia.org/wiki/Carlos_Cruz-Diez" :target "_blank"} "Carlos Cruz-Diez"]
"' Physichromies. "
[:a {:href "https://github.com/polymeris/carlos" :target "_blank"} "Code on Github"]
"."
[:form
[:label "Seed "
[:input {:id :seed
:type :number
:default-value (:seed @config)
:placeholder "Seed"
:on-change seed-changed!}]
[:button {:id :random-seed
:on-click random-seed!}
"Randomize"]]
[:label [:input {:id :animate
:type :checkbox
:on-change #(set-animation! (-> (sel1 :#animate)
(.-checked)))
:checked (:animation @config)}]
"Animate"]
[:a#download {:on-click render!} "Download SVG"]]])
[:div#illustration
{:on-click random-seed!}
[illustration @config]]])))
;; -------------------------
;; Initialize app
(defn mount-root []
(r/render [home-page] (.getElementById js/document "app")))
(defn init! []
(mount-root))
|
28874
|
(ns carlos.core
(:require [reagent.core :as r]
[carlos.svg :refer [illustration]]
[dommy.core :refer-macros [sel1]]))
(def config (r/atom {:seed (rand-int 1e7)
:complexity 10
:animation true}))
(defn set-seed! [s]
(swap! config #(assoc % :seed s))
(-> (sel1 :#seed)
(.-value)
(set! s))
(println "Seed set to" (:seed @config)))
(defn seed-changed! []
(-> (sel1 :#seed)
(.-value)
(set-seed!)))
(defn random-seed! [ev]
(set-seed! (rand-int 1e7))
(.preventDefault ev))
(defn set-complexity! [c]
(swap! config #(assoc % :complexity c))
(println "Complexity set to" (:complexity @config)))
(defn set-animation! [c]
(swap! config #(assoc % :animation c))
(println "Animation set to" (:animation @config)))
(defn render! []
(let [data (-> (r/render-to-string [illustration @config])
(clojure.string/replace
#"<svg "
(str "<svg "
"xmlns=\"http://www.w3.org/2000/svg\" "
"xmlns:svg=\"http://www.w3.org/2000/svg\" "
"xmlns:xlink=\"http://www.w3.org/1999/xlink\" "
"width=\"720\" height=\"720\" ")))
blob (js/Blob. (clj->js [data]) #js {:type "data:image/svg+xml;"})]
(doto (js/document.createElement "a")
(aset "href" (js/URL.createObjectURL blob))
(aset "download" (str "carlos-" (:seed @config) ".svg"))
(js/document.body.appendChild)
(.click)
(js/document.body.removeChild))))
;; -------------------------
;; Views
(defn home-page []
(let [header-hidden (r/atom false)]
(fn []
[:div
[:a#show-hide {:on-click #(swap! header-hidden not)} "◹"]
(when-not @header-hidden
[:header
[:h1 "<NAME>"]
"Autogenerated SVG illustrations inspired by "
[:a {:href "https://en.wikipedia.org/wiki/<NAME>" :target "_blank"} "<NAME>"]
"' Physichromies. "
[:a {:href "https://github.com/polymeris/carlos" :target "_blank"} "Code on Github"]
"."
[:form
[:label "Seed "
[:input {:id :seed
:type :number
:default-value (:seed @config)
:placeholder "Seed"
:on-change seed-changed!}]
[:button {:id :random-seed
:on-click random-seed!}
"Randomize"]]
[:label [:input {:id :animate
:type :checkbox
:on-change #(set-animation! (-> (sel1 :#animate)
(.-checked)))
:checked (:animation @config)}]
"Animate"]
[:a#download {:on-click render!} "Download SVG"]]])
[:div#illustration
{:on-click random-seed!}
[illustration @config]]])))
;; -------------------------
;; Initialize app
(defn mount-root []
(r/render [home-page] (.getElementById js/document "app")))
(defn init! []
(mount-root))
| true |
(ns carlos.core
(:require [reagent.core :as r]
[carlos.svg :refer [illustration]]
[dommy.core :refer-macros [sel1]]))
(def config (r/atom {:seed (rand-int 1e7)
:complexity 10
:animation true}))
(defn set-seed! [s]
(swap! config #(assoc % :seed s))
(-> (sel1 :#seed)
(.-value)
(set! s))
(println "Seed set to" (:seed @config)))
(defn seed-changed! []
(-> (sel1 :#seed)
(.-value)
(set-seed!)))
(defn random-seed! [ev]
(set-seed! (rand-int 1e7))
(.preventDefault ev))
(defn set-complexity! [c]
(swap! config #(assoc % :complexity c))
(println "Complexity set to" (:complexity @config)))
(defn set-animation! [c]
(swap! config #(assoc % :animation c))
(println "Animation set to" (:animation @config)))
(defn render! []
(let [data (-> (r/render-to-string [illustration @config])
(clojure.string/replace
#"<svg "
(str "<svg "
"xmlns=\"http://www.w3.org/2000/svg\" "
"xmlns:svg=\"http://www.w3.org/2000/svg\" "
"xmlns:xlink=\"http://www.w3.org/1999/xlink\" "
"width=\"720\" height=\"720\" ")))
blob (js/Blob. (clj->js [data]) #js {:type "data:image/svg+xml;"})]
(doto (js/document.createElement "a")
(aset "href" (js/URL.createObjectURL blob))
(aset "download" (str "carlos-" (:seed @config) ".svg"))
(js/document.body.appendChild)
(.click)
(js/document.body.removeChild))))
;; -------------------------
;; Views
(defn home-page []
(let [header-hidden (r/atom false)]
(fn []
[:div
[:a#show-hide {:on-click #(swap! header-hidden not)} "◹"]
(when-not @header-hidden
[:header
[:h1 "PI:NAME:<NAME>END_PI"]
"Autogenerated SVG illustrations inspired by "
[:a {:href "https://en.wikipedia.org/wiki/PI:NAME:<NAME>END_PI" :target "_blank"} "PI:NAME:<NAME>END_PI"]
"' Physichromies. "
[:a {:href "https://github.com/polymeris/carlos" :target "_blank"} "Code on Github"]
"."
[:form
[:label "Seed "
[:input {:id :seed
:type :number
:default-value (:seed @config)
:placeholder "Seed"
:on-change seed-changed!}]
[:button {:id :random-seed
:on-click random-seed!}
"Randomize"]]
[:label [:input {:id :animate
:type :checkbox
:on-change #(set-animation! (-> (sel1 :#animate)
(.-checked)))
:checked (:animation @config)}]
"Animate"]
[:a#download {:on-click render!} "Download SVG"]]])
[:div#illustration
{:on-click random-seed!}
[illustration @config]]])))
;; -------------------------
;; Initialize app
(defn mount-root []
(r/render [home-page] (.getElementById js/document "app")))
(defn init! []
(mount-root))
|
[
{
"context": "-------------------------------\n;;\n;;\n;; Author: PLIQUE Guillaume (Yomguithereal)\n;; Version: 0.1\n;;\n(ns clj-fuzz",
"end": 208,
"score": 0.9998469948768616,
"start": 192,
"tag": "NAME",
"value": "PLIQUE Guillaume"
},
{
"context": "------------\n;;\n;;\n;; Author: PLIQUE Guillaume (Yomguithereal)\n;; Version: 0.1\n;;\n(ns clj-fuzzy.levenshtein-t",
"end": 223,
"score": 0.9992958903312683,
"start": 210,
"tag": "USERNAME",
"value": "Yomguithereal"
}
] |
test/clj_fuzzy/levenshtein_test.clj
|
sooheon/clj-fuzzy
| 222 |
;; -------------------------------------------------------------------
;; clj-fuzzy Levenshtein Tests
;; -------------------------------------------------------------------
;;
;;
;; Author: PLIQUE Guillaume (Yomguithereal)
;; Version: 0.1
;;
(ns clj-fuzzy.levenshtein-test
(:require [clojure.test :refer :all]
[clj-fuzzy.levenshtein :refer :all]))
(deftest levenshtein-test
(is (= 0 (distance "" "")))
(is (= 3 (distance "" "abc")))
(is (= 3 (distance "abc" "")))
(is (= 2 (distance "book" "back")))
(is (= 1 (distance "hello" "helo")))
(is (= 8 (distance "good sir" "baal")))
(is (= 5 (distance "say" "shiver")))
(is (= 13 (distance "feature" "get-project-features"))))
|
70371
|
;; -------------------------------------------------------------------
;; clj-fuzzy Levenshtein Tests
;; -------------------------------------------------------------------
;;
;;
;; Author: <NAME> (Yomguithereal)
;; Version: 0.1
;;
(ns clj-fuzzy.levenshtein-test
(:require [clojure.test :refer :all]
[clj-fuzzy.levenshtein :refer :all]))
(deftest levenshtein-test
(is (= 0 (distance "" "")))
(is (= 3 (distance "" "abc")))
(is (= 3 (distance "abc" "")))
(is (= 2 (distance "book" "back")))
(is (= 1 (distance "hello" "helo")))
(is (= 8 (distance "good sir" "baal")))
(is (= 5 (distance "say" "shiver")))
(is (= 13 (distance "feature" "get-project-features"))))
| true |
;; -------------------------------------------------------------------
;; clj-fuzzy Levenshtein Tests
;; -------------------------------------------------------------------
;;
;;
;; Author: PI:NAME:<NAME>END_PI (Yomguithereal)
;; Version: 0.1
;;
(ns clj-fuzzy.levenshtein-test
(:require [clojure.test :refer :all]
[clj-fuzzy.levenshtein :refer :all]))
(deftest levenshtein-test
(is (= 0 (distance "" "")))
(is (= 3 (distance "" "abc")))
(is (= 3 (distance "abc" "")))
(is (= 2 (distance "book" "back")))
(is (= 1 (distance "hello" "helo")))
(is (= 8 (distance "good sir" "baal")))
(is (= 5 (distance "say" "shiver")))
(is (= 13 (distance "feature" "get-project-features"))))
|
[
{
"context": "p (-> (request :post \"/session\" \"{\\\"username\\\": \\\"dan\\\",\\\"password\\\": \\\"dan\\\"}\")\n ;; ",
"end": 538,
"score": 0.5460619926452637,
"start": 535,
"tag": "USERNAME",
"value": "dan"
},
{
"context": "/session\" \"{\\\"username\\\": \\\"dan\\\",\\\"password\\\": \\\"dan\\\"}\")\n ;; (header \"Cont",
"end": 560,
"score": 0.9994950890541077,
"start": 557,
"tag": "PASSWORD",
"value": "dan"
}
] |
test/expensapp/test/handler.clj
|
danmidwood/expensapp
| 0 |
(ns expensapp.test.handler
(:use clojure.test
ring.mock.request
expensapp.handler))
(deftest test-app
(testing "home route"
(let [response (app (request :get "/"))]
(is (= (:status response) 302))
(is (= (get-in response [:headers "Location"])
"/index.html"))))
(testing "not-found route"
(let [response (app (request :get "/invalid"))]
(is (= (:status response) 404))))
;; (testing "auth route"
;; (let [response (app (-> (request :post "/session" "{\"username\": \"dan\",\"password\": \"dan\"}")
;; (header "Content-Type" "application/json")
;; (assoc-in [:cookie] (str "ring-session" "=" "7a621922-5e2f-4ae7-b0e5-590703d27908"))))]
;; (is (= (:status response) 301))))
)
|
72344
|
(ns expensapp.test.handler
(:use clojure.test
ring.mock.request
expensapp.handler))
(deftest test-app
(testing "home route"
(let [response (app (request :get "/"))]
(is (= (:status response) 302))
(is (= (get-in response [:headers "Location"])
"/index.html"))))
(testing "not-found route"
(let [response (app (request :get "/invalid"))]
(is (= (:status response) 404))))
;; (testing "auth route"
;; (let [response (app (-> (request :post "/session" "{\"username\": \"dan\",\"password\": \"<PASSWORD>\"}")
;; (header "Content-Type" "application/json")
;; (assoc-in [:cookie] (str "ring-session" "=" "7a621922-5e2f-4ae7-b0e5-590703d27908"))))]
;; (is (= (:status response) 301))))
)
| true |
(ns expensapp.test.handler
(:use clojure.test
ring.mock.request
expensapp.handler))
(deftest test-app
(testing "home route"
(let [response (app (request :get "/"))]
(is (= (:status response) 302))
(is (= (get-in response [:headers "Location"])
"/index.html"))))
(testing "not-found route"
(let [response (app (request :get "/invalid"))]
(is (= (:status response) 404))))
;; (testing "auth route"
;; (let [response (app (-> (request :post "/session" "{\"username\": \"dan\",\"password\": \"PI:PASSWORD:<PASSWORD>END_PI\"}")
;; (header "Content-Type" "application/json")
;; (assoc-in [:cookie] (str "ring-session" "=" "7a621922-5e2f-4ae7-b0e5-590703d27908"))))]
;; (is (= (:status response) 301))))
)
|
[
{
"context": ":id (random-uuid)))\n\n(defn register\n [db {:keys [::id] :as task}]\n (assoc-in db [::db :tasks id] task)",
"end": 298,
"score": 0.8819924592971802,
"start": 296,
"tag": "KEY",
"value": "id"
}
] |
src/jtk_dvlp/re_frame/tasks.cljs
|
jtkDvlp/re-frame-tasks
| 0 |
(ns jtk-dvlp.re-frame.tasks
(:require
[re-frame.core :as rf]
[re-frame.interceptor :as interceptor]))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Functions
(defn ->task
[data]
(assoc data ::id (random-uuid)))
(defn register
[db {:keys [::id] :as task}]
(assoc-in db [::db :tasks id] task))
(defn unregister
[db id-or-task]
(let [id (or (::id id-or-task) id-or-task)]
(update-in db [::db :tasks] dissoc id)))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Interceptors
(defn as-task
([effect-key]
(as-task effect-key :on-completed))
([effect-key & on-completion-keys]
(rf/->interceptor
:id
:as-task
:after
(fn [context]
(let [effect
(rf/get-effect context effect-key)
task-id
(::id effect (random-uuid))
task
(assoc effect ::id task-id, ::effect effect-key)
effect'
(->> on-completion-keys
(map #(->> (get effect %)
(vector ::unregister-and-dispatch-original task-id)))
(zipmap on-completion-keys)
(merge effect))
db'
(-> (rf/get-effect context :db)
(or (rf/get-coeffect context :db))
(register task))]
(if effect
(-> context
(interceptor/assoc-effect :db db')
(interceptor/assoc-effect effect-key effect'))
context))))))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Events
(rf/reg-event-db ::register
(fn [db [_ task]]
(register db task)))
(rf/reg-event-db ::unregister
(fn [db [_ id-or-task]]
(unregister db id-or-task)))
(rf/reg-event-fx ::unregister-and-dispatch-original
(fn [{:keys [db]} [_ id-or-task original-event-vec & original-event-args]]
(cond-> {:db (unregister db id-or-task)}
original-event-vec
(assoc :dispatch (into original-event-vec original-event-args)))))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Subscriptions
(rf/reg-sub ::db
(fn [{:keys [::db]}]
db))
(rf/reg-sub ::tasks
:<- [::db]
(fn [{:keys [tasks]}]
tasks))
(rf/reg-sub ::running?
:<- [::tasks]
(fn [tasks [_ ids]]
(if ids
(->> tasks (keys) (filter ids) (seq) (some?))
(->> tasks (seq) (some?)))))
|
29816
|
(ns jtk-dvlp.re-frame.tasks
(:require
[re-frame.core :as rf]
[re-frame.interceptor :as interceptor]))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Functions
(defn ->task
[data]
(assoc data ::id (random-uuid)))
(defn register
[db {:keys [::<KEY>] :as task}]
(assoc-in db [::db :tasks id] task))
(defn unregister
[db id-or-task]
(let [id (or (::id id-or-task) id-or-task)]
(update-in db [::db :tasks] dissoc id)))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Interceptors
(defn as-task
([effect-key]
(as-task effect-key :on-completed))
([effect-key & on-completion-keys]
(rf/->interceptor
:id
:as-task
:after
(fn [context]
(let [effect
(rf/get-effect context effect-key)
task-id
(::id effect (random-uuid))
task
(assoc effect ::id task-id, ::effect effect-key)
effect'
(->> on-completion-keys
(map #(->> (get effect %)
(vector ::unregister-and-dispatch-original task-id)))
(zipmap on-completion-keys)
(merge effect))
db'
(-> (rf/get-effect context :db)
(or (rf/get-coeffect context :db))
(register task))]
(if effect
(-> context
(interceptor/assoc-effect :db db')
(interceptor/assoc-effect effect-key effect'))
context))))))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Events
(rf/reg-event-db ::register
(fn [db [_ task]]
(register db task)))
(rf/reg-event-db ::unregister
(fn [db [_ id-or-task]]
(unregister db id-or-task)))
(rf/reg-event-fx ::unregister-and-dispatch-original
(fn [{:keys [db]} [_ id-or-task original-event-vec & original-event-args]]
(cond-> {:db (unregister db id-or-task)}
original-event-vec
(assoc :dispatch (into original-event-vec original-event-args)))))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Subscriptions
(rf/reg-sub ::db
(fn [{:keys [::db]}]
db))
(rf/reg-sub ::tasks
:<- [::db]
(fn [{:keys [tasks]}]
tasks))
(rf/reg-sub ::running?
:<- [::tasks]
(fn [tasks [_ ids]]
(if ids
(->> tasks (keys) (filter ids) (seq) (some?))
(->> tasks (seq) (some?)))))
| true |
(ns jtk-dvlp.re-frame.tasks
(:require
[re-frame.core :as rf]
[re-frame.interceptor :as interceptor]))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Functions
(defn ->task
[data]
(assoc data ::id (random-uuid)))
(defn register
[db {:keys [::PI:KEY:<KEY>END_PI] :as task}]
(assoc-in db [::db :tasks id] task))
(defn unregister
[db id-or-task]
(let [id (or (::id id-or-task) id-or-task)]
(update-in db [::db :tasks] dissoc id)))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Interceptors
(defn as-task
([effect-key]
(as-task effect-key :on-completed))
([effect-key & on-completion-keys]
(rf/->interceptor
:id
:as-task
:after
(fn [context]
(let [effect
(rf/get-effect context effect-key)
task-id
(::id effect (random-uuid))
task
(assoc effect ::id task-id, ::effect effect-key)
effect'
(->> on-completion-keys
(map #(->> (get effect %)
(vector ::unregister-and-dispatch-original task-id)))
(zipmap on-completion-keys)
(merge effect))
db'
(-> (rf/get-effect context :db)
(or (rf/get-coeffect context :db))
(register task))]
(if effect
(-> context
(interceptor/assoc-effect :db db')
(interceptor/assoc-effect effect-key effect'))
context))))))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Events
(rf/reg-event-db ::register
(fn [db [_ task]]
(register db task)))
(rf/reg-event-db ::unregister
(fn [db [_ id-or-task]]
(unregister db id-or-task)))
(rf/reg-event-fx ::unregister-and-dispatch-original
(fn [{:keys [db]} [_ id-or-task original-event-vec & original-event-args]]
(cond-> {:db (unregister db id-or-task)}
original-event-vec
(assoc :dispatch (into original-event-vec original-event-args)))))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Subscriptions
(rf/reg-sub ::db
(fn [{:keys [::db]}]
db))
(rf/reg-sub ::tasks
:<- [::db]
(fn [{:keys [tasks]}]
tasks))
(rf/reg-sub ::running?
:<- [::tasks]
(fn [tasks [_ ids]]
(if ids
(->> tasks (keys) (filter ids) (seq) (some?))
(->> tasks (seq) (some?)))))
|
[
{
"context": "mutter m k)\n\n(def factbase\n (facts/db\n [mann :adam]\n [mann :tobias]\n [mann :frank]\n [frau :",
"end": 137,
"score": 0.9849026799201965,
"start": 133,
"tag": "NAME",
"value": "adam"
},
{
"context": " factbase\n (facts/db\n [mann :adam]\n [mann :tobias]\n [mann :frank]\n [frau :eva]\n [frau :dan",
"end": 156,
"score": 0.9250490069389343,
"start": 150,
"tag": "NAME",
"value": "tobias"
},
{
"context": "db\n [mann :adam]\n [mann :tobias]\n [mann :frank]\n [frau :eva]\n [frau :daniela]\n [frau :u",
"end": 174,
"score": 0.9900199174880981,
"start": 169,
"tag": "NAME",
"value": "frank"
},
{
"context": " [mann :tobias]\n [mann :frank]\n [frau :eva]\n [frau :daniela]\n [frau :ulrike]\n [vate",
"end": 190,
"score": 0.5117639303207397,
"start": 189,
"tag": "NAME",
"value": "a"
},
{
"context": "ias]\n [mann :frank]\n [frau :eva]\n [frau :daniela]\n [frau :ulrike]\n [vater :adam :tobias]\n ",
"end": 210,
"score": 0.9838948249816895,
"start": 203,
"tag": "NAME",
"value": "daniela"
},
{
"context": "\n [frau :eva]\n [frau :daniela]\n [frau :ulrike]\n [vater :adam :tobias]\n [vater :tobias :",
"end": 227,
"score": 0.5389036536216736,
"start": 225,
"tag": "NAME",
"value": "ri"
},
{
"context": " [frau :daniela]\n [frau :ulrike]\n [vater :adam :tobias]\n [vater :tobias :frank]\n [vater :t",
"end": 247,
"score": 0.8834317922592163,
"start": 243,
"tag": "NAME",
"value": "adam"
},
{
"context": "au :daniela]\n [frau :ulrike]\n [vater :adam :tobias]\n [vater :tobias :frank]\n [vater :tobias :u",
"end": 255,
"score": 0.583733320236206,
"start": 249,
"tag": "NAME",
"value": "tobias"
},
{
"context": "au :ulrike]\n [vater :adam :tobias]\n [vater :tobias :frank]\n [vater :tobias :ulrike]\n [mutter :",
"end": 275,
"score": 0.7299214601516724,
"start": 269,
"tag": "NAME",
"value": "tobias"
},
{
"context": "ke]\n [vater :adam :tobias]\n [vater :tobias :frank]\n [vater :tobias :ulrike]\n [mutter :eva :to",
"end": 282,
"score": 0.9976598024368286,
"start": 277,
"tag": "NAME",
"value": "frank"
},
{
"context": "\n [vater :tobias :frank]\n [vater :tobias :ulrike]\n [mutter :eva :tobias]\n [mutter :daniela :",
"end": 310,
"score": 0.5357891321182251,
"start": 306,
"tag": "NAME",
"value": "rike"
},
{
"context": " :frank]\n [vater :tobias :ulrike]\n [mutter :eva :tobias]\n [mutter :daniela :frank]\n [mutter",
"end": 328,
"score": 0.714866042137146,
"start": 325,
"tag": "NAME",
"value": "eva"
},
{
"context": "]\n [vater :tobias :ulrike]\n [mutter :eva :tobias]\n [mutter :daniela :frank]\n [mutter :daniel",
"end": 336,
"score": 0.5232986211776733,
"start": 332,
"tag": "NAME",
"value": "bias"
},
{
"context": "s :ulrike]\n [mutter :eva :tobias]\n [mutter :daniela :frank]\n [mutter :daniela :ulrike]))\n",
"end": 358,
"score": 0.9916970729827881,
"start": 351,
"tag": "NAME",
"value": "daniela"
},
{
"context": "]\n [mutter :eva :tobias]\n [mutter :daniela :frank]\n [mutter :daniela :ulrike]))\n",
"end": 365,
"score": 0.9964331984519958,
"start": 360,
"tag": "NAME",
"value": "frank"
},
{
"context": "tobias]\n [mutter :daniela :frank]\n [mutter :daniela :ulrike]))\n",
"end": 387,
"score": 0.9624022245407104,
"start": 380,
"tag": "NAME",
"value": "daniela"
}
] |
prolog-to-corelogic/clojure.clj
|
gixxi/talks-and-slides
| 0 |
(facts/db-rel mann n)
(facts/db-rel frau n)
(facts/db-rel vater v k)
(facts/db-rel mutter m k)
(def factbase
(facts/db
[mann :adam]
[mann :tobias]
[mann :frank]
[frau :eva]
[frau :daniela]
[frau :ulrike]
[vater :adam :tobias]
[vater :tobias :frank]
[vater :tobias :ulrike]
[mutter :eva :tobias]
[mutter :daniela :frank]
[mutter :daniela :ulrike]))
|
87861
|
(facts/db-rel mann n)
(facts/db-rel frau n)
(facts/db-rel vater v k)
(facts/db-rel mutter m k)
(def factbase
(facts/db
[mann :<NAME>]
[mann :<NAME>]
[mann :<NAME>]
[frau :ev<NAME>]
[frau :<NAME>]
[frau :ul<NAME>ke]
[vater :<NAME> :<NAME>]
[vater :<NAME> :<NAME>]
[vater :tobias :ul<NAME>]
[mutter :<NAME> :to<NAME>]
[mutter :<NAME> :<NAME>]
[mutter :<NAME> :ulrike]))
| true |
(facts/db-rel mann n)
(facts/db-rel frau n)
(facts/db-rel vater v k)
(facts/db-rel mutter m k)
(def factbase
(facts/db
[mann :PI:NAME:<NAME>END_PI]
[mann :PI:NAME:<NAME>END_PI]
[mann :PI:NAME:<NAME>END_PI]
[frau :evPI:NAME:<NAME>END_PI]
[frau :PI:NAME:<NAME>END_PI]
[frau :ulPI:NAME:<NAME>END_PIke]
[vater :PI:NAME:<NAME>END_PI :PI:NAME:<NAME>END_PI]
[vater :PI:NAME:<NAME>END_PI :PI:NAME:<NAME>END_PI]
[vater :tobias :ulPI:NAME:<NAME>END_PI]
[mutter :PI:NAME:<NAME>END_PI :toPI:NAME:<NAME>END_PI]
[mutter :PI:NAME:<NAME>END_PI :PI:NAME:<NAME>END_PI]
[mutter :PI:NAME:<NAME>END_PI :ulrike]))
|
[
{
"context": " :headers {\"X-Forwarded-For\" \"1.3.3.7\"\n \"X-Forwarded-",
"end": 605,
"score": 0.9995313882827759,
"start": 598,
"tag": "IP_ADDRESS",
"value": "1.3.3.7"
}
] |
example/test/nl/epij/gcf/example_test.clj
|
pepijn/google-cloud-functions-clojure
| 6 |
(ns nl.epij.gcf.example-test
(:require
[babashka.process :as proc]
[babashka.wait :as wait]
[clojure.test :refer [deftest is]]
[org.httpkit.client :as http]))
(def port 8090)
(defn request!
[]
(let [server (proc/process ["clojure" "-X:run"]
{:out :inherit
:err :inherit
:extra-env {"PORT" port}})]
(try (wait/wait-for-port "localhost" port)
@(http/request {:url (format "http://localhost:%s" port)
:headers {"X-Forwarded-For" "1.3.3.7"
"X-Forwarded-Proto" "http"}})
(finally (proc/destroy-tree server)))))
(deftest http-request
(is (= (-> (request!) :status)
200)))
|
39129
|
(ns nl.epij.gcf.example-test
(:require
[babashka.process :as proc]
[babashka.wait :as wait]
[clojure.test :refer [deftest is]]
[org.httpkit.client :as http]))
(def port 8090)
(defn request!
[]
(let [server (proc/process ["clojure" "-X:run"]
{:out :inherit
:err :inherit
:extra-env {"PORT" port}})]
(try (wait/wait-for-port "localhost" port)
@(http/request {:url (format "http://localhost:%s" port)
:headers {"X-Forwarded-For" "172.16.58.3"
"X-Forwarded-Proto" "http"}})
(finally (proc/destroy-tree server)))))
(deftest http-request
(is (= (-> (request!) :status)
200)))
| true |
(ns nl.epij.gcf.example-test
(:require
[babashka.process :as proc]
[babashka.wait :as wait]
[clojure.test :refer [deftest is]]
[org.httpkit.client :as http]))
(def port 8090)
(defn request!
[]
(let [server (proc/process ["clojure" "-X:run"]
{:out :inherit
:err :inherit
:extra-env {"PORT" port}})]
(try (wait/wait-for-port "localhost" port)
@(http/request {:url (format "http://localhost:%s" port)
:headers {"X-Forwarded-For" "PI:IP_ADDRESS:172.16.58.3END_PI"
"X-Forwarded-Proto" "http"}})
(finally (proc/destroy-tree server)))))
(deftest http-request
(is (= (-> (request!) :status)
200)))
|
[
{
"context": "(comment \n re-core, Copyright 2012 Ronen Narkis, narkisr.com\n Licensed under the Apache License",
"end": 49,
"score": 0.9998814463615417,
"start": 37,
"tag": "NAME",
"value": "Ronen Narkis"
},
{
"context": "omment \n re-core, Copyright 2012 Ronen Narkis, narkisr.com\n Licensed under the Apache License,\n Version ",
"end": 62,
"score": 0.8429098725318909,
"start": 52,
"tag": "EMAIL",
"value": "arkisr.com"
}
] |
src/freenas/remote.clj
|
celestial-ops/core
| 1 |
(comment
re-core, Copyright 2012 Ronen Narkis, narkisr.com
Licensed under the Apache License,
Version 2.0 (the "License") you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.)
(ns freenas.remote
(:require
[slingshot.slingshot :refer [throw+]]
[taoensso.timbre :as timbre]
[re-core.common :refer (import-logging)]
[cheshire.core :refer :all]
[re-core.model :refer (hypervisor)]
[clojure.core.strint :refer (<<)]
[org.httpkit.client :as client]))
(timbre/refer-timbre)
(defn freenas [ks])
(defn root
[]
(<< "https://~(hypervisor :freenas :host)/api/v1.0/"))
(defn auth
[]
[(hypervisor :freenas :username) (hypervisor :freenas :password)]
)
(defn defaults []
{:basic-auth (auth) :insecure? true :headers {"Content-Type" "application/json"}})
(defn call
([verb api] (call verb api nil))
([verb api params]
(let [args* (merge (defaults) {:body (generate-string params)} {})
{:keys [body status] :as res} @(verb (<< "~(root)~{api}") args*)]
(when-not (#{200 201 202 204} status)
(info status)
(throw+ (assoc res :type ::call-failed)))
(-> body (parse-string true)))))
|
86602
|
(comment
re-core, Copyright 2012 <NAME>, n<EMAIL>
Licensed under the Apache License,
Version 2.0 (the "License") you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.)
(ns freenas.remote
(:require
[slingshot.slingshot :refer [throw+]]
[taoensso.timbre :as timbre]
[re-core.common :refer (import-logging)]
[cheshire.core :refer :all]
[re-core.model :refer (hypervisor)]
[clojure.core.strint :refer (<<)]
[org.httpkit.client :as client]))
(timbre/refer-timbre)
(defn freenas [ks])
(defn root
[]
(<< "https://~(hypervisor :freenas :host)/api/v1.0/"))
(defn auth
[]
[(hypervisor :freenas :username) (hypervisor :freenas :password)]
)
(defn defaults []
{:basic-auth (auth) :insecure? true :headers {"Content-Type" "application/json"}})
(defn call
([verb api] (call verb api nil))
([verb api params]
(let [args* (merge (defaults) {:body (generate-string params)} {})
{:keys [body status] :as res} @(verb (<< "~(root)~{api}") args*)]
(when-not (#{200 201 202 204} status)
(info status)
(throw+ (assoc res :type ::call-failed)))
(-> body (parse-string true)))))
| true |
(comment
re-core, Copyright 2012 PI:NAME:<NAME>END_PI, nPI:EMAIL:<EMAIL>END_PI
Licensed under the Apache License,
Version 2.0 (the "License") you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.)
(ns freenas.remote
(:require
[slingshot.slingshot :refer [throw+]]
[taoensso.timbre :as timbre]
[re-core.common :refer (import-logging)]
[cheshire.core :refer :all]
[re-core.model :refer (hypervisor)]
[clojure.core.strint :refer (<<)]
[org.httpkit.client :as client]))
(timbre/refer-timbre)
(defn freenas [ks])
(defn root
[]
(<< "https://~(hypervisor :freenas :host)/api/v1.0/"))
(defn auth
[]
[(hypervisor :freenas :username) (hypervisor :freenas :password)]
)
(defn defaults []
{:basic-auth (auth) :insecure? true :headers {"Content-Type" "application/json"}})
(defn call
([verb api] (call verb api nil))
([verb api params]
(let [args* (merge (defaults) {:body (generate-string params)} {})
{:keys [body status] :as res} @(verb (<< "~(root)~{api}") args*)]
(when-not (#{200 201 202 204} status)
(info status)
(throw+ (assoc res :type ::call-failed)))
(-> body (parse-string true)))))
|
[
{
"context": "ns under the License.\n;;\n;; Copyright © 2013-2022, Kenneth Leung. All rights reserved.\n\n(ns czlab.hoard.core\n\n \"D",
"end": 597,
"score": 0.9998520612716675,
"start": 584,
"tag": "NAME",
"value": "Kenneth Leung"
},
{
"context": " :driver (str driver)\n :user (str user)\n :url (str url)\n :pa",
"end": 10233,
"score": 0.9852482080459595,
"start": 10229,
"tag": "USERNAME",
"value": "user"
},
{
"context": " :url (str url)\n :passwd (i/x->chars passwd)\n :id (str (u/jid<>) \"#\" (u/seqint2",
"end": 10306,
"score": 0.6733861565589905,
"start": 10300,
"tag": "PASSWORD",
"value": "passwd"
},
{
"context": " (.put \"user\" user)\n (.put \"username\" user))\n (if passwd\n (.put p \"password\" (i/",
"end": 10969,
"score": 0.6057138442993164,
"start": 10965,
"tag": "USERNAME",
"value": "user"
}
] |
src/main/clojure/czlab/hoard/core.clj
|
llnek/dbio
| 1 |
;; Licensed under the Apache License, Version 2.0 (the "License");
;; you may not use this file except in compliance with the License.
;; You may obtain a copy of the License at
;;
;; http://www.apache.org/licenses/LICENSE-2.0
;;
;; Unless required by applicable law or agreed to in writing, software
;; distributed under the License is distributed on an "AS IS" BASIS,
;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
;; See the License for the specific language governing permissions and
;; limitations under the License.
;;
;; Copyright © 2013-2022, Kenneth Leung. All rights reserved.
(ns czlab.hoard.core
"Database and modeling functions."
(:refer-clojure :exclude [next])
(:use [flatland.ordered.set])
(:require [clojure.java.io :as io]
[clojure.string :as cs]
[czlab.basal.io :as i]
[czlab.basal.meta :as m]
[czlab.basal.util :as u]
[czlab.basal.core :as c])
(:import [java.util
HashMap
TimeZone
Properties
GregorianCalendar]
[clojure.lang
Keyword
APersistentMap
APersistentVector]
[com.zaxxer.hikari
HikariConfig
HikariDataSource]
[java.lang Math]
[java.sql
SQLException
Connection
Driver
DriverManager
DatabaseMetaData]))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;(set! *warn-on-reflection* true)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(c/def- dft-options {:col-rowid "CZLAB_ROWID"
:col-lhs-rowid "CZLAB_LHS_ROWID"
:col-rhs-rowid "CZLAB_RHS_ROWID"})
(def ^:dynamic *ddl-cfg* nil)
(def ^:dynamic *ddl-bvs* nil)
(def ddl-sep "-- :")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(declare dbo2o dbo2m dbm2m dbfields dft-fld<>)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defprotocol Transactable
"Functions relating to a db transaction."
(transact! [_ func]
[_ func cfg]
"Run function inside a transaction."))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defprotocol SQLr
"Functions relating to SQL."
(find-some [_ model filters]
[_ model filters extras] "")
(find-all [_ model]
[_ model extras] "")
;(find-one [_ model filters] "")
(fmt-id [_ s] "")
(mod-obj [_ obj] "")
(del-obj [_ obj] "")
(add-obj [_ obj] "")
(count-objs [_ model] "")
(purge-objs [_ model] "")
(exec-sql [_ sql params] "")
(exec-with-output [_ sql params] "")
(select-sql [_ sql params]
[_ model sql params] ""))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defrecord DbioModel [])
(defrecord DbioField [])
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defrecord DbioM2MRel [])
(defrecord DbioO2ORel [])
(defrecord DbioO2MRel [])
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defrecord VendorGist [])
(defrecord JdbcSpec [])
(defrecord DbioPojo [])
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dberr!
"Throw a SQL execption."
{:arglists '([fmt & more])}
[fmt & more]
(c/trap! SQLException (c/fmt fmt more)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(c/defmacro- mkfld
[& args] `(merge (dft-fld<>) (array-map ~@args)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defmacro dbmodel<>
"Define a data model inside a schema."
{:arglists '([name & body])}
[name & body]
(let [p1 (first body)
[options defs]
(if-not (map? p1)
[nil body] [p1 (drop 1 body)])]
`(-> (czlab.hoard.core/dbdef<> ~name ~options) ~@defs)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defmacro tstamp<>
"Sql timestamp."
{:arglists '([])}
[]
`(java.sql.Timestamp. (.getTime (java.util.Date.))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- clean-name
[s] (str (some-> s
name
(cs/replace #"[^a-zA-Z0-9_-]" "")
(cs/replace #"-" "_"))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defmacro gmodel
"Get object's model."
{:arglists '([pojo])}
[pojo]
`(:model (meta ~pojo)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defmacro gtype
"Get object's type."
{:arglists '([pojo])}
[pojo]
`(:id (czlab.hoard.core/gmodel ~pojo)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defmacro goid
"Get object's id."
{:arglists '([pojo])}
[pojo]
`(let [o# ~pojo
pk# (:pkey (czlab.hoard.core/gmodel o#))] (pk# o#)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn find-model
"Find a model from the schema."
{:arglists '([schema typeid])}
[schema typeid]
{:pre [(c/atom? schema)]}
(or (get (:models @schema) typeid)
(c/warn "find-model %s failed!" typeid)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn find-col
"Look up the field's column name."
{:arglists '([f])}
[f]
{:pre [(c/is? DbioField f)]}
(:column f))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn with-joined
"Define a joined table."
{:arglists '([model lhs rhs])}
[model lhs rhs]
{:pre [(c/is? DbioModel model)]}
;meta was injected by our framework
(let [{{:keys [col-lhs-rowid
col-rhs-rowid]} :____meta} model]
;create the fields to store the pkeys of
;both lhs & rhs
(-> (dbfields model
{:lhs-rowid
(mkfld :domain :Long
:null? false
:column col-lhs-rowid)
:rhs-rowid
(mkfld :domain :Long
:null? false
:column col-rhs-rowid)})
;create a mxm relation
(dbm2m lhs rhs))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn with-table
"Define the name of a table."
{:arglists '([m table])}
[m table]
{:pre [(c/is? DbioModel m)]}
(assoc m :table (clean-name table)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn gschema
"Get the schema containing this model."
{:arglists '([m])}
[m]
{:pre [(c/is? DbioModel m)]}
(:schema (meta m)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn find-field
"Look up a field definition from the model."
{:arglists '([model fieldid])}
[model fieldid]
{:pre [(c/is? DbioModel model)]}
(get (:fields model) fieldid))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn find-table
"Get the table name from the model."
{:arglists '([m])}
[m]
{:pre [(c/is? DbioModel m)]}
(:table m))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn find-id
"Get the id of this model."
{:arglists '([m])}
[m]
{:pre [(c/is? DbioModel m)]}
(:id m))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn find-assoc
"Find the relation from the model."
{:arglists '([model relid])}
[m relid]
{:pre [(c/is? DbioModel m)]}
(get (:rels m) relid))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn gmxm
"Get the many-to-many relation from the model."
{:arglists '([model])}
[m]
{:pre [(c/is? DbioModel m)
(:mxm? m)]}
(find-assoc m :mxm))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn fmt-sqlid
"Format SQL identifier."
{:tag String
:arglists '([info idstr]
[info idstr quote?])}
([info idstr]
(fmt-sqlid info idstr nil))
([info idstr quote?]
(cond
(map? info)
(let [{:keys [qstr ucs? lcs?]} info
ch (c/strim qstr)
id (cond ucs? (c/ucase idstr)
lcs? (c/lcase idstr) :else idstr)]
(if (false? quote?) id (str ch id ch)))
(c/is? DatabaseMetaData info)
(let [mt (c/cast? DatabaseMetaData info)
ch (c/strim
(.getIdentifierQuoteString mt))
id (cond
(.storesUpperCaseIdentifiers mt)
(c/ucase idstr)
(.storesLowerCaseIdentifiers mt)
(c/lcase idstr)
:else idstr)]
(if (false? quote?) id (str ch id ch)))
(c/is? Connection info)
(fmt-sqlid (.getMetaData ^Connection info) idstr quote?))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; have to be function , not macro as this is passed into another higher
;; function - merge.
(defn- merge-meta
"Merge 2 meta maps."
[m1 m2] {:pre [(map? m1)
(or (nil? m2)(map? m2))]} (merge m1 m2))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defrecord JdbcPool []
java.io.Closeable
(close [me]
(let [s (:impl me)]
(c/debug "finz: %s." s)
(.close ^HikariDataSource s)))
c/Finzable
(finz [_] (.close _))
c/Nextable
(next [me]
(try (.getConnection ^HikariDataSource (:impl me))
(catch Throwable _ (dberr! "No free connection.") nil))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- jdbc-pool<>
[vendor jdbc impl]
(c/object<> JdbcPool
:vendor vendor :jdbc jdbc :impl impl))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbspec<>
"Basic jdbc parameters."
{:arglists '([url]
[driver url user passwd])}
([url]
(dbspec<> nil url nil nil))
([driver url user passwd]
(c/object<> JdbcSpec
:driver (str driver)
:user (str user)
:url (str url)
:passwd (i/x->chars passwd)
:id (str (u/jid<>) "#" (u/seqint2)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn load-driver
"Load a jdbc driver."
{:tag Driver
:arglists '([jdbc])}
[jdbc]
{:pre [(c/is? JdbcSpec jdbc)]}
(c/if-string
[s (:url jdbc)]
(DriverManager/getDriver s)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- safe-get-conn
^Connection [jdbc]
(let [d (load-driver jdbc)
p (Properties.)
{:keys [url user
driver passwd]} jdbc]
(when (c/hgl? user)
(doto p
(.put "user" user)
(.put "username" user))
(if passwd
(.put p "password" (i/x->str passwd))))
(if (nil? d)
(dberr! "Can't load Jdbc Url: %s." url))
(if (and (c/hgl? driver)
(not= (-> d
.getClass
.getName) driver))
(c/warn "want %s, got %s." driver (class d)))
(.connect d url p)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn conn<>
"Make a jdbc connection."
{:tag Connection
:arglists '([jdbc])}
[jdbc]
{:pre [(c/is? JdbcSpec jdbc)]}
(let [{:keys [url user]} jdbc
^Connection
c (if (c/hgl? user)
(safe-get-conn jdbc)
(DriverManager/getConnection url))]
(if (nil? c)
(dberr! "Failed to connect: %s." url))
(doto c
(.setTransactionIsolation
Connection/TRANSACTION_SERIALIZABLE))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn testing?
"Check if jdbc spec is valid?"
{:arglists '([s])}
[s]
{:pre [(c/is? JdbcSpec s)]}
(try (c/do->true
(.close (conn<> s)))
(catch SQLException _ false)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(def Postgresql :postgresql)
(def Postgres :postgres)
(def SQLServer :sqlserver)
;;(def SQLServer :mssql)
(def Oracle :oracle)
(def MySQL :mysql)
(def H2 :h2)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(def ^:dynamic *db-types*
{SQLServer {:test-string "select count(*) from sysusers" }
Postgresql {:test-string "select 1" }
Postgres {:test-string "select 1" }
MySQL {:test-string "select version()" }
H2 {:test-string "select 1" }
Oracle {:test-string "select 1 from DUAL" } })
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- maybe-get-vendor
"Detect the database vendor."
[product]
(let [fc #(c/embeds? %2 %1)
lp (c/lcase product)]
(condp fc lp
"microsoft" SQLServer
"postgres" Postgresql
"oracle" Oracle
"mysql" MySQL
"h2" H2
(dberr! "Unknown db product: %s." product))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(c/defmacro- fmt-fkey
"For o2o & o2m relations."
[tn rn] `(c/x->kw "fk_" (name ~tn) "_" (name ~rn)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn match-spec??
"If the database is supported?"
{:arglists '([spec])}
[spec]
(let [kw (if-not (string? spec)
spec (keyword (c/lcase spec)))]
(if (contains? *db-types* kw) kw)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn match-url??
"If the referred database is supported?"
{:arglists '([dburl])}
[dburl]
(c/if-some+
[ss (c/split (str dburl) ":")]
(if (> (count ss) 1) (match-spec?? (second ss)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; DATA MODELING
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- dft-fld<>
([]
(dft-fld<> nil))
([fid]
(c/object<> DbioField
:domain :String
:id fid
:size 255
:rel-key? false
:null? true
:auto? false
:dft nil
:system? false
:updatable? true
:column (clean-name fid))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(c/def- pkey-meta (mkfld :updatable? false
:domain :Long
:id :rowid
:auto? true
:system? true
:column "must be set!"))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- dbcfg
"Set the column name for the primary key. *Internal*"
[model]
(let [{:keys [pkey]
{:keys [col-rowid]} :____meta} model]
(if (c/nichts? col-rowid)
model
(update-in model [:fields pkey] assoc :column col-rowid))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbdef<>
"Define a generic model. *internal*"
{:arglists '([mname]
[mname options])}
([mname]
(dbdef<> mname nil))
([mname options]
{:pre [(c/is-scoped-keyword? mname)]}
(dbcfg (c/object<> DbioModel
(merge {:abstract? false
:system? false
:mxm? false
:pkey :rowid
:indexes {}
:rels {}
:uniques {}
:id mname
:fields {:rowid pkey-meta}
:table (clean-name mname)} options)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbfield<>
"Add a new field."
{:arglists '([model fid fdef])}
[model fid fdef]
{:pre [(keyword? fid)(map? fdef)]}
(update-in model
[:fields]
assoc
fid
(merge (dft-fld<> fid) (dissoc fdef :id))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbfields
"Add a bunch of fields."
{:arglists '([model flddefs])}
[model flddefs]
{:pre [(map? flddefs)]}
(reduce #(dbfield<> %1 (c/_1 %2) (c/_E %2)) model flddefs))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defmacro dbjoined<>
"Define a joined data model."
{:arglists '([modelname lhs rhs]
[modelname options lhs rhs])}
([modelname lhs rhs]
`(dbjoined<> ~modelname nil ~lhs ~rhs))
([modelname options lhs rhs]
(let [options' (merge options {:mxm? true})]
`(-> (czlab.hoard.core/dbdef<> ~modelname ~options')
(czlab.hoard.core/with-joined ~lhs ~rhs)
(czlab.hoard.core/dbuniques {:i1 #{:lhs-rowid :rhs-rowid}})))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;merge new stuff onto old stuff
(defn- with-xxx-sets
[model kvs fld]
(update-in model
[fld]
merge
(c/preduce<map>
#(assoc! %1
(c/_1 %2)
(into (ordered-set) (c/_E %2))) kvs)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;indices = { :a #{ :f1 :f2} ] :b #{:f3 :f4} }
(defn dbindexes
"Set indexes to the model."
{:arglists '([model indexes])}
[model indexes]
{:pre [(map? indexes)]}
(with-xxx-sets model indexes :indexes))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbkey
"Declare your own primary key."
{:arglists '([model pke])}
[model pke]
(let [{:keys [fields pkey]} model
{:keys [domain id
auto?
column size]} pke
p (pkey fields)
oid (or id pkey)
fields (dissoc fields pkey)]
(assert (and column
domain
p
(= pkey (:id p))))
(-> (->> (assoc (if-not auto?
(dissoc p :auto?)
(assoc p :auto? true))
:id oid
:domain domain
:column column
:size (c/num?? size 255))
(assoc fields oid)
(assoc model :fields))
(assoc :pkey oid))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;uniques = { :a #{ :f1 :f2 } :b #{ :f3 :f4 } }
(defn dbuniques
"Set uniques to the model."
{:arglists '([model uniqs])}
[model uniqs]
{:pre [(map? uniqs)]}
(with-xxx-sets model uniqs :uniques))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- dbassoc<>
"Define an relation between 2 models."
[{:keys [id] :as model} rel args]
(let [{fk :fkey rid :id :as R}
(merge rel {:fkey nil
:cascade? false} args)]
(update-in model
[:rels]
assoc
rid
(assoc R
:fkey
(or fk
(fmt-fkey id rid))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- dbm2m
[model lhs rhs]
(dbassoc<> model
(DbioM2MRel.)
{:owner (find-id model)
:id :mxm
:lhs [lhs :lhs-rowid]
:rhs [rhs :rhs-rowid]}))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbo2m
"Define a one to many association."
{:arglists '([model id & args])}
[model id & args]
{:pre [(not-empty args)]}
(dbassoc<> model
(DbioO2MRel.)
(assoc (c/kvs->map args) :id id)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbo2o
"Define a one to one association."
{:arglists '([model id & args])}
[model id & args]
{:pre [(not-empty args)]}
(dbassoc<> model
(DbioO2ORel.)
(assoc (c/kvs->map args) :id id)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(c/defmacro- with-abstract
[model] `(assoc ~model :abstract? true))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(c/defmacro- with-system
[model] `(assoc ~model :system? true))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- check-field?
[pojo fld]
(boolean
(if-some [f (find-field (gmodel pojo) fld)]
(not (or (:auto? f)
(not (:updatable? f)))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(c/defmacro- mkfkdef<>
[fid ktype] `(assoc (dft-fld<> ~fid)
:rel-key? true :domain ~ktype))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- resolve-assocs
"Walk through all models, for each model, study its relations.
For o2o or o2m assocs, we need to artificially inject a new
field/column into the (other/rhs) model (foreign key)."
[metas]
;; 1st, create placeholder maps for each model,
;; to hold new fields from rels
(with-local-vars
[xs (c/tmap*)
phd (c/tmap* (zipmap (keys metas)
(repeat {})))]
;;as we find new relation fields,
;;add them to the placeholders
(doseq [[_ m] metas
:let [{:keys [pkey fields
rels abstract?]} m
kt (:domain (pkey fields))]
:when (and (not abstract?)
(not-empty rels))]
;only deal with o2o, o2m assocs
(doseq [[_ r] rels
:let [{:keys [other fkey]} r]
:when (not (c/is? DbioM2MRel r))]
;inject a new field to the *other* type
(var-set phd
(assoc! @phd
other
(->> (mkfkdef<> fkey kt)
(assoc (@phd other) fkey))))))
;;now walk through all the placeholder maps and merge those new
;;fields to the actual models
(doseq [[k v] (c/persist! @phd)
:let [mcz (metas k)]]
(var-set xs
(assoc! @xs
k
(update-in mcz
[:fields] merge v))))
(persistent! @xs)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- resolve-mxms
[metas]
;deal with dbjoined<> decls
(with-local-vars [mms (c/tmap*)]
(doseq [[k m] metas
:let [{:keys [mxm? rels fields]} m
{:keys [lhs rhs] :as R}
(get rels :mxm)]
:when (and mxm? R)]
;make foreign keys to have the same attributes
;as the linked tables primary keys.
(->>
(c/preduce<map>
#(let
[[side kee] %2
mz (metas side)
pke ((:pkey mz)
(:fields mz))
d (merge (kee fields)
(select-keys pke
[:domain :size]))]
(assoc! %1 kee d))
[lhs rhs])
(merge fields)
(assoc m :fields)
(assoc! @mms k)
(var-set mms)))
(merge metas (persistent! @mms))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- colmap-fields
"Create a map of fields keyed by the column name."
[flds]
(c/preduce<map>
#(let [[_ v] %2]
(assoc! %1 (c/ucase (:column v)) v)) flds))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- meta-models
"Inject extra meta-data properties into each model. Each model will have
its (complete) set of fields keyed by column name or field id."
[metas schema]
(c/preduce<map>
#(let [[k m] %2
{:keys [fields]} m]
(assoc! %1
k
(with-meta m
{:schema schema
:columns (colmap-fields fields)}))) metas))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defmacro defschema
"Define a schema."
{:arglists '([name & model])}
[name & models]
(let [m (meta name)
options (merge m dft-options)
options' {:____meta options}]
`(def
~name
(czlab.hoard.core/dbschema*
~options
~@(map #(let [[p1 p2 & more] %]
(cons p1
(cons p2
(cons options' more)))) models)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbschema*
"Stores metadata for all models. *internal*"
{:arglists '([options & models])}
[options & models]
(let [ms (if-not (empty? models)
(c/preduce<map>
#(assoc! %1 (:id %2) %2) models))
sch (atom {:____meta
(merge options dft-options)})
m2 (if-not (empty? ms)
(-> ms resolve-assocs resolve-mxms (meta-models nil)))]
(c/assoc!! sch
:models
(c/preduce<map>
#(let [[k m] %2]
(assoc! %1
k
(vary-meta m assoc :schema sch))) m2))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbg-schema
"Debug print a schema."
{:tag String
:arglists '([schema]
[schema simple?])}
([schema]
(dbg-schema schema true))
([schema simple?]
{:pre [(some? schema)]}
(if simple?
(i/fmt->edn (:models @schema))
(c/sreduce<>
#(c/sbf-join %1
"\n"
(i/fmt->edn {:TABLE (:table %2)
:DEFN %2
:META (meta %2)}))
(vals (:models @schema))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- maybe-ok?
[dbn ^Throwable e]
(let [ee (c/cast? SQLException (u/root-cause e))
ec (some-> ee .getErrorCode)]
(or (and (c/embeds? (c/lcase dbn) "oracle")
(some? ec)
(== 942 ec)
(== 1418 ec)
(== 2289 ec) (== 0 ec)) (throw e))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- load-columns
"Read each column's metadata."
[^DatabaseMetaData m
^String catalog ^String schema ^String table]
(with-local-vars [pkeys #{} cms {}]
(c/wo* [rs (.getPrimaryKeys m
catalog schema table)]
(loop [sum (c/tset*)
more (.next rs)]
(if-not more
(var-set pkeys (c/persist! sum))
(recur
(conj! sum
(.getString rs
(int 4))) (.next rs)))))
(c/wo* [rs (.getColumns m catalog schema table "%")]
(loop [sum (c/tmap*)
more (.next rs)]
(if-not more
(var-set cms (c/persist! sum))
(let [opt? (not= (.getInt rs (int 11))
DatabaseMetaData/columnNoNulls)
n (.getString rs (int 4))
cn (c/ucase n)
ctype (.getInt rs (int 5))]
(recur (assoc! sum
(keyword cn)
{:sql-type ctype
:column n
:null? opt?
:pkey? (contains? @pkeys n)})
(.next rs))))))
(with-meta @cms
{:supportsGetGeneratedKeys?
(.supportsGetGeneratedKeys m)
:primaryKeys
@pkeys
:supportsTransactions?
(.supportsTransactions m)})))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn upload-ddl
"Update DDL commands to database."
{:arglists '([conn ddl])}
[c ddl]
{:pre [(c/is? Connection c)]}
(let [lines (map #(c/strim %)
(cs/split ddl (re-pattern ddl-sep)))
c (c/cast? Connection c)
dbn (.. c
getMetaData
getDatabaseProductName)]
(.setAutoCommit c true)
;(c/debug "\n%s" ddl)
(doseq [s lines
:let [ln (c/strim-any s ";" true)]
:when (and (c/hgl? ln)
(not= (c/lcase ln) "go"))]
(c/wo* [s (.createStatement c)]
(try (.executeUpdate s ln)
(catch SQLException _ (maybe-ok? dbn _)))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn db-meta
"Get the meta-data on the database."
{:arglists '([c])
:tag DatabaseMetaData}
[c]
{:pre [(c/is? Connection c)]}
(.getMetaData ^Connection c))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn db-vendor
"Get information about the database."
{:arglists '([c])}
[c]
{:pre [(c/is? Connection c)]}
(let [m (.getMetaData ^Connection c)
rc (c/object<> VendorGist
:id (maybe-get-vendor (.getDatabaseProductName m))
:qstr (c/strim (.getIdentifierQuoteString m))
:version (.getDatabaseProductVersion m)
:name (.getDatabaseProductName m)
:url (.getURL m)
:user (.getUserName m)
:lcs? (.storesLowerCaseIdentifiers m)
:ucs? (.storesUpperCaseIdentifiers m)
:mcs? (.storesMixedCaseIdentifiers m))]
(assoc rc :fmt-id (partial fmt-sqlid rc))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn table-exist?
"If table is defined in the database?"
{:arglists '([c])}
[c table]
{:pre [(c/is? Connection c)]}
(c/try!
(let [m (db-meta c)
dbv (db-vendor c)]
(c/wo* [res (.getColumns m
nil
(if (= :oracle
(:id dbv)) "%")
(fmt-sqlid c table false) "%")]
(and res (.next res))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn row-exist?
"If table in database is not empty?"
{:arglists '([c])}
[c table]
{:pre [(c/is? Connection c)]}
(c/try!
(let [sql (c/fmt "select %s from %s"
"count(*)"
(fmt-sqlid c table))]
(c/wo* [res (-> ^Connection c
.createStatement
(.executeQuery sql))]
(and res
(.next res)
(pos? (.getInt res (int 1))))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn table-meta
"Get the meta-data on the table."
{:arglists '([conn table])}
[c table]
{:pre [(c/is? Connection c)]}
(let [mt (.getMetaData ^Connection c)
tbl (fmt-sqlid c table false)
dbv (db-vendor c)
catalog nil
schema (if (= (:id dbv) :oracle) "%")]
;; not good, try mixed case... arrrrhhhhhh
;;rs = m.getTables( catalog, schema, "%", null)
(load-columns mt catalog schema tbl)))
;;Object
;;Clojure CLJ-1347
;;finalize won't work *correctly* in reified objects - document
;;(finalize [this]
;;(try!
;;(log/debug "DbPool finalize() called.")
;;(.shutdown this)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbpool<>
"Create a db connection pool."
{:arglists '([jdbc]
[jdbc options])}
([jdbc]
(dbpool<> jdbc nil))
([jdbc options]
(let [dbv (c/wo* [^Connection
c (conn<> jdbc)] (db-vendor c))
{:keys [driver url passwd user]} jdbc
options (or options {})
hc (HikariConfig.)]
;;(c/debug "pool-options: %s." options)
;;(c/debug "pool-jdbc: %s." jdbc)
(if (c/hgl? driver)
(m/forname driver))
(c/test-some "db-vendor" dbv)
(.setJdbcUrl hc ^String url)
(when (c/hgl? user)
(.setUsername hc ^String user)
(if passwd
(.setPassword hc (i/x->str passwd))))
(c/debug "[hikari]\n%s." (str hc))
(jdbc-pool<> dbv jdbc (HikariDataSource. hc)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn bind-model
"Ensure pojo is bound to a model."
{:arglists '([p model])}
[p _model]
{:pre [(c/is? DbioPojo p)
(c/is? DbioModel _model)]}
(let [{:as m
:keys [model]} (meta p)]
(if (nil? model)
(c/wm* p (assoc m :model _model))
(c/raise! "Cannot bind model %s twice!" model))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbpojo<>
"Create object of type."
{:arglists '([][model])}
([]
(DbioPojo.))
([model]
{:pre [(some? model)]}
(bind-model (DbioPojo.) model)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn mock-pojo<>
"Clone object with pkey only."
{:arglists '([obj])}
[obj]
(let [out (DbioPojo.)
pk (:pkey (gmodel obj))]
(c/wm* (assoc out pk (goid obj)) (meta obj))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn clr-fld
"Clear a field in the pojo."
{:arglists '([pojo fld])}
[pojo fld]
(dissoc pojo fld))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn get-fld
"Get a field value from the pojo."
{:arglists '([pojo fld])}
[pojo fld]
(get pojo fld))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn set-fld
"Assign a value to a field in the pojo."
{:arglists '([pojo fld value])}
[pojo fld value]
{:pre [(keyword? fld)]}
(if (check-field? pojo fld)
(assoc pojo fld value)
(u/throw-BadData "Invalid field %s." fld)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn db-set-flds*
"Set field+values as: f1 v1 f2 v2 ... fn vn."
[pojo & fvs]
{:pre [(c/n#-even? fvs)]}
(reduce #(set-fld %1
(c/_1 %2)
(c/_E %2)) pojo (partition 2 fvs)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn db-set-flds
"Set field+values as: f1 v1 f2 v2 ... fn vn."
[pojo fvs]
{:pre [(map? fvs)]}
(reduce #(set-fld %1
(c/_1 %2)
(c/_E %2)) pojo fvs))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;EOF
|
55806
|
;; Licensed under the Apache License, Version 2.0 (the "License");
;; you may not use this file except in compliance with the License.
;; You may obtain a copy of the License at
;;
;; http://www.apache.org/licenses/LICENSE-2.0
;;
;; Unless required by applicable law or agreed to in writing, software
;; distributed under the License is distributed on an "AS IS" BASIS,
;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
;; See the License for the specific language governing permissions and
;; limitations under the License.
;;
;; Copyright © 2013-2022, <NAME>. All rights reserved.
(ns czlab.hoard.core
"Database and modeling functions."
(:refer-clojure :exclude [next])
(:use [flatland.ordered.set])
(:require [clojure.java.io :as io]
[clojure.string :as cs]
[czlab.basal.io :as i]
[czlab.basal.meta :as m]
[czlab.basal.util :as u]
[czlab.basal.core :as c])
(:import [java.util
HashMap
TimeZone
Properties
GregorianCalendar]
[clojure.lang
Keyword
APersistentMap
APersistentVector]
[com.zaxxer.hikari
HikariConfig
HikariDataSource]
[java.lang Math]
[java.sql
SQLException
Connection
Driver
DriverManager
DatabaseMetaData]))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;(set! *warn-on-reflection* true)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(c/def- dft-options {:col-rowid "CZLAB_ROWID"
:col-lhs-rowid "CZLAB_LHS_ROWID"
:col-rhs-rowid "CZLAB_RHS_ROWID"})
(def ^:dynamic *ddl-cfg* nil)
(def ^:dynamic *ddl-bvs* nil)
(def ddl-sep "-- :")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(declare dbo2o dbo2m dbm2m dbfields dft-fld<>)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defprotocol Transactable
"Functions relating to a db transaction."
(transact! [_ func]
[_ func cfg]
"Run function inside a transaction."))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defprotocol SQLr
"Functions relating to SQL."
(find-some [_ model filters]
[_ model filters extras] "")
(find-all [_ model]
[_ model extras] "")
;(find-one [_ model filters] "")
(fmt-id [_ s] "")
(mod-obj [_ obj] "")
(del-obj [_ obj] "")
(add-obj [_ obj] "")
(count-objs [_ model] "")
(purge-objs [_ model] "")
(exec-sql [_ sql params] "")
(exec-with-output [_ sql params] "")
(select-sql [_ sql params]
[_ model sql params] ""))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defrecord DbioModel [])
(defrecord DbioField [])
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defrecord DbioM2MRel [])
(defrecord DbioO2ORel [])
(defrecord DbioO2MRel [])
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defrecord VendorGist [])
(defrecord JdbcSpec [])
(defrecord DbioPojo [])
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dberr!
"Throw a SQL execption."
{:arglists '([fmt & more])}
[fmt & more]
(c/trap! SQLException (c/fmt fmt more)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(c/defmacro- mkfld
[& args] `(merge (dft-fld<>) (array-map ~@args)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defmacro dbmodel<>
"Define a data model inside a schema."
{:arglists '([name & body])}
[name & body]
(let [p1 (first body)
[options defs]
(if-not (map? p1)
[nil body] [p1 (drop 1 body)])]
`(-> (czlab.hoard.core/dbdef<> ~name ~options) ~@defs)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defmacro tstamp<>
"Sql timestamp."
{:arglists '([])}
[]
`(java.sql.Timestamp. (.getTime (java.util.Date.))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- clean-name
[s] (str (some-> s
name
(cs/replace #"[^a-zA-Z0-9_-]" "")
(cs/replace #"-" "_"))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defmacro gmodel
"Get object's model."
{:arglists '([pojo])}
[pojo]
`(:model (meta ~pojo)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defmacro gtype
"Get object's type."
{:arglists '([pojo])}
[pojo]
`(:id (czlab.hoard.core/gmodel ~pojo)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defmacro goid
"Get object's id."
{:arglists '([pojo])}
[pojo]
`(let [o# ~pojo
pk# (:pkey (czlab.hoard.core/gmodel o#))] (pk# o#)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn find-model
"Find a model from the schema."
{:arglists '([schema typeid])}
[schema typeid]
{:pre [(c/atom? schema)]}
(or (get (:models @schema) typeid)
(c/warn "find-model %s failed!" typeid)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn find-col
"Look up the field's column name."
{:arglists '([f])}
[f]
{:pre [(c/is? DbioField f)]}
(:column f))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn with-joined
"Define a joined table."
{:arglists '([model lhs rhs])}
[model lhs rhs]
{:pre [(c/is? DbioModel model)]}
;meta was injected by our framework
(let [{{:keys [col-lhs-rowid
col-rhs-rowid]} :____meta} model]
;create the fields to store the pkeys of
;both lhs & rhs
(-> (dbfields model
{:lhs-rowid
(mkfld :domain :Long
:null? false
:column col-lhs-rowid)
:rhs-rowid
(mkfld :domain :Long
:null? false
:column col-rhs-rowid)})
;create a mxm relation
(dbm2m lhs rhs))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn with-table
"Define the name of a table."
{:arglists '([m table])}
[m table]
{:pre [(c/is? DbioModel m)]}
(assoc m :table (clean-name table)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn gschema
"Get the schema containing this model."
{:arglists '([m])}
[m]
{:pre [(c/is? DbioModel m)]}
(:schema (meta m)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn find-field
"Look up a field definition from the model."
{:arglists '([model fieldid])}
[model fieldid]
{:pre [(c/is? DbioModel model)]}
(get (:fields model) fieldid))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn find-table
"Get the table name from the model."
{:arglists '([m])}
[m]
{:pre [(c/is? DbioModel m)]}
(:table m))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn find-id
"Get the id of this model."
{:arglists '([m])}
[m]
{:pre [(c/is? DbioModel m)]}
(:id m))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn find-assoc
"Find the relation from the model."
{:arglists '([model relid])}
[m relid]
{:pre [(c/is? DbioModel m)]}
(get (:rels m) relid))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn gmxm
"Get the many-to-many relation from the model."
{:arglists '([model])}
[m]
{:pre [(c/is? DbioModel m)
(:mxm? m)]}
(find-assoc m :mxm))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn fmt-sqlid
"Format SQL identifier."
{:tag String
:arglists '([info idstr]
[info idstr quote?])}
([info idstr]
(fmt-sqlid info idstr nil))
([info idstr quote?]
(cond
(map? info)
(let [{:keys [qstr ucs? lcs?]} info
ch (c/strim qstr)
id (cond ucs? (c/ucase idstr)
lcs? (c/lcase idstr) :else idstr)]
(if (false? quote?) id (str ch id ch)))
(c/is? DatabaseMetaData info)
(let [mt (c/cast? DatabaseMetaData info)
ch (c/strim
(.getIdentifierQuoteString mt))
id (cond
(.storesUpperCaseIdentifiers mt)
(c/ucase idstr)
(.storesLowerCaseIdentifiers mt)
(c/lcase idstr)
:else idstr)]
(if (false? quote?) id (str ch id ch)))
(c/is? Connection info)
(fmt-sqlid (.getMetaData ^Connection info) idstr quote?))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; have to be function , not macro as this is passed into another higher
;; function - merge.
(defn- merge-meta
"Merge 2 meta maps."
[m1 m2] {:pre [(map? m1)
(or (nil? m2)(map? m2))]} (merge m1 m2))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defrecord JdbcPool []
java.io.Closeable
(close [me]
(let [s (:impl me)]
(c/debug "finz: %s." s)
(.close ^HikariDataSource s)))
c/Finzable
(finz [_] (.close _))
c/Nextable
(next [me]
(try (.getConnection ^HikariDataSource (:impl me))
(catch Throwable _ (dberr! "No free connection.") nil))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- jdbc-pool<>
[vendor jdbc impl]
(c/object<> JdbcPool
:vendor vendor :jdbc jdbc :impl impl))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbspec<>
"Basic jdbc parameters."
{:arglists '([url]
[driver url user passwd])}
([url]
(dbspec<> nil url nil nil))
([driver url user passwd]
(c/object<> JdbcSpec
:driver (str driver)
:user (str user)
:url (str url)
:passwd (i/x->chars <PASSWORD>)
:id (str (u/jid<>) "#" (u/seqint2)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn load-driver
"Load a jdbc driver."
{:tag Driver
:arglists '([jdbc])}
[jdbc]
{:pre [(c/is? JdbcSpec jdbc)]}
(c/if-string
[s (:url jdbc)]
(DriverManager/getDriver s)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- safe-get-conn
^Connection [jdbc]
(let [d (load-driver jdbc)
p (Properties.)
{:keys [url user
driver passwd]} jdbc]
(when (c/hgl? user)
(doto p
(.put "user" user)
(.put "username" user))
(if passwd
(.put p "password" (i/x->str passwd))))
(if (nil? d)
(dberr! "Can't load Jdbc Url: %s." url))
(if (and (c/hgl? driver)
(not= (-> d
.getClass
.getName) driver))
(c/warn "want %s, got %s." driver (class d)))
(.connect d url p)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn conn<>
"Make a jdbc connection."
{:tag Connection
:arglists '([jdbc])}
[jdbc]
{:pre [(c/is? JdbcSpec jdbc)]}
(let [{:keys [url user]} jdbc
^Connection
c (if (c/hgl? user)
(safe-get-conn jdbc)
(DriverManager/getConnection url))]
(if (nil? c)
(dberr! "Failed to connect: %s." url))
(doto c
(.setTransactionIsolation
Connection/TRANSACTION_SERIALIZABLE))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn testing?
"Check if jdbc spec is valid?"
{:arglists '([s])}
[s]
{:pre [(c/is? JdbcSpec s)]}
(try (c/do->true
(.close (conn<> s)))
(catch SQLException _ false)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(def Postgresql :postgresql)
(def Postgres :postgres)
(def SQLServer :sqlserver)
;;(def SQLServer :mssql)
(def Oracle :oracle)
(def MySQL :mysql)
(def H2 :h2)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(def ^:dynamic *db-types*
{SQLServer {:test-string "select count(*) from sysusers" }
Postgresql {:test-string "select 1" }
Postgres {:test-string "select 1" }
MySQL {:test-string "select version()" }
H2 {:test-string "select 1" }
Oracle {:test-string "select 1 from DUAL" } })
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- maybe-get-vendor
"Detect the database vendor."
[product]
(let [fc #(c/embeds? %2 %1)
lp (c/lcase product)]
(condp fc lp
"microsoft" SQLServer
"postgres" Postgresql
"oracle" Oracle
"mysql" MySQL
"h2" H2
(dberr! "Unknown db product: %s." product))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(c/defmacro- fmt-fkey
"For o2o & o2m relations."
[tn rn] `(c/x->kw "fk_" (name ~tn) "_" (name ~rn)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn match-spec??
"If the database is supported?"
{:arglists '([spec])}
[spec]
(let [kw (if-not (string? spec)
spec (keyword (c/lcase spec)))]
(if (contains? *db-types* kw) kw)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn match-url??
"If the referred database is supported?"
{:arglists '([dburl])}
[dburl]
(c/if-some+
[ss (c/split (str dburl) ":")]
(if (> (count ss) 1) (match-spec?? (second ss)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; DATA MODELING
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- dft-fld<>
([]
(dft-fld<> nil))
([fid]
(c/object<> DbioField
:domain :String
:id fid
:size 255
:rel-key? false
:null? true
:auto? false
:dft nil
:system? false
:updatable? true
:column (clean-name fid))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(c/def- pkey-meta (mkfld :updatable? false
:domain :Long
:id :rowid
:auto? true
:system? true
:column "must be set!"))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- dbcfg
"Set the column name for the primary key. *Internal*"
[model]
(let [{:keys [pkey]
{:keys [col-rowid]} :____meta} model]
(if (c/nichts? col-rowid)
model
(update-in model [:fields pkey] assoc :column col-rowid))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbdef<>
"Define a generic model. *internal*"
{:arglists '([mname]
[mname options])}
([mname]
(dbdef<> mname nil))
([mname options]
{:pre [(c/is-scoped-keyword? mname)]}
(dbcfg (c/object<> DbioModel
(merge {:abstract? false
:system? false
:mxm? false
:pkey :rowid
:indexes {}
:rels {}
:uniques {}
:id mname
:fields {:rowid pkey-meta}
:table (clean-name mname)} options)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbfield<>
"Add a new field."
{:arglists '([model fid fdef])}
[model fid fdef]
{:pre [(keyword? fid)(map? fdef)]}
(update-in model
[:fields]
assoc
fid
(merge (dft-fld<> fid) (dissoc fdef :id))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbfields
"Add a bunch of fields."
{:arglists '([model flddefs])}
[model flddefs]
{:pre [(map? flddefs)]}
(reduce #(dbfield<> %1 (c/_1 %2) (c/_E %2)) model flddefs))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defmacro dbjoined<>
"Define a joined data model."
{:arglists '([modelname lhs rhs]
[modelname options lhs rhs])}
([modelname lhs rhs]
`(dbjoined<> ~modelname nil ~lhs ~rhs))
([modelname options lhs rhs]
(let [options' (merge options {:mxm? true})]
`(-> (czlab.hoard.core/dbdef<> ~modelname ~options')
(czlab.hoard.core/with-joined ~lhs ~rhs)
(czlab.hoard.core/dbuniques {:i1 #{:lhs-rowid :rhs-rowid}})))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;merge new stuff onto old stuff
(defn- with-xxx-sets
[model kvs fld]
(update-in model
[fld]
merge
(c/preduce<map>
#(assoc! %1
(c/_1 %2)
(into (ordered-set) (c/_E %2))) kvs)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;indices = { :a #{ :f1 :f2} ] :b #{:f3 :f4} }
(defn dbindexes
"Set indexes to the model."
{:arglists '([model indexes])}
[model indexes]
{:pre [(map? indexes)]}
(with-xxx-sets model indexes :indexes))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbkey
"Declare your own primary key."
{:arglists '([model pke])}
[model pke]
(let [{:keys [fields pkey]} model
{:keys [domain id
auto?
column size]} pke
p (pkey fields)
oid (or id pkey)
fields (dissoc fields pkey)]
(assert (and column
domain
p
(= pkey (:id p))))
(-> (->> (assoc (if-not auto?
(dissoc p :auto?)
(assoc p :auto? true))
:id oid
:domain domain
:column column
:size (c/num?? size 255))
(assoc fields oid)
(assoc model :fields))
(assoc :pkey oid))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;uniques = { :a #{ :f1 :f2 } :b #{ :f3 :f4 } }
(defn dbuniques
"Set uniques to the model."
{:arglists '([model uniqs])}
[model uniqs]
{:pre [(map? uniqs)]}
(with-xxx-sets model uniqs :uniques))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- dbassoc<>
"Define an relation between 2 models."
[{:keys [id] :as model} rel args]
(let [{fk :fkey rid :id :as R}
(merge rel {:fkey nil
:cascade? false} args)]
(update-in model
[:rels]
assoc
rid
(assoc R
:fkey
(or fk
(fmt-fkey id rid))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- dbm2m
[model lhs rhs]
(dbassoc<> model
(DbioM2MRel.)
{:owner (find-id model)
:id :mxm
:lhs [lhs :lhs-rowid]
:rhs [rhs :rhs-rowid]}))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbo2m
"Define a one to many association."
{:arglists '([model id & args])}
[model id & args]
{:pre [(not-empty args)]}
(dbassoc<> model
(DbioO2MRel.)
(assoc (c/kvs->map args) :id id)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbo2o
"Define a one to one association."
{:arglists '([model id & args])}
[model id & args]
{:pre [(not-empty args)]}
(dbassoc<> model
(DbioO2ORel.)
(assoc (c/kvs->map args) :id id)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(c/defmacro- with-abstract
[model] `(assoc ~model :abstract? true))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(c/defmacro- with-system
[model] `(assoc ~model :system? true))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- check-field?
[pojo fld]
(boolean
(if-some [f (find-field (gmodel pojo) fld)]
(not (or (:auto? f)
(not (:updatable? f)))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(c/defmacro- mkfkdef<>
[fid ktype] `(assoc (dft-fld<> ~fid)
:rel-key? true :domain ~ktype))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- resolve-assocs
"Walk through all models, for each model, study its relations.
For o2o or o2m assocs, we need to artificially inject a new
field/column into the (other/rhs) model (foreign key)."
[metas]
;; 1st, create placeholder maps for each model,
;; to hold new fields from rels
(with-local-vars
[xs (c/tmap*)
phd (c/tmap* (zipmap (keys metas)
(repeat {})))]
;;as we find new relation fields,
;;add them to the placeholders
(doseq [[_ m] metas
:let [{:keys [pkey fields
rels abstract?]} m
kt (:domain (pkey fields))]
:when (and (not abstract?)
(not-empty rels))]
;only deal with o2o, o2m assocs
(doseq [[_ r] rels
:let [{:keys [other fkey]} r]
:when (not (c/is? DbioM2MRel r))]
;inject a new field to the *other* type
(var-set phd
(assoc! @phd
other
(->> (mkfkdef<> fkey kt)
(assoc (@phd other) fkey))))))
;;now walk through all the placeholder maps and merge those new
;;fields to the actual models
(doseq [[k v] (c/persist! @phd)
:let [mcz (metas k)]]
(var-set xs
(assoc! @xs
k
(update-in mcz
[:fields] merge v))))
(persistent! @xs)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- resolve-mxms
[metas]
;deal with dbjoined<> decls
(with-local-vars [mms (c/tmap*)]
(doseq [[k m] metas
:let [{:keys [mxm? rels fields]} m
{:keys [lhs rhs] :as R}
(get rels :mxm)]
:when (and mxm? R)]
;make foreign keys to have the same attributes
;as the linked tables primary keys.
(->>
(c/preduce<map>
#(let
[[side kee] %2
mz (metas side)
pke ((:pkey mz)
(:fields mz))
d (merge (kee fields)
(select-keys pke
[:domain :size]))]
(assoc! %1 kee d))
[lhs rhs])
(merge fields)
(assoc m :fields)
(assoc! @mms k)
(var-set mms)))
(merge metas (persistent! @mms))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- colmap-fields
"Create a map of fields keyed by the column name."
[flds]
(c/preduce<map>
#(let [[_ v] %2]
(assoc! %1 (c/ucase (:column v)) v)) flds))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- meta-models
"Inject extra meta-data properties into each model. Each model will have
its (complete) set of fields keyed by column name or field id."
[metas schema]
(c/preduce<map>
#(let [[k m] %2
{:keys [fields]} m]
(assoc! %1
k
(with-meta m
{:schema schema
:columns (colmap-fields fields)}))) metas))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defmacro defschema
"Define a schema."
{:arglists '([name & model])}
[name & models]
(let [m (meta name)
options (merge m dft-options)
options' {:____meta options}]
`(def
~name
(czlab.hoard.core/dbschema*
~options
~@(map #(let [[p1 p2 & more] %]
(cons p1
(cons p2
(cons options' more)))) models)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbschema*
"Stores metadata for all models. *internal*"
{:arglists '([options & models])}
[options & models]
(let [ms (if-not (empty? models)
(c/preduce<map>
#(assoc! %1 (:id %2) %2) models))
sch (atom {:____meta
(merge options dft-options)})
m2 (if-not (empty? ms)
(-> ms resolve-assocs resolve-mxms (meta-models nil)))]
(c/assoc!! sch
:models
(c/preduce<map>
#(let [[k m] %2]
(assoc! %1
k
(vary-meta m assoc :schema sch))) m2))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbg-schema
"Debug print a schema."
{:tag String
:arglists '([schema]
[schema simple?])}
([schema]
(dbg-schema schema true))
([schema simple?]
{:pre [(some? schema)]}
(if simple?
(i/fmt->edn (:models @schema))
(c/sreduce<>
#(c/sbf-join %1
"\n"
(i/fmt->edn {:TABLE (:table %2)
:DEFN %2
:META (meta %2)}))
(vals (:models @schema))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- maybe-ok?
[dbn ^Throwable e]
(let [ee (c/cast? SQLException (u/root-cause e))
ec (some-> ee .getErrorCode)]
(or (and (c/embeds? (c/lcase dbn) "oracle")
(some? ec)
(== 942 ec)
(== 1418 ec)
(== 2289 ec) (== 0 ec)) (throw e))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- load-columns
"Read each column's metadata."
[^DatabaseMetaData m
^String catalog ^String schema ^String table]
(with-local-vars [pkeys #{} cms {}]
(c/wo* [rs (.getPrimaryKeys m
catalog schema table)]
(loop [sum (c/tset*)
more (.next rs)]
(if-not more
(var-set pkeys (c/persist! sum))
(recur
(conj! sum
(.getString rs
(int 4))) (.next rs)))))
(c/wo* [rs (.getColumns m catalog schema table "%")]
(loop [sum (c/tmap*)
more (.next rs)]
(if-not more
(var-set cms (c/persist! sum))
(let [opt? (not= (.getInt rs (int 11))
DatabaseMetaData/columnNoNulls)
n (.getString rs (int 4))
cn (c/ucase n)
ctype (.getInt rs (int 5))]
(recur (assoc! sum
(keyword cn)
{:sql-type ctype
:column n
:null? opt?
:pkey? (contains? @pkeys n)})
(.next rs))))))
(with-meta @cms
{:supportsGetGeneratedKeys?
(.supportsGetGeneratedKeys m)
:primaryKeys
@pkeys
:supportsTransactions?
(.supportsTransactions m)})))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn upload-ddl
"Update DDL commands to database."
{:arglists '([conn ddl])}
[c ddl]
{:pre [(c/is? Connection c)]}
(let [lines (map #(c/strim %)
(cs/split ddl (re-pattern ddl-sep)))
c (c/cast? Connection c)
dbn (.. c
getMetaData
getDatabaseProductName)]
(.setAutoCommit c true)
;(c/debug "\n%s" ddl)
(doseq [s lines
:let [ln (c/strim-any s ";" true)]
:when (and (c/hgl? ln)
(not= (c/lcase ln) "go"))]
(c/wo* [s (.createStatement c)]
(try (.executeUpdate s ln)
(catch SQLException _ (maybe-ok? dbn _)))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn db-meta
"Get the meta-data on the database."
{:arglists '([c])
:tag DatabaseMetaData}
[c]
{:pre [(c/is? Connection c)]}
(.getMetaData ^Connection c))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn db-vendor
"Get information about the database."
{:arglists '([c])}
[c]
{:pre [(c/is? Connection c)]}
(let [m (.getMetaData ^Connection c)
rc (c/object<> VendorGist
:id (maybe-get-vendor (.getDatabaseProductName m))
:qstr (c/strim (.getIdentifierQuoteString m))
:version (.getDatabaseProductVersion m)
:name (.getDatabaseProductName m)
:url (.getURL m)
:user (.getUserName m)
:lcs? (.storesLowerCaseIdentifiers m)
:ucs? (.storesUpperCaseIdentifiers m)
:mcs? (.storesMixedCaseIdentifiers m))]
(assoc rc :fmt-id (partial fmt-sqlid rc))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn table-exist?
"If table is defined in the database?"
{:arglists '([c])}
[c table]
{:pre [(c/is? Connection c)]}
(c/try!
(let [m (db-meta c)
dbv (db-vendor c)]
(c/wo* [res (.getColumns m
nil
(if (= :oracle
(:id dbv)) "%")
(fmt-sqlid c table false) "%")]
(and res (.next res))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn row-exist?
"If table in database is not empty?"
{:arglists '([c])}
[c table]
{:pre [(c/is? Connection c)]}
(c/try!
(let [sql (c/fmt "select %s from %s"
"count(*)"
(fmt-sqlid c table))]
(c/wo* [res (-> ^Connection c
.createStatement
(.executeQuery sql))]
(and res
(.next res)
(pos? (.getInt res (int 1))))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn table-meta
"Get the meta-data on the table."
{:arglists '([conn table])}
[c table]
{:pre [(c/is? Connection c)]}
(let [mt (.getMetaData ^Connection c)
tbl (fmt-sqlid c table false)
dbv (db-vendor c)
catalog nil
schema (if (= (:id dbv) :oracle) "%")]
;; not good, try mixed case... arrrrhhhhhh
;;rs = m.getTables( catalog, schema, "%", null)
(load-columns mt catalog schema tbl)))
;;Object
;;Clojure CLJ-1347
;;finalize won't work *correctly* in reified objects - document
;;(finalize [this]
;;(try!
;;(log/debug "DbPool finalize() called.")
;;(.shutdown this)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbpool<>
"Create a db connection pool."
{:arglists '([jdbc]
[jdbc options])}
([jdbc]
(dbpool<> jdbc nil))
([jdbc options]
(let [dbv (c/wo* [^Connection
c (conn<> jdbc)] (db-vendor c))
{:keys [driver url passwd user]} jdbc
options (or options {})
hc (HikariConfig.)]
;;(c/debug "pool-options: %s." options)
;;(c/debug "pool-jdbc: %s." jdbc)
(if (c/hgl? driver)
(m/forname driver))
(c/test-some "db-vendor" dbv)
(.setJdbcUrl hc ^String url)
(when (c/hgl? user)
(.setUsername hc ^String user)
(if passwd
(.setPassword hc (i/x->str passwd))))
(c/debug "[hikari]\n%s." (str hc))
(jdbc-pool<> dbv jdbc (HikariDataSource. hc)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn bind-model
"Ensure pojo is bound to a model."
{:arglists '([p model])}
[p _model]
{:pre [(c/is? DbioPojo p)
(c/is? DbioModel _model)]}
(let [{:as m
:keys [model]} (meta p)]
(if (nil? model)
(c/wm* p (assoc m :model _model))
(c/raise! "Cannot bind model %s twice!" model))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbpojo<>
"Create object of type."
{:arglists '([][model])}
([]
(DbioPojo.))
([model]
{:pre [(some? model)]}
(bind-model (DbioPojo.) model)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn mock-pojo<>
"Clone object with pkey only."
{:arglists '([obj])}
[obj]
(let [out (DbioPojo.)
pk (:pkey (gmodel obj))]
(c/wm* (assoc out pk (goid obj)) (meta obj))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn clr-fld
"Clear a field in the pojo."
{:arglists '([pojo fld])}
[pojo fld]
(dissoc pojo fld))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn get-fld
"Get a field value from the pojo."
{:arglists '([pojo fld])}
[pojo fld]
(get pojo fld))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn set-fld
"Assign a value to a field in the pojo."
{:arglists '([pojo fld value])}
[pojo fld value]
{:pre [(keyword? fld)]}
(if (check-field? pojo fld)
(assoc pojo fld value)
(u/throw-BadData "Invalid field %s." fld)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn db-set-flds*
"Set field+values as: f1 v1 f2 v2 ... fn vn."
[pojo & fvs]
{:pre [(c/n#-even? fvs)]}
(reduce #(set-fld %1
(c/_1 %2)
(c/_E %2)) pojo (partition 2 fvs)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn db-set-flds
"Set field+values as: f1 v1 f2 v2 ... fn vn."
[pojo fvs]
{:pre [(map? fvs)]}
(reduce #(set-fld %1
(c/_1 %2)
(c/_E %2)) pojo fvs))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;EOF
| true |
;; Licensed under the Apache License, Version 2.0 (the "License");
;; you may not use this file except in compliance with the License.
;; You may obtain a copy of the License at
;;
;; http://www.apache.org/licenses/LICENSE-2.0
;;
;; Unless required by applicable law or agreed to in writing, software
;; distributed under the License is distributed on an "AS IS" BASIS,
;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
;; See the License for the specific language governing permissions and
;; limitations under the License.
;;
;; Copyright © 2013-2022, PI:NAME:<NAME>END_PI. All rights reserved.
(ns czlab.hoard.core
"Database and modeling functions."
(:refer-clojure :exclude [next])
(:use [flatland.ordered.set])
(:require [clojure.java.io :as io]
[clojure.string :as cs]
[czlab.basal.io :as i]
[czlab.basal.meta :as m]
[czlab.basal.util :as u]
[czlab.basal.core :as c])
(:import [java.util
HashMap
TimeZone
Properties
GregorianCalendar]
[clojure.lang
Keyword
APersistentMap
APersistentVector]
[com.zaxxer.hikari
HikariConfig
HikariDataSource]
[java.lang Math]
[java.sql
SQLException
Connection
Driver
DriverManager
DatabaseMetaData]))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;(set! *warn-on-reflection* true)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(c/def- dft-options {:col-rowid "CZLAB_ROWID"
:col-lhs-rowid "CZLAB_LHS_ROWID"
:col-rhs-rowid "CZLAB_RHS_ROWID"})
(def ^:dynamic *ddl-cfg* nil)
(def ^:dynamic *ddl-bvs* nil)
(def ddl-sep "-- :")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(declare dbo2o dbo2m dbm2m dbfields dft-fld<>)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defprotocol Transactable
"Functions relating to a db transaction."
(transact! [_ func]
[_ func cfg]
"Run function inside a transaction."))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defprotocol SQLr
"Functions relating to SQL."
(find-some [_ model filters]
[_ model filters extras] "")
(find-all [_ model]
[_ model extras] "")
;(find-one [_ model filters] "")
(fmt-id [_ s] "")
(mod-obj [_ obj] "")
(del-obj [_ obj] "")
(add-obj [_ obj] "")
(count-objs [_ model] "")
(purge-objs [_ model] "")
(exec-sql [_ sql params] "")
(exec-with-output [_ sql params] "")
(select-sql [_ sql params]
[_ model sql params] ""))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defrecord DbioModel [])
(defrecord DbioField [])
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defrecord DbioM2MRel [])
(defrecord DbioO2ORel [])
(defrecord DbioO2MRel [])
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defrecord VendorGist [])
(defrecord JdbcSpec [])
(defrecord DbioPojo [])
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dberr!
"Throw a SQL execption."
{:arglists '([fmt & more])}
[fmt & more]
(c/trap! SQLException (c/fmt fmt more)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(c/defmacro- mkfld
[& args] `(merge (dft-fld<>) (array-map ~@args)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defmacro dbmodel<>
"Define a data model inside a schema."
{:arglists '([name & body])}
[name & body]
(let [p1 (first body)
[options defs]
(if-not (map? p1)
[nil body] [p1 (drop 1 body)])]
`(-> (czlab.hoard.core/dbdef<> ~name ~options) ~@defs)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defmacro tstamp<>
"Sql timestamp."
{:arglists '([])}
[]
`(java.sql.Timestamp. (.getTime (java.util.Date.))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- clean-name
[s] (str (some-> s
name
(cs/replace #"[^a-zA-Z0-9_-]" "")
(cs/replace #"-" "_"))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defmacro gmodel
"Get object's model."
{:arglists '([pojo])}
[pojo]
`(:model (meta ~pojo)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defmacro gtype
"Get object's type."
{:arglists '([pojo])}
[pojo]
`(:id (czlab.hoard.core/gmodel ~pojo)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defmacro goid
"Get object's id."
{:arglists '([pojo])}
[pojo]
`(let [o# ~pojo
pk# (:pkey (czlab.hoard.core/gmodel o#))] (pk# o#)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn find-model
"Find a model from the schema."
{:arglists '([schema typeid])}
[schema typeid]
{:pre [(c/atom? schema)]}
(or (get (:models @schema) typeid)
(c/warn "find-model %s failed!" typeid)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn find-col
"Look up the field's column name."
{:arglists '([f])}
[f]
{:pre [(c/is? DbioField f)]}
(:column f))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn with-joined
"Define a joined table."
{:arglists '([model lhs rhs])}
[model lhs rhs]
{:pre [(c/is? DbioModel model)]}
;meta was injected by our framework
(let [{{:keys [col-lhs-rowid
col-rhs-rowid]} :____meta} model]
;create the fields to store the pkeys of
;both lhs & rhs
(-> (dbfields model
{:lhs-rowid
(mkfld :domain :Long
:null? false
:column col-lhs-rowid)
:rhs-rowid
(mkfld :domain :Long
:null? false
:column col-rhs-rowid)})
;create a mxm relation
(dbm2m lhs rhs))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn with-table
"Define the name of a table."
{:arglists '([m table])}
[m table]
{:pre [(c/is? DbioModel m)]}
(assoc m :table (clean-name table)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn gschema
"Get the schema containing this model."
{:arglists '([m])}
[m]
{:pre [(c/is? DbioModel m)]}
(:schema (meta m)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn find-field
"Look up a field definition from the model."
{:arglists '([model fieldid])}
[model fieldid]
{:pre [(c/is? DbioModel model)]}
(get (:fields model) fieldid))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn find-table
"Get the table name from the model."
{:arglists '([m])}
[m]
{:pre [(c/is? DbioModel m)]}
(:table m))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn find-id
"Get the id of this model."
{:arglists '([m])}
[m]
{:pre [(c/is? DbioModel m)]}
(:id m))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn find-assoc
"Find the relation from the model."
{:arglists '([model relid])}
[m relid]
{:pre [(c/is? DbioModel m)]}
(get (:rels m) relid))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn gmxm
"Get the many-to-many relation from the model."
{:arglists '([model])}
[m]
{:pre [(c/is? DbioModel m)
(:mxm? m)]}
(find-assoc m :mxm))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn fmt-sqlid
"Format SQL identifier."
{:tag String
:arglists '([info idstr]
[info idstr quote?])}
([info idstr]
(fmt-sqlid info idstr nil))
([info idstr quote?]
(cond
(map? info)
(let [{:keys [qstr ucs? lcs?]} info
ch (c/strim qstr)
id (cond ucs? (c/ucase idstr)
lcs? (c/lcase idstr) :else idstr)]
(if (false? quote?) id (str ch id ch)))
(c/is? DatabaseMetaData info)
(let [mt (c/cast? DatabaseMetaData info)
ch (c/strim
(.getIdentifierQuoteString mt))
id (cond
(.storesUpperCaseIdentifiers mt)
(c/ucase idstr)
(.storesLowerCaseIdentifiers mt)
(c/lcase idstr)
:else idstr)]
(if (false? quote?) id (str ch id ch)))
(c/is? Connection info)
(fmt-sqlid (.getMetaData ^Connection info) idstr quote?))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; have to be function , not macro as this is passed into another higher
;; function - merge.
(defn- merge-meta
"Merge 2 meta maps."
[m1 m2] {:pre [(map? m1)
(or (nil? m2)(map? m2))]} (merge m1 m2))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defrecord JdbcPool []
java.io.Closeable
(close [me]
(let [s (:impl me)]
(c/debug "finz: %s." s)
(.close ^HikariDataSource s)))
c/Finzable
(finz [_] (.close _))
c/Nextable
(next [me]
(try (.getConnection ^HikariDataSource (:impl me))
(catch Throwable _ (dberr! "No free connection.") nil))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- jdbc-pool<>
[vendor jdbc impl]
(c/object<> JdbcPool
:vendor vendor :jdbc jdbc :impl impl))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbspec<>
"Basic jdbc parameters."
{:arglists '([url]
[driver url user passwd])}
([url]
(dbspec<> nil url nil nil))
([driver url user passwd]
(c/object<> JdbcSpec
:driver (str driver)
:user (str user)
:url (str url)
:passwd (i/x->chars PI:PASSWORD:<PASSWORD>END_PI)
:id (str (u/jid<>) "#" (u/seqint2)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn load-driver
"Load a jdbc driver."
{:tag Driver
:arglists '([jdbc])}
[jdbc]
{:pre [(c/is? JdbcSpec jdbc)]}
(c/if-string
[s (:url jdbc)]
(DriverManager/getDriver s)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- safe-get-conn
^Connection [jdbc]
(let [d (load-driver jdbc)
p (Properties.)
{:keys [url user
driver passwd]} jdbc]
(when (c/hgl? user)
(doto p
(.put "user" user)
(.put "username" user))
(if passwd
(.put p "password" (i/x->str passwd))))
(if (nil? d)
(dberr! "Can't load Jdbc Url: %s." url))
(if (and (c/hgl? driver)
(not= (-> d
.getClass
.getName) driver))
(c/warn "want %s, got %s." driver (class d)))
(.connect d url p)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn conn<>
"Make a jdbc connection."
{:tag Connection
:arglists '([jdbc])}
[jdbc]
{:pre [(c/is? JdbcSpec jdbc)]}
(let [{:keys [url user]} jdbc
^Connection
c (if (c/hgl? user)
(safe-get-conn jdbc)
(DriverManager/getConnection url))]
(if (nil? c)
(dberr! "Failed to connect: %s." url))
(doto c
(.setTransactionIsolation
Connection/TRANSACTION_SERIALIZABLE))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn testing?
"Check if jdbc spec is valid?"
{:arglists '([s])}
[s]
{:pre [(c/is? JdbcSpec s)]}
(try (c/do->true
(.close (conn<> s)))
(catch SQLException _ false)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(def Postgresql :postgresql)
(def Postgres :postgres)
(def SQLServer :sqlserver)
;;(def SQLServer :mssql)
(def Oracle :oracle)
(def MySQL :mysql)
(def H2 :h2)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(def ^:dynamic *db-types*
{SQLServer {:test-string "select count(*) from sysusers" }
Postgresql {:test-string "select 1" }
Postgres {:test-string "select 1" }
MySQL {:test-string "select version()" }
H2 {:test-string "select 1" }
Oracle {:test-string "select 1 from DUAL" } })
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- maybe-get-vendor
"Detect the database vendor."
[product]
(let [fc #(c/embeds? %2 %1)
lp (c/lcase product)]
(condp fc lp
"microsoft" SQLServer
"postgres" Postgresql
"oracle" Oracle
"mysql" MySQL
"h2" H2
(dberr! "Unknown db product: %s." product))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(c/defmacro- fmt-fkey
"For o2o & o2m relations."
[tn rn] `(c/x->kw "fk_" (name ~tn) "_" (name ~rn)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn match-spec??
"If the database is supported?"
{:arglists '([spec])}
[spec]
(let [kw (if-not (string? spec)
spec (keyword (c/lcase spec)))]
(if (contains? *db-types* kw) kw)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn match-url??
"If the referred database is supported?"
{:arglists '([dburl])}
[dburl]
(c/if-some+
[ss (c/split (str dburl) ":")]
(if (> (count ss) 1) (match-spec?? (second ss)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; DATA MODELING
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- dft-fld<>
([]
(dft-fld<> nil))
([fid]
(c/object<> DbioField
:domain :String
:id fid
:size 255
:rel-key? false
:null? true
:auto? false
:dft nil
:system? false
:updatable? true
:column (clean-name fid))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(c/def- pkey-meta (mkfld :updatable? false
:domain :Long
:id :rowid
:auto? true
:system? true
:column "must be set!"))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- dbcfg
"Set the column name for the primary key. *Internal*"
[model]
(let [{:keys [pkey]
{:keys [col-rowid]} :____meta} model]
(if (c/nichts? col-rowid)
model
(update-in model [:fields pkey] assoc :column col-rowid))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbdef<>
"Define a generic model. *internal*"
{:arglists '([mname]
[mname options])}
([mname]
(dbdef<> mname nil))
([mname options]
{:pre [(c/is-scoped-keyword? mname)]}
(dbcfg (c/object<> DbioModel
(merge {:abstract? false
:system? false
:mxm? false
:pkey :rowid
:indexes {}
:rels {}
:uniques {}
:id mname
:fields {:rowid pkey-meta}
:table (clean-name mname)} options)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbfield<>
"Add a new field."
{:arglists '([model fid fdef])}
[model fid fdef]
{:pre [(keyword? fid)(map? fdef)]}
(update-in model
[:fields]
assoc
fid
(merge (dft-fld<> fid) (dissoc fdef :id))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbfields
"Add a bunch of fields."
{:arglists '([model flddefs])}
[model flddefs]
{:pre [(map? flddefs)]}
(reduce #(dbfield<> %1 (c/_1 %2) (c/_E %2)) model flddefs))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defmacro dbjoined<>
"Define a joined data model."
{:arglists '([modelname lhs rhs]
[modelname options lhs rhs])}
([modelname lhs rhs]
`(dbjoined<> ~modelname nil ~lhs ~rhs))
([modelname options lhs rhs]
(let [options' (merge options {:mxm? true})]
`(-> (czlab.hoard.core/dbdef<> ~modelname ~options')
(czlab.hoard.core/with-joined ~lhs ~rhs)
(czlab.hoard.core/dbuniques {:i1 #{:lhs-rowid :rhs-rowid}})))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;merge new stuff onto old stuff
(defn- with-xxx-sets
[model kvs fld]
(update-in model
[fld]
merge
(c/preduce<map>
#(assoc! %1
(c/_1 %2)
(into (ordered-set) (c/_E %2))) kvs)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;indices = { :a #{ :f1 :f2} ] :b #{:f3 :f4} }
(defn dbindexes
"Set indexes to the model."
{:arglists '([model indexes])}
[model indexes]
{:pre [(map? indexes)]}
(with-xxx-sets model indexes :indexes))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbkey
"Declare your own primary key."
{:arglists '([model pke])}
[model pke]
(let [{:keys [fields pkey]} model
{:keys [domain id
auto?
column size]} pke
p (pkey fields)
oid (or id pkey)
fields (dissoc fields pkey)]
(assert (and column
domain
p
(= pkey (:id p))))
(-> (->> (assoc (if-not auto?
(dissoc p :auto?)
(assoc p :auto? true))
:id oid
:domain domain
:column column
:size (c/num?? size 255))
(assoc fields oid)
(assoc model :fields))
(assoc :pkey oid))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;uniques = { :a #{ :f1 :f2 } :b #{ :f3 :f4 } }
(defn dbuniques
"Set uniques to the model."
{:arglists '([model uniqs])}
[model uniqs]
{:pre [(map? uniqs)]}
(with-xxx-sets model uniqs :uniques))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- dbassoc<>
"Define an relation between 2 models."
[{:keys [id] :as model} rel args]
(let [{fk :fkey rid :id :as R}
(merge rel {:fkey nil
:cascade? false} args)]
(update-in model
[:rels]
assoc
rid
(assoc R
:fkey
(or fk
(fmt-fkey id rid))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- dbm2m
[model lhs rhs]
(dbassoc<> model
(DbioM2MRel.)
{:owner (find-id model)
:id :mxm
:lhs [lhs :lhs-rowid]
:rhs [rhs :rhs-rowid]}))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbo2m
"Define a one to many association."
{:arglists '([model id & args])}
[model id & args]
{:pre [(not-empty args)]}
(dbassoc<> model
(DbioO2MRel.)
(assoc (c/kvs->map args) :id id)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbo2o
"Define a one to one association."
{:arglists '([model id & args])}
[model id & args]
{:pre [(not-empty args)]}
(dbassoc<> model
(DbioO2ORel.)
(assoc (c/kvs->map args) :id id)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(c/defmacro- with-abstract
[model] `(assoc ~model :abstract? true))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(c/defmacro- with-system
[model] `(assoc ~model :system? true))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- check-field?
[pojo fld]
(boolean
(if-some [f (find-field (gmodel pojo) fld)]
(not (or (:auto? f)
(not (:updatable? f)))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(c/defmacro- mkfkdef<>
[fid ktype] `(assoc (dft-fld<> ~fid)
:rel-key? true :domain ~ktype))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- resolve-assocs
"Walk through all models, for each model, study its relations.
For o2o or o2m assocs, we need to artificially inject a new
field/column into the (other/rhs) model (foreign key)."
[metas]
;; 1st, create placeholder maps for each model,
;; to hold new fields from rels
(with-local-vars
[xs (c/tmap*)
phd (c/tmap* (zipmap (keys metas)
(repeat {})))]
;;as we find new relation fields,
;;add them to the placeholders
(doseq [[_ m] metas
:let [{:keys [pkey fields
rels abstract?]} m
kt (:domain (pkey fields))]
:when (and (not abstract?)
(not-empty rels))]
;only deal with o2o, o2m assocs
(doseq [[_ r] rels
:let [{:keys [other fkey]} r]
:when (not (c/is? DbioM2MRel r))]
;inject a new field to the *other* type
(var-set phd
(assoc! @phd
other
(->> (mkfkdef<> fkey kt)
(assoc (@phd other) fkey))))))
;;now walk through all the placeholder maps and merge those new
;;fields to the actual models
(doseq [[k v] (c/persist! @phd)
:let [mcz (metas k)]]
(var-set xs
(assoc! @xs
k
(update-in mcz
[:fields] merge v))))
(persistent! @xs)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- resolve-mxms
[metas]
;deal with dbjoined<> decls
(with-local-vars [mms (c/tmap*)]
(doseq [[k m] metas
:let [{:keys [mxm? rels fields]} m
{:keys [lhs rhs] :as R}
(get rels :mxm)]
:when (and mxm? R)]
;make foreign keys to have the same attributes
;as the linked tables primary keys.
(->>
(c/preduce<map>
#(let
[[side kee] %2
mz (metas side)
pke ((:pkey mz)
(:fields mz))
d (merge (kee fields)
(select-keys pke
[:domain :size]))]
(assoc! %1 kee d))
[lhs rhs])
(merge fields)
(assoc m :fields)
(assoc! @mms k)
(var-set mms)))
(merge metas (persistent! @mms))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- colmap-fields
"Create a map of fields keyed by the column name."
[flds]
(c/preduce<map>
#(let [[_ v] %2]
(assoc! %1 (c/ucase (:column v)) v)) flds))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- meta-models
"Inject extra meta-data properties into each model. Each model will have
its (complete) set of fields keyed by column name or field id."
[metas schema]
(c/preduce<map>
#(let [[k m] %2
{:keys [fields]} m]
(assoc! %1
k
(with-meta m
{:schema schema
:columns (colmap-fields fields)}))) metas))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defmacro defschema
"Define a schema."
{:arglists '([name & model])}
[name & models]
(let [m (meta name)
options (merge m dft-options)
options' {:____meta options}]
`(def
~name
(czlab.hoard.core/dbschema*
~options
~@(map #(let [[p1 p2 & more] %]
(cons p1
(cons p2
(cons options' more)))) models)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbschema*
"Stores metadata for all models. *internal*"
{:arglists '([options & models])}
[options & models]
(let [ms (if-not (empty? models)
(c/preduce<map>
#(assoc! %1 (:id %2) %2) models))
sch (atom {:____meta
(merge options dft-options)})
m2 (if-not (empty? ms)
(-> ms resolve-assocs resolve-mxms (meta-models nil)))]
(c/assoc!! sch
:models
(c/preduce<map>
#(let [[k m] %2]
(assoc! %1
k
(vary-meta m assoc :schema sch))) m2))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbg-schema
"Debug print a schema."
{:tag String
:arglists '([schema]
[schema simple?])}
([schema]
(dbg-schema schema true))
([schema simple?]
{:pre [(some? schema)]}
(if simple?
(i/fmt->edn (:models @schema))
(c/sreduce<>
#(c/sbf-join %1
"\n"
(i/fmt->edn {:TABLE (:table %2)
:DEFN %2
:META (meta %2)}))
(vals (:models @schema))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- maybe-ok?
[dbn ^Throwable e]
(let [ee (c/cast? SQLException (u/root-cause e))
ec (some-> ee .getErrorCode)]
(or (and (c/embeds? (c/lcase dbn) "oracle")
(some? ec)
(== 942 ec)
(== 1418 ec)
(== 2289 ec) (== 0 ec)) (throw e))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn- load-columns
"Read each column's metadata."
[^DatabaseMetaData m
^String catalog ^String schema ^String table]
(with-local-vars [pkeys #{} cms {}]
(c/wo* [rs (.getPrimaryKeys m
catalog schema table)]
(loop [sum (c/tset*)
more (.next rs)]
(if-not more
(var-set pkeys (c/persist! sum))
(recur
(conj! sum
(.getString rs
(int 4))) (.next rs)))))
(c/wo* [rs (.getColumns m catalog schema table "%")]
(loop [sum (c/tmap*)
more (.next rs)]
(if-not more
(var-set cms (c/persist! sum))
(let [opt? (not= (.getInt rs (int 11))
DatabaseMetaData/columnNoNulls)
n (.getString rs (int 4))
cn (c/ucase n)
ctype (.getInt rs (int 5))]
(recur (assoc! sum
(keyword cn)
{:sql-type ctype
:column n
:null? opt?
:pkey? (contains? @pkeys n)})
(.next rs))))))
(with-meta @cms
{:supportsGetGeneratedKeys?
(.supportsGetGeneratedKeys m)
:primaryKeys
@pkeys
:supportsTransactions?
(.supportsTransactions m)})))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn upload-ddl
"Update DDL commands to database."
{:arglists '([conn ddl])}
[c ddl]
{:pre [(c/is? Connection c)]}
(let [lines (map #(c/strim %)
(cs/split ddl (re-pattern ddl-sep)))
c (c/cast? Connection c)
dbn (.. c
getMetaData
getDatabaseProductName)]
(.setAutoCommit c true)
;(c/debug "\n%s" ddl)
(doseq [s lines
:let [ln (c/strim-any s ";" true)]
:when (and (c/hgl? ln)
(not= (c/lcase ln) "go"))]
(c/wo* [s (.createStatement c)]
(try (.executeUpdate s ln)
(catch SQLException _ (maybe-ok? dbn _)))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn db-meta
"Get the meta-data on the database."
{:arglists '([c])
:tag DatabaseMetaData}
[c]
{:pre [(c/is? Connection c)]}
(.getMetaData ^Connection c))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn db-vendor
"Get information about the database."
{:arglists '([c])}
[c]
{:pre [(c/is? Connection c)]}
(let [m (.getMetaData ^Connection c)
rc (c/object<> VendorGist
:id (maybe-get-vendor (.getDatabaseProductName m))
:qstr (c/strim (.getIdentifierQuoteString m))
:version (.getDatabaseProductVersion m)
:name (.getDatabaseProductName m)
:url (.getURL m)
:user (.getUserName m)
:lcs? (.storesLowerCaseIdentifiers m)
:ucs? (.storesUpperCaseIdentifiers m)
:mcs? (.storesMixedCaseIdentifiers m))]
(assoc rc :fmt-id (partial fmt-sqlid rc))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn table-exist?
"If table is defined in the database?"
{:arglists '([c])}
[c table]
{:pre [(c/is? Connection c)]}
(c/try!
(let [m (db-meta c)
dbv (db-vendor c)]
(c/wo* [res (.getColumns m
nil
(if (= :oracle
(:id dbv)) "%")
(fmt-sqlid c table false) "%")]
(and res (.next res))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn row-exist?
"If table in database is not empty?"
{:arglists '([c])}
[c table]
{:pre [(c/is? Connection c)]}
(c/try!
(let [sql (c/fmt "select %s from %s"
"count(*)"
(fmt-sqlid c table))]
(c/wo* [res (-> ^Connection c
.createStatement
(.executeQuery sql))]
(and res
(.next res)
(pos? (.getInt res (int 1))))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn table-meta
"Get the meta-data on the table."
{:arglists '([conn table])}
[c table]
{:pre [(c/is? Connection c)]}
(let [mt (.getMetaData ^Connection c)
tbl (fmt-sqlid c table false)
dbv (db-vendor c)
catalog nil
schema (if (= (:id dbv) :oracle) "%")]
;; not good, try mixed case... arrrrhhhhhh
;;rs = m.getTables( catalog, schema, "%", null)
(load-columns mt catalog schema tbl)))
;;Object
;;Clojure CLJ-1347
;;finalize won't work *correctly* in reified objects - document
;;(finalize [this]
;;(try!
;;(log/debug "DbPool finalize() called.")
;;(.shutdown this)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbpool<>
"Create a db connection pool."
{:arglists '([jdbc]
[jdbc options])}
([jdbc]
(dbpool<> jdbc nil))
([jdbc options]
(let [dbv (c/wo* [^Connection
c (conn<> jdbc)] (db-vendor c))
{:keys [driver url passwd user]} jdbc
options (or options {})
hc (HikariConfig.)]
;;(c/debug "pool-options: %s." options)
;;(c/debug "pool-jdbc: %s." jdbc)
(if (c/hgl? driver)
(m/forname driver))
(c/test-some "db-vendor" dbv)
(.setJdbcUrl hc ^String url)
(when (c/hgl? user)
(.setUsername hc ^String user)
(if passwd
(.setPassword hc (i/x->str passwd))))
(c/debug "[hikari]\n%s." (str hc))
(jdbc-pool<> dbv jdbc (HikariDataSource. hc)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn bind-model
"Ensure pojo is bound to a model."
{:arglists '([p model])}
[p _model]
{:pre [(c/is? DbioPojo p)
(c/is? DbioModel _model)]}
(let [{:as m
:keys [model]} (meta p)]
(if (nil? model)
(c/wm* p (assoc m :model _model))
(c/raise! "Cannot bind model %s twice!" model))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn dbpojo<>
"Create object of type."
{:arglists '([][model])}
([]
(DbioPojo.))
([model]
{:pre [(some? model)]}
(bind-model (DbioPojo.) model)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn mock-pojo<>
"Clone object with pkey only."
{:arglists '([obj])}
[obj]
(let [out (DbioPojo.)
pk (:pkey (gmodel obj))]
(c/wm* (assoc out pk (goid obj)) (meta obj))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn clr-fld
"Clear a field in the pojo."
{:arglists '([pojo fld])}
[pojo fld]
(dissoc pojo fld))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn get-fld
"Get a field value from the pojo."
{:arglists '([pojo fld])}
[pojo fld]
(get pojo fld))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn set-fld
"Assign a value to a field in the pojo."
{:arglists '([pojo fld value])}
[pojo fld value]
{:pre [(keyword? fld)]}
(if (check-field? pojo fld)
(assoc pojo fld value)
(u/throw-BadData "Invalid field %s." fld)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn db-set-flds*
"Set field+values as: f1 v1 f2 v2 ... fn vn."
[pojo & fvs]
{:pre [(c/n#-even? fvs)]}
(reduce #(set-fld %1
(c/_1 %2)
(c/_E %2)) pojo (partition 2 fvs)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defn db-set-flds
"Set field+values as: f1 v1 f2 v2 ... fn vn."
[pojo fvs]
{:pre [(map? fvs)]}
(reduce #(set-fld %1
(c/_1 %2)
(c/_E %2)) pojo fvs))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;EOF
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.