From 1070c6da9e53f9a71eb6686fa6d66fba477a5f72 Mon Sep 17 00:00:00 2001 From: pinyili2 <pinyili2@illinois.edu> Date: Mon, 5 Aug 2024 21:48:28 -0500 Subject: [PATCH] add --- mrdna/readers/.gitignore | 2 + .../.ipynb_checkpoints/test-checkpoint.ipynb | 384 +++++-- .../.ipynb_checkpoints/test2-checkpoint.ipynb | 973 ++++++++++++++++ mrdna/readers/Na_liu.json | 1 + mrdna/readers/cadnano_segments.py | 2 +- mrdna/readers/libs | 2 +- mrdna/readers/segmentmodel_from_cadnano.py | 539 +-------- mrdna/readers/test.ipynb | 1023 ++++++++++++----- mrdna/readers/test.json | 2 +- mrdna/readers/test.seq.json | 1 + 10 files changed, 2002 insertions(+), 927 deletions(-) create mode 100644 mrdna/readers/.gitignore create mode 100644 mrdna/readers/.ipynb_checkpoints/test2-checkpoint.ipynb create mode 100644 mrdna/readers/Na_liu.json create mode 100644 mrdna/readers/test.seq.json diff --git a/mrdna/readers/.gitignore b/mrdna/readers/.gitignore new file mode 100644 index 0000000..aca9c35 --- /dev/null +++ b/mrdna/readers/.gitignore @@ -0,0 +1,2 @@ +libs +*.swp \ No newline at end of file diff --git a/mrdna/readers/.ipynb_checkpoints/test-checkpoint.ipynb b/mrdna/readers/.ipynb_checkpoints/test-checkpoint.ipynb index 2b75bca..b2453ff 100644 --- a/mrdna/readers/.ipynb_checkpoints/test-checkpoint.ipynb +++ b/mrdna/readers/.ipynb_checkpoints/test-checkpoint.ipynb @@ -2,120 +2,78 @@ "cells": [ { "cell_type": "code", - "execution_count": 124, + "execution_count": 11, "id": "767c8226", "metadata": { "scrolled": true }, - "outputs": [ - { - "data": { - "text/plain": [ - "dict_keys(['row', 'col', 'num', 'scaf', 'stap', 'loop', 'skip', 'scafLoop', 'stapLoop', 'stap_colors'])" - ] - }, - "execution_count": 124, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ "import pandas as pd\n", "import pickle\n", "import numpy as np\n", "df=pd.read_json(\"test.json\")\n", - "df[\"vstrands\"][0].keys()" + "d=list(df[\"vstrands\"])" ] }, { "cell_type": "code", - "execution_count": 164, + "execution_count": 19, "id": "bf2d37ca", "metadata": {}, + "outputs": [], + "source": [ + "data=[]\n", + "for i in df[\"vstrands\"]:\n", + " data.append(i)\n", + "df=pd.DataFrame(data=d)" + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "id": "22a5db0b-2ce5-4af9-83f1-88114342c36d", + "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "[[-1, -1, -1, -1],\n", - " [-1, -1, -1, -1],\n", - " [0, 3, -1, -1],\n", - " [0, 4, 0, 2],\n", - " [0, 5, 0, 3],\n", - " [0, 6, 0, 4],\n", - " [0, 7, 0, 5],\n", - " [0, 8, 0, 6],\n", - " [0, 9, 0, 7],\n", - " [0, 10, 0, 8],\n", - " [0, 11, 0, 9],\n", - " [0, 12, 0, 10],\n", - " [0, 13, 0, 11],\n", - " [0, 14, 0, 12],\n", - " [0, 15, 0, 13],\n", - " [0, 16, 0, 14],\n", - " [0, 17, 0, 15],\n", - " [0, 18, 0, 16],\n", - " [0, 19, 0, 17],\n", - " [0, 20, 0, 18],\n", - " [1, 20, 0, 19],\n", - " [0, 22, 1, 21],\n", - " [0, 23, 0, 21],\n", - " [-1, -1, 0, 22],\n", - " [0, 25, -1, -1],\n", - " [0, 26, 0, 24],\n", - " [0, 27, 0, 25],\n", - " [5, 27, 0, 26],\n", - " [0, 29, 5, 28],\n", - " [0, 30, 0, 28],\n", - " [0, 31, 0, 29],\n", - " [0, 32, 0, 30],\n", - " [0, 33, 0, 31],\n", - " [0, 34, 0, 32],\n", - " [0, 35, 0, 33],\n", - " [0, 36, 0, 34],\n", - " [0, 37, 0, 35],\n", - " [0, 38, 0, 36],\n", - " [-1, -1, 0, 37],\n", - " [-1, -1, -1, -1],\n", - " [-1, -1, -1, -1],\n", - " [-1, -1, -1, -1]]" + "[-1, -1, -1, -1]" ] }, - "execution_count": 164, + "execution_count": 58, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "df[\"vstrands\"][0][\"stap\"]" + "df[\"stap\"][0][0]" ] }, { "cell_type": "code", - "execution_count": 65, - "id": "4ce8f67f", + "execution_count": 13, + "id": "46079e58-4747-42ff-8b68-906c94440474", "metadata": {}, "outputs": [ { - "ename": "UnicodeDecodeError", - "evalue": "'utf-8' codec can't decode byte 0x80 in position 0: invalid start byte", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mUnicodeDecodeError\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m<ipython-input-65-71f198107f5e>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[0mf\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mopen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"test.virt2nuc\"\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\"r\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 2\u001b[0;31m \u001b[0mpickle\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mload\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mf\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", - "\u001b[0;32m/data/server1/cmaffeo2/miniconda3/lib/python3.8/codecs.py\u001b[0m in \u001b[0;36mdecode\u001b[0;34m(self, input, final)\u001b[0m\n\u001b[1;32m 320\u001b[0m \u001b[0;31m# decode input (taking the buffer into account)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 321\u001b[0m \u001b[0mdata\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mbuffer\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0minput\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 322\u001b[0;31m \u001b[0;34m(\u001b[0m\u001b[0mresult\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mconsumed\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_buffer_decode\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mdata\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0merrors\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mfinal\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 323\u001b[0m \u001b[0;31m# keep undecoded input until the next call\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 324\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mbuffer\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mdata\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mconsumed\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;31mUnicodeDecodeError\u001b[0m: 'utf-8' codec can't decode byte 0x80 in position 0: invalid start byte" - ] + "data": { + "text/plain": [ + "[[23, 13369809], [38, 12060012]]" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" } ], "source": [ - "f=open(\"test.virt2nuc\",\"r\")\n", - "pickle.load(f)" + "df[\"vstrands\"][0][\"stap_colors\"]" ] }, { "cell_type": "code", - "execution_count": 119, + "execution_count": 14, "id": "625c831b", "metadata": {}, "outputs": [ @@ -125,7 +83,7 @@ "210" ] }, - "execution_count": 119, + "execution_count": 14, "metadata": {}, "output_type": "execute_result" } @@ -137,7 +95,7 @@ }, { "cell_type": "code", - "execution_count": 66, + "execution_count": 15, "id": "6a4129c2", "metadata": {}, "outputs": [ @@ -147,7 +105,7 @@ "{0: (12, 16), 1: (12, 15), 2: (13, 15), 3: (13, 16), 4: (13, 17), 5: (12, 17)}" ] }, - "execution_count": 66, + "execution_count": 15, "metadata": {}, "output_type": "execute_result" } @@ -158,39 +116,7 @@ }, { "cell_type": "code", - "execution_count": 141, - "id": "f85af2e4", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "(0, 40)\n", - "(0, 41)\n" - ] - }, - { - "ename": "AttributeError", - "evalue": "'NoneType' object has no attribute 'append'", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mAttributeError\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m<ipython-input-141-a0e59df19136>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0ms\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mdecode_vh_vb\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"test.virt2nuc\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2\u001b[0m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0ms\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mto_dict\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m<ipython-input-140-99891f72666f>\u001b[0m in \u001b[0;36mdecode_vh_vb\u001b[0;34m(virt2nuc)\u001b[0m\n\u001b[1;32m 21\u001b[0m \u001b[0mscafs\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mvh_vb\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_scaf\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 22\u001b[0m \u001b[0mstaps\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mvh_vb\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_stap\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 23\u001b[0;31m \u001b[0mscaf_strands\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mfind_segs\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mscafs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 24\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 25\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mvh_list\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m<ipython-input-140-99891f72666f>\u001b[0m in \u001b[0;36mfind_segs\u001b[0;34m(vir2nuc_scaf)\u001b[0m\n\u001b[1;32m 8\u001b[0m \u001b[0mb\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mlist\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mvir2nuc_scaf\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mkeys\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 9\u001b[0m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mb\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 10\u001b[0;31m \u001b[0moligos\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0moligo\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0moligos\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0moligo\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mappend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mlist\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mvir2nuc_scaf\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mkeys\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 11\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0moligos\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 12\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;31mAttributeError\u001b[0m: 'NoneType' object has no attribute 'append'" - ] - } - ], - "source": [ - "s=decode_vh_vb(\"test.virt2nuc\")[0]\n" - ] - }, - { - "cell_type": "code", - "execution_count": 165, + "execution_count": 18, "id": "aefe656e", "metadata": {}, "outputs": [], @@ -221,8 +147,7 @@ " d['scafLoop']=self.scafLoop\n", " d['stapLoop']=self.stapLoop\n", " d['stap_colors']=self.stap_colors\n", - " return d\n", - " \n" + " return d\n" ] }, { @@ -240,7 +165,8 @@ " oligos[oligo]=[]\n", " oligos[oligo].append(list(vir2nuc_scaf.keys())[i])\n", " return oligos\n", - " \n", + "\n", + "#class\n", "def decode_vh_vb(virt2nuc):\n", " vh_list=[]\n", " vh_vb,pattern=pd.read_pickle(virt2nuc)\n", @@ -257,14 +183,234 @@ " bases=len(scaf_oligos)\n", " vh0,vb0=scaf_oligos[i][0]\n", " vh1,vb1=scaf_oligos[i][1]\n", - " if vb0>vb1:#53\n", + " if vb0>vb1 and vh0==vh1:#53\n", " scaf_contact\n", - " else: #35\n", " \n", + " else: #35\n", + " for i in stap_oligos:\n", + " \n", " \n", " return vh_list" ] }, + { + "cell_type": "code", + "execution_count": 106, + "id": "125b30e0-7dcc-464a-b3cf-cfbf090d3982", + "metadata": {}, + "outputs": [], + "source": [ + "\n", + "def decode_vh_vb(virt2nuc):\n", + " vh_vb,pattern=pd.read_pickle(virt2nuc)\n", + " vi={'row':0, 'col':0, 'num':0, 'scaf':dict(), 'stap':dict(), 'loop':[], 'skip':[], 'scafLoop':[],'stapLoop':[], 'stap_colors':[]}\n", + " vs=[] \n", + " for i in range(len(pattern.keys())):\n", + " vhi=vi.copy()\n", + " vhi[\"row\"],vhi[\"col\"]=list(pattern.values())[i]\n", + " vhi[\"num\"]=list(pattern.keys())[i]\n", + " vs.append(vhi)\n", + " vhelices=pd.DataFrame(vs)\n", + " scafs=vh_vb._scaf\n", + " staps=vh_vb._stap\n", + " s\n", + " return vhelices" + ] + }, + { + "cell_type": "code", + "execution_count": 107, + "id": "5b149587-3224-4137-a7bc-e41aa4049034", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "<div>\n", + "<style scoped>\n", + " .dataframe tbody tr th:only-of-type {\n", + " vertical-align: middle;\n", + " }\n", + "\n", + " .dataframe tbody tr th {\n", + " vertical-align: top;\n", + " }\n", + "\n", + " .dataframe thead th {\n", + " text-align: right;\n", + " }\n", + "</style>\n", + "<table border=\"1\" class=\"dataframe\">\n", + " <thead>\n", + " <tr style=\"text-align: right;\">\n", + " <th></th>\n", + " <th>row</th>\n", + " <th>col</th>\n", + " <th>num</th>\n", + " <th>scaf</th>\n", + " <th>stap</th>\n", + " <th>loop</th>\n", + " <th>skip</th>\n", + " <th>scafLoop</th>\n", + " <th>stapLoop</th>\n", + " <th>stap_colors</th>\n", + " </tr>\n", + " </thead>\n", + " <tbody>\n", + " <tr>\n", + " <th>0</th>\n", + " <td>12</td>\n", + " <td>16</td>\n", + " <td>0</td>\n", + " <td>{}</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " </tr>\n", + " <tr>\n", + " <th>1</th>\n", + " <td>12</td>\n", + " <td>15</td>\n", + " <td>1</td>\n", + " <td>{}</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " </tr>\n", + " <tr>\n", + " <th>2</th>\n", + " <td>13</td>\n", + " <td>15</td>\n", + " <td>2</td>\n", + " <td>{}</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " </tr>\n", + " <tr>\n", + " <th>3</th>\n", + " <td>13</td>\n", + " <td>16</td>\n", + " <td>3</td>\n", + " <td>{}</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " </tr>\n", + " <tr>\n", + " <th>4</th>\n", + " <td>13</td>\n", + " <td>17</td>\n", + " <td>4</td>\n", + " <td>{}</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " </tr>\n", + " <tr>\n", + " <th>5</th>\n", + " <td>12</td>\n", + " <td>17</td>\n", + " <td>5</td>\n", + " <td>{}</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " </tr>\n", + " </tbody>\n", + "</table>\n", + "</div>" + ], + "text/plain": [ + " row col num scaf stap loop skip scafLoop stapLoop stap_colors\n", + "0 12 16 0 {} [] [] [] [] [] []\n", + "1 12 15 1 {} [] [] [] [] [] []\n", + "2 13 15 2 {} [] [] [] [] [] []\n", + "3 13 16 3 {} [] [] [] [] [] []\n", + "4 13 17 4 {} [] [] [] [] [] []\n", + "5 12 17 5 {} [] [] [] [] [] []" + ] + }, + "execution_count": 107, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "s=decode_vh_vb(\"test.virt2nuc\")\n", + "s" + ] + }, + { + "cell_type": "code", + "execution_count": 90, + "id": "e7a10fc3-6c30-49da-ae43-81cdb2048cdf", + "metadata": {}, + "outputs": [], + "source": [ + "\n", + "s=pd.Series(vi)" + ] + }, + { + "cell_type": "code", + "execution_count": 92, + "id": "ae3c8887-0d73-4151-958c-32adfd708611", + "metadata": {}, + "outputs": [], + "source": [ + "s[\"scaf\"].append(1)" + ] + }, + { + "cell_type": "code", + "execution_count": 93, + "id": "f24b00b3-e0f0-42b0-88b6-1e7a956ef7ac", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "row 0\n", + "col 0\n", + "num 0\n", + "scaf [1]\n", + "stap []\n", + "loop []\n", + "skip []\n", + "scafLoop []\n", + "stapLoop []\n", + "stap_colors []\n", + "dtype: object" + ] + }, + "execution_count": 93, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "s" + ] + }, { "cell_type": "code", "execution_count": 163, @@ -531,9 +677,7 @@ "cell_type": "code", "execution_count": 62, "id": "422e2b48", - "metadata": { - "scrolled": false - }, + "metadata": {}, "outputs": [ { "data": { @@ -2110,7 +2254,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -2124,7 +2268,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.8.18" + "version": "3.8.19" } }, "nbformat": 4, diff --git a/mrdna/readers/.ipynb_checkpoints/test2-checkpoint.ipynb b/mrdna/readers/.ipynb_checkpoints/test2-checkpoint.ipynb new file mode 100644 index 0000000..2fcb4e5 --- /dev/null +++ b/mrdna/readers/.ipynb_checkpoints/test2-checkpoint.ipynb @@ -0,0 +1,973 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 2, + "id": "9ea65628", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " _\n", + " _____ ___ _| |___ ___\n", + "| | _| . | | .'|\n", + "|_|_|_|_| |___|_|_|__,| v1.0a.dev74 \n", + "it/its\n", + "\n" + ] + } + ], + "source": [ + "\n", + "\n", + "from mrdna.readers.cadnano_segments import *\n", + "from cadnano.document import Document\n", + "import cadnano" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "id": "f07e1b32", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Found cadnano version 2 file\n" + ] + } + ], + "source": [ + "json_data=read_json_file(\"test.json\")\n", + "part=decode_cadnano_part(json_data)\n", + "model=cadnano_part(part)" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "id": "a4d48fe0", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Found cadnano version 2 file\n" + ] + } + ], + "source": [ + "doc=Document()\n", + "cadnano.fileio.v2decode.decode(doc, json_data)\n", + "parts = [p for p in doc.getParts()]\n", + "part=parts[0]\n" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "id": "03d8b6e7", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Oligo_(5.1[22])_2224\t188\t'None\n", + "Oligo_(4.1[39])_7104\t33\t'None\n", + "Oligo_(2.1[34])_8976\t35\t'None\n", + "Oligo_(5.0[9])_4592\t23\t'None\n", + "Oligo_(0.0[39])_2544\t3\t'None\n", + "Oligo_(3.1[41])_5568\t5\t'None\n", + "Oligo_(1.0[3])_3184\t37\t'None\n", + "Oligo_(0.1[38])_5296\t23\t'None\n", + "Oligo_(4.0[0])_8128\t4\t'None\n", + "Oligo_(3.0[0])_6400\t33\t'None\n", + "Oligo_(2.0[39])_8208\t3\t'None\n", + "Oligo_(1.1[41])_1888\t3\t'None\n", + "Oligo_(0.1[23])_3888\t21\t'None\n", + "Oligo_(5.1[3])_1120\t4\t'None\n", + "VH0\n", + "\t <fwd_StrandSet(0)> \t [(5, 36), (39, 41)] \n", + "\t\t\t\t ['#0066cc', '#0066cc']\n", + "\t <rev_StrandSet(0)> \t [(2, 20), (21, 23), (24, 27), (28, 38)] \n", + "\t\t\t\t ['#cc0000', '#b8056c', '#f74308', '#1700de']\n", + "VH1\n", + "\t <fwd_StrandSet(1)> \t [(3, 20), (21, 38)] \n", + "\t\t\t\t ['#cc0000', '#b8056c']\n", + "\t <rev_StrandSet(1)> \t [(5, 18), (19, 36), (39, 41)] \n", + "\t\t\t\t ['#0066cc', '#0066cc', '#0066cc']\n", + "VH2\n", + "\t <fwd_StrandSet(2)> \t [(2, 18), (19, 32), (39, 41)] \n", + "\t\t\t\t ['#0066cc', '#0066cc', '#0066cc']\n", + "\t <rev_StrandSet(2)> \t [(0, 34)] \n", + "\t\t\t\t ['#888888']\n", + "VH3\n", + "\t <fwd_StrandSet(3)> \t [(0, 20), (21, 34)] \n", + "\t\t\t\t ['#cc0000', '#888888']\n", + "\t <rev_StrandSet(3)> \t [(2, 15), (16, 32), (37, 41)] \n", + "\t\t\t\t ['#0066cc', '#0066cc', '#0066cc']\n", + "VH4\n", + "\t <fwd_StrandSet(4)> \t [(0, 3), (9, 15), (16, 39)] \n", + "\t\t\t\t ['#0066cc', '#0066cc', '#0066cc']\n", + "\t <rev_StrandSet(4)> \t [(9, 20), (21, 39)] \n", + "\t\t\t\t ['#cc0000', '#888888']\n", + "VH5\n", + "\t <fwd_StrandSet(5)> \t [(9, 27), (28, 39)] \n", + "\t\t\t\t ['#f74308', '#1700de']\n", + "\t <rev_StrandSet(5)> \t [(0, 3), (9, 22), (23, 39)] \n", + "\t\t\t\t ['#0066cc', '#0066cc', '#0066cc']\n" + ] + } + ], + "source": [ + "part.__dict__.keys()\n", + "\n", + "oligos = part.oligos()\n", + "for oligo in oligos:\n", + " print(\"{0}\\t{1}\\t\\'{2}\".format(oligo,\n", + " oligo.length(),\n", + " oligo.sequence()))\n", + "\n", + "vhs = list(part.getIdNums()) # convert set to list\n", + "for vh_id in vhs: # display first 3 vhs\n", + " fwd_ss, rev_ss = part.getStrandSets(vh_id)\n", + " print('VH{0}'.format(vh_id))\n", + " print('\\t', fwd_ss, '\\t', [s.idxs() for s in fwd_ss.strands()], '\\n\\t\\t\\t\\t',\n", + " [s.getColor() for s in fwd_ss.strands()])\n", + " print('\\t', rev_ss, '\\t', [s.idxs() for s in rev_ss.strands()], '\\n\\t\\t\\t\\t',\n", + " [s.getColor() for s in rev_ss.strands()])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "884f07ed", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 30, + "id": "1e934f2b", + "metadata": {}, + "outputs": [], + "source": [ + "strands5 = [o.strand5p() for o in part.oligos()]\n", + "strands3 = [o.strand3p() for o in part.oligos()]" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "id": "e5b59a91", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'_part': NucleicAcidPart_-1_7520,\n", + " '_strand5p': <rev_StrandSet(4)>.<Strand(21, 39)>,\n", + " '_is_circular': False,\n", + " '_props': {'name': 'oligo7104',\n", + " 'color': '#888888',\n", + " 'length': 33,\n", + " 'is_visible': True}}" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "L=[o for o in part.oligos()]\n", + "\n", + "L[1].__dict__" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "id": "78ecf1e1", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['__class__',\n", + " '__delattr__',\n", + " '__dict__',\n", + " '__dir__',\n", + " '__doc__',\n", + " '__eq__',\n", + " '__format__',\n", + " '__ge__',\n", + " '__getattribute__',\n", + " '__gt__',\n", + " '__hash__',\n", + " '__init__',\n", + " '__init_subclass__',\n", + " '__le__',\n", + " '__lt__',\n", + " '__module__',\n", + " '__ne__',\n", + " '__new__',\n", + " '__reduce__',\n", + " '__reduce_ex__',\n", + " '__repr__',\n", + " '__setattr__',\n", + " '__sizeof__',\n", + " '__slots__',\n", + " '__str__',\n", + " '__subclasshook__',\n", + " '__weakref__',\n", + " '_decrementLength',\n", + " '_incrementLength',\n", + " '_is_circular',\n", + " '_parent',\n", + " '_part',\n", + " '_props',\n", + " '_setColor',\n", + " '_setLength',\n", + " '_setLoop',\n", + " '_setProperty',\n", + " '_signals',\n", + " '_strand5p',\n", + " '_strandMergeUpdate',\n", + " '_strandSplitUpdate',\n", + " 'addToPart',\n", + " 'applyAbstractSequences',\n", + " 'applyColor',\n", + " 'applySequence',\n", + " 'applySequenceCMD',\n", + " 'clearAbstractSequences',\n", + " 'connect',\n", + " 'deleteLater',\n", + " 'destroy',\n", + " 'disconnect',\n", + " 'displayAbstractSequences',\n", + " 'dump',\n", + " 'editable_properties',\n", + " 'getAbsolutePositionAtLength',\n", + " 'getColor',\n", + " 'getModelProperties',\n", + " 'getName',\n", + " 'getNumberOfBasesToEachXover',\n", + " 'getOutlineProperties',\n", + " 'getProperty',\n", + " 'getStrandLengths',\n", + " 'isCircular',\n", + " 'length',\n", + " 'locString',\n", + " 'oligoPropertyChangedSignal',\n", + " 'oligoRemovedSignal',\n", + " 'oligoSelectedChangedSignal',\n", + " 'oligoSequenceAddedSignal',\n", + " 'oligoSequenceClearedSignal',\n", + " 'parent',\n", + " 'part',\n", + " 'refreshLength',\n", + " 'remove',\n", + " 'removeFromPart',\n", + " 'sequence',\n", + " 'sequenceExport',\n", + " 'setParent',\n", + " 'setPart',\n", + " 'setProperty',\n", + " 'setStrand5p',\n", + " 'shallowCopy',\n", + " 'shouldHighlight',\n", + " 'signals',\n", + " 'splitAtAbsoluteLengths',\n", + " 'strand3p',\n", + " 'strand5p',\n", + " 'undoStack']" + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "dir(L[0])" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "680d09ca", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'name': 'NaPart1',\n", + " 'color': '#0066cc',\n", + " 'is_visible': True,\n", + " 'active_phos': None,\n", + " 'crossover_span_angle': 45,\n", + " 'max_vhelix_length': 42,\n", + " 'neighbor_active_angle': '',\n", + " 'grid_type': <GridEnum.HONEYCOMB: 2>,\n", + " 'virtual_helix_order': [0, 1, 2, 3, 4, 5],\n", + " 'is_lattice': True,\n", + " <GridEnum.HONEYCOMB: 2>: <GridEnum.NONE: 0>}" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "part.getModelProperties()" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "190a91a3", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " _\n", + " _____ ___ _| |___ ___\n", + "| | _| . | | .'|\n", + "|_|_|_|_| |___|_|_|__,| v1.0a.dev74 \n", + "it/its\n", + "\n" + ] + } + ], + "source": [ + "import pdb\n", + "import numpy as np\n", + "import os,sys\n", + "import scipy\n", + "\n", + "from mrdna import logger, devlogger\n", + "from mrdna.segmentmodel import SegmentModel, SingleStrandedSegment, DoubleStrandedSegment\n", + "from mrdna.arbdmodel.coords import quaternion_from_matrix, rotationAboutAxis, quaternion_slerp\n", + "from mrdna import get_resource_path\n", + "\n", + "ref_stack_position = np.array((-2.41851735, -0.259761333, 3.39999978))\n", + "\n", + "def _three_prime_list_to_five_prime(three_prime):\n", + " five_prime = -np.ones(three_prime.shape, dtype=int)\n", + " has_three_prime = np.where(three_prime >= 0)[0]\n", + " five_prime[three_prime[has_three_prime]] = has_three_prime\n", + " return five_prime \n", + "def _primes_list_to_strands(three_prime, five_prime):\n", + " five_prime_ends = np.where(five_prime < 0)[0]\n", + " strands = []\n", + " strand_is_circular = []\n", + " \n", + " idx_to_strand = -np.ones(three_prime.shape, dtype=int)\n", + "\n", + " def build_strand(nt_idx, conditional):\n", + " strand = [nt_idx]\n", + " idx_to_strand[nt_idx] = len(strands)\n", + " while conditional(nt_idx):\n", + " nt_idx = three_prime[nt_idx]\n", + " strand.append(nt_idx)\n", + " idx_to_strand[nt_idx] = len(strands)\n", + " strands.append( np.array(strand, dtype=int) )\n", + "\n", + " for nt_idx in five_prime_ends:\n", + " build_strand(nt_idx,\n", + " lambda nt: three_prime[nt] >= 0)\n", + " strand_is_circular.append(False)\n", + "\n", + " while True:\n", + " ## print(\"WARNING: working on circular strand {}\".format(len(strands)))\n", + " ids = np.where(idx_to_strand < 0)[0]\n", + " if len(ids) == 0: break\n", + " build_strand(ids[0],\n", + " lambda nt: three_prime[nt] >= 0 and \\\n", + " idx_to_strand[three_prime[nt]] < 0)\n", + " strand_is_circular.append(True)\n", + "\n", + " return strands, strand_is_circular\n", + "\n", + "def find_stacks(centers, transforms):\n", + "\n", + " ## Find orientation and center of each nucleotide\n", + " expected_stack_positions = []\n", + " for R,c in zip(transforms,centers):\n", + " expected_stack_positions.append( c + ref_stack_position.dot(R) )\n", + "\n", + " expected_stack_positions = np.array(expected_stack_positions, dtype=np.float32)\n", + "\n", + " dists = scipy.spatial.distance_matrix(expected_stack_positions, centers)\n", + " dists = dists + 5*np.eye(len(dists))\n", + " idx1, idx2 = np.where(dists < 3.5)\n", + "\n", + " ## Convert distances to stacks\n", + " stacks_above = -np.ones(len(centers), dtype=int)\n", + " _z = np.array((0,0,1))\n", + " for i in np.unique(idx1):\n", + " js = idx2[ idx1 == i ]\n", + " with np.errstate(divide='ignore',invalid='ignore'):\n", + " angles = [np.arccos( transforms[j].T.dot( transforms[i].dot(_z) ).dot( _z ) ) for j in js]\n", + " angles = np.array( angles )\n", + " tmp = np.argmin(dists[i][js] + 1.0*angles)\n", + " j = js[tmp]\n", + " stacks_above[i] = j\n", + "\n", + " return stacks_above\n", + "\n", + "def basepairs_and_stacks_to_helixmap(basepairs,stacks_above):\n", + "\n", + " helixmap = -np.ones(basepairs.shape, dtype=int)\n", + " helixrank = -np.ones(basepairs.shape)\n", + " is_fwd = np.ones(basepairs.shape, dtype=int)\n", + " \n", + " ## Remove stacks with nts lacking a basepairs\n", + " nobp = np.where(basepairs < 0)[0]\n", + " stacks_above[nobp] = -1\n", + " stacks_with_nobp = np.in1d(stacks_above, nobp)\n", + " stacks_above[stacks_with_nobp] = -1\n", + "\n", + " end_ids = np.where( (stacks_above < 0)*(basepairs >= 0) )[0]\n", + "\n", + " hid = 0\n", + " for end in end_ids:\n", + " if helixmap[end] >= 0:\n", + " continue\n", + " rank = 0\n", + " nt = basepairs[end]\n", + " bp = basepairs[nt]\n", + " assert( bp == end )\n", + " if helixmap[nt] >= 0 or helixmap[bp] >= 0:\n", + " logger.warning(f'Ill-formed helix: problematic basepair or stacking data near nucleotide {nt} or {bp}... skipping')\n", + " continue\n", + " # assert(helixmap[nt] == -1)\n", + " # assert(helixmap[bp] == -1)\n", + " helixmap[nt] = helixmap[bp] = hid\n", + " helixrank[nt] = helixrank[bp] = rank\n", + " is_fwd[bp] = 0\n", + " rank +=1\n", + "\n", + " _tmp = [(nt,bp)]\n", + " \n", + " while stacks_above[nt] >= 0:\n", + " nt = stacks_above[nt]\n", + " if basepairs[nt] < 0: break\n", + " bp = basepairs[nt]\n", + " if helixmap[nt] >= 0 or helixmap[bp] >= 0:\n", + " logger.warning(f'Ill-formed helix: problematic basepair or stacking data near nucleotide {nt} or {bp}... skipping')\n", + " break\n", + " helixmap[nt] = helixmap[bp] = hid\n", + " helixrank[nt] = helixrank[bp] = rank\n", + " is_fwd[bp] = 0\n", + " _tmp.append((nt,bp))\n", + " rank +=1\n", + "\n", + " hid += 1\n", + "\n", + " ## Create \"helix\" for each circular segment\n", + " intrahelical = []\n", + " processed = set()\n", + " unclaimed_bases = np.where( (basepairs >= 0)*(helixmap == -1) )[0]\n", + " for nt0 in unclaimed_bases:\n", + " if nt0 in processed: continue\n", + "\n", + " nt = nt0\n", + " all_nts = [nt]\n", + "\n", + " rank = 0\n", + " nt = nt0\n", + " bp = basepairs[nt]\n", + " if helixmap[nt] >= 0 or helixmap[bp] >= 0:\n", + " logger.warning(f'Ill-formed cylic helix: problematic basepair or stacking data near nucleotide {nt} or {bp}... skipping')\n", + " continue\n", + " helixmap[nt] = helixmap[bp] = hid\n", + " helixrank[nt] = helixrank[bp] = rank\n", + " is_fwd[bp] = 0\n", + " rank +=1\n", + " processed.add(nt)\n", + " processed.add(bp)\n", + "\n", + " counter = 0\n", + " while stacks_above[nt] >= 0:\n", + " lastnt = nt\n", + " nt = stacks_above[nt]\n", + " bp = basepairs[nt]\n", + " if nt == nt0 or nt == basepairs[nt0]:\n", + " intrahelical.append((lastnt,nt0))\n", + " break\n", + " \n", + " assert( bp >= 0 )\n", + " if helixmap[nt] >= 0 or helixmap[bp] >= 0:\n", + " logger.warning(f'Ill-formed cyclic helix: problematic basepair or stacking data near nucleotide {nt} or {bp}... skipping')\n", + " break\n", + " \n", + " helixmap[nt] = helixmap[bp] = hid\n", + " helixrank[nt] = helixrank[bp] = rank\n", + " is_fwd[bp] = 0\n", + " processed.add(nt)\n", + " processed.add(bp)\n", + " rank +=1\n", + " hid += 1\n", + "\n", + " return helixmap, helixrank, is_fwd, intrahelical\n", + "\n", + "\n", + "def set_splines(seg, coordinate, hid, hmap, hrank, fwd, basepair, orientation=None):\n", + " maxrank = np.max( hrank[hmap==hid] )\n", + " if maxrank == 0:\n", + " ids = np.where((hmap == hid))[0]\n", + " pos = np.mean( [coordinate[r,:] for r in ids ], axis=0 )\n", + " coords = [pos,pos]\n", + " contours = [0,1]\n", + " if orientation is not None:\n", + " ids = np.where((hmap == hid) * fwd)[0]\n", + " assert( len(ids) == 1 )\n", + " q = quaternion_from_matrix( orientation[ids[0]] )\n", + " quats = [q, q]\n", + " coords[-1] = pos + orientation[ids[0]].dot(np.array((0,0,1)))\n", + "\n", + " else:\n", + " coords,contours,quats = [[],[],[]]\n", + " last_q = None\n", + " for rank in range(int(maxrank)+1):\n", + " ids = np.where((hmap == hid) * (hrank == rank))[0]\n", + " \n", + " coords.append(np.mean( [coordinate[r,:] for r in ids ], axis=0 ))\n", + " contours.append( float(rank+0.5)/(maxrank+1) )\n", + " if orientation is not None:\n", + " ids = np.where((hmap == hid) * (hrank == rank) * fwd)[0]\n", + " assert(len(ids) == 1)\n", + " q = quaternion_from_matrix( orientation[ids[0]] )\n", + "\n", + " if last_q is not None and last_q.dot(q) < 0:\n", + " q = -q\n", + "\n", + " ## Average quaterion with reverse direction\n", + " bp = basepair[ids[0]]\n", + " if bp >= 0:\n", + " bp_o = orientation[bp].dot(rotationAboutAxis(np.array((1,0,0)),180))\n", + " q2 = quaternion_from_matrix( bp_o )\n", + " if q.dot(q2) < 0:\n", + " q2 = -q2\n", + "\n", + " ## probably good enough, but slerp is better: q = (q + q2)*0.5\n", + " q = quaternion_slerp(q,q2,0.5)\n", + "\n", + " quats.append(q)\n", + " last_q = q\n", + "\n", + " coords = np.array(coords)\n", + " seg.set_splines(contours,coords)\n", + " if orientation is not None:\n", + " quats = np.array(quats)\n", + " seg.set_orientation_splines(contours,quats)\n", + "\n", + " seg.start_position = coords[0,:]\n", + " seg.end_position = coords[-1,:]\n", + "\n", + "\n", + "def model_from_basepair_stack_3prime(coordinate, basepair, stack, three_prime,\n", + " sequence=None, orientation=None,\n", + " max_basepairs_per_bead = 5,\n", + " max_nucleotides_per_bead = 5,\n", + " local_twist = False,\n", + " dimensions=(5000,5000,5000),\n", + " **model_parameters):\n", + " \"\"\" \n", + " Creates a SegmentModel object from lists of each nucleotide's\n", + " basepair, its stack (on 3' side) and its 3'-connected nucleotide\n", + "\n", + " The first argument should be an N-by-3 numpy array containing the\n", + " coordinate of each nucleotide, where N is the number of\n", + " nucleotides. The following three arguments should be integer lists\n", + " where the i-th element corresponds to the i-th nucleotide; the\n", + " list element should the integer index of the corresponding\n", + " basepaired / stacked / phosphodiester-bonded nucleotide. If there\n", + " is no such nucleotide, the value should be -1.\n", + "\n", + " Args:\n", + " basepair: List of each nucleotide's basepair's index\n", + " stack: List containing index of the nucleotide stacked on the 3' of each nucleotide\n", + " three_prime: List of each nucleotide's the 3' end of each nucleotide\n", + "\n", + " Returns:\n", + " SegmentModel\n", + " \"\"\"\n", + "\n", + " \"\"\" Validate Input \"\"\"\n", + " inputs = (basepair,three_prime)\n", + " try:\n", + " basepair,three_prime = [np.array(a,dtype=int) for a in inputs]\n", + " except:\n", + " raise TypeError(\"One or more of the input lists could not be converted into a numpy array\")\n", + " inputs = (basepair,three_prime)\n", + " coordinate = np.array(coordinate)\n", + "\n", + " if np.any( [len(a.shape) > 1 for a in inputs] ):\n", + " raise ValueError(\"One or more of the input lists has the wrong dimensionality\")\n", + "\n", + " if len(coordinate.shape) != 2:\n", + " raise ValueError(\"Coordinate array has the wrong dimensionality\")\n", + "\n", + " inputs = (coordinate,basepair,three_prime)\n", + " if not np.all(np.diff([len(a) for a in inputs]) == 0):\n", + " raise ValueError(\"Inputs are not the same length\")\n", + " \n", + " num_nt = len(basepair)\n", + " if sequence is not None and len(sequence) != num_nt:\n", + " raise ValueError(\"The 'sequence' parameter is the wrong length {} != {}\".format(len(sequence),num_nt))\n", + "\n", + " if orientation is not None:\n", + " orientation = np.array(orientation)\n", + " if len(orientation.shape) != 3:\n", + " raise ValueError(\"The 'orientation' array has the wrong dimensionality (should be Nx3x3)\")\n", + " if orientation.shape != (num_nt,3,3):\n", + " raise ValueError(\"The 'orientation' array is not properly formatted\")\n", + "\n", + " if stack is None:\n", + " if orientation is not None:\n", + " stack = find_stacks(coordinate, orientation)\n", + " else:\n", + " ## Guess stacking based on 3' connectivity\n", + " stack = np.array(three_prime,dtype=int) # Assume nts on 3' ends are stacked\n", + " _stack_below = _three_prime_list_to_five_prime(stack)\n", + " _has_bp = (basepair >= 0)\n", + " _nostack = np.where( (stack == -1)*_has_bp )[0]\n", + " _has_stack_below = _stack_below[basepair[_nostack]] >= 0\n", + " _nostack2 = _nostack[_has_stack_below]\n", + " stack[_nostack2] = basepair[_stack_below[basepair[_nostack2]]]\n", + "\n", + " else:\n", + " try:\n", + " stack = np.array(stack,dtype=int)\n", + " except:\n", + " raise TypeError(\"The 'stack' array could not be converted into a numpy integer array\")\n", + "\n", + " if len(stack.shape) != 1:\n", + " raise ValueError(\"The 'stack' array has the wrong dimensionality\")\n", + "\n", + " if len(stack) != num_nt:\n", + " raise ValueError(\"The length of the 'stack' array does not match other inputs\")\n", + "\n", + " bps = basepair # alias\n", + "\n", + " \"\"\" Fix stacks: require that the stack of a bp of a base's stack is its bp \"\"\"\n", + " _has_bp = (bps >= 0)\n", + " _has_stack = (stack >= 0)\n", + " _stack_has_basepair = (bps[stack] >= 0) * _has_stack\n", + " stack = np.where( (stack[bps[stack]] == bps) * _has_bp * _has_stack * _has_bp,\n", + " stack, -np.ones(len(stack),dtype=int) )\n", + "\n", + " five_prime = _three_prime_list_to_five_prime(three_prime)\n", + "\n", + " \"\"\" Build map of dsDNA helices and strands \"\"\"\n", + " hmap,hrank,fwd,intrahelical = basepairs_and_stacks_to_helixmap(bps,stack)\n", + " double_stranded_helices = np.unique(hmap[hmap >= 0]) \n", + " strands, strand_is_circular = _primes_list_to_strands(three_prime, five_prime)\n", + "\n", + " \"\"\" Add ssDNA to hmap \"\"\"\n", + " if len(double_stranded_helices) > 0:\n", + " hid = double_stranded_helices[-1]+1\n", + " else:\n", + " hid = 0\n", + " ss_residues = hmap < 0\n", + " #\n", + " if np.any(bps[ss_residues] != -1):\n", + " logger.warning(f'{np.sum(bps[ss_residues] != -1)} ssDNA nucleotides appear to have basepairs... ignoring')\n", + " \n", + " for s,c in zip(strands, strand_is_circular):\n", + " strand_segment_ends = [i for i in np.where( np.diff(hmap[s]) != 0 )[0]] + [len(s)-1]\n", + " seg_start = 0\n", + " for i in strand_segment_ends:\n", + " if hmap[s[i]] < 0:\n", + " ## Found single-stranded segment\n", + " ids = s[seg_start:i+1]\n", + " assert( np.all(hmap[ids] == -1) )\n", + " hmap[ids] = hid\n", + " hrank[ids] = np.arange(i+1-seg_start)\n", + " hid+=1\n", + " seg_start = i+1\n", + "\n", + " if len(double_stranded_helices) > 0:\n", + " single_stranded_helices = np.arange(double_stranded_helices[-1]+1,hid)\n", + " else:\n", + " single_stranded_helices = np.arange(hid)\n", + "\n", + " ## Create double-stranded segments\n", + " doubleSegments = []\n", + " for hid in double_stranded_helices:\n", + " seg = DoubleStrandedSegment(name=str(hid),\n", + " num_bp = np.sum(hmap==hid)//2)\n", + " set_splines(seg, coordinate, hid, hmap, hrank, fwd, basepair, orientation)\n", + "\n", + " assert(hid == len(doubleSegments))\n", + " doubleSegments.append(seg)\n", + "\n", + " ## Create single-stranded segments\n", + " singleSegments = []\n", + " for hid in single_stranded_helices:\n", + " seg = SingleStrandedSegment(name=str(hid),\n", + " num_nt = np.sum(hmap==hid))\n", + " set_splines(seg, coordinate, hid, hmap, hrank, fwd, basepair, orientation)\n", + "\n", + " assert(hid == len(doubleSegments) + len(singleSegments))\n", + " singleSegments.append(seg)\n", + "\n", + " ## Find crossovers and 5prime/3prime ends\n", + " crossovers,prime5,prime3 = [[],[],[]]\n", + " for s,c in zip(strands,strand_is_circular):\n", + " tmp = np.where(np.diff(hmap[s]) != 0)[0]\n", + " for i in tmp:\n", + " crossovers.append( (s[i],s[i+1]) )\n", + " if c:\n", + " if hmap[s[-1]] != hmap[s[0]]:\n", + " crossovers.append( (s[-1],s[0]) )\n", + " else:\n", + " prime5.append(s[0])\n", + " prime3.append(s[-1])\n", + "\n", + " ## Add connections\n", + " allSegments = doubleSegments+singleSegments\n", + "\n", + " for r1,r2 in crossovers:\n", + " seg1,seg2 = [allSegments[hmap[i]] for i in (r1,r2)]\n", + " nt1,nt2 = [hrank[i] for i in (r1,r2)]\n", + " f1,f2 = [fwd[i] for i in (r1,r2)]\n", + "\n", + " ## Handle connections at the ends\n", + " is_terminal1 = (nt1,f1) in ((0,0),(seg1.num_nt-1,1))\n", + " is_terminal2 = (nt2,f2) in ((0,1),(seg2.num_nt-1,0))\n", + "\n", + " print(seg1,seg2, r1, r2, is_terminal1, is_terminal2)\n", + " if is_terminal1 or is_terminal2:\n", + " \"\"\" Ensure that we don't have three-way dsDNA junctions \"\"\"\n", + " if is_terminal1 and (bps[r1] >= 0) and (five_prime[bps[r1]] >= 0) and (three_prime[r1] >= 0):\n", + " if (bps[five_prime[bps[r1]]] >= 0) and (bps[three_prime[r1]] >= 0):\n", + " # is_terminal1 = (three_prime[r1] == bps[five_prime[bps[r1]]])\n", + " is_terminal1 = hmap[five_prime[bps[r1]]] == hmap[three_prime[r1]]\n", + " if is_terminal2 and (bps[r2] >= 0) and (three_prime[bps[r2]] >= 0) and (five_prime[r2] >= 0):\n", + " if (bps[three_prime[bps[r2]]] >= 0) and (bps[five_prime[r2]] >= 0):\n", + " # is_terminal2 = (five_prime[r2] == bps[three_prime[bps[r2]]])\n", + " is_terminal2 = hmap[three_prime[bps[r2]]] == hmap[five_prime[r2]]\n", + " \n", + " \"\"\" Place connection \"\"\"\n", + " if is_terminal1 and is_terminal2:\n", + " end1 = seg1.end3 if f1 else seg1.start3\n", + " end2 = seg2.start5 if f2 else seg2.end5\n", + " seg1._connect_ends( end1, end2, type_='intrahelical')\n", + " else:\n", + " seg1.add_crossover(nt1,seg2,nt2,[f1,f2],type_=\"terminal_crossover\")\n", + " else:\n", + " seg1.add_crossover(nt1,seg2,nt2,[f1,f2])\n", + "\n", + " ## Add 5prime/3prime ends\n", + " for r in prime5:\n", + " seg = allSegments[hmap[r]]\n", + " seg.add_5prime(hrank[r],fwd[r])\n", + " for r in prime3:\n", + " seg = allSegments[hmap[r]]\n", + " seg.add_3prime(hrank[r],fwd[r])\n", + "\n", + " ## Add intrahelical connections to circular helical sections\n", + " for nt0,nt1 in intrahelical:\n", + " seg = allSegments[hmap[nt0]]\n", + " assert( seg is allSegments[hmap[nt1]] )\n", + " if three_prime[nt0] >= 0:\n", + " if hmap[nt0] == hmap[three_prime[nt0]]:\n", + " seg.connect_end3(seg.start5)\n", + "\n", + " bp0,bp1 = [bps[nt] for nt in (nt0,nt1)]\n", + " if three_prime[bp1] >= 0:\n", + " if hmap[bp1] == hmap[three_prime[bp1]]:\n", + " seg.connect_start3(seg.end5)\n", + "\n", + " ## Assign sequence\n", + " if sequence is not None:\n", + " for hid in range(len(allSegments)):\n", + " resids = np.where( (hmap==hid)*(fwd==1) )[0]\n", + " s = allSegments[hid]\n", + " s.sequence = [sequence[r] for r in sorted(resids,key=lambda x: hrank[x])]\n", + "\n", + "\n", + " ## Build model\n", + " model = SegmentModel( allSegments,\n", + " max_basepairs_per_bead = max_basepairs_per_bead,\n", + " max_nucleotides_per_bead = max_nucleotides_per_bead,\n", + " local_twist = local_twist,\n", + " dimensions = dimensions,\n", + " **model_parameters )\n", + "\n", + "\n", + " model._reader_list_coordinates = coordinate\n", + " model._reader_list_basepair = basepair\n", + " model._reader_list_stack = stack\n", + " model._reader_list_three_prime = three_prime\n", + " model._reader_list_five_prime = five_prime\n", + " model._reader_list_sequence = sequence\n", + " model._reader_list_orientation = orientation\n", + " model._reader_list_hmap = hmap\n", + " model._reader_list_fwd = fwd\n", + " model._reader_list_hrank = hrank\n", + "\n", + " if sequence is None:\n", + " for s in model.segments:\n", + " s.randomize_unset_sequence()\n", + "\n", + " return model\n" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "ba82a4ed", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "<DoubleStrandedSegment'> 1[1]> <DoubleStrandedSegment'> 0[1]> 5 3 True True\n", + "<SingleStrandedSegment'> 2[2]> <DoubleStrandedSegment'> 0[1]> 1 2 True True\n", + "<DoubleStrandedSegment'> 0[1]> <DoubleStrandedSegment'> 1[1]> 2 4 True True\n", + "<DoubleStrandedSegment'> 1[1]> <SingleStrandedSegment'> 3[1]> 4 6 True True\n", + "<SingleStrandedSegment'> 3[1]> <SingleStrandedSegment'> 2[2]> 6 0 True True\n" + ] + } + ], + "source": [ + "coordinate = [(0,0,3.4*i) for i in range(7)]\n", + "three_prime = [ 1, 2, 4,-1, 6, 3, 0]\n", + "basepair = [-1,-1, 3, 2, 5, 4,-1]\n", + "stack = [-1,-1, -1,-1,-1, -1,-1]\n", + "for i in [3,5]:\n", + " coordinate[i] = (1,0,3.4*i)\n", + "\n", + "model = model_from_basepair_stack_3prime(coordinate, basepair, stack, three_prime,\n", + " max_basepairs_per_bead=1,\n", + " max_nucleotides_per_bead=1,\n", + " local_twist=False)\n", + "model.writePsf(\"list.psf\")\n", + "model.writePdb(\"list.pdb\")" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "79e8a471", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[<SegmentParticle DNA on <DoubleStrandedSegment'> 0[1]>[1.00]>], [<SegmentParticle DNA on <DoubleStrandedSegment'> 1[1]>[0.00]>, <SegmentParticle DNA on <DoubleStrandedSegment'> 1[1]>[1.00]>], [<SegmentParticle NAS on <SingleStrandedSegment'> 2[2]>[0.00]>, <SegmentParticle NAS on <SingleStrandedSegment'> 2[2]>[0.50]>, <SegmentParticle NAS on <SingleStrandedSegment'> 2[2]>[1.00]>], [<SegmentParticle NAS on <SingleStrandedSegment'> 3[1]>[0.50]>]]\n", + "[[<Connection <Location 1.end3[0,on_fwd_strand]>--intrahelical--<Location 0.end5[0,on_fwd_strand]>]>, <Connection <Location 2.end3[1,on_fwd_strand]>--sscrossover--<Location 0.end5[0,on_rev_strand]>]>, <Connection <Location 0.end3[0,on_rev_strand]>--intrahelical--<Location 1.end5[0,on_rev_strand]>]>], [<Connection <Location 1.end3[0,on_fwd_strand]>--intrahelical--<Location 0.end5[0,on_fwd_strand]>]>, <Connection <Location 0.end3[0,on_rev_strand]>--intrahelical--<Location 1.end5[0,on_rev_strand]>]>, <Connection <Location 1.end3[0,on_rev_strand]>--intrahelical--<Location 3.end5[0,on_fwd_strand]>]>], [<Connection <Location 2.end3[1,on_fwd_strand]>--sscrossover--<Location 0.end5[0,on_rev_strand]>]>, <Connection <Location 3.end3[0,on_fwd_strand]>--intrahelical--<Location 2.end5[0,on_fwd_strand]>]>], [<Connection <Location 1.end3[0,on_rev_strand]>--intrahelical--<Location 3.end5[0,on_fwd_strand]>]>, <Connection <Location 3.end3[0,on_fwd_strand]>--intrahelical--<Location 2.end5[0,on_fwd_strand]>]>]]\n" + ] + } + ], + "source": [ + "print([i.children for i in model.children])\n", + "print([i.connections for i in model.children])" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "71b7ffdc", + "metadata": {}, + "outputs": [], + "source": [ + "s=model.children[0]" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "f7c95c63", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'0'" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "s.segname" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "e905bb35", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[(0, 0, 0.0),\n", + " (0, 0, 3.4),\n", + " (0, 0, 6.8),\n", + " (1, 0, 10.2),\n", + " (0, 0, 13.6),\n", + " (1, 0, 17.0),\n", + " (0, 0, 20.4)]" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "coordinate" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "8964b3a5", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.18" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/mrdna/readers/Na_liu.json b/mrdna/readers/Na_liu.json new file mode 100644 index 0000000..6b8cf0a --- /dev/null +++ b/mrdna/readers/Na_liu.json @@ -0,0 +1 @@ +{"name":"V5_staples_ lokcing for both chiralities.json","vstrands":[{"stap_colors":[[62,0],[216,0],[237,0],[261,0]],"num":0,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[0,22,-1,-1],[0,23,0,21],[0,24,0,22],[0,25,0,23],[0,26,0,24],[0,27,0,25],[0,28,0,26],[0,29,0,27],[0,30,0,28],[0,31,0,29],[0,32,0,30],[0,33,0,31],[0,34,0,32],[1,34,0,33],[0,36,1,35],[0,37,0,35],[0,38,0,36],[0,39,0,37],[0,40,0,38],[0,41,0,39],[13,41,0,40],[0,43,13,42],[0,44,0,42],[0,45,0,43],[0,46,0,44],[0,47,0,45],[0,48,0,46],[0,49,0,47],[0,50,0,48],[0,51,0,49],[0,52,0,50],[0,53,0,51],[0,54,0,52],[0,55,0,53],[1,55,0,54],[0,57,1,56],[0,58,0,56],[0,59,0,57],[0,60,0,58],[0,61,0,59],[0,62,0,60],[-1,-1,0,61],[0,64,-1,-1],[0,65,0,63],[0,66,0,64],[0,67,0,65],[0,68,0,66],[0,69,0,67],[0,70,0,68],[0,71,0,69],[0,72,0,70],[0,73,0,71],[0,74,0,72],[0,75,0,73],[0,76,0,74],[1,76,0,75],[0,78,1,77],[0,79,0,77],[0,80,0,78],[0,81,0,79],[0,82,0,80],[0,83,0,81],[13,83,0,82],[0,85,13,84],[0,86,0,84],[0,87,0,85],[0,88,0,86],[0,89,0,87],[0,90,0,88],[0,91,0,89],[0,92,0,90],[0,93,0,91],[0,94,0,92],[0,95,0,93],[0,96,0,94],[0,97,0,95],[1,97,0,96],[0,99,1,98],[0,100,0,98],[0,101,0,99],[0,102,0,100],[0,103,0,101],[0,104,0,102],[13,104,0,103],[0,106,13,105],[0,107,0,105],[0,108,0,106],[0,109,0,107],[0,110,0,108],[0,111,0,109],[0,112,0,110],[0,113,0,111],[0,114,0,112],[0,115,0,113],[0,116,0,114],[0,117,0,115],[0,118,0,116],[1,118,0,117],[0,120,1,119],[0,121,0,119],[0,122,0,120],[0,123,0,121],[0,124,0,122],[0,125,0,123],[13,125,0,124],[0,127,-1,-1],[0,128,0,126],[0,129,0,127],[0,130,0,128],[0,131,0,129],[0,132,0,130],[0,133,0,131],[0,134,0,132],[0,135,0,133],[0,136,0,134],[0,137,0,135],[0,138,0,136],[0,139,0,137],[1,139,0,138],[0,141,1,140],[0,142,0,140],[0,143,0,141],[0,144,0,142],[0,145,0,143],[0,146,0,144],[13,146,0,145],[0,148,13,147],[0,149,0,147],[0,150,0,148],[0,151,0,149],[0,152,0,150],[0,153,0,151],[0,154,0,152],[0,155,0,153],[0,156,0,154],[0,157,0,155],[0,158,0,156],[0,159,0,157],[0,160,0,158],[1,160,0,159],[0,162,1,161],[0,163,0,161],[0,164,0,162],[0,165,0,163],[0,166,0,164],[0,167,0,165],[13,167,0,166],[0,169,13,168],[0,170,0,168],[0,171,0,169],[0,172,0,170],[0,173,0,171],[0,174,0,172],[0,175,0,173],[0,176,0,174],[0,177,0,175],[0,178,0,176],[0,179,0,177],[0,180,0,178],[0,181,0,179],[1,181,0,180],[0,183,1,182],[0,184,0,182],[0,185,0,183],[0,186,0,184],[0,187,0,185],[0,188,0,186],[13,188,0,187],[0,190,13,189],[0,191,0,189],[0,192,0,190],[0,193,0,191],[0,194,0,192],[0,195,0,193],[0,196,0,194],[0,197,0,195],[0,198,0,196],[0,199,0,197],[0,200,0,198],[0,201,0,199],[0,202,0,200],[1,202,0,201],[0,204,1,203],[0,205,0,203],[0,206,0,204],[0,207,0,205],[0,208,0,206],[0,209,0,207],[13,209,0,208],[0,211,13,210],[0,212,0,210],[0,213,0,211],[0,214,0,212],[0,215,0,213],[0,216,0,214],[-1,-1,0,215],[0,218,-1,-1],[0,219,0,217],[0,220,0,218],[0,221,0,219],[0,222,0,220],[0,223,0,221],[1,223,0,222],[0,225,1,224],[0,226,0,224],[0,227,0,225],[0,228,0,226],[0,229,0,227],[0,230,0,228],[13,230,0,229],[0,232,13,231],[0,233,0,231],[0,234,0,232],[0,235,0,233],[0,236,0,234],[0,237,0,235],[-1,-1,0,236],[0,239,-1,-1],[0,240,0,238],[0,241,0,239],[0,242,0,240],[0,243,0,241],[0,244,0,242],[1,244,0,243],[0,246,1,245],[0,247,0,245],[0,248,0,246],[0,249,0,247],[0,250,0,248],[0,251,0,249],[13,251,0,250],[0,253,13,252],[0,254,0,252],[0,255,0,253],[0,256,0,254],[0,257,0,255],[0,258,0,256],[0,259,0,257],[0,260,0,258],[0,261,0,259],[-1,-1,0,260],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[1,9,0,10],[0,9,0,11],[0,10,0,12],[0,11,0,13],[0,12,0,14],[0,13,0,15],[0,14,0,16],[0,15,0,17],[0,16,0,18],[0,17,0,19],[0,18,0,20],[0,19,0,21],[0,20,0,22],[0,21,0,23],[0,22,0,24],[0,23,0,25],[0,24,0,26],[0,25,0,27],[0,26,0,28],[0,27,0,29],[0,28,0,30],[0,29,0,31],[0,30,0,32],[0,31,0,33],[0,32,0,34],[0,33,0,35],[0,34,0,36],[0,35,0,37],[0,36,0,38],[0,37,0,39],[0,38,0,40],[0,39,0,41],[0,40,0,42],[0,41,0,43],[0,42,0,44],[0,43,0,45],[0,44,0,46],[0,45,0,47],[0,46,0,48],[0,47,0,49],[0,48,0,50],[0,49,0,51],[0,50,0,52],[0,51,0,53],[0,52,0,54],[0,53,0,55],[0,54,0,56],[0,55,0,57],[0,56,0,58],[0,57,0,59],[0,58,0,60],[0,59,0,61],[0,60,0,62],[0,61,0,63],[0,62,0,64],[0,63,0,65],[0,64,0,66],[0,65,0,67],[0,66,0,68],[0,67,0,69],[0,68,0,70],[0,69,0,71],[0,70,0,72],[0,71,0,73],[0,72,0,74],[0,73,0,75],[0,74,0,76],[0,75,0,77],[0,76,0,78],[0,77,0,79],[0,78,0,80],[0,79,0,81],[0,80,0,82],[0,81,0,83],[0,82,0,84],[0,83,0,85],[0,84,0,86],[0,85,0,87],[0,86,0,88],[0,87,0,89],[0,88,0,90],[0,89,0,91],[0,90,0,92],[0,91,0,93],[0,92,0,94],[0,93,0,95],[0,94,0,96],[0,95,0,97],[0,96,0,98],[0,97,0,99],[0,98,0,100],[0,99,0,101],[0,100,0,102],[0,101,0,103],[0,102,0,104],[0,103,0,105],[0,104,0,106],[0,105,0,107],[0,106,0,108],[0,107,0,109],[0,108,0,110],[0,109,0,111],[0,110,0,112],[0,111,0,113],[0,112,0,114],[0,113,0,115],[0,114,0,116],[0,115,0,117],[0,116,0,118],[0,117,0,119],[0,118,0,120],[0,119,0,121],[0,120,0,122],[0,121,0,123],[0,122,0,124],[0,123,0,125],[0,124,0,126],[0,125,0,127],[0,126,0,128],[0,127,0,129],[0,128,0,130],[0,129,0,131],[0,130,0,132],[0,131,0,133],[0,132,0,134],[0,133,0,135],[0,134,0,136],[0,135,0,137],[0,136,0,138],[0,137,0,139],[0,138,0,140],[0,139,0,141],[0,140,0,142],[0,141,0,143],[0,142,0,144],[0,143,0,145],[0,144,0,146],[0,145,0,147],[0,146,0,148],[0,147,0,149],[0,148,0,150],[0,149,0,151],[0,150,0,152],[0,151,0,153],[0,152,0,154],[0,153,0,155],[0,154,0,156],[0,155,0,157],[0,156,0,158],[0,157,0,159],[0,158,0,160],[0,159,0,161],[0,160,0,162],[0,161,0,163],[0,162,0,164],[0,163,0,165],[0,164,0,166],[0,165,0,167],[0,166,0,168],[0,167,0,169],[0,168,0,170],[0,169,0,171],[0,170,0,172],[0,171,0,173],[0,172,0,174],[0,173,0,175],[0,174,0,176],[0,175,0,177],[0,176,0,178],[0,177,0,179],[0,178,0,180],[0,179,0,181],[0,180,0,182],[0,181,0,183],[0,182,0,184],[0,183,0,185],[0,184,0,186],[0,185,0,187],[0,186,0,188],[0,187,0,189],[0,188,0,190],[0,189,0,191],[0,190,0,192],[0,191,0,193],[0,192,0,194],[0,193,0,195],[0,194,0,196],[0,195,0,197],[0,196,0,198],[0,197,0,199],[0,198,0,200],[0,199,0,201],[0,200,0,202],[0,201,0,203],[0,202,0,204],[0,203,0,205],[0,204,0,206],[0,205,0,207],[0,206,0,208],[0,207,0,209],[0,208,0,210],[0,209,0,211],[0,210,0,212],[0,211,0,213],[0,212,0,214],[0,213,0,215],[0,214,0,216],[0,215,0,217],[0,216,0,218],[0,217,0,219],[0,218,0,220],[0,219,0,221],[0,220,0,222],[0,221,0,223],[0,222,0,224],[0,223,0,225],[0,224,0,226],[0,225,0,227],[0,226,0,228],[0,227,0,229],[0,228,0,230],[0,229,0,231],[0,230,0,232],[0,231,0,233],[0,232,0,234],[0,233,0,235],[0,234,0,236],[0,235,0,237],[0,236,0,238],[0,237,0,239],[0,238,0,240],[0,239,0,241],[0,240,0,242],[0,241,0,243],[0,242,0,244],[0,243,0,245],[0,244,0,246],[0,245,0,247],[0,246,0,248],[0,247,0,249],[0,248,0,250],[0,249,0,251],[0,250,0,252],[0,251,0,253],[0,252,0,254],[0,253,0,255],[0,254,0,256],[0,255,0,257],[0,256,0,258],[0,257,0,259],[0,258,0,260],[0,259,0,261],[0,260,0,262],[0,261,0,263],[0,262,0,264],[0,263,0,265],[0,264,0,266],[0,265,0,267],[0,266,0,268],[0,267,0,269],[0,268,0,270],[0,269,1,270],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":16,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":10},{"stap_colors":[[49,0],[154,0],[252,0]],"num":1,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[2,28,1,29],[1,28,1,30],[1,29,1,31],[1,30,1,32],[1,31,1,33],[1,32,1,34],[1,33,0,34],[0,35,1,36],[1,35,1,37],[1,36,1,38],[1,37,1,39],[1,38,1,40],[1,39,1,41],[1,40,1,42],[1,41,1,43],[1,42,1,44],[1,43,1,45],[1,44,1,46],[1,45,1,47],[1,46,1,48],[1,47,-1,-1],[-1,-1,1,50],[1,49,1,51],[1,50,1,52],[1,51,1,53],[1,52,1,54],[1,53,1,55],[1,54,0,55],[0,56,1,57],[1,56,1,58],[1,57,1,59],[1,58,1,60],[1,59,1,61],[1,60,1,62],[1,61,1,63],[1,62,1,64],[1,63,1,65],[1,64,1,66],[1,65,1,67],[1,66,1,68],[1,67,1,69],[1,68,2,69],[2,70,1,71],[1,70,1,72],[1,71,1,73],[1,72,1,74],[1,73,1,75],[1,74,1,76],[1,75,0,76],[0,77,1,78],[1,77,1,79],[1,78,1,80],[1,79,1,81],[1,80,1,82],[1,81,1,83],[1,82,1,84],[1,83,1,85],[1,84,1,86],[1,85,1,87],[1,86,1,88],[1,87,1,89],[1,88,1,90],[1,89,2,90],[2,91,1,92],[1,91,1,93],[1,92,1,94],[1,93,1,95],[1,94,1,96],[1,95,1,97],[1,96,0,97],[0,98,1,99],[1,98,1,100],[1,99,1,101],[1,100,1,102],[1,101,1,103],[1,102,1,104],[1,103,1,105],[1,104,1,106],[1,105,1,107],[1,106,1,108],[1,107,1,109],[1,108,1,110],[1,109,1,111],[1,110,2,111],[2,112,1,113],[1,112,1,114],[1,113,1,115],[1,114,1,116],[1,115,1,117],[1,116,1,118],[1,117,0,118],[0,119,1,120],[1,119,1,121],[1,120,1,122],[1,121,1,123],[1,122,1,124],[1,123,1,125],[1,124,1,126],[1,125,1,127],[1,126,1,128],[1,127,1,129],[1,128,1,130],[1,129,1,131],[1,130,1,132],[1,131,2,132],[2,133,1,134],[1,133,1,135],[1,134,1,136],[1,135,1,137],[1,136,1,138],[1,137,1,139],[1,138,0,139],[0,140,1,141],[1,140,1,142],[1,141,1,143],[1,142,1,144],[1,143,1,145],[1,144,1,146],[1,145,1,147],[1,146,1,148],[1,147,1,149],[1,148,1,150],[1,149,1,151],[1,150,1,152],[1,151,1,153],[1,152,-1,-1],[-1,-1,1,155],[1,154,1,156],[1,155,1,157],[1,156,1,158],[1,157,1,159],[1,158,1,160],[1,159,0,160],[0,161,1,162],[1,161,1,163],[1,162,1,164],[1,163,1,165],[1,164,1,166],[1,165,1,167],[1,166,1,168],[1,167,1,169],[1,168,1,170],[1,169,1,171],[1,170,1,172],[1,171,1,173],[1,172,1,174],[1,173,2,174],[2,175,1,176],[1,175,1,177],[1,176,1,178],[1,177,1,179],[1,178,1,180],[1,179,1,181],[1,180,0,181],[0,182,1,183],[1,182,1,184],[1,183,1,185],[1,184,1,186],[1,185,1,187],[1,186,1,188],[1,187,1,189],[1,188,1,190],[1,189,1,191],[1,190,1,192],[1,191,1,193],[1,192,1,194],[1,193,1,195],[1,194,2,195],[2,196,1,197],[1,196,1,198],[1,197,1,199],[1,198,1,200],[1,199,1,201],[1,200,1,202],[1,201,0,202],[0,203,1,204],[1,203,1,205],[1,204,1,206],[1,205,1,207],[1,206,1,208],[1,207,1,209],[1,208,1,210],[1,209,1,211],[1,210,1,212],[1,211,1,213],[1,212,1,214],[1,213,1,215],[1,214,1,216],[1,215,-1,-1],[2,217,1,218],[1,217,1,219],[1,218,1,220],[1,219,1,221],[1,220,1,222],[1,221,1,223],[1,222,0,223],[0,224,1,225],[1,224,1,226],[1,225,1,227],[1,226,1,228],[1,227,1,229],[1,228,1,230],[1,229,1,231],[1,230,1,232],[1,231,1,233],[1,232,1,234],[1,233,1,235],[1,234,1,236],[1,235,1,237],[1,236,2,237],[2,238,1,239],[1,238,1,240],[1,239,1,241],[1,240,1,242],[1,241,1,243],[1,242,1,244],[1,243,0,244],[0,245,1,246],[1,245,1,247],[1,246,1,248],[1,247,1,249],[1,248,1,250],[1,249,1,251],[1,250,-1,-1],[-1,-1,1,253],[1,252,1,254],[1,253,1,255],[1,254,1,256],[1,255,1,257],[1,256,1,258],[1,257,2,258],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[1,10,0,9],[1,11,1,9],[1,12,1,10],[1,13,1,11],[1,14,1,12],[1,15,1,13],[1,16,1,14],[1,17,1,15],[1,18,1,16],[1,19,1,17],[1,20,1,18],[1,21,1,19],[1,22,1,20],[1,23,1,21],[1,24,1,22],[1,25,1,23],[1,26,1,24],[1,27,1,25],[1,28,1,26],[1,29,1,27],[1,30,1,28],[1,31,1,29],[1,32,1,30],[1,33,1,31],[1,34,1,32],[1,35,1,33],[1,36,1,34],[1,37,1,35],[1,38,1,36],[1,39,1,37],[1,40,1,38],[1,41,1,39],[1,42,1,40],[1,43,1,41],[1,44,1,42],[1,45,1,43],[1,46,1,44],[1,47,1,45],[1,48,1,46],[1,49,1,47],[1,50,1,48],[1,51,1,49],[1,52,1,50],[1,53,1,51],[2,53,1,52],[1,55,2,54],[1,56,1,54],[1,57,1,55],[1,58,1,56],[1,59,1,57],[1,60,1,58],[1,61,1,59],[1,62,1,60],[1,63,1,61],[1,64,1,62],[1,65,1,63],[1,66,1,64],[1,67,1,65],[1,68,1,66],[1,69,1,67],[1,70,1,68],[1,71,1,69],[1,72,1,70],[1,73,1,71],[1,74,1,72],[1,75,1,73],[1,76,1,74],[1,77,1,75],[1,78,1,76],[1,79,1,77],[1,80,1,78],[1,81,1,79],[1,82,1,80],[1,83,1,81],[1,84,1,82],[1,85,1,83],[1,86,1,84],[1,87,1,85],[1,88,1,86],[1,89,1,87],[1,90,1,88],[1,91,1,89],[1,92,1,90],[1,93,1,91],[1,94,1,92],[1,95,1,93],[1,96,1,94],[1,97,1,95],[1,98,1,96],[1,99,1,97],[1,100,1,98],[1,101,1,99],[1,102,1,100],[1,103,1,101],[1,104,1,102],[1,105,1,103],[1,106,1,104],[1,107,1,105],[1,108,1,106],[1,109,1,107],[1,110,1,108],[1,111,1,109],[1,112,1,110],[1,113,1,111],[1,114,1,112],[1,115,1,113],[1,116,1,114],[1,117,1,115],[1,118,1,116],[1,119,1,117],[1,120,1,118],[1,121,1,119],[1,122,1,120],[1,123,1,121],[1,124,1,122],[1,125,1,123],[1,126,1,124],[1,127,1,125],[1,128,1,126],[1,129,1,127],[1,130,1,128],[1,131,1,129],[1,132,1,130],[1,133,1,131],[1,134,1,132],[1,135,1,133],[1,136,1,134],[1,137,1,135],[1,138,1,136],[1,139,1,137],[1,140,1,138],[1,141,1,139],[1,142,1,140],[1,143,1,141],[1,144,1,142],[1,145,1,143],[1,146,1,144],[1,147,1,145],[1,148,1,146],[2,148,1,147],[1,150,2,149],[1,151,1,149],[1,152,1,150],[1,153,1,151],[1,154,1,152],[1,155,1,153],[1,156,1,154],[1,157,1,155],[1,158,1,156],[1,159,1,157],[1,160,1,158],[1,161,1,159],[1,162,1,160],[1,163,1,161],[1,164,1,162],[1,165,1,163],[1,166,1,164],[1,167,1,165],[1,168,1,166],[1,169,1,167],[1,170,1,168],[1,171,1,169],[1,172,1,170],[1,173,1,171],[1,174,1,172],[1,175,1,173],[1,176,1,174],[1,177,1,175],[1,178,1,176],[1,179,1,177],[1,180,1,178],[1,181,1,179],[1,182,1,180],[1,183,1,181],[1,184,1,182],[1,185,1,183],[1,186,1,184],[1,187,1,185],[1,188,1,186],[1,189,1,187],[1,190,1,188],[1,191,1,189],[1,192,1,190],[1,193,1,191],[1,194,1,192],[1,195,1,193],[1,196,1,194],[1,197,1,195],[1,198,1,196],[1,199,1,197],[1,200,1,198],[1,201,1,199],[1,202,1,200],[1,203,1,201],[1,204,1,202],[1,205,1,203],[1,206,1,204],[1,207,1,205],[1,208,1,206],[1,209,1,207],[1,210,1,208],[1,211,1,209],[2,211,1,210],[1,213,2,212],[1,214,1,212],[1,215,1,213],[1,216,1,214],[1,217,1,215],[1,218,1,216],[1,219,1,217],[1,220,1,218],[1,221,1,219],[1,222,1,220],[1,223,1,221],[1,224,1,222],[1,225,1,223],[1,226,1,224],[1,227,1,225],[1,228,1,226],[1,229,1,227],[1,230,1,228],[1,231,1,229],[1,232,1,230],[1,233,1,231],[1,234,1,232],[1,235,1,233],[1,236,1,234],[1,237,1,235],[1,238,1,236],[1,239,1,237],[1,240,1,238],[1,241,1,239],[1,242,1,240],[1,243,1,241],[1,244,1,242],[1,245,1,243],[1,246,1,244],[1,247,1,245],[1,248,1,246],[1,249,1,247],[1,250,1,248],[1,251,1,249],[1,252,1,250],[1,253,1,251],[1,254,1,252],[1,255,1,253],[1,256,1,254],[1,257,1,255],[1,258,1,256],[1,259,1,257],[1,260,1,258],[1,261,1,259],[1,262,1,260],[1,263,1,261],[1,264,1,262],[1,265,1,263],[1,266,1,264],[1,267,1,265],[1,268,1,266],[1,269,1,267],[1,270,1,268],[0,270,1,269],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":16,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":9},{"stap_colors":[[48,0],[76,0],[97,0],[118,0],[139,0],[160,0],[181,0],[202,0],[216,0]],"num":2,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[2,29,1,28],[2,30,2,28],[2,31,2,29],[2,32,2,30],[2,33,2,31],[2,34,2,32],[2,35,2,33],[2,36,2,34],[2,37,2,35],[2,38,2,36],[2,39,2,37],[2,40,2,38],[2,41,2,39],[3,41,2,40],[2,43,3,42],[2,44,2,42],[2,45,2,43],[2,46,2,44],[2,47,2,45],[2,48,2,46],[-1,-1,2,47],[2,50,-1,-1],[2,51,2,49],[2,52,2,50],[2,53,2,51],[2,54,2,52],[2,55,2,53],[2,56,2,54],[2,57,2,55],[2,58,2,56],[2,59,2,57],[2,60,2,58],[2,61,2,59],[2,62,2,60],[3,62,2,61],[2,64,3,63],[2,65,2,63],[2,66,2,64],[2,67,2,65],[2,68,2,66],[2,69,2,67],[1,69,2,68],[2,71,1,70],[2,72,2,70],[2,73,2,71],[2,74,2,72],[2,75,2,73],[2,76,2,74],[-1,-1,2,75],[2,78,-1,-1],[2,79,2,77],[2,80,2,78],[2,81,2,79],[2,82,2,80],[2,83,2,81],[2,84,2,82],[2,85,2,83],[2,86,2,84],[2,87,2,85],[2,88,2,86],[2,89,2,87],[2,90,2,88],[1,90,2,89],[2,92,1,91],[2,93,2,91],[2,94,2,92],[2,95,2,93],[2,96,2,94],[2,97,2,95],[-1,-1,2,96],[2,99,-1,-1],[2,100,2,98],[2,101,2,99],[2,102,2,100],[2,103,2,101],[2,104,2,102],[2,105,2,103],[2,106,2,104],[2,107,2,105],[2,108,2,106],[2,109,2,107],[2,110,2,108],[2,111,2,109],[1,111,2,110],[2,113,1,112],[2,114,2,112],[2,115,2,113],[2,116,2,114],[2,117,2,115],[2,118,2,116],[-1,-1,2,117],[2,120,-1,-1],[2,121,2,119],[2,122,2,120],[2,123,2,121],[2,124,2,122],[2,125,2,123],[3,125,2,124],[2,127,3,126],[2,128,2,126],[2,129,2,127],[2,130,2,128],[2,131,2,129],[2,132,2,130],[1,132,2,131],[2,134,1,133],[2,135,2,133],[2,136,2,134],[2,137,2,135],[2,138,2,136],[2,139,2,137],[-1,-1,2,138],[2,141,-1,-1],[2,142,2,140],[2,143,2,141],[2,144,2,142],[2,145,2,143],[2,146,2,144],[3,146,2,145],[2,148,3,147],[2,149,2,147],[2,150,2,148],[2,151,2,149],[2,152,2,150],[2,153,2,151],[2,154,2,152],[2,155,2,153],[2,156,2,154],[2,157,2,155],[2,158,2,156],[2,159,2,157],[2,160,2,158],[-1,-1,2,159],[2,162,-1,-1],[2,163,2,161],[2,164,2,162],[2,165,2,163],[2,166,2,164],[2,167,2,165],[2,168,2,166],[2,169,2,167],[2,170,2,168],[2,171,2,169],[2,172,2,170],[2,173,2,171],[2,174,2,172],[1,174,2,173],[2,176,1,175],[2,177,2,175],[2,178,2,176],[2,179,2,177],[2,180,2,178],[2,181,2,179],[-1,-1,2,180],[2,183,-1,-1],[2,184,2,182],[2,185,2,183],[2,186,2,184],[2,187,2,185],[2,188,2,186],[3,188,2,187],[2,190,3,189],[2,191,2,189],[2,192,2,190],[2,193,2,191],[2,194,2,192],[2,195,2,193],[1,195,2,194],[2,197,1,196],[2,198,2,196],[2,199,2,197],[2,200,2,198],[2,201,2,199],[2,202,2,200],[-1,-1,2,201],[2,204,-1,-1],[2,205,2,203],[2,206,2,204],[2,207,2,205],[2,208,2,206],[2,209,2,207],[3,209,2,208],[2,211,3,210],[2,212,2,210],[2,213,2,211],[2,214,2,212],[2,215,2,213],[2,216,2,214],[-1,-1,2,215],[2,218,1,217],[2,219,2,217],[2,220,2,218],[2,221,2,219],[2,222,2,220],[2,223,2,221],[2,224,2,222],[2,225,2,223],[2,226,2,224],[2,227,2,225],[2,228,2,226],[2,229,2,227],[2,230,2,228],[3,230,2,229],[2,232,3,231],[2,233,2,231],[2,234,2,232],[2,235,2,233],[2,236,2,234],[2,237,2,235],[1,237,2,236],[2,239,1,238],[2,240,2,238],[2,241,2,239],[2,242,2,240],[2,243,2,241],[2,244,2,242],[2,245,2,243],[2,246,2,244],[2,247,2,245],[2,248,2,246],[2,249,2,247],[2,250,2,248],[2,251,2,249],[3,251,2,250],[2,253,3,252],[2,254,2,252],[2,255,2,253],[2,256,2,254],[2,257,2,255],[2,258,2,256],[1,258,2,257],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[3,5,2,6],[2,5,2,7],[2,6,2,8],[2,7,2,9],[2,8,2,10],[2,9,2,11],[2,10,2,12],[2,11,2,13],[2,12,2,14],[2,13,2,15],[2,14,2,16],[2,15,2,17],[2,16,2,18],[2,17,2,19],[2,18,2,20],[2,19,2,21],[2,20,2,22],[2,21,2,23],[2,22,2,24],[2,23,2,25],[2,24,2,26],[2,25,2,27],[2,26,2,28],[2,27,2,29],[2,28,2,30],[2,29,2,31],[2,30,2,32],[2,31,2,33],[2,32,2,34],[2,33,2,35],[2,34,2,36],[2,35,2,37],[2,36,2,38],[2,37,2,39],[2,38,2,40],[2,39,2,41],[2,40,2,42],[2,41,2,43],[2,42,2,44],[2,43,2,45],[2,44,2,46],[2,45,2,47],[2,46,2,48],[2,47,2,49],[2,48,2,50],[2,49,2,51],[2,50,2,52],[2,51,2,53],[2,52,1,53],[1,54,2,55],[2,54,2,56],[2,55,2,57],[2,56,2,58],[2,57,2,59],[2,58,2,60],[2,59,2,61],[2,60,2,62],[2,61,2,63],[2,62,2,64],[2,63,2,65],[2,64,2,66],[2,65,2,67],[2,66,2,68],[2,67,2,69],[2,68,2,70],[2,69,2,71],[2,70,2,72],[2,71,2,73],[2,72,2,74],[2,73,2,75],[2,74,2,76],[2,75,2,77],[2,76,2,78],[2,77,2,79],[2,78,2,80],[2,79,2,81],[2,80,2,82],[2,81,2,83],[2,82,2,84],[2,83,2,85],[2,84,2,86],[2,85,2,87],[2,86,2,88],[2,87,3,88],[3,89,2,90],[2,89,2,91],[2,90,2,92],[2,91,2,93],[2,92,2,94],[2,93,2,95],[2,94,2,96],[2,95,2,97],[2,96,2,98],[2,97,2,99],[2,98,2,100],[2,99,2,101],[2,100,2,102],[2,101,2,103],[2,102,2,104],[2,103,2,105],[2,104,2,106],[2,105,2,107],[2,106,2,108],[2,107,2,109],[2,108,2,110],[2,109,2,111],[2,110,2,112],[2,111,2,113],[2,112,2,114],[2,113,2,115],[2,114,2,116],[2,115,2,117],[2,116,2,118],[2,117,2,119],[2,118,2,120],[2,119,2,121],[2,120,2,122],[2,121,2,123],[2,122,2,124],[2,123,2,125],[2,124,2,126],[2,125,2,127],[2,126,2,128],[2,127,2,129],[2,128,2,130],[2,129,2,131],[2,130,2,132],[2,131,2,133],[2,132,2,134],[2,133,2,135],[2,134,2,136],[2,135,2,137],[2,136,2,138],[2,137,2,139],[2,138,2,140],[2,139,2,141],[2,140,2,142],[2,141,2,143],[2,142,2,144],[2,143,2,145],[2,144,2,146],[2,145,2,147],[2,146,2,148],[2,147,1,148],[1,149,2,150],[2,149,2,151],[2,150,2,152],[2,151,2,153],[2,152,2,154],[2,153,2,155],[2,154,2,156],[2,155,2,157],[2,156,2,158],[2,157,2,159],[2,158,2,160],[2,159,2,161],[2,160,2,162],[2,161,2,163],[2,162,2,164],[2,163,2,165],[2,164,2,166],[2,165,2,167],[2,166,2,168],[2,167,2,169],[2,168,2,170],[2,169,2,171],[2,170,2,172],[2,171,3,172],[3,173,2,174],[2,173,2,175],[2,174,2,176],[2,175,2,177],[2,176,2,178],[2,177,2,179],[2,178,2,180],[2,179,2,181],[2,180,2,182],[2,181,2,183],[2,182,2,184],[2,183,2,185],[2,184,2,186],[2,185,2,187],[2,186,2,188],[2,187,2,189],[2,188,2,190],[2,189,2,191],[2,190,2,192],[2,191,2,193],[2,192,2,194],[2,193,2,195],[2,194,2,196],[2,195,2,197],[2,196,2,198],[2,197,2,199],[2,198,2,200],[2,199,2,201],[2,200,2,202],[2,201,2,203],[2,202,2,204],[2,203,2,205],[2,204,2,206],[2,205,2,207],[2,206,2,208],[2,207,2,209],[2,208,2,210],[2,209,2,211],[2,210,1,211],[1,212,2,213],[2,212,2,214],[2,213,2,215],[2,214,2,216],[2,215,2,217],[2,216,2,218],[2,217,2,219],[2,218,2,220],[2,219,2,221],[2,220,2,222],[2,221,2,223],[2,222,2,224],[2,223,2,225],[2,224,2,226],[2,225,2,227],[2,226,2,228],[2,227,2,229],[2,228,2,230],[2,229,2,231],[2,230,2,232],[2,231,2,233],[2,232,2,234],[2,233,2,235],[2,234,2,236],[2,235,2,237],[2,236,2,238],[2,237,2,239],[2,238,2,240],[2,239,2,241],[2,240,2,242],[2,241,2,243],[2,242,2,244],[2,243,2,245],[2,244,2,246],[2,245,2,247],[2,246,2,248],[2,247,2,249],[2,248,2,250],[2,249,2,251],[2,250,2,252],[2,251,2,253],[2,252,2,254],[2,253,2,255],[2,254,2,256],[2,255,2,257],[2,256,2,258],[2,257,2,259],[2,258,2,260],[2,259,2,261],[2,260,2,262],[2,261,2,263],[2,262,2,264],[2,263,2,265],[2,264,2,266],[2,265,2,267],[2,266,2,268],[2,267,2,269],[2,268,2,270],[2,269,2,271],[2,270,2,272],[2,271,2,273],[2,272,2,274],[2,273,2,275],[2,274,2,276],[2,275,2,277],[2,276,3,277],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":15,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":9},{"stap_colors":[[21,3355443],[77,11141120],[133,0],[196,0],[238,0]],"num":3,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,3,22],[3,21,3,23],[3,22,3,24],[3,23,3,25],[3,24,3,26],[3,25,3,27],[3,26,3,28],[3,27,3,29],[3,28,3,30],[3,29,3,31],[3,30,3,32],[3,31,3,33],[3,32,3,34],[3,33,12,34],[12,35,3,36],[3,35,3,37],[3,36,3,38],[3,37,3,39],[3,38,3,40],[3,39,3,41],[3,40,2,41],[2,42,3,43],[3,42,3,44],[3,43,3,45],[3,44,3,46],[3,45,3,47],[3,46,3,48],[3,47,3,49],[3,48,3,50],[3,49,3,51],[3,50,3,52],[3,51,3,53],[3,52,3,54],[3,53,3,55],[3,54,12,55],[12,56,3,57],[3,56,3,58],[3,57,3,59],[3,58,3,60],[3,59,3,61],[3,60,3,62],[3,61,2,62],[2,63,3,64],[3,63,3,65],[3,64,3,66],[3,65,3,67],[3,66,3,68],[3,67,3,69],[3,68,4,69],[4,70,3,71],[3,70,3,72],[3,71,3,73],[3,72,3,74],[3,73,3,75],[3,74,3,76],[3,75,12,76],[-1,-1,3,78],[3,77,3,79],[3,78,3,80],[3,79,3,81],[3,80,3,82],[3,81,3,83],[3,82,3,84],[3,83,3,85],[3,84,3,86],[3,85,3,87],[3,86,3,88],[3,87,3,89],[3,88,3,90],[3,89,4,90],[4,91,3,92],[3,91,3,93],[3,92,3,94],[3,93,3,95],[3,94,3,96],[3,95,3,97],[3,96,12,97],[12,98,3,99],[3,98,3,100],[3,99,3,101],[3,100,3,102],[3,101,3,103],[3,102,3,104],[3,103,3,105],[3,104,3,106],[3,105,3,107],[3,106,3,108],[3,107,3,109],[3,108,3,110],[3,109,3,111],[3,110,4,111],[4,112,3,113],[3,112,3,114],[3,113,3,115],[3,114,3,116],[3,115,3,117],[3,116,3,118],[3,117,12,118],[12,119,3,120],[3,119,3,121],[3,120,3,122],[3,121,3,123],[3,122,3,124],[3,123,3,125],[3,124,2,125],[2,126,3,127],[3,126,3,128],[3,127,3,129],[3,128,3,130],[3,129,3,131],[3,130,3,132],[3,131,-1,-1],[-1,-1,3,134],[3,133,3,135],[3,134,3,136],[3,135,3,137],[3,136,3,138],[3,137,3,139],[3,138,12,139],[12,140,3,141],[3,140,3,142],[3,141,3,143],[3,142,3,144],[3,143,3,145],[3,144,3,146],[3,145,2,146],[2,147,3,148],[3,147,3,149],[3,148,3,150],[3,149,3,151],[3,150,3,152],[3,151,3,153],[3,152,4,153],[4,154,3,155],[3,154,3,156],[3,155,3,157],[3,156,3,158],[3,157,3,159],[3,158,3,160],[3,159,12,160],[12,161,3,162],[3,161,3,163],[3,162,3,164],[3,163,3,165],[3,164,3,166],[3,165,3,167],[3,166,3,168],[3,167,3,169],[3,168,3,170],[3,169,3,171],[3,170,3,172],[3,171,3,173],[3,172,3,174],[3,173,4,174],[4,175,3,176],[3,175,3,177],[3,176,3,178],[3,177,3,179],[3,178,3,180],[3,179,3,181],[3,180,3,182],[3,181,3,183],[3,182,3,184],[3,183,3,185],[3,184,3,186],[3,185,3,187],[3,186,3,188],[3,187,2,188],[2,189,3,190],[3,189,3,191],[3,190,3,192],[3,191,3,193],[3,192,3,194],[3,193,3,195],[3,194,-1,-1],[-1,-1,3,197],[3,196,3,198],[3,197,3,199],[3,198,3,200],[3,199,3,201],[3,200,3,202],[3,201,12,202],[12,203,3,204],[3,203,3,205],[3,204,3,206],[3,205,3,207],[3,206,3,208],[3,207,3,209],[3,208,2,209],[2,210,3,211],[3,210,3,212],[3,211,3,213],[3,212,3,214],[3,213,3,215],[3,214,3,216],[3,215,3,217],[3,216,3,218],[3,217,3,219],[3,218,3,220],[3,219,3,221],[3,220,3,222],[3,221,3,223],[3,222,12,223],[12,224,3,225],[3,224,3,226],[3,225,3,227],[3,226,3,228],[3,227,3,229],[3,228,3,230],[3,229,2,230],[2,231,3,232],[3,231,3,233],[3,232,3,234],[3,233,3,235],[3,234,3,236],[3,235,3,237],[3,236,-1,-1],[-1,-1,3,239],[3,238,3,240],[3,239,3,241],[3,240,3,242],[3,241,3,243],[3,242,3,244],[3,243,12,244],[12,245,3,246],[3,245,3,247],[3,246,3,248],[3,247,3,249],[3,248,3,250],[3,249,3,251],[3,250,2,251],[2,252,3,253],[3,252,3,254],[3,253,3,255],[3,254,3,256],[3,255,3,257],[3,256,3,258],[3,257,4,258],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[3,6,2,5],[3,7,3,5],[3,8,3,6],[3,9,3,7],[3,10,3,8],[3,11,3,9],[3,12,3,10],[3,13,3,11],[3,14,3,12],[3,15,3,13],[3,16,3,14],[3,17,3,15],[3,18,3,16],[3,19,3,17],[3,20,3,18],[3,21,3,19],[3,22,3,20],[3,23,3,21],[3,24,3,22],[3,25,3,23],[3,26,3,24],[3,27,3,25],[3,28,3,26],[3,29,3,27],[3,30,3,28],[3,31,3,29],[3,32,3,30],[4,32,3,31],[3,34,4,33],[3,35,3,33],[3,36,3,34],[3,37,3,35],[3,38,3,36],[3,39,3,37],[3,40,3,38],[3,41,3,39],[3,42,3,40],[3,43,3,41],[3,44,3,42],[3,45,3,43],[3,46,3,44],[3,47,3,45],[3,48,3,46],[3,49,3,47],[3,50,3,48],[3,51,3,49],[3,52,3,50],[3,53,3,51],[3,54,3,52],[3,55,3,53],[3,56,3,54],[3,57,3,55],[3,58,3,56],[3,59,3,57],[3,60,3,58],[3,61,3,59],[3,62,3,60],[3,63,3,61],[3,64,3,62],[3,65,3,63],[3,66,3,64],[3,67,3,65],[3,68,3,66],[3,69,3,67],[3,70,3,68],[3,71,3,69],[3,72,3,70],[3,73,3,71],[3,74,3,72],[3,75,3,73],[3,76,3,74],[3,77,3,75],[3,78,3,76],[3,79,3,77],[3,80,3,78],[3,81,3,79],[3,82,3,80],[3,83,3,81],[3,84,3,82],[3,85,3,83],[3,86,3,84],[3,87,3,85],[3,88,3,86],[2,88,3,87],[3,90,2,89],[3,91,3,89],[3,92,3,90],[3,93,3,91],[3,94,3,92],[3,95,3,93],[3,96,3,94],[3,97,3,95],[3,98,3,96],[3,99,3,97],[3,100,3,98],[3,101,3,99],[3,102,3,100],[3,103,3,101],[3,104,3,102],[3,105,3,103],[3,106,3,104],[3,107,3,105],[3,108,3,106],[3,109,3,107],[3,110,3,108],[3,111,3,109],[3,112,3,110],[3,113,3,111],[3,114,3,112],[3,115,3,113],[3,116,3,114],[3,117,3,115],[3,118,3,116],[3,119,3,117],[3,120,3,118],[3,121,3,119],[3,122,3,120],[3,123,3,121],[3,124,3,122],[3,125,3,123],[3,126,3,124],[3,127,3,125],[4,127,3,126],[3,129,4,128],[3,130,3,128],[3,131,3,129],[3,132,3,130],[3,133,3,131],[3,134,3,132],[3,135,3,133],[3,136,3,134],[3,137,3,135],[3,138,3,136],[3,139,3,137],[3,140,3,138],[3,141,3,139],[3,142,3,140],[3,143,3,141],[3,144,3,142],[3,145,3,143],[3,146,3,144],[3,147,3,145],[3,148,3,146],[3,149,3,147],[3,150,3,148],[3,151,3,149],[3,152,3,150],[3,153,3,151],[3,154,3,152],[3,155,3,153],[3,156,3,154],[3,157,3,155],[3,158,3,156],[3,159,3,157],[3,160,3,158],[3,161,3,159],[3,162,3,160],[3,163,3,161],[3,164,3,162],[3,165,3,163],[3,166,3,164],[3,167,3,165],[3,168,3,166],[3,169,3,167],[3,170,3,168],[3,171,3,169],[3,172,3,170],[2,172,3,171],[3,174,2,173],[3,175,3,173],[3,176,3,174],[3,177,3,175],[3,178,3,176],[3,179,3,177],[3,180,3,178],[3,181,3,179],[3,182,3,180],[3,183,3,181],[3,184,3,182],[3,185,3,183],[3,186,3,184],[3,187,3,185],[3,188,3,186],[3,189,3,187],[3,190,3,188],[3,191,3,189],[3,192,3,190],[3,193,3,191],[3,194,3,192],[3,195,3,193],[3,196,3,194],[3,197,3,195],[3,198,3,196],[3,199,3,197],[3,200,3,198],[3,201,3,199],[3,202,3,200],[3,203,3,201],[3,204,3,202],[3,205,3,203],[3,206,3,204],[3,207,3,205],[3,208,3,206],[3,209,3,207],[3,210,3,208],[3,211,3,209],[4,211,3,210],[3,213,4,212],[3,214,3,212],[3,215,3,213],[3,216,3,214],[3,217,3,215],[3,218,3,216],[3,219,3,217],[3,220,3,218],[3,221,3,219],[3,222,3,220],[3,223,3,221],[3,224,3,222],[3,225,3,223],[3,226,3,224],[3,227,3,225],[3,228,3,226],[3,229,3,227],[3,230,3,228],[3,231,3,229],[3,232,3,230],[3,233,3,231],[3,234,3,232],[3,235,3,233],[3,236,3,234],[3,237,3,235],[3,238,3,236],[3,239,3,237],[3,240,3,238],[3,241,3,239],[3,242,3,240],[3,243,3,241],[3,244,3,242],[3,245,3,243],[3,246,3,244],[3,247,3,245],[3,248,3,246],[3,249,3,247],[3,250,3,248],[3,251,3,249],[3,252,3,250],[3,253,3,251],[3,254,3,252],[3,255,3,253],[3,256,3,254],[3,257,3,255],[3,258,3,256],[3,259,3,257],[3,260,3,258],[3,261,3,259],[3,262,3,260],[3,263,3,261],[3,264,3,262],[3,265,3,263],[3,266,3,264],[3,267,3,265],[3,268,3,266],[3,269,3,267],[3,270,3,268],[3,271,3,269],[3,272,3,270],[3,273,3,271],[3,274,3,272],[3,275,3,273],[3,276,3,274],[3,277,3,275],[2,277,3,276],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":14,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":9},{"stap_colors":[[62,0],[76,0],[97,0],[118,0],[139,0],[160,0],[181,11141120],[202,0],[237,0]],"num":4,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[4,29,-1,-1],[4,30,4,28],[4,31,4,29],[4,32,4,30],[4,33,4,31],[4,34,4,32],[4,35,4,33],[4,36,4,34],[4,37,4,35],[4,38,4,36],[4,39,4,37],[4,40,4,38],[4,41,4,39],[5,41,4,40],[4,43,5,42],[4,44,4,42],[4,45,4,43],[4,46,4,44],[4,47,4,45],[4,48,4,46],[4,49,4,47],[4,50,4,48],[4,51,4,49],[4,52,4,50],[4,53,4,51],[4,54,4,52],[4,55,4,53],[4,56,4,54],[4,57,4,55],[4,58,4,56],[4,59,4,57],[4,60,4,58],[4,61,4,59],[4,62,4,60],[-1,-1,4,61],[4,64,-1,-1],[4,65,4,63],[4,66,4,64],[4,67,4,65],[4,68,4,66],[4,69,4,67],[3,69,4,68],[4,71,3,70],[4,72,4,70],[4,73,4,71],[4,74,4,72],[4,75,4,73],[4,76,4,74],[-1,-1,4,75],[4,78,-1,-1],[4,79,4,77],[4,80,4,78],[4,81,4,79],[4,82,4,80],[4,83,4,81],[4,84,4,82],[4,85,4,83],[4,86,4,84],[4,87,4,85],[4,88,4,86],[4,89,4,87],[4,90,4,88],[3,90,4,89],[4,92,3,91],[4,93,4,91],[4,94,4,92],[4,95,4,93],[4,96,4,94],[4,97,4,95],[-1,-1,4,96],[4,99,-1,-1],[4,100,4,98],[4,101,4,99],[4,102,4,100],[4,103,4,101],[4,104,4,102],[5,104,4,103],[4,106,5,105],[4,107,4,105],[4,108,4,106],[4,109,4,107],[4,110,4,108],[4,111,4,109],[3,111,4,110],[4,113,3,112],[4,114,4,112],[4,115,4,113],[4,116,4,114],[4,117,4,115],[4,118,4,116],[-1,-1,4,117],[4,120,-1,-1],[4,121,4,119],[4,122,4,120],[4,123,4,121],[4,124,4,122],[4,125,4,123],[5,125,4,124],[4,127,5,126],[4,128,4,126],[4,129,4,127],[4,130,4,128],[4,131,4,129],[4,132,4,130],[4,133,4,131],[4,134,4,132],[4,135,4,133],[4,136,4,134],[4,137,4,135],[4,138,4,136],[4,139,4,137],[-1,-1,4,138],[4,141,-1,-1],[4,142,4,140],[4,143,4,141],[4,144,4,142],[4,145,4,143],[4,146,4,144],[5,146,4,145],[4,148,5,147],[4,149,4,147],[4,150,4,148],[4,151,4,149],[4,152,4,150],[4,153,4,151],[3,153,4,152],[4,155,3,154],[4,156,4,154],[4,157,4,155],[4,158,4,156],[4,159,4,157],[4,160,4,158],[-1,-1,4,159],[4,162,-1,-1],[4,163,4,161],[4,164,4,162],[4,165,4,163],[4,166,4,164],[4,167,4,165],[4,168,4,166],[4,169,4,167],[4,170,4,168],[4,171,4,169],[4,172,4,170],[4,173,4,171],[4,174,4,172],[3,174,4,173],[4,176,3,175],[4,177,4,175],[4,178,4,176],[4,179,4,177],[4,180,4,178],[4,181,4,179],[-1,-1,4,180],[4,183,-1,-1],[4,184,4,182],[4,185,4,183],[4,186,4,184],[4,187,4,185],[4,188,4,186],[5,188,4,187],[4,190,5,189],[4,191,4,189],[4,192,4,190],[4,193,4,191],[4,194,4,192],[4,195,4,193],[4,196,4,194],[4,197,4,195],[4,198,4,196],[4,199,4,197],[4,200,4,198],[4,201,4,199],[4,202,4,200],[-1,-1,4,201],[4,204,-1,-1],[4,205,4,203],[4,206,4,204],[4,207,4,205],[4,208,4,206],[4,209,4,207],[5,209,4,208],[4,211,5,210],[4,212,4,210],[4,213,4,211],[4,214,4,212],[4,215,4,213],[4,216,4,214],[4,217,4,215],[4,218,4,216],[4,219,4,217],[4,220,4,218],[4,221,4,219],[4,222,4,220],[4,223,4,221],[4,224,4,222],[4,225,4,223],[4,226,4,224],[4,227,4,225],[4,228,4,226],[4,229,4,227],[4,230,4,228],[5,230,4,229],[4,232,5,231],[4,233,4,231],[4,234,4,232],[4,235,4,233],[4,236,4,234],[4,237,4,235],[-1,-1,4,236],[4,239,-1,-1],[4,240,4,238],[4,241,4,239],[4,242,4,240],[4,243,4,241],[4,244,4,242],[4,245,4,243],[4,246,4,244],[4,247,4,245],[4,248,4,246],[4,249,4,247],[4,250,4,248],[4,251,4,249],[5,251,4,250],[4,253,-1,-1],[4,254,4,252],[4,255,4,253],[4,256,4,254],[4,257,4,255],[4,258,4,256],[3,258,4,257],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[5,16,4,17],[4,16,4,18],[4,17,4,19],[4,18,4,20],[4,19,4,21],[4,20,4,22],[4,21,4,23],[4,22,4,24],[4,23,4,25],[4,24,4,26],[4,25,4,27],[4,26,4,28],[4,27,4,29],[4,28,4,30],[4,29,4,31],[4,30,4,32],[4,31,3,32],[3,33,4,34],[4,33,4,35],[4,34,4,36],[4,35,4,37],[4,36,4,38],[4,37,4,39],[4,38,4,40],[4,39,4,41],[4,40,4,42],[4,41,4,43],[4,42,4,44],[4,43,4,45],[4,44,4,46],[4,45,4,47],[4,46,4,48],[4,47,4,49],[4,48,4,50],[4,49,4,51],[4,50,4,52],[4,51,4,53],[4,52,4,54],[4,53,4,55],[4,54,4,56],[4,55,4,57],[4,56,4,58],[4,57,4,59],[4,58,4,60],[4,59,4,61],[4,60,4,62],[4,61,4,63],[4,62,4,64],[4,63,4,65],[4,64,4,66],[4,65,4,67],[4,66,4,68],[4,67,4,69],[4,68,4,70],[4,69,4,71],[4,70,4,72],[4,71,4,73],[4,72,4,74],[4,73,4,75],[4,74,4,76],[4,75,4,77],[4,76,4,78],[4,77,4,79],[4,78,4,80],[4,79,4,81],[4,80,4,82],[4,81,4,83],[4,82,4,84],[4,83,4,85],[4,84,4,86],[4,85,4,87],[4,86,4,88],[4,87,5,88],[5,89,4,90],[4,89,4,91],[4,90,4,92],[4,91,4,93],[4,92,4,94],[4,93,4,95],[4,94,4,96],[4,95,4,97],[4,96,4,98],[4,97,4,99],[4,98,4,100],[4,99,4,101],[4,100,4,102],[4,101,4,103],[4,102,4,104],[4,103,4,105],[4,104,4,106],[4,105,4,107],[4,106,4,108],[4,107,4,109],[4,108,4,110],[4,109,4,111],[4,110,4,112],[4,111,4,113],[4,112,4,114],[4,113,4,115],[4,114,4,116],[4,115,4,117],[4,116,4,118],[4,117,4,119],[4,118,4,120],[4,119,4,121],[4,120,4,122],[4,121,4,123],[4,122,4,124],[4,123,4,125],[4,124,4,126],[4,125,4,127],[4,126,3,127],[3,128,4,129],[4,128,4,130],[4,129,4,131],[4,130,4,132],[4,131,4,133],[4,132,4,134],[4,133,4,135],[4,134,4,136],[4,135,4,137],[4,136,4,138],[4,137,4,139],[4,138,4,140],[4,139,4,141],[4,140,4,142],[4,141,4,143],[4,142,4,144],[4,143,4,145],[4,144,4,146],[4,145,4,147],[4,146,4,148],[4,147,4,149],[4,148,4,150],[4,149,4,151],[4,150,4,152],[4,151,4,153],[4,152,4,154],[4,153,4,155],[4,154,4,156],[4,155,4,157],[4,156,4,158],[4,157,4,159],[4,158,4,160],[4,159,4,161],[4,160,4,162],[4,161,4,163],[4,162,4,164],[4,163,4,165],[4,164,4,166],[4,165,4,167],[4,166,4,168],[4,167,4,169],[4,168,4,170],[4,169,4,171],[4,170,4,172],[4,171,5,172],[5,173,4,174],[4,173,4,175],[4,174,4,176],[4,175,4,177],[4,176,4,178],[4,177,4,179],[4,178,4,180],[4,179,4,181],[4,180,4,182],[4,181,4,183],[4,182,4,184],[4,183,4,185],[4,184,4,186],[4,185,4,187],[4,186,4,188],[4,187,4,189],[4,188,4,190],[4,189,4,191],[4,190,4,192],[4,191,4,193],[4,192,4,194],[4,193,4,195],[4,194,4,196],[4,195,4,197],[4,196,4,198],[4,197,4,199],[4,198,4,200],[4,199,4,201],[4,200,4,202],[4,201,4,203],[4,202,4,204],[4,203,4,205],[4,204,4,206],[4,205,4,207],[4,206,4,208],[4,207,4,209],[4,208,4,210],[4,209,4,211],[4,210,3,211],[3,212,4,213],[4,212,4,214],[4,213,4,215],[4,214,4,216],[4,215,4,217],[4,216,4,218],[4,217,4,219],[4,218,4,220],[4,219,4,221],[4,220,4,222],[4,221,4,223],[4,222,4,224],[4,223,4,225],[4,224,4,226],[4,225,4,227],[4,226,4,228],[4,227,4,229],[4,228,4,230],[4,229,4,231],[4,230,4,232],[4,231,4,233],[4,232,4,234],[4,233,4,235],[4,234,4,236],[4,235,4,237],[4,236,4,238],[4,237,4,239],[4,238,4,240],[4,239,4,241],[4,240,4,242],[4,241,4,243],[4,242,4,244],[4,243,4,245],[4,244,4,246],[4,245,4,247],[4,246,4,248],[4,247,4,249],[4,248,4,250],[4,249,4,251],[4,250,4,252],[4,251,4,253],[4,252,4,254],[4,253,4,255],[4,254,4,256],[4,255,4,257],[4,256,4,258],[4,257,4,259],[4,258,4,260],[4,259,4,261],[4,260,4,262],[4,261,4,263],[4,262,4,264],[4,263,4,265],[4,264,4,266],[4,265,4,267],[4,266,5,267],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":13,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":9},{"stap_colors":[[49,0],[84,0],[224,0],[252,0]],"num":5,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[6,28,5,29],[5,28,5,30],[5,29,5,31],[5,30,5,32],[5,31,5,33],[5,32,5,34],[5,33,10,34],[10,35,5,36],[5,35,5,37],[5,36,5,38],[5,37,5,39],[5,38,5,40],[5,39,5,41],[5,40,4,41],[4,42,5,43],[5,42,5,44],[5,43,5,45],[5,44,5,46],[5,45,5,47],[5,46,5,48],[5,47,-1,-1],[-1,-1,5,50],[5,49,5,51],[5,50,5,52],[5,51,5,53],[5,52,5,54],[5,53,5,55],[5,54,5,56],[5,55,5,57],[5,56,5,58],[5,57,5,59],[5,58,5,60],[5,59,5,61],[5,60,5,62],[5,61,5,63],[5,62,5,64],[5,63,5,65],[5,64,5,66],[5,65,5,67],[5,66,5,68],[5,67,5,69],[5,68,6,69],[6,70,5,71],[5,70,5,72],[5,71,5,73],[5,72,5,74],[5,73,5,75],[5,74,5,76],[5,75,10,76],[10,77,5,78],[5,77,5,79],[5,78,5,80],[5,79,5,81],[5,80,5,82],[5,81,5,83],[5,82,-1,-1],[-1,-1,5,85],[5,84,5,86],[5,85,5,87],[5,86,5,88],[5,87,5,89],[5,88,5,90],[5,89,5,91],[5,90,5,92],[5,91,5,93],[5,92,5,94],[5,93,5,95],[5,94,5,96],[5,95,5,97],[5,96,10,97],[10,98,5,99],[5,98,5,100],[5,99,5,101],[5,100,5,102],[5,101,5,103],[5,102,5,104],[5,103,4,104],[4,105,5,106],[5,105,5,107],[5,106,5,108],[5,107,5,109],[5,108,5,110],[5,109,5,111],[5,110,6,111],[6,112,5,113],[5,112,5,114],[5,113,5,115],[5,114,5,116],[5,115,5,117],[5,116,5,118],[5,117,5,119],[5,118,5,120],[5,119,5,121],[5,120,5,122],[5,121,5,123],[5,122,5,124],[5,123,5,125],[5,124,4,125],[4,126,5,127],[5,126,5,128],[5,127,5,129],[5,128,5,130],[5,129,5,131],[5,130,5,132],[5,131,5,133],[5,132,5,134],[5,133,5,135],[5,134,5,136],[5,135,5,137],[5,136,5,138],[5,137,5,139],[5,138,-1,-1],[10,140,5,141],[5,140,5,142],[5,141,5,143],[5,142,5,144],[5,143,5,145],[5,144,5,146],[5,145,4,146],[4,147,5,148],[5,147,5,149],[5,148,5,150],[5,149,5,151],[5,150,5,152],[5,151,5,153],[5,152,5,154],[5,153,5,155],[5,154,5,156],[5,155,5,157],[5,156,5,158],[5,157,5,159],[5,158,5,160],[5,159,10,160],[10,161,5,162],[5,161,5,163],[5,162,5,164],[5,163,5,165],[5,164,5,166],[5,165,5,167],[5,166,5,168],[5,167,5,169],[5,168,5,170],[5,169,5,171],[5,170,5,172],[5,171,5,173],[5,172,5,174],[5,173,6,174],[6,175,5,176],[5,175,5,177],[5,176,5,178],[5,177,5,179],[5,178,5,180],[5,179,5,181],[5,180,10,181],[10,182,5,183],[5,182,5,184],[5,183,5,185],[5,184,5,186],[5,185,5,187],[5,186,5,188],[5,187,4,188],[4,189,5,190],[5,189,5,191],[5,190,5,192],[5,191,5,193],[5,192,5,194],[5,193,5,195],[5,194,6,195],[6,196,5,197],[5,196,5,198],[5,197,5,199],[5,198,5,200],[5,199,5,201],[5,200,5,202],[5,201,10,202],[10,203,5,204],[5,203,5,205],[5,204,5,206],[5,205,5,207],[5,206,5,208],[5,207,5,209],[5,208,4,209],[4,210,5,211],[5,210,5,212],[5,211,5,213],[5,212,5,214],[5,213,5,215],[5,214,5,216],[5,215,5,217],[5,216,5,218],[5,217,5,219],[5,218,5,220],[5,219,5,221],[5,220,5,222],[5,221,5,223],[5,222,-1,-1],[-1,-1,5,225],[5,224,5,226],[5,225,5,227],[5,226,5,228],[5,227,5,229],[5,228,5,230],[5,229,4,230],[4,231,5,232],[5,231,5,233],[5,232,5,234],[5,233,5,235],[5,234,5,236],[5,235,5,237],[5,236,6,237],[6,238,5,239],[5,238,5,240],[5,239,5,241],[5,240,5,242],[5,241,5,243],[5,242,5,244],[5,243,10,244],[10,245,5,246],[5,245,5,247],[5,246,5,248],[5,247,5,249],[5,248,5,250],[5,249,5,251],[5,250,4,251],[-1,-1,5,253],[5,252,5,254],[5,253,5,255],[5,254,5,256],[5,255,5,257],[5,256,5,258],[5,257,6,258],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[5,17,4,16],[5,18,5,16],[5,19,5,17],[5,20,5,18],[5,21,5,19],[5,22,5,20],[5,23,5,21],[5,24,5,22],[5,25,5,23],[5,26,5,24],[5,27,5,25],[5,28,5,26],[5,29,5,27],[5,30,5,28],[5,31,5,29],[5,32,5,30],[5,33,5,31],[5,34,5,32],[5,35,5,33],[5,36,5,34],[5,37,5,35],[5,38,5,36],[5,39,5,37],[5,40,5,38],[5,41,5,39],[5,42,5,40],[5,43,5,41],[5,44,5,42],[5,45,5,43],[5,46,5,44],[5,47,5,45],[5,48,5,46],[5,49,5,47],[5,50,5,48],[5,51,5,49],[5,52,5,50],[5,53,5,51],[6,53,5,52],[5,55,6,54],[5,56,5,54],[5,57,5,55],[5,58,5,56],[5,59,5,57],[5,60,5,58],[5,61,5,59],[5,62,5,60],[5,63,5,61],[5,64,5,62],[5,65,5,63],[5,66,5,64],[5,67,5,65],[5,68,5,66],[5,69,5,67],[5,70,5,68],[5,71,5,69],[5,72,5,70],[5,73,5,71],[5,74,5,72],[5,75,5,73],[5,76,5,74],[5,77,5,75],[5,78,5,76],[5,79,5,77],[5,80,5,78],[5,81,5,79],[5,82,5,80],[5,83,5,81],[5,84,5,82],[5,85,5,83],[5,86,5,84],[5,87,5,85],[5,88,5,86],[4,88,5,87],[5,90,4,89],[5,91,5,89],[5,92,5,90],[5,93,5,91],[5,94,5,92],[5,95,5,93],[5,96,5,94],[5,97,5,95],[5,98,5,96],[5,99,5,97],[5,100,5,98],[5,101,5,99],[5,102,5,100],[5,103,5,101],[5,104,5,102],[5,105,5,103],[5,106,5,104],[5,107,5,105],[5,108,5,106],[5,109,5,107],[5,110,5,108],[5,111,5,109],[5,112,5,110],[5,113,5,111],[5,114,5,112],[5,115,5,113],[5,116,5,114],[5,117,5,115],[5,118,5,116],[5,119,5,117],[5,120,5,118],[5,121,5,119],[5,122,5,120],[5,123,5,121],[5,124,5,122],[5,125,5,123],[5,126,5,124],[5,127,5,125],[5,128,5,126],[5,129,5,127],[5,130,5,128],[5,131,5,129],[5,132,5,130],[5,133,5,131],[5,134,5,132],[5,135,5,133],[5,136,5,134],[5,137,5,135],[6,137,5,136],[5,139,6,138],[5,140,5,138],[5,141,5,139],[5,142,5,140],[5,143,5,141],[5,144,5,142],[5,145,5,143],[5,146,5,144],[5,147,5,145],[5,148,5,146],[5,149,5,147],[5,150,5,148],[5,151,5,149],[5,152,5,150],[5,153,5,151],[5,154,5,152],[5,155,5,153],[5,156,5,154],[5,157,5,155],[5,158,5,156],[5,159,5,157],[5,160,5,158],[5,161,5,159],[5,162,5,160],[5,163,5,161],[5,164,5,162],[5,165,5,163],[5,166,5,164],[5,167,5,165],[5,168,5,166],[5,169,5,167],[5,170,5,168],[5,171,5,169],[5,172,5,170],[4,172,5,171],[5,174,4,173],[5,175,5,173],[5,176,5,174],[5,177,5,175],[5,178,5,176],[5,179,5,177],[5,180,5,178],[5,181,5,179],[5,182,5,180],[5,183,5,181],[5,184,5,182],[5,185,5,183],[5,186,5,184],[5,187,5,185],[5,188,5,186],[5,189,5,187],[5,190,5,188],[5,191,5,189],[5,192,5,190],[5,193,5,191],[5,194,5,192],[5,195,5,193],[5,196,5,194],[5,197,5,195],[5,198,5,196],[5,199,5,197],[5,200,5,198],[5,201,5,199],[5,202,5,200],[5,203,5,201],[5,204,5,202],[5,205,5,203],[5,206,5,204],[5,207,5,205],[5,208,5,206],[5,209,5,207],[5,210,5,208],[5,211,5,209],[6,211,5,210],[5,213,6,212],[5,214,5,212],[5,215,5,213],[5,216,5,214],[5,217,5,215],[5,218,5,216],[5,219,5,217],[5,220,5,218],[5,221,5,219],[5,222,5,220],[5,223,5,221],[5,224,5,222],[5,225,5,223],[5,226,5,224],[5,227,5,225],[5,228,5,226],[5,229,5,227],[5,230,5,228],[5,231,5,229],[5,232,5,230],[5,233,5,231],[5,234,5,232],[5,235,5,233],[5,236,5,234],[5,237,5,235],[5,238,5,236],[5,239,5,237],[5,240,5,238],[5,241,5,239],[5,242,5,240],[5,243,5,241],[5,244,5,242],[5,245,5,243],[5,246,5,244],[5,247,5,245],[5,248,5,246],[5,249,5,247],[5,250,5,248],[5,251,5,249],[5,252,5,250],[5,253,5,251],[5,254,5,252],[5,255,5,253],[5,256,5,254],[5,257,5,255],[5,258,5,256],[5,259,5,257],[5,260,5,258],[5,261,5,259],[5,262,5,260],[5,263,5,261],[5,264,5,262],[5,265,5,263],[5,266,5,264],[5,267,5,265],[4,267,5,266],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":12,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":9},{"stap_colors":[[46,0],[76,0],[104,0],[153,0]],"num":6,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[6,29,5,28],[6,30,6,28],[6,31,6,29],[6,32,6,30],[6,33,6,31],[6,34,6,32],[6,35,6,33],[6,36,6,34],[6,37,6,35],[6,38,6,36],[6,39,6,37],[6,40,6,38],[6,41,6,39],[7,41,6,40],[6,43,7,42],[6,44,6,42],[6,45,6,43],[6,46,6,44],[-1,-1,6,45],[6,48,-1,-1],[6,49,6,47],[6,50,6,48],[6,51,6,49],[6,52,6,50],[6,53,6,51],[6,54,6,52],[6,55,6,53],[6,56,6,54],[6,57,6,55],[6,58,6,56],[6,59,6,57],[6,60,6,58],[6,61,6,59],[6,62,6,60],[7,62,6,61],[6,64,7,63],[6,65,6,63],[6,66,6,64],[6,67,6,65],[6,68,6,66],[6,69,6,67],[5,69,6,68],[6,71,5,70],[6,72,6,70],[6,73,6,71],[6,74,6,72],[6,75,6,73],[6,76,6,74],[-1,-1,6,75],[6,78,-1,-1],[6,79,6,77],[6,80,6,78],[6,81,6,79],[6,82,6,80],[6,83,6,81],[7,83,6,82],[6,85,7,84],[6,86,6,84],[6,87,6,85],[6,88,6,86],[6,89,6,87],[6,90,6,88],[6,91,6,89],[6,92,6,90],[6,93,6,91],[6,94,6,92],[6,95,6,93],[6,96,6,94],[6,97,6,95],[6,98,6,96],[6,99,6,97],[6,100,6,98],[6,101,6,99],[6,102,6,100],[6,103,6,101],[6,104,6,102],[-1,-1,6,103],[6,106,-1,-1],[6,107,6,105],[6,108,6,106],[6,109,6,107],[6,110,6,108],[6,111,6,109],[5,111,6,110],[6,113,5,112],[6,114,6,112],[6,115,6,113],[6,116,6,114],[6,117,6,115],[6,118,6,116],[6,119,6,117],[6,120,6,118],[6,121,6,119],[6,122,6,120],[6,123,6,121],[6,124,6,122],[6,125,6,123],[7,125,6,124],[6,127,7,126],[6,128,6,126],[6,129,6,127],[6,130,6,128],[6,131,6,129],[6,132,6,130],[6,133,6,131],[6,134,6,132],[6,135,6,133],[6,136,6,134],[6,137,6,135],[6,138,6,136],[6,139,6,137],[6,140,6,138],[6,141,6,139],[6,142,6,140],[6,143,6,141],[6,144,6,142],[6,145,6,143],[6,146,6,144],[7,146,6,145],[6,148,7,147],[6,149,6,147],[6,150,6,148],[6,151,6,149],[6,152,6,150],[6,153,6,151],[-1,-1,6,152],[6,155,-1,-1],[6,156,6,154],[6,157,6,155],[6,158,6,156],[6,159,6,157],[6,160,6,158],[6,161,6,159],[6,162,6,160],[6,163,6,161],[6,164,6,162],[6,165,6,163],[6,166,6,164],[6,167,6,165],[6,168,6,166],[6,169,6,167],[6,170,6,168],[6,171,6,169],[6,172,6,170],[6,173,6,171],[6,174,6,172],[5,174,6,173],[6,176,5,175],[6,177,6,175],[6,178,6,176],[6,179,6,177],[6,180,6,178],[6,181,6,179],[6,182,6,180],[6,183,6,181],[6,184,6,182],[6,185,6,183],[6,186,6,184],[6,187,6,185],[6,188,6,186],[7,188,6,187],[6,190,7,189],[6,191,6,189],[6,192,6,190],[6,193,6,191],[6,194,6,192],[6,195,6,193],[5,195,6,194],[6,197,5,196],[6,198,6,196],[6,199,6,197],[6,200,6,198],[6,201,6,199],[6,202,6,200],[6,203,6,201],[6,204,6,202],[6,205,6,203],[6,206,6,204],[6,207,6,205],[6,208,6,206],[6,209,6,207],[7,209,6,208],[6,211,7,210],[6,212,6,210],[6,213,6,211],[6,214,6,212],[6,215,6,213],[6,216,6,214],[6,217,6,215],[6,218,6,216],[6,219,6,217],[6,220,6,218],[6,221,6,219],[6,222,6,220],[6,223,6,221],[6,224,6,222],[6,225,6,223],[6,226,6,224],[6,227,6,225],[6,228,6,226],[6,229,6,227],[6,230,6,228],[7,230,6,229],[6,232,7,231],[6,233,6,231],[6,234,6,232],[6,235,6,233],[6,236,6,234],[6,237,6,235],[5,237,6,236],[6,239,5,238],[6,240,6,238],[6,241,6,239],[6,242,6,240],[6,243,6,241],[6,244,6,242],[6,245,6,243],[6,246,6,244],[6,247,6,245],[6,248,6,246],[6,249,6,247],[6,250,6,248],[6,251,6,249],[7,251,6,250],[6,253,7,252],[6,254,6,252],[6,255,6,253],[6,256,6,254],[6,257,6,255],[6,258,6,256],[5,258,6,257],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[7,5,6,6],[6,5,6,7],[6,6,6,8],[6,7,6,9],[6,8,6,10],[6,9,6,11],[6,10,6,12],[6,11,6,13],[6,12,6,14],[6,13,6,15],[6,14,6,16],[6,15,6,17],[6,16,6,18],[6,17,6,19],[6,18,6,20],[6,19,6,21],[6,20,6,22],[6,21,6,23],[6,22,6,24],[6,23,6,25],[6,24,6,26],[6,25,6,27],[6,26,6,28],[6,27,6,29],[6,28,6,30],[6,29,6,31],[6,30,6,32],[6,31,6,33],[6,32,6,34],[6,33,6,35],[6,34,6,36],[6,35,6,37],[6,36,6,38],[6,37,6,39],[6,38,6,40],[6,39,6,41],[6,40,6,42],[6,41,6,43],[6,42,6,44],[6,43,6,45],[6,44,6,46],[6,45,6,47],[6,46,6,48],[6,47,6,49],[6,48,6,50],[6,49,6,51],[6,50,6,52],[6,51,6,53],[6,52,5,53],[5,54,6,55],[6,54,6,56],[6,55,6,57],[6,56,6,58],[6,57,6,59],[6,58,6,60],[6,59,6,61],[6,60,6,62],[6,61,6,63],[6,62,6,64],[6,63,6,65],[6,64,6,66],[6,65,6,67],[6,66,6,68],[6,67,6,69],[6,68,6,70],[6,69,6,71],[6,70,6,72],[6,71,6,73],[6,72,6,74],[6,73,6,75],[6,74,6,76],[6,75,6,77],[6,76,6,78],[6,77,6,79],[6,78,6,80],[6,79,6,81],[6,80,6,82],[6,81,6,83],[6,82,6,84],[6,83,6,85],[6,84,6,86],[6,85,6,87],[6,86,6,88],[6,87,6,89],[6,88,6,90],[6,89,6,91],[6,90,6,92],[6,91,6,93],[6,92,6,94],[6,93,6,95],[6,94,6,96],[6,95,6,97],[6,96,6,98],[6,97,6,99],[6,98,7,99],[7,100,6,101],[6,100,6,102],[6,101,6,103],[6,102,6,104],[6,103,6,105],[6,104,6,106],[6,105,6,107],[6,106,6,108],[6,107,6,109],[6,108,6,110],[6,109,6,111],[6,110,6,112],[6,111,6,113],[6,112,6,114],[6,113,6,115],[6,114,6,116],[6,115,6,117],[6,116,6,118],[6,117,6,119],[6,118,6,120],[6,119,6,121],[6,120,6,122],[6,121,6,123],[6,122,6,124],[6,123,6,125],[6,124,6,126],[6,125,6,127],[6,126,6,128],[6,127,6,129],[6,128,6,130],[6,129,6,131],[6,130,6,132],[6,131,6,133],[6,132,6,134],[6,133,6,135],[6,134,6,136],[6,135,6,137],[6,136,5,137],[5,138,6,139],[6,138,6,140],[6,139,6,141],[6,140,6,142],[6,141,6,143],[6,142,6,144],[6,143,6,145],[6,144,6,146],[6,145,6,147],[6,146,6,148],[6,147,6,149],[6,148,6,150],[6,149,6,151],[6,150,6,152],[6,151,6,153],[6,152,6,154],[6,153,6,155],[6,154,6,156],[6,155,6,157],[6,156,6,158],[6,157,6,159],[6,158,6,160],[6,159,6,161],[6,160,6,162],[6,161,7,162],[7,163,6,164],[6,163,6,165],[6,164,6,166],[6,165,6,167],[6,166,6,168],[6,167,6,169],[6,168,6,170],[6,169,6,171],[6,170,6,172],[6,171,6,173],[6,172,6,174],[6,173,6,175],[6,174,6,176],[6,175,6,177],[6,176,6,178],[6,177,6,179],[6,178,6,180],[6,179,6,181],[6,180,6,182],[6,181,6,183],[6,182,6,184],[6,183,6,185],[6,184,6,186],[6,185,6,187],[6,186,6,188],[6,187,6,189],[6,188,6,190],[6,189,6,191],[6,190,6,192],[6,191,6,193],[6,192,6,194],[6,193,6,195],[6,194,6,196],[6,195,6,197],[6,196,6,198],[6,197,6,199],[6,198,6,200],[6,199,6,201],[6,200,6,202],[6,201,6,203],[6,202,6,204],[6,203,6,205],[6,204,6,206],[6,205,6,207],[6,206,6,208],[6,207,6,209],[6,208,6,210],[6,209,6,211],[6,210,5,211],[5,212,6,213],[6,212,6,214],[6,213,6,215],[6,214,6,216],[6,215,6,217],[6,216,6,218],[6,217,6,219],[6,218,6,220],[6,219,6,221],[6,220,6,222],[6,221,6,223],[6,222,6,224],[6,223,6,225],[6,224,6,226],[6,225,6,227],[6,226,6,228],[6,227,6,229],[6,228,6,230],[6,229,6,231],[6,230,6,232],[6,231,6,233],[6,232,6,234],[6,233,6,235],[6,234,6,236],[6,235,6,237],[6,236,6,238],[6,237,6,239],[6,238,6,240],[6,239,6,241],[6,240,6,242],[6,241,6,243],[6,242,6,244],[6,243,6,245],[6,244,6,246],[6,245,6,247],[6,246,6,248],[6,247,6,249],[6,248,6,250],[6,249,6,251],[6,250,6,252],[6,251,6,253],[6,252,6,254],[6,253,6,255],[6,254,6,256],[6,255,6,257],[6,256,6,258],[6,257,6,259],[6,258,6,260],[6,259,6,261],[6,260,6,262],[6,261,6,263],[6,262,6,264],[6,263,6,265],[6,264,6,266],[6,265,6,267],[6,266,6,268],[6,267,6,269],[6,268,6,270],[6,269,6,271],[6,270,6,272],[6,271,6,273],[6,272,6,274],[6,273,6,275],[6,274,6,276],[6,275,6,277],[6,276,7,277],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":11,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":9},{"stap_colors":[[21,0],[70,0],[112,0],[140,0],[182,0],[203,0],[224,0]],"num":7,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,7,22],[7,21,7,23],[7,22,7,24],[7,23,7,25],[7,24,7,26],[7,25,7,27],[7,26,7,28],[7,27,7,29],[7,28,7,30],[7,29,7,31],[7,30,7,32],[7,31,7,33],[7,32,7,34],[7,33,8,34],[8,35,7,36],[7,35,7,37],[7,36,7,38],[7,37,7,39],[7,38,7,40],[7,39,7,41],[7,40,6,41],[6,42,7,43],[7,42,7,44],[7,43,7,45],[7,44,7,46],[7,45,7,47],[7,46,7,48],[7,47,7,49],[7,48,7,50],[7,49,7,51],[7,50,7,52],[7,51,7,53],[7,52,7,54],[7,53,7,55],[7,54,7,56],[7,55,7,57],[7,56,7,58],[7,57,7,59],[7,58,7,60],[7,59,7,61],[7,60,7,62],[7,61,6,62],[6,63,7,64],[7,63,7,65],[7,64,7,66],[7,65,7,67],[7,66,7,68],[7,67,7,69],[7,68,-1,-1],[-1,-1,7,71],[7,70,7,72],[7,71,7,73],[7,72,7,74],[7,73,7,75],[7,74,7,76],[7,75,8,76],[8,77,7,78],[7,77,7,79],[7,78,7,80],[7,79,7,81],[7,80,7,82],[7,81,7,83],[7,82,6,83],[6,84,7,85],[7,84,7,86],[7,85,7,87],[7,86,7,88],[7,87,7,89],[7,88,7,90],[7,89,7,91],[7,90,7,92],[7,91,7,93],[7,92,7,94],[7,93,7,95],[7,94,7,96],[7,95,7,97],[7,96,8,97],[8,98,7,99],[7,98,7,100],[7,99,7,101],[7,100,7,102],[7,101,7,103],[7,102,7,104],[7,103,7,105],[7,104,7,106],[7,105,7,107],[7,106,7,108],[7,107,7,109],[7,108,7,110],[7,109,7,111],[7,110,-1,-1],[-1,-1,7,113],[7,112,7,114],[7,113,7,115],[7,114,7,116],[7,115,7,117],[7,116,7,118],[7,117,8,118],[8,119,7,120],[7,119,7,121],[7,120,7,122],[7,121,7,123],[7,122,7,124],[7,123,7,125],[7,124,6,125],[6,126,7,127],[7,126,7,128],[7,127,7,129],[7,128,7,130],[7,129,7,131],[7,130,7,132],[7,131,7,133],[7,132,7,134],[7,133,7,135],[7,134,7,136],[7,135,7,137],[7,136,7,138],[7,137,7,139],[7,138,-1,-1],[-1,-1,7,141],[7,140,7,142],[7,141,7,143],[7,142,7,144],[7,143,7,145],[7,144,7,146],[7,145,6,146],[6,147,7,148],[7,147,7,149],[7,148,7,150],[7,149,7,151],[7,150,7,152],[7,151,7,153],[7,152,7,154],[7,153,7,155],[7,154,7,156],[7,155,7,157],[7,156,7,158],[7,157,7,159],[7,158,7,160],[7,159,8,160],[8,161,7,162],[7,161,7,163],[7,162,7,164],[7,163,7,165],[7,164,7,166],[7,165,7,167],[7,166,7,168],[7,167,7,169],[7,168,7,170],[7,169,7,171],[7,170,7,172],[7,171,7,173],[7,172,7,174],[7,173,7,175],[7,174,7,176],[7,175,7,177],[7,176,7,178],[7,177,7,179],[7,178,7,180],[7,179,7,181],[7,180,-1,-1],[-1,-1,7,183],[7,182,7,184],[7,183,7,185],[7,184,7,186],[7,185,7,187],[7,186,7,188],[7,187,6,188],[6,189,7,190],[7,189,7,191],[7,190,7,192],[7,191,7,193],[7,192,7,194],[7,193,7,195],[7,194,7,196],[7,195,7,197],[7,196,7,198],[7,197,7,199],[7,198,7,200],[7,199,7,201],[7,200,7,202],[7,201,-1,-1],[-1,-1,7,204],[7,203,7,205],[7,204,7,206],[7,205,7,207],[7,206,7,208],[7,207,7,209],[7,208,6,209],[6,210,7,211],[7,210,7,212],[7,211,7,213],[7,212,7,214],[7,213,7,215],[7,214,7,216],[7,215,7,217],[7,216,7,218],[7,217,7,219],[7,218,7,220],[7,219,7,221],[7,220,7,222],[7,221,7,223],[7,222,-1,-1],[-1,-1,7,225],[7,224,7,226],[7,225,7,227],[7,226,7,228],[7,227,7,229],[7,228,7,230],[7,229,6,230],[6,231,7,232],[7,231,7,233],[7,232,7,234],[7,233,7,235],[7,234,7,236],[7,235,7,237],[7,236,7,238],[7,237,7,239],[7,238,7,240],[7,239,7,241],[7,240,7,242],[7,241,7,243],[7,242,7,244],[7,243,8,244],[8,245,7,246],[7,245,7,247],[7,246,7,248],[7,247,7,249],[7,248,7,250],[7,249,7,251],[7,250,6,251],[6,252,7,253],[7,252,7,254],[7,253,7,255],[7,254,7,256],[7,255,7,257],[7,256,7,258],[7,257,7,259],[7,258,7,260],[7,259,7,261],[7,260,7,262],[7,261,7,263],[7,262,7,264],[7,263,7,265],[7,264,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[7,6,6,5],[7,7,7,5],[7,8,7,6],[7,9,7,7],[7,10,7,8],[7,11,7,9],[7,12,7,10],[7,13,7,11],[7,14,7,12],[7,15,7,13],[7,16,7,14],[7,17,7,15],[7,18,7,16],[7,19,7,17],[7,20,7,18],[7,21,7,19],[7,22,7,20],[7,23,7,21],[7,24,7,22],[7,25,7,23],[7,26,7,24],[7,27,7,25],[7,28,7,26],[7,29,7,27],[7,30,7,28],[7,31,7,29],[7,32,7,30],[7,33,7,31],[7,34,7,32],[7,35,7,33],[7,36,7,34],[7,37,7,35],[7,38,7,36],[7,39,7,37],[7,40,7,38],[7,41,7,39],[7,42,7,40],[7,43,7,41],[7,44,7,42],[7,45,7,43],[7,46,7,44],[7,47,7,45],[7,48,7,46],[7,49,7,47],[7,50,7,48],[8,50,7,49],[7,52,8,51],[7,53,7,51],[7,54,7,52],[7,55,7,53],[7,56,7,54],[7,57,7,55],[7,58,7,56],[7,59,7,57],[7,60,7,58],[7,61,7,59],[7,62,7,60],[7,63,7,61],[7,64,7,62],[7,65,7,63],[7,66,7,64],[7,67,7,65],[7,68,7,66],[7,69,7,67],[7,70,7,68],[7,71,7,69],[7,72,7,70],[7,73,7,71],[7,74,7,72],[7,75,7,73],[7,76,7,74],[7,77,7,75],[7,78,7,76],[7,79,7,77],[7,80,7,78],[7,81,7,79],[7,82,7,80],[7,83,7,81],[7,84,7,82],[7,85,7,83],[7,86,7,84],[7,87,7,85],[7,88,7,86],[7,89,7,87],[7,90,7,88],[7,91,7,89],[7,92,7,90],[7,93,7,91],[7,94,7,92],[7,95,7,93],[7,96,7,94],[7,97,7,95],[7,98,7,96],[7,99,7,97],[6,99,7,98],[7,101,6,100],[7,102,7,100],[7,103,7,101],[7,104,7,102],[7,105,7,103],[7,106,7,104],[7,107,7,105],[7,108,7,106],[7,109,7,107],[7,110,7,108],[7,111,7,109],[7,112,7,110],[7,113,7,111],[7,114,7,112],[7,115,7,113],[7,116,7,114],[7,117,7,115],[7,118,7,116],[7,119,7,117],[7,120,7,118],[7,121,7,119],[7,122,7,120],[7,123,7,121],[7,124,7,122],[7,125,7,123],[7,126,7,124],[7,127,7,125],[7,128,7,126],[7,129,7,127],[7,130,7,128],[7,131,7,129],[7,132,7,130],[7,133,7,131],[7,134,7,132],[8,134,7,133],[7,136,8,135],[7,137,7,135],[7,138,7,136],[7,139,7,137],[7,140,7,138],[7,141,7,139],[7,142,7,140],[7,143,7,141],[7,144,7,142],[7,145,7,143],[7,146,7,144],[7,147,7,145],[7,148,7,146],[7,149,7,147],[7,150,7,148],[7,151,7,149],[7,152,7,150],[7,153,7,151],[7,154,7,152],[7,155,7,153],[7,156,7,154],[7,157,7,155],[7,158,7,156],[7,159,7,157],[7,160,7,158],[7,161,7,159],[7,162,7,160],[6,162,7,161],[7,164,6,163],[7,165,7,163],[7,166,7,164],[7,167,7,165],[7,168,7,166],[7,169,7,167],[7,170,7,168],[7,171,7,169],[7,172,7,170],[7,173,7,171],[7,174,7,172],[7,175,7,173],[7,176,7,174],[7,177,7,175],[7,178,7,176],[7,179,7,177],[7,180,7,178],[7,181,7,179],[7,182,7,180],[7,183,7,181],[7,184,7,182],[7,185,7,183],[7,186,7,184],[7,187,7,185],[7,188,7,186],[7,189,7,187],[7,190,7,188],[7,191,7,189],[7,192,7,190],[7,193,7,191],[7,194,7,192],[7,195,7,193],[7,196,7,194],[7,197,7,195],[7,198,7,196],[7,199,7,197],[7,200,7,198],[7,201,7,199],[7,202,7,200],[7,203,7,201],[7,204,7,202],[7,205,7,203],[7,206,7,204],[7,207,7,205],[8,207,7,206],[7,209,8,208],[7,210,7,208],[7,211,7,209],[7,212,7,210],[7,213,7,211],[7,214,7,212],[7,215,7,213],[7,216,7,214],[7,217,7,215],[7,218,7,216],[7,219,7,217],[7,220,7,218],[7,221,7,219],[7,222,7,220],[7,223,7,221],[7,224,7,222],[7,225,7,223],[7,226,7,224],[7,227,7,225],[7,228,7,226],[7,229,7,227],[7,230,7,228],[7,231,7,229],[7,232,7,230],[7,233,7,231],[7,234,7,232],[7,235,7,233],[7,236,7,234],[7,237,7,235],[7,238,7,236],[7,239,7,237],[7,240,7,238],[7,241,7,239],[7,242,7,240],[7,243,7,241],[7,244,7,242],[7,245,7,243],[7,246,7,244],[7,247,7,245],[7,248,7,246],[7,249,7,247],[7,250,7,248],[7,251,7,249],[7,252,7,250],[7,253,7,251],[7,254,7,252],[7,255,7,253],[7,256,7,254],[7,257,7,255],[7,258,7,256],[7,259,7,257],[7,260,7,258],[7,261,7,259],[7,262,7,260],[7,263,7,261],[7,264,7,262],[7,265,7,263],[7,266,7,264],[7,267,7,265],[7,268,7,266],[7,269,7,267],[7,270,7,268],[7,271,7,269],[7,272,7,270],[7,273,7,271],[7,274,7,272],[7,275,7,273],[7,276,7,274],[7,277,7,275],[6,277,7,276],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":10,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":9},{"stap_colors":[[41,0],[62,255],[90,0],[125,11141120],[181,0],[209,16225054],[230,0],[251,0]],"num":8,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[8,29,9,28],[8,30,8,28],[8,31,8,29],[8,32,8,30],[8,33,8,31],[8,34,8,32],[7,34,8,33],[8,36,7,35],[8,37,8,35],[8,38,8,36],[8,39,8,37],[8,40,8,38],[8,41,8,39],[-1,-1,8,40],[8,43,-1,-1],[8,44,8,42],[8,45,8,43],[8,46,8,44],[8,47,8,45],[8,48,8,46],[9,48,8,47],[8,50,9,49],[8,51,8,49],[8,52,8,50],[8,53,8,51],[8,54,8,52],[8,55,8,53],[8,56,8,54],[8,57,8,55],[8,58,8,56],[8,59,8,57],[8,60,8,58],[8,61,8,59],[8,62,8,60],[-1,-1,8,61],[8,64,-1,-1],[8,65,8,63],[8,66,8,64],[8,67,8,65],[8,68,8,66],[8,69,8,67],[9,69,8,68],[8,71,9,70],[8,72,8,70],[8,73,8,71],[8,74,8,72],[8,75,8,73],[8,76,8,74],[7,76,8,75],[8,78,7,77],[8,79,8,77],[8,80,8,78],[8,81,8,79],[8,82,8,80],[8,83,8,81],[8,84,8,82],[8,85,8,83],[8,86,8,84],[8,87,8,85],[8,88,8,86],[8,89,8,87],[8,90,8,88],[-1,-1,8,89],[8,92,-1,-1],[8,93,8,91],[8,94,8,92],[8,95,8,93],[8,96,8,94],[8,97,8,95],[7,97,8,96],[8,99,7,98],[8,100,8,98],[8,101,8,99],[8,102,8,100],[8,103,8,101],[8,104,8,102],[8,105,8,103],[8,106,8,104],[8,107,8,105],[8,108,8,106],[8,109,8,107],[8,110,8,108],[8,111,8,109],[9,111,8,110],[8,113,9,112],[8,114,8,112],[8,115,8,113],[8,116,8,114],[8,117,8,115],[8,118,8,116],[7,118,8,117],[8,120,7,119],[8,121,8,119],[8,122,8,120],[8,123,8,121],[8,124,8,122],[8,125,8,123],[-1,-1,8,124],[8,127,-1,-1],[8,128,8,126],[8,129,8,127],[8,130,8,128],[8,131,8,129],[8,132,8,130],[9,132,8,131],[8,134,9,133],[8,135,8,133],[8,136,8,134],[8,137,8,135],[8,138,8,136],[8,139,8,137],[8,140,8,138],[8,141,8,139],[8,142,8,140],[8,143,8,141],[8,144,8,142],[8,145,8,143],[8,146,8,144],[8,147,8,145],[8,148,8,146],[8,149,8,147],[8,150,8,148],[8,151,8,149],[8,152,8,150],[8,153,8,151],[9,153,8,152],[8,155,9,154],[8,156,8,154],[8,157,8,155],[8,158,8,156],[8,159,8,157],[8,160,8,158],[7,160,8,159],[8,162,7,161],[8,163,8,161],[8,164,8,162],[8,165,8,163],[8,166,8,164],[8,167,8,165],[8,168,8,166],[8,169,8,167],[8,170,8,168],[8,171,8,169],[8,172,8,170],[8,173,8,171],[8,174,8,172],[8,175,8,173],[8,176,8,174],[8,177,8,175],[8,178,8,176],[8,179,8,177],[8,180,8,178],[8,181,8,179],[-1,-1,8,180],[8,183,-1,-1],[8,184,8,182],[8,185,8,183],[8,186,8,184],[8,187,8,185],[8,188,8,186],[8,189,8,187],[8,190,8,188],[8,191,8,189],[8,192,8,190],[8,193,8,191],[8,194,8,192],[8,195,8,193],[9,195,8,194],[8,197,9,196],[8,198,8,196],[8,199,8,197],[8,200,8,198],[8,201,8,199],[8,202,8,200],[8,203,8,201],[8,204,8,202],[8,205,8,203],[8,206,8,204],[8,207,8,205],[8,208,8,206],[8,209,8,207],[-1,-1,8,208],[8,211,-1,-1],[8,212,8,210],[8,213,8,211],[8,214,8,212],[8,215,8,213],[8,216,8,214],[9,216,8,215],[8,218,9,217],[8,219,8,217],[8,220,8,218],[8,221,8,219],[8,222,8,220],[8,223,8,221],[8,224,8,222],[8,225,8,223],[8,226,8,224],[8,227,8,225],[8,228,8,226],[8,229,8,227],[8,230,8,228],[-1,-1,8,229],[8,232,-1,-1],[8,233,8,231],[8,234,8,232],[8,235,8,233],[8,236,8,234],[8,237,8,235],[9,237,8,236],[8,239,9,238],[8,240,8,238],[8,241,8,239],[8,242,8,240],[8,243,8,241],[8,244,8,242],[7,244,8,243],[8,246,7,245],[8,247,8,245],[8,248,8,246],[8,249,8,247],[8,250,8,248],[8,251,8,249],[-1,-1,8,250],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[9,12,8,13],[8,12,8,14],[8,13,8,15],[8,14,8,16],[8,15,8,17],[8,16,8,18],[8,17,8,19],[8,18,8,20],[8,19,8,21],[8,20,8,22],[8,21,8,23],[8,22,8,24],[8,23,8,25],[8,24,8,26],[8,25,8,27],[8,26,8,28],[8,27,8,29],[8,28,8,30],[8,29,8,31],[8,30,8,32],[8,31,8,33],[8,32,8,34],[8,33,8,35],[8,34,8,36],[8,35,8,37],[8,36,8,38],[8,37,8,39],[8,38,8,40],[8,39,8,41],[8,40,8,42],[8,41,8,43],[8,42,8,44],[8,43,8,45],[8,44,8,46],[8,45,8,47],[8,46,8,48],[8,47,8,49],[8,48,8,50],[8,49,7,50],[7,51,8,52],[8,51,8,53],[8,52,8,54],[8,53,8,55],[8,54,8,56],[8,55,8,57],[8,56,8,58],[8,57,8,59],[8,58,8,60],[8,59,8,61],[8,60,8,62],[8,61,8,63],[8,62,8,64],[8,63,8,65],[8,64,8,66],[8,65,8,67],[8,66,8,68],[8,67,8,69],[8,68,8,70],[8,69,8,71],[8,70,8,72],[8,71,8,73],[8,72,8,74],[8,73,8,75],[8,74,8,76],[8,75,8,77],[8,76,8,78],[8,77,8,79],[8,78,8,80],[8,79,8,81],[8,80,8,82],[8,81,8,83],[8,82,8,84],[8,83,8,85],[8,84,9,85],[9,86,8,87],[8,86,8,88],[8,87,8,89],[8,88,8,90],[8,89,8,91],[8,90,8,92],[8,91,8,93],[8,92,8,94],[8,93,8,95],[8,94,8,96],[8,95,8,97],[8,96,8,98],[8,97,8,99],[8,98,8,100],[8,99,8,101],[8,100,8,102],[8,101,8,103],[8,102,8,104],[8,103,8,105],[8,104,8,106],[8,105,8,107],[8,106,8,108],[8,107,8,109],[8,108,8,110],[8,109,8,111],[8,110,8,112],[8,111,8,113],[8,112,8,114],[8,113,8,115],[8,114,8,116],[8,115,8,117],[8,116,8,118],[8,117,8,119],[8,118,8,120],[8,119,8,121],[8,120,8,122],[8,121,8,123],[8,122,8,124],[8,123,8,125],[8,124,8,126],[8,125,8,127],[8,126,8,128],[8,127,8,129],[8,128,8,130],[8,129,8,131],[8,130,8,132],[8,131,8,133],[8,132,8,134],[8,133,7,134],[7,135,8,136],[8,135,8,137],[8,136,8,138],[8,137,8,139],[8,138,8,140],[8,139,8,141],[8,140,8,142],[8,141,8,143],[8,142,8,144],[8,143,8,145],[8,144,8,146],[8,145,8,147],[8,146,8,148],[8,147,8,149],[8,148,8,150],[8,149,8,151],[8,150,8,152],[8,151,8,153],[8,152,8,154],[8,153,8,155],[8,154,8,156],[8,155,8,157],[8,156,8,158],[8,157,8,159],[8,158,8,160],[8,159,8,161],[8,160,8,162],[8,161,8,163],[8,162,8,164],[8,163,8,165],[8,164,8,166],[8,165,8,167],[8,166,8,168],[8,167,8,169],[8,168,9,169],[9,170,8,171],[8,170,8,172],[8,171,8,173],[8,172,8,174],[8,173,8,175],[8,174,8,176],[8,175,8,177],[8,176,8,178],[8,177,8,179],[8,178,8,180],[8,179,8,181],[8,180,8,182],[8,181,8,183],[8,182,8,184],[8,183,8,185],[8,184,8,186],[8,185,8,187],[8,186,8,188],[8,187,8,189],[8,188,8,190],[8,189,8,191],[8,190,8,192],[8,191,8,193],[8,192,8,194],[8,193,8,195],[8,194,8,196],[8,195,8,197],[8,196,8,198],[8,197,8,199],[8,198,8,200],[8,199,8,201],[8,200,8,202],[8,201,8,203],[8,202,8,204],[8,203,8,205],[8,204,8,206],[8,205,8,207],[8,206,7,207],[7,208,8,209],[8,208,8,210],[8,209,8,211],[8,210,8,212],[8,211,8,213],[8,212,8,214],[8,213,8,215],[8,214,8,216],[8,215,8,217],[8,216,8,218],[8,217,8,219],[8,218,8,220],[8,219,8,221],[8,220,8,222],[8,221,8,223],[8,222,8,224],[8,223,8,225],[8,224,8,226],[8,225,8,227],[8,226,8,228],[8,227,8,229],[8,228,8,230],[8,229,8,231],[8,230,8,232],[8,231,8,233],[8,232,8,234],[8,233,8,235],[8,234,8,236],[8,235,8,237],[8,236,8,238],[8,237,8,239],[8,238,8,240],[8,239,8,241],[8,240,8,242],[8,241,8,243],[8,242,8,244],[8,243,8,245],[8,244,8,246],[8,245,8,247],[8,246,8,248],[8,247,8,249],[8,248,8,250],[8,249,8,251],[8,250,8,252],[8,251,8,253],[8,252,8,254],[8,253,8,255],[8,254,8,256],[8,255,8,257],[8,256,8,258],[8,257,8,259],[8,258,8,260],[8,259,8,261],[8,260,8,262],[8,261,8,263],[8,262,9,263],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":10,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":10},{"stap_colors":[[91,11141120],[147,0],[161,0],[175,11141120],[245,0]],"num":9,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[8,28,9,29],[9,28,9,30],[9,29,9,31],[9,30,9,32],[9,31,9,33],[9,32,9,34],[9,33,9,35],[9,34,9,36],[9,35,9,37],[9,36,9,38],[9,37,9,39],[9,38,9,40],[9,39,9,41],[9,40,9,42],[9,41,9,43],[9,42,9,44],[9,43,9,45],[9,44,9,46],[9,45,9,47],[9,46,9,48],[9,47,8,48],[8,49,9,50],[9,49,9,51],[9,50,9,52],[9,51,9,53],[9,52,9,54],[9,53,9,55],[9,54,9,56],[9,55,9,57],[9,56,9,58],[9,57,9,59],[9,58,9,60],[9,59,9,61],[9,60,9,62],[9,61,10,62],[10,63,9,64],[9,63,9,65],[9,64,9,66],[9,65,9,67],[9,66,9,68],[9,67,9,69],[9,68,8,69],[8,70,9,71],[9,70,9,72],[9,71,9,73],[9,72,9,74],[9,73,9,75],[9,74,9,76],[9,75,9,77],[9,76,9,78],[9,77,9,79],[9,78,9,80],[9,79,9,81],[9,80,9,82],[9,81,9,83],[9,82,10,83],[10,84,9,85],[9,84,9,86],[9,85,9,87],[9,86,9,88],[9,87,9,89],[9,88,9,90],[9,89,-1,-1],[-1,-1,9,92],[9,91,9,93],[9,92,9,94],[9,93,9,95],[9,94,9,96],[9,95,9,97],[9,96,9,98],[9,97,9,99],[9,98,9,100],[9,99,9,101],[9,100,9,102],[9,101,9,103],[9,102,9,104],[9,103,10,104],[10,105,9,106],[9,105,9,107],[9,106,9,108],[9,107,9,109],[9,108,9,110],[9,109,9,111],[9,110,8,111],[8,112,9,113],[9,112,9,114],[9,113,9,115],[9,114,9,116],[9,115,9,117],[9,116,9,118],[9,117,9,119],[9,118,9,120],[9,119,9,121],[9,120,9,122],[9,121,9,123],[9,122,9,124],[9,123,9,125],[9,124,9,126],[9,125,9,127],[9,126,9,128],[9,127,9,129],[9,128,9,130],[9,129,9,131],[9,130,9,132],[9,131,8,132],[8,133,9,134],[9,133,9,135],[9,134,9,136],[9,135,9,137],[9,136,9,138],[9,137,9,139],[9,138,9,140],[9,139,9,141],[9,140,9,142],[9,141,9,143],[9,142,9,144],[9,143,9,145],[9,144,9,146],[9,145,-1,-1],[-1,-1,9,148],[9,147,9,149],[9,148,9,150],[9,149,9,151],[9,150,9,152],[9,151,9,153],[9,152,8,153],[8,154,9,155],[9,154,9,156],[9,155,9,157],[9,156,9,158],[9,157,9,159],[9,158,9,160],[9,159,-1,-1],[-1,-1,9,162],[9,161,9,163],[9,162,9,164],[9,163,9,165],[9,164,9,166],[9,165,9,167],[9,166,10,167],[10,168,9,169],[9,168,9,170],[9,169,9,171],[9,170,9,172],[9,171,9,173],[9,172,9,174],[9,173,-1,-1],[-1,-1,9,176],[9,175,9,177],[9,176,9,178],[9,177,9,179],[9,178,9,180],[9,179,9,181],[9,180,9,182],[9,181,9,183],[9,182,9,184],[9,183,9,185],[9,184,9,186],[9,185,9,187],[9,186,9,188],[9,187,10,188],[10,189,9,190],[9,189,9,191],[9,190,9,192],[9,191,9,193],[9,192,9,194],[9,193,9,195],[9,194,8,195],[8,196,9,197],[9,196,9,198],[9,197,9,199],[9,198,9,200],[9,199,9,201],[9,200,9,202],[9,201,9,203],[9,202,9,204],[9,203,9,205],[9,204,9,206],[9,205,9,207],[9,206,9,208],[9,207,9,209],[9,208,9,210],[9,209,9,211],[9,210,9,212],[9,211,9,213],[9,212,9,214],[9,213,9,215],[9,214,9,216],[9,215,8,216],[8,217,9,218],[9,217,9,219],[9,218,9,220],[9,219,9,221],[9,220,9,222],[9,221,9,223],[9,222,9,224],[9,223,9,225],[9,224,9,226],[9,225,9,227],[9,226,9,228],[9,227,9,229],[9,228,9,230],[9,229,10,230],[10,231,9,232],[9,231,9,233],[9,232,9,234],[9,233,9,235],[9,234,9,236],[9,235,9,237],[9,236,8,237],[8,238,9,239],[9,238,9,240],[9,239,9,241],[9,240,9,242],[9,241,9,243],[9,242,9,244],[9,243,-1,-1],[-1,-1,9,246],[9,245,9,247],[9,246,9,248],[9,247,9,249],[9,248,9,250],[9,249,9,251],[9,250,10,251],[10,252,9,253],[9,252,9,254],[9,253,9,255],[9,254,9,256],[9,255,9,257],[9,256,9,258],[9,257,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[9,13,8,12],[9,14,9,12],[9,15,9,13],[9,16,9,14],[9,17,9,15],[9,18,9,16],[9,19,9,17],[9,20,9,18],[9,21,9,19],[9,22,9,20],[9,23,9,21],[9,24,9,22],[9,25,9,23],[9,26,9,24],[9,27,9,25],[9,28,9,26],[9,29,9,27],[9,30,9,28],[9,31,9,29],[9,32,9,30],[9,33,9,31],[9,34,9,32],[9,35,9,33],[9,36,9,34],[10,36,9,35],[9,38,10,37],[9,39,9,37],[9,40,9,38],[9,41,9,39],[9,42,9,40],[9,43,9,41],[9,44,9,42],[9,45,9,43],[9,46,9,44],[9,47,9,45],[9,48,9,46],[9,49,9,47],[9,50,9,48],[9,51,9,49],[9,52,9,50],[9,53,9,51],[9,54,9,52],[9,55,9,53],[9,56,9,54],[9,57,9,55],[9,58,9,56],[9,59,9,57],[9,60,9,58],[9,61,9,59],[9,62,9,60],[9,63,9,61],[9,64,9,62],[9,65,9,63],[9,66,9,64],[9,67,9,65],[9,68,9,66],[9,69,9,67],[9,70,9,68],[9,71,9,69],[9,72,9,70],[9,73,9,71],[9,74,9,72],[9,75,9,73],[9,76,9,74],[9,77,9,75],[9,78,9,76],[9,79,9,77],[9,80,9,78],[9,81,9,79],[9,82,9,80],[9,83,9,81],[9,84,9,82],[9,85,9,83],[8,85,9,84],[9,87,8,86],[9,88,9,86],[9,89,9,87],[9,90,9,88],[9,91,9,89],[9,92,9,90],[9,93,9,91],[9,94,9,92],[9,95,9,93],[9,96,9,94],[9,97,9,95],[9,98,9,96],[9,99,9,97],[9,100,9,98],[9,101,9,99],[9,102,9,100],[9,103,9,101],[9,104,9,102],[9,105,9,103],[9,106,9,104],[9,107,9,105],[9,108,9,106],[9,109,9,107],[9,110,9,108],[9,111,9,109],[9,112,9,110],[9,113,9,111],[9,114,9,112],[9,115,9,113],[9,116,9,114],[9,117,9,115],[9,118,9,116],[9,119,9,117],[9,120,9,118],[10,120,9,119],[9,122,10,121],[9,123,9,121],[9,124,9,122],[9,125,9,123],[9,126,9,124],[9,127,9,125],[9,128,9,126],[9,129,9,127],[9,130,9,128],[9,131,9,129],[9,132,9,130],[9,133,9,131],[9,134,9,132],[9,135,9,133],[9,136,9,134],[9,137,9,135],[9,138,9,136],[9,139,9,137],[9,140,9,138],[9,141,9,139],[9,142,9,140],[9,143,9,141],[9,144,9,142],[9,145,9,143],[9,146,9,144],[9,147,9,145],[9,148,9,146],[9,149,9,147],[9,150,9,148],[9,151,9,149],[9,152,9,150],[9,153,9,151],[9,154,9,152],[9,155,9,153],[9,156,9,154],[9,157,9,155],[9,158,9,156],[9,159,9,157],[9,160,9,158],[9,161,9,159],[9,162,9,160],[9,163,9,161],[9,164,9,162],[9,165,9,163],[9,166,9,164],[9,167,9,165],[9,168,9,166],[9,169,9,167],[8,169,9,168],[9,171,8,170],[9,172,9,170],[9,173,9,171],[9,174,9,172],[9,175,9,173],[9,176,9,174],[9,177,9,175],[9,178,9,176],[9,179,9,177],[9,180,9,178],[9,181,9,179],[9,182,9,180],[9,183,9,181],[9,184,9,182],[9,185,9,183],[9,186,9,184],[9,187,9,185],[9,188,9,186],[9,189,9,187],[9,190,9,188],[9,191,9,189],[9,192,9,190],[9,193,9,191],[9,194,9,192],[9,195,9,193],[9,196,9,194],[9,197,9,195],[9,198,9,196],[9,199,9,197],[9,200,9,198],[9,201,9,199],[9,202,9,200],[9,203,9,201],[9,204,9,202],[9,205,9,203],[9,206,9,204],[9,207,9,205],[9,208,9,206],[9,209,9,207],[9,210,9,208],[9,211,9,209],[9,212,9,210],[9,213,9,211],[9,214,9,212],[10,214,9,213],[9,216,10,215],[9,217,9,215],[9,218,9,216],[9,219,9,217],[9,220,9,218],[9,221,9,219],[9,222,9,220],[9,223,9,221],[9,224,9,222],[9,225,9,223],[9,226,9,224],[9,227,9,225],[9,228,9,226],[9,229,9,227],[9,230,9,228],[9,231,9,229],[9,232,9,230],[9,233,9,231],[9,234,9,232],[9,235,9,233],[9,236,9,234],[9,237,9,235],[9,238,9,236],[9,239,9,237],[9,240,9,238],[9,241,9,239],[9,242,9,240],[9,243,9,241],[9,244,9,242],[9,245,9,243],[9,246,9,244],[9,247,9,245],[9,248,9,246],[9,249,9,247],[9,250,9,248],[9,251,9,249],[9,252,9,250],[9,253,9,251],[9,254,9,252],[9,255,9,253],[9,256,9,254],[9,257,9,255],[9,258,9,256],[9,259,9,257],[9,260,9,258],[9,261,9,259],[9,262,9,260],[9,263,9,261],[8,263,9,262],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":11,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":10},{"stap_colors":[[55,0],[125,0],[139,13369344],[153,13369344]],"num":10,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[10,19,-1,-1],[10,20,10,18],[10,21,10,19],[10,22,10,20],[10,23,10,21],[10,24,10,22],[10,25,10,23],[10,26,10,24],[10,27,10,25],[11,27,10,26],[10,29,11,28],[10,30,10,28],[10,31,10,29],[10,32,10,30],[10,33,10,31],[10,34,10,32],[5,34,10,33],[10,36,5,35],[10,37,10,35],[10,38,10,36],[10,39,10,37],[10,40,10,38],[10,41,10,39],[10,42,10,40],[10,43,10,41],[10,44,10,42],[10,45,10,43],[10,46,10,44],[10,47,10,45],[10,48,10,46],[11,48,10,47],[10,50,11,49],[10,51,10,49],[10,52,10,50],[10,53,10,51],[10,54,10,52],[10,55,10,53],[-1,-1,10,54],[10,57,-1,-1],[10,58,10,56],[10,59,10,57],[10,60,10,58],[10,61,10,59],[10,62,10,60],[9,62,10,61],[10,64,9,63],[10,65,10,63],[10,66,10,64],[10,67,10,65],[10,68,10,66],[10,69,10,67],[11,69,10,68],[10,71,11,70],[10,72,10,70],[10,73,10,71],[10,74,10,72],[10,75,10,73],[10,76,10,74],[5,76,10,75],[10,78,5,77],[10,79,10,77],[10,80,10,78],[10,81,10,79],[10,82,10,80],[10,83,10,81],[9,83,10,82],[10,85,9,84],[10,86,10,84],[10,87,10,85],[10,88,10,86],[10,89,10,87],[10,90,10,88],[10,91,10,89],[10,92,10,90],[10,93,10,91],[10,94,10,92],[10,95,10,93],[10,96,10,94],[10,97,10,95],[5,97,10,96],[10,99,5,98],[10,100,10,98],[10,101,10,99],[10,102,10,100],[10,103,10,101],[10,104,10,102],[9,104,10,103],[10,106,9,105],[10,107,10,105],[10,108,10,106],[10,109,10,107],[10,110,10,108],[10,111,10,109],[11,111,10,110],[10,113,11,112],[10,114,10,112],[10,115,10,113],[10,116,10,114],[10,117,10,115],[10,118,10,116],[10,119,10,117],[10,120,10,118],[10,121,10,119],[10,122,10,120],[10,123,10,121],[10,124,10,122],[10,125,10,123],[-1,-1,10,124],[10,127,-1,-1],[10,128,10,126],[10,129,10,127],[10,130,10,128],[10,131,10,129],[10,132,10,130],[11,132,10,131],[10,134,11,133],[10,135,10,133],[10,136,10,134],[10,137,10,135],[10,138,10,136],[10,139,10,137],[-1,-1,10,138],[10,141,5,140],[10,142,10,140],[10,143,10,141],[10,144,10,142],[10,145,10,143],[10,146,10,144],[10,147,10,145],[10,148,10,146],[10,149,10,147],[10,150,10,148],[10,151,10,149],[10,152,10,150],[10,153,10,151],[-1,-1,10,152],[10,155,-1,-1],[10,156,10,154],[10,157,10,155],[10,158,10,156],[10,159,10,157],[10,160,10,158],[5,160,10,159],[10,162,5,161],[10,163,10,161],[10,164,10,162],[10,165,10,163],[10,166,10,164],[10,167,10,165],[9,167,10,166],[10,169,9,168],[10,170,10,168],[10,171,10,169],[10,172,10,170],[10,173,10,171],[10,174,10,172],[10,175,10,173],[10,176,10,174],[10,177,10,175],[10,178,10,176],[10,179,10,177],[10,180,10,178],[10,181,10,179],[5,181,10,180],[10,183,5,182],[10,184,10,182],[10,185,10,183],[10,186,10,184],[10,187,10,185],[10,188,10,186],[9,188,10,187],[10,190,9,189],[10,191,10,189],[10,192,10,190],[10,193,10,191],[10,194,10,192],[10,195,10,193],[11,195,10,194],[10,197,11,196],[10,198,10,196],[10,199,10,197],[10,200,10,198],[10,201,10,199],[10,202,10,200],[5,202,10,201],[10,204,5,203],[10,205,10,203],[10,206,10,204],[10,207,10,205],[10,208,10,206],[10,209,10,207],[10,210,10,208],[10,211,10,209],[10,212,10,210],[10,213,10,211],[10,214,10,212],[10,215,10,213],[10,216,10,214],[11,216,10,215],[10,218,11,217],[10,219,10,217],[10,220,10,218],[10,221,10,219],[10,222,10,220],[10,223,10,221],[10,224,10,222],[10,225,10,223],[10,226,10,224],[10,227,10,225],[10,228,10,226],[10,229,10,227],[10,230,10,228],[9,230,10,229],[10,232,9,231],[10,233,10,231],[10,234,10,232],[10,235,10,233],[10,236,10,234],[10,237,10,235],[11,237,10,236],[10,239,11,238],[10,240,10,238],[10,241,10,239],[10,242,10,240],[10,243,10,241],[10,244,10,242],[5,244,10,243],[10,246,5,245],[10,247,10,245],[10,248,10,246],[10,249,10,247],[10,250,10,248],[10,251,10,249],[9,251,10,250],[10,253,9,252],[10,254,10,252],[10,255,10,253],[10,256,10,254],[10,257,10,255],[10,258,10,256],[11,258,10,257],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[11,12,10,13],[10,12,10,14],[10,13,10,15],[10,14,10,16],[10,15,10,17],[10,16,10,18],[10,17,10,19],[10,18,10,20],[10,19,10,21],[10,20,10,22],[10,21,10,23],[10,22,10,24],[10,23,10,25],[10,24,10,26],[10,25,10,27],[10,26,10,28],[10,27,10,29],[10,28,10,30],[10,29,10,31],[10,30,10,32],[10,31,10,33],[10,32,10,34],[10,33,10,35],[10,34,10,36],[10,35,9,36],[9,37,10,38],[10,37,10,39],[10,38,10,40],[10,39,10,41],[10,40,10,42],[10,41,10,43],[10,42,10,44],[10,43,10,45],[10,44,10,46],[10,45,10,47],[10,46,10,48],[10,47,10,49],[10,48,10,50],[10,49,10,51],[10,50,10,52],[10,51,10,53],[10,52,10,54],[10,53,10,55],[10,54,10,56],[10,55,10,57],[10,56,10,58],[10,57,10,59],[10,58,10,60],[10,59,10,61],[10,60,10,62],[10,61,10,63],[10,62,10,64],[10,63,10,65],[10,64,10,66],[10,65,10,67],[10,66,10,68],[10,67,10,69],[10,68,10,70],[10,69,10,71],[10,70,10,72],[10,71,10,73],[10,72,10,74],[10,73,10,75],[10,74,10,76],[10,75,10,77],[10,76,10,78],[10,77,10,79],[10,78,10,80],[10,79,10,81],[10,80,10,82],[10,81,10,83],[10,82,10,84],[10,83,10,85],[10,84,10,86],[10,85,10,87],[10,86,10,88],[10,87,10,89],[10,88,10,90],[10,89,10,91],[10,90,10,92],[10,91,10,93],[10,92,10,94],[10,93,10,95],[10,94,11,95],[11,96,10,97],[10,96,10,98],[10,97,10,99],[10,98,10,100],[10,99,10,101],[10,100,10,102],[10,101,10,103],[10,102,10,104],[10,103,10,105],[10,104,10,106],[10,105,10,107],[10,106,10,108],[10,107,10,109],[10,108,10,110],[10,109,10,111],[10,110,10,112],[10,111,10,113],[10,112,10,114],[10,113,10,115],[10,114,10,116],[10,115,10,117],[10,116,10,118],[10,117,10,119],[10,118,10,120],[10,119,9,120],[9,121,10,122],[10,121,10,123],[10,122,10,124],[10,123,10,125],[10,124,10,126],[10,125,10,127],[10,126,10,128],[10,127,10,129],[10,128,10,130],[10,129,10,131],[10,130,10,132],[10,131,10,133],[10,132,10,134],[10,133,10,135],[10,134,10,136],[10,135,10,137],[10,136,10,138],[10,137,10,139],[10,138,10,140],[10,139,10,141],[10,140,10,142],[10,141,10,143],[10,142,10,144],[10,143,10,145],[10,144,10,146],[10,145,10,147],[10,146,10,148],[10,147,10,149],[10,148,10,150],[10,149,10,151],[10,150,10,152],[10,151,10,153],[10,152,10,154],[10,153,10,155],[10,154,10,156],[10,155,10,157],[10,156,10,158],[10,157,10,159],[10,158,10,160],[10,159,10,161],[10,160,10,162],[10,161,10,163],[10,162,10,164],[10,163,10,165],[10,164,10,166],[10,165,10,167],[10,166,10,168],[10,167,10,169],[10,168,10,170],[10,169,10,171],[10,170,10,172],[10,171,10,173],[10,172,10,174],[10,173,10,175],[10,174,10,176],[10,175,10,177],[10,176,10,178],[10,177,10,179],[10,178,11,179],[11,180,10,181],[10,180,10,182],[10,181,10,183],[10,182,10,184],[10,183,10,185],[10,184,10,186],[10,185,10,187],[10,186,10,188],[10,187,10,189],[10,188,10,190],[10,189,10,191],[10,190,10,192],[10,191,10,193],[10,192,10,194],[10,193,10,195],[10,194,10,196],[10,195,10,197],[10,196,10,198],[10,197,10,199],[10,198,10,200],[10,199,10,201],[10,200,10,202],[10,201,10,203],[10,202,10,204],[10,203,10,205],[10,204,10,206],[10,205,10,207],[10,206,10,208],[10,207,10,209],[10,208,10,210],[10,209,10,211],[10,210,10,212],[10,211,10,213],[10,212,10,214],[10,213,9,214],[9,215,10,216],[10,215,10,217],[10,216,10,218],[10,217,10,219],[10,218,10,220],[10,219,10,221],[10,220,10,222],[10,221,10,223],[10,222,10,224],[10,223,10,225],[10,224,10,226],[10,225,10,227],[10,226,10,228],[10,227,10,229],[10,228,10,230],[10,229,10,231],[10,230,10,232],[10,231,10,233],[10,232,10,234],[10,233,10,235],[10,234,10,236],[10,235,10,237],[10,236,10,238],[10,237,10,239],[10,238,10,240],[10,239,10,241],[10,240,10,242],[10,241,10,243],[10,242,10,244],[10,243,10,245],[10,244,10,246],[10,245,10,247],[10,246,10,248],[10,247,10,249],[10,248,10,250],[10,249,10,251],[10,250,10,252],[10,251,10,253],[10,252,10,254],[10,253,10,255],[10,254,10,256],[10,255,10,257],[10,256,10,258],[10,257,10,259],[10,258,10,260],[10,259,10,261],[10,260,10,262],[10,261,10,263],[10,262,10,264],[10,263,10,265],[10,264,10,266],[10,265,10,267],[10,266,10,268],[10,267,10,269],[10,268,10,270],[10,269,10,271],[10,270,10,272],[10,271,10,273],[10,272,10,274],[10,273,11,274],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":12,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":10},{"stap_colors":[[35,0],[105,0],[161,11141120],[203,0],[224,0],[245,0]],"num":11,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[12,21,11,22],[11,21,11,23],[11,22,11,24],[11,23,11,25],[11,24,11,26],[11,25,11,27],[11,26,10,27],[10,28,11,29],[11,28,11,30],[11,29,11,31],[11,30,11,32],[11,31,11,33],[11,32,11,34],[11,33,-1,-1],[-1,-1,11,36],[11,35,11,37],[11,36,11,38],[11,37,11,39],[11,38,11,40],[11,39,11,41],[11,40,11,42],[11,41,11,43],[11,42,11,44],[11,43,11,45],[11,44,11,46],[11,45,11,47],[11,46,11,48],[11,47,10,48],[10,49,11,50],[11,49,11,51],[11,50,11,52],[11,51,11,53],[11,52,11,54],[11,53,11,55],[11,54,11,56],[11,55,11,57],[11,56,11,58],[11,57,11,59],[11,58,11,60],[11,59,11,61],[11,60,11,62],[11,61,12,62],[12,63,11,64],[11,63,11,65],[11,64,11,66],[11,65,11,67],[11,66,11,68],[11,67,11,69],[11,68,10,69],[10,70,11,71],[11,70,11,72],[11,71,11,73],[11,72,11,74],[11,73,11,75],[11,74,11,76],[11,75,11,77],[11,76,11,78],[11,77,11,79],[11,78,11,80],[11,79,11,81],[11,80,11,82],[11,81,11,83],[11,82,12,83],[12,84,11,85],[11,84,11,86],[11,85,11,87],[11,86,11,88],[11,87,11,89],[11,88,11,90],[11,89,11,91],[11,90,11,92],[11,91,11,93],[11,92,11,94],[11,93,11,95],[11,94,11,96],[11,95,11,97],[11,96,11,98],[11,97,11,99],[11,98,11,100],[11,99,11,101],[11,100,11,102],[11,101,11,103],[11,102,11,104],[11,103,-1,-1],[-1,-1,11,106],[11,105,11,107],[11,106,11,108],[11,107,11,109],[11,108,11,110],[11,109,11,111],[11,110,10,111],[10,112,11,113],[11,112,11,114],[11,113,11,115],[11,114,11,116],[11,115,11,117],[11,116,11,118],[11,117,11,119],[11,118,11,120],[11,119,11,121],[11,120,11,122],[11,121,11,123],[11,122,11,124],[11,123,11,125],[11,124,11,126],[11,125,11,127],[11,126,11,128],[11,127,11,129],[11,128,11,130],[11,129,11,131],[11,130,11,132],[11,131,10,132],[10,133,11,134],[11,133,11,135],[11,134,11,136],[11,135,11,137],[11,136,11,138],[11,137,11,139],[11,138,11,140],[11,139,11,141],[11,140,11,142],[11,141,11,143],[11,142,11,144],[11,143,11,145],[11,144,11,146],[11,145,12,146],[12,147,11,148],[11,147,11,149],[11,148,11,150],[11,149,11,151],[11,150,11,152],[11,151,11,153],[11,152,11,154],[11,153,11,155],[11,154,11,156],[11,155,11,157],[11,156,11,158],[11,157,11,159],[11,158,11,160],[11,159,-1,-1],[-1,-1,11,162],[11,161,11,163],[11,162,11,164],[11,163,11,165],[11,164,11,166],[11,165,11,167],[11,166,12,167],[12,168,11,169],[11,168,11,170],[11,169,11,171],[11,170,11,172],[11,171,11,173],[11,172,11,174],[11,173,11,175],[11,174,11,176],[11,175,11,177],[11,176,11,178],[11,177,11,179],[11,178,11,180],[11,179,11,181],[11,180,11,182],[11,181,11,183],[11,182,11,184],[11,183,11,185],[11,184,11,186],[11,185,11,187],[11,186,11,188],[11,187,12,188],[12,189,11,190],[11,189,11,191],[11,190,11,192],[11,191,11,193],[11,192,11,194],[11,193,11,195],[11,194,10,195],[10,196,11,197],[11,196,11,198],[11,197,11,199],[11,198,11,200],[11,199,11,201],[11,200,11,202],[11,201,-1,-1],[-1,-1,11,204],[11,203,11,205],[11,204,11,206],[11,205,11,207],[11,206,11,208],[11,207,11,209],[11,208,11,210],[11,209,11,211],[11,210,11,212],[11,211,11,213],[11,212,11,214],[11,213,11,215],[11,214,11,216],[11,215,10,216],[10,217,11,218],[11,217,11,219],[11,218,11,220],[11,219,11,221],[11,220,11,222],[11,221,11,223],[11,222,-1,-1],[-1,-1,11,225],[11,224,11,226],[11,225,11,227],[11,226,11,228],[11,227,11,229],[11,228,11,230],[11,229,12,230],[12,231,11,232],[11,231,11,233],[11,232,11,234],[11,233,11,235],[11,234,11,236],[11,235,11,237],[11,236,10,237],[10,238,11,239],[11,238,11,240],[11,239,11,241],[11,240,11,242],[11,241,11,243],[11,242,11,244],[11,243,-1,-1],[-1,-1,11,246],[11,245,11,247],[11,246,11,248],[11,247,11,249],[11,248,11,250],[11,249,11,251],[11,250,12,251],[12,252,11,253],[11,252,11,254],[11,253,11,255],[11,254,11,256],[11,255,11,257],[11,256,11,258],[11,257,10,258],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[11,13,10,12],[11,14,11,12],[11,15,11,13],[11,16,11,14],[11,17,11,15],[11,18,11,16],[11,19,11,17],[11,20,11,18],[11,21,11,19],[11,22,11,20],[11,23,11,21],[11,24,11,22],[11,25,11,23],[11,26,11,24],[11,27,11,25],[11,28,11,26],[11,29,11,27],[11,30,11,28],[11,31,11,29],[11,32,11,30],[11,33,11,31],[11,34,11,32],[11,35,11,33],[11,36,11,34],[11,37,11,35],[11,38,11,36],[11,39,11,37],[11,40,11,38],[11,41,11,39],[11,42,11,40],[11,43,11,41],[11,44,11,42],[11,45,11,43],[11,46,11,44],[12,46,11,45],[11,48,12,47],[11,49,11,47],[11,50,11,48],[11,51,11,49],[11,52,11,50],[11,53,11,51],[11,54,11,52],[11,55,11,53],[11,56,11,54],[11,57,11,55],[11,58,11,56],[11,59,11,57],[11,60,11,58],[11,61,11,59],[11,62,11,60],[11,63,11,61],[11,64,11,62],[11,65,11,63],[11,66,11,64],[11,67,11,65],[11,68,11,66],[11,69,11,67],[11,70,11,68],[11,71,11,69],[11,72,11,70],[11,73,11,71],[11,74,11,72],[11,75,11,73],[11,76,11,74],[11,77,11,75],[11,78,11,76],[11,79,11,77],[11,80,11,78],[11,81,11,79],[11,82,11,80],[11,83,11,81],[11,84,11,82],[11,85,11,83],[11,86,11,84],[11,87,11,85],[11,88,11,86],[11,89,11,87],[11,90,11,88],[11,91,11,89],[11,92,11,90],[11,93,11,91],[11,94,11,92],[11,95,11,93],[10,95,11,94],[11,97,10,96],[11,98,11,96],[11,99,11,97],[11,100,11,98],[11,101,11,99],[11,102,11,100],[11,103,11,101],[11,104,11,102],[11,105,11,103],[11,106,11,104],[11,107,11,105],[11,108,11,106],[11,109,11,107],[11,110,11,108],[11,111,11,109],[11,112,11,110],[11,113,11,111],[11,114,11,112],[11,115,11,113],[11,116,11,114],[11,117,11,115],[11,118,11,116],[11,119,11,117],[11,120,11,118],[12,120,11,119],[11,122,12,121],[11,123,11,121],[11,124,11,122],[11,125,11,123],[11,126,11,124],[11,127,11,125],[11,128,11,126],[11,129,11,127],[11,130,11,128],[11,131,11,129],[11,132,11,130],[11,133,11,131],[11,134,11,132],[30,126,11,133],[11,136,30,146],[11,137,11,135],[11,138,11,136],[11,139,11,137],[11,140,11,138],[11,141,11,139],[11,142,11,140],[11,143,11,141],[11,144,11,142],[11,145,11,143],[11,146,11,144],[11,147,11,145],[11,148,11,146],[11,149,11,147],[11,150,11,148],[11,151,11,149],[11,152,11,150],[11,153,11,151],[11,154,11,152],[11,155,11,153],[11,156,11,154],[11,157,11,155],[11,158,11,156],[11,159,11,157],[11,160,11,158],[11,161,11,159],[11,162,11,160],[11,163,11,161],[11,164,11,162],[11,165,11,163],[11,166,11,164],[11,167,11,165],[11,168,11,166],[11,169,11,167],[11,170,11,168],[11,171,11,169],[11,172,11,170],[11,173,11,171],[11,174,11,172],[11,175,11,173],[11,176,11,174],[11,177,11,175],[11,178,11,176],[11,179,11,177],[10,179,11,178],[11,181,10,180],[11,182,11,180],[11,183,11,181],[11,184,11,182],[11,185,11,183],[11,186,11,184],[11,187,11,185],[11,188,11,186],[11,189,11,187],[11,190,11,188],[11,191,11,189],[11,192,11,190],[11,193,11,191],[11,194,11,192],[11,195,11,193],[11,196,11,194],[11,197,11,195],[11,198,11,196],[11,199,11,197],[11,200,11,198],[11,201,11,199],[11,202,11,200],[11,203,11,201],[11,204,11,202],[11,205,11,203],[11,206,11,204],[11,207,11,205],[11,208,11,206],[11,209,11,207],[11,210,11,208],[11,211,11,209],[11,212,11,210],[11,213,11,211],[11,214,11,212],[12,214,11,213],[11,216,12,215],[11,217,11,215],[11,218,11,216],[11,219,11,217],[11,220,11,218],[11,221,11,219],[11,222,11,220],[11,223,11,221],[11,224,11,222],[11,225,11,223],[11,226,11,224],[11,227,11,225],[11,228,11,226],[11,229,11,227],[11,230,11,228],[11,231,11,229],[11,232,11,230],[11,233,11,231],[11,234,11,232],[11,235,11,233],[11,236,11,234],[11,237,11,235],[11,238,11,236],[11,239,11,237],[11,240,11,238],[11,241,11,239],[11,242,11,240],[11,243,11,241],[11,244,11,242],[11,245,11,243],[11,246,11,244],[11,247,11,245],[11,248,11,246],[11,249,11,247],[11,250,11,248],[11,251,11,249],[11,252,11,250],[11,253,11,251],[11,254,11,252],[11,255,11,253],[11,256,11,254],[11,257,11,255],[11,258,11,256],[11,259,11,257],[11,260,11,258],[11,261,11,259],[11,262,11,260],[11,263,11,261],[11,264,11,262],[11,265,11,263],[11,266,11,264],[11,267,11,265],[11,268,11,266],[11,269,11,267],[11,270,11,268],[11,271,11,269],[11,272,11,270],[11,273,11,271],[11,274,11,272],[10,274,11,273],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":13,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":10},{"stap_colors":[[41,0],[104,0],[181,0],[195,0]],"num":12,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[12,22,11,21],[12,23,12,21],[12,24,12,22],[12,25,12,23],[12,26,12,24],[12,27,12,25],[13,27,12,26],[12,29,13,28],[12,30,12,28],[12,31,12,29],[12,32,12,30],[12,33,12,31],[12,34,12,32],[3,34,12,33],[12,36,3,35],[12,37,12,35],[12,38,12,36],[12,39,12,37],[12,40,12,38],[12,41,12,39],[-1,-1,12,40],[12,43,-1,-1],[12,44,12,42],[12,45,12,43],[12,46,12,44],[12,47,12,45],[12,48,12,46],[13,48,12,47],[12,50,13,49],[12,51,12,49],[12,52,12,50],[12,53,12,51],[12,54,12,52],[12,55,12,53],[3,55,12,54],[12,57,3,56],[12,58,12,56],[12,59,12,57],[12,60,12,58],[12,61,12,59],[12,62,12,60],[11,62,12,61],[12,64,11,63],[12,65,12,63],[12,66,12,64],[12,67,12,65],[12,68,12,66],[12,69,12,67],[13,69,12,68],[12,71,13,70],[12,72,12,70],[12,73,12,71],[12,74,12,72],[12,75,12,73],[12,76,12,74],[3,76,12,75],[12,78,-1,-1],[12,79,12,77],[12,80,12,78],[12,81,12,79],[12,82,12,80],[12,83,12,81],[11,83,12,82],[12,85,11,84],[12,86,12,84],[12,87,12,85],[12,88,12,86],[12,89,12,87],[12,90,12,88],[12,91,12,89],[12,92,12,90],[12,93,12,91],[12,94,12,92],[12,95,12,93],[12,96,12,94],[12,97,12,95],[3,97,12,96],[12,99,3,98],[12,100,12,98],[12,101,12,99],[12,102,12,100],[12,103,12,101],[12,104,12,102],[-1,-1,12,103],[12,106,-1,-1],[12,107,12,105],[12,108,12,106],[12,109,12,107],[12,110,12,108],[12,111,12,109],[13,111,12,110],[12,113,13,112],[12,114,12,112],[12,115,12,113],[12,116,12,114],[12,117,12,115],[12,118,12,116],[3,118,12,117],[12,120,3,119],[12,121,12,119],[12,122,12,120],[12,123,12,121],[12,124,12,122],[12,125,12,123],[12,126,12,124],[12,127,12,125],[12,128,12,126],[12,129,12,127],[12,130,12,128],[12,131,12,129],[12,132,12,130],[13,132,12,131],[12,134,13,133],[12,135,12,133],[12,136,12,134],[12,137,12,135],[12,138,12,136],[12,139,12,137],[3,139,12,138],[12,141,3,140],[12,142,12,140],[12,143,12,141],[12,144,12,142],[12,145,12,143],[12,146,12,144],[11,146,12,145],[12,148,11,147],[12,149,12,147],[12,150,12,148],[12,151,12,149],[12,152,12,150],[12,153,12,151],[12,154,12,152],[12,155,12,153],[12,156,12,154],[12,157,12,155],[12,158,12,156],[12,159,12,157],[12,160,12,158],[3,160,12,159],[12,162,3,161],[12,163,12,161],[12,164,12,162],[12,165,12,163],[12,166,12,164],[12,167,12,165],[11,167,12,166],[12,169,11,168],[12,170,12,168],[12,171,12,169],[12,172,12,170],[12,173,12,171],[12,174,12,172],[12,175,12,173],[12,176,12,174],[12,177,12,175],[12,178,12,176],[12,179,12,177],[12,180,12,178],[12,181,12,179],[-1,-1,12,180],[12,183,-1,-1],[12,184,12,182],[12,185,12,183],[12,186,12,184],[12,187,12,185],[12,188,12,186],[11,188,12,187],[12,190,11,189],[12,191,12,189],[12,192,12,190],[12,193,12,191],[12,194,12,192],[12,195,12,193],[-1,-1,12,194],[12,197,13,196],[12,198,12,196],[12,199,12,197],[12,200,12,198],[12,201,12,199],[12,202,12,200],[3,202,12,201],[12,204,3,203],[12,205,12,203],[12,206,12,204],[12,207,12,205],[12,208,12,206],[12,209,12,207],[12,210,12,208],[12,211,12,209],[12,212,12,210],[12,213,12,211],[12,214,12,212],[12,215,12,213],[12,216,12,214],[13,216,12,215],[12,218,13,217],[12,219,12,217],[12,220,12,218],[12,221,12,219],[12,222,12,220],[12,223,12,221],[3,223,12,222],[12,225,3,224],[12,226,12,224],[12,227,12,225],[12,228,12,226],[12,229,12,227],[12,230,12,228],[11,230,12,229],[12,232,11,231],[12,233,12,231],[12,234,12,232],[12,235,12,233],[12,236,12,234],[12,237,12,235],[13,237,12,236],[12,239,13,238],[12,240,12,238],[12,241,12,239],[12,242,12,240],[12,243,12,241],[12,244,12,242],[3,244,12,243],[12,246,3,245],[12,247,12,245],[12,248,12,246],[12,249,12,247],[12,250,12,248],[12,251,12,249],[11,251,12,250],[12,253,11,252],[12,254,12,252],[12,255,12,253],[12,256,12,254],[12,257,12,255],[12,258,12,256],[13,258,12,257],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[13,12,12,13],[12,12,12,14],[12,13,12,15],[12,14,12,16],[12,15,12,17],[12,16,12,18],[12,17,12,19],[12,18,12,20],[12,19,12,21],[12,20,12,22],[12,21,12,23],[12,22,12,24],[12,23,12,25],[12,24,12,26],[12,25,12,27],[12,26,12,28],[12,27,12,29],[12,28,12,30],[12,29,12,31],[12,30,12,32],[12,31,12,33],[12,32,12,34],[12,33,12,35],[12,34,12,36],[12,35,12,37],[12,36,12,38],[12,37,12,39],[12,38,12,40],[12,39,12,41],[12,40,12,42],[12,41,12,43],[12,42,12,44],[12,43,12,45],[12,44,12,46],[12,45,11,46],[11,47,12,48],[12,47,12,49],[12,48,12,50],[12,49,12,51],[12,50,12,52],[12,51,12,53],[12,52,12,54],[12,53,12,55],[12,54,12,56],[12,55,12,57],[12,56,12,58],[12,57,12,59],[12,58,12,60],[12,59,12,61],[12,60,12,62],[12,61,12,63],[12,62,12,64],[12,63,12,65],[12,64,12,66],[12,65,12,67],[12,66,12,68],[12,67,12,69],[12,68,12,70],[12,69,12,71],[12,70,12,72],[12,71,12,73],[12,72,12,74],[12,73,12,75],[12,74,12,76],[12,75,12,77],[12,76,12,78],[12,77,12,79],[12,78,12,80],[12,79,12,81],[12,80,12,82],[12,81,12,83],[12,82,12,84],[12,83,12,85],[12,84,13,85],[13,86,12,87],[12,86,12,88],[12,87,12,89],[12,88,12,90],[12,89,12,91],[12,90,12,92],[12,91,12,93],[12,92,12,94],[12,93,12,95],[12,94,12,96],[12,95,12,97],[12,96,12,98],[12,97,12,99],[12,98,12,100],[12,99,12,101],[12,100,12,102],[12,101,12,103],[12,102,12,104],[12,103,12,105],[12,104,12,106],[12,105,12,107],[12,106,12,108],[12,107,12,109],[12,108,12,110],[12,109,12,111],[12,110,12,112],[12,111,12,113],[12,112,12,114],[12,113,12,115],[12,114,12,116],[12,115,12,117],[12,116,12,118],[12,117,12,119],[12,118,12,120],[12,119,11,120],[11,121,12,122],[12,121,12,123],[12,122,12,124],[12,123,12,125],[12,124,12,126],[12,125,12,127],[12,126,12,128],[12,127,12,129],[12,128,12,130],[12,129,12,131],[12,130,12,132],[12,131,12,133],[12,132,12,134],[12,133,12,135],[12,134,12,136],[12,135,12,137],[12,136,12,138],[12,137,12,139],[12,138,12,140],[12,139,12,141],[12,140,12,142],[12,141,12,143],[12,142,12,144],[12,143,12,145],[12,144,12,146],[12,145,12,147],[12,146,12,148],[12,147,12,149],[12,148,12,150],[12,149,12,151],[12,150,12,152],[12,151,12,153],[12,152,12,154],[12,153,12,155],[12,154,12,156],[12,155,12,157],[12,156,12,158],[12,157,12,159],[12,158,12,160],[12,159,12,161],[12,160,12,162],[12,161,12,163],[12,162,12,164],[12,163,12,165],[12,164,12,166],[12,165,12,167],[12,166,12,168],[12,167,12,169],[12,168,13,169],[13,170,12,171],[12,170,12,172],[12,171,12,173],[12,172,12,174],[12,173,12,175],[12,174,12,176],[12,175,12,177],[12,176,12,178],[12,177,12,179],[12,178,12,180],[12,179,12,181],[12,180,12,182],[12,181,12,183],[12,182,12,184],[12,183,12,185],[12,184,12,186],[12,185,12,187],[12,186,12,188],[12,187,12,189],[12,188,12,190],[12,189,12,191],[12,190,12,192],[12,191,12,193],[12,192,12,194],[12,193,12,195],[12,194,12,196],[12,195,12,197],[12,196,12,198],[12,197,12,199],[12,198,12,200],[12,199,12,201],[12,200,12,202],[12,201,12,203],[12,202,12,204],[12,203,12,205],[12,204,12,206],[12,205,12,207],[12,206,12,208],[12,207,12,209],[12,208,12,210],[12,209,12,211],[12,210,12,212],[12,211,12,213],[12,212,12,214],[12,213,11,214],[11,215,12,216],[12,215,12,217],[12,216,12,218],[12,217,12,219],[12,218,12,220],[12,219,12,221],[12,220,12,222],[12,221,12,223],[12,222,12,224],[12,223,12,225],[12,224,12,226],[12,225,12,227],[12,226,12,228],[12,227,12,229],[12,228,12,230],[12,229,12,231],[12,230,12,232],[12,231,12,233],[12,232,12,234],[12,233,12,235],[12,234,12,236],[12,235,12,237],[12,236,12,238],[12,237,12,239],[12,238,12,240],[12,239,12,241],[12,240,12,242],[12,241,12,243],[12,242,12,244],[12,243,12,245],[12,244,12,246],[12,245,12,247],[12,246,12,248],[12,247,12,249],[12,248,12,250],[12,249,12,251],[12,250,12,252],[12,251,12,253],[12,252,12,254],[12,253,12,255],[12,254,12,256],[12,255,12,257],[12,256,12,258],[12,257,12,259],[12,258,12,260],[12,259,12,261],[12,260,12,262],[12,261,12,263],[12,262,12,264],[12,263,12,265],[12,264,12,266],[12,265,12,267],[12,266,12,268],[12,267,12,269],[12,268,12,270],[12,269,12,271],[12,270,12,272],[12,271,12,273],[12,272,12,274],[12,273,13,274],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":14,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":10},{"stap_colors":[[19,0],[35,0],[56,16711807],[77,11141120],[98,11141120],[119,0],[126,13369344],[161,11141120],[182,0],[224,0]],"num":13,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,13,20],[13,19,13,21],[13,20,13,22],[13,21,13,23],[13,22,13,24],[13,23,13,25],[13,24,13,26],[13,25,13,27],[13,26,12,27],[12,28,13,29],[13,28,13,30],[13,29,13,31],[13,30,13,32],[13,31,13,33],[13,32,13,34],[13,33,-1,-1],[-1,-1,13,36],[13,35,13,37],[13,36,13,38],[13,37,13,39],[13,38,13,40],[13,39,13,41],[13,40,0,41],[0,42,13,43],[13,42,13,44],[13,43,13,45],[13,44,13,46],[13,45,13,47],[13,46,13,48],[13,47,12,48],[12,49,13,50],[13,49,13,51],[13,50,13,52],[13,51,13,53],[13,52,13,54],[13,53,13,55],[13,54,-1,-1],[-1,-1,13,57],[13,56,13,58],[13,57,13,59],[13,58,13,60],[13,59,13,61],[13,60,13,62],[13,61,13,63],[13,62,13,64],[13,63,13,65],[13,64,13,66],[13,65,13,67],[13,66,13,68],[13,67,13,69],[13,68,12,69],[12,70,13,71],[13,70,13,72],[13,71,13,73],[13,72,13,74],[13,73,13,75],[13,74,13,76],[13,75,-1,-1],[-1,-1,13,78],[13,77,13,79],[13,78,13,80],[13,79,13,81],[13,80,13,82],[13,81,13,83],[13,82,0,83],[0,84,13,85],[13,84,13,86],[13,85,13,87],[13,86,13,88],[13,87,13,89],[13,88,13,90],[13,89,13,91],[13,90,13,92],[13,91,13,93],[13,92,13,94],[13,93,13,95],[13,94,13,96],[13,95,13,97],[13,96,-1,-1],[-1,-1,13,99],[13,98,13,100],[13,99,13,101],[13,100,13,102],[13,101,13,103],[13,102,13,104],[13,103,0,104],[0,105,13,106],[13,105,13,107],[13,106,13,108],[13,107,13,109],[13,108,13,110],[13,109,13,111],[13,110,12,111],[12,112,13,113],[13,112,13,114],[13,113,13,115],[13,114,13,116],[13,115,13,117],[13,116,13,118],[13,117,-1,-1],[-1,-1,13,120],[13,119,13,121],[13,120,13,122],[13,121,13,123],[13,122,13,124],[13,123,13,125],[13,124,0,125],[-1,-1,13,127],[13,126,13,128],[13,127,13,129],[13,128,13,130],[13,129,13,131],[13,130,13,132],[13,131,12,132],[12,133,13,134],[13,133,13,135],[13,134,13,136],[13,135,13,137],[13,136,13,138],[13,137,13,139],[13,138,13,140],[13,139,13,141],[13,140,13,142],[13,141,13,143],[13,142,13,144],[13,143,13,145],[13,144,13,146],[13,145,0,146],[0,147,13,148],[13,147,13,149],[13,148,13,150],[13,149,13,151],[13,150,13,152],[13,151,13,153],[13,152,13,154],[13,153,13,155],[13,154,13,156],[13,155,13,157],[13,156,13,158],[13,157,13,159],[13,158,13,160],[13,159,-1,-1],[-1,-1,13,162],[13,161,13,163],[13,162,13,164],[13,163,13,165],[13,164,13,166],[13,165,13,167],[13,166,0,167],[0,168,13,169],[13,168,13,170],[13,169,13,171],[13,170,13,172],[13,171,13,173],[13,172,13,174],[13,173,13,175],[13,174,13,176],[13,175,13,177],[13,176,13,178],[13,177,13,179],[13,178,13,180],[13,179,13,181],[13,180,-1,-1],[-1,-1,13,183],[13,182,13,184],[13,183,13,185],[13,184,13,186],[13,185,13,187],[13,186,13,188],[13,187,0,188],[0,189,13,190],[13,189,13,191],[13,190,13,192],[13,191,13,193],[13,192,13,194],[13,193,13,195],[13,194,-1,-1],[12,196,13,197],[13,196,13,198],[13,197,13,199],[13,198,13,200],[13,199,13,201],[13,200,13,202],[13,201,13,203],[13,202,13,204],[13,203,13,205],[13,204,13,206],[13,205,13,207],[13,206,13,208],[13,207,13,209],[13,208,0,209],[0,210,13,211],[13,210,13,212],[13,211,13,213],[13,212,13,214],[13,213,13,215],[13,214,13,216],[13,215,12,216],[12,217,13,218],[13,217,13,219],[13,218,13,220],[13,219,13,221],[13,220,13,222],[13,221,13,223],[13,222,-1,-1],[-1,-1,13,225],[13,224,13,226],[13,225,13,227],[13,226,13,228],[13,227,13,229],[13,228,13,230],[13,229,0,230],[0,231,13,232],[13,231,13,233],[13,232,13,234],[13,233,13,235],[13,234,13,236],[13,235,13,237],[13,236,12,237],[12,238,13,239],[13,238,13,240],[13,239,13,241],[13,240,13,242],[13,241,13,243],[13,242,13,244],[13,243,13,245],[13,244,13,246],[13,245,13,247],[13,246,13,248],[13,247,13,249],[13,248,13,250],[13,249,13,251],[13,250,0,251],[0,252,13,253],[13,252,13,254],[13,253,13,255],[13,254,13,256],[13,255,13,257],[13,256,13,258],[13,257,12,258],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[13,13,12,12],[13,14,13,12],[13,15,13,13],[13,16,13,14],[13,17,13,15],[13,18,13,16],[13,19,13,17],[13,20,13,18],[13,21,13,19],[13,22,13,20],[13,23,13,21],[13,24,13,22],[13,25,13,23],[13,26,13,24],[13,27,13,25],[13,28,13,26],[13,29,13,27],[13,30,13,28],[13,31,13,29],[13,32,13,30],[13,33,13,31],[13,34,13,32],[13,35,13,33],[13,36,13,34],[13,37,13,35],[13,38,13,36],[13,39,13,37],[13,40,13,38],[13,41,13,39],[13,42,13,40],[13,43,13,41],[13,44,13,42],[13,45,13,43],[13,46,13,44],[13,47,13,45],[13,48,13,46],[13,49,13,47],[13,50,13,48],[13,51,13,49],[13,52,13,50],[13,53,13,51],[13,54,13,52],[13,55,13,53],[13,56,13,54],[13,57,13,55],[13,58,13,56],[13,59,13,57],[13,60,13,58],[13,61,13,59],[13,62,13,60],[13,63,13,61],[13,64,13,62],[13,65,13,63],[13,66,13,64],[13,67,13,65],[13,68,13,66],[13,69,13,67],[13,70,13,68],[13,71,13,69],[13,72,13,70],[13,73,13,71],[13,74,13,72],[13,75,13,73],[13,76,13,74],[13,77,13,75],[13,78,13,76],[13,79,13,77],[13,80,13,78],[13,81,13,79],[13,82,13,80],[13,83,13,81],[13,84,13,82],[13,85,13,83],[12,85,13,84],[13,87,12,86],[13,88,13,86],[13,89,13,87],[13,90,13,88],[13,91,13,89],[13,92,13,90],[13,93,13,91],[13,94,13,92],[13,95,13,93],[13,96,13,94],[13,97,13,95],[13,98,13,96],[13,99,13,97],[13,100,13,98],[13,101,13,99],[13,102,13,100],[13,103,13,101],[13,104,13,102],[13,105,13,103],[13,106,13,104],[13,107,13,105],[13,108,13,106],[13,109,13,107],[13,110,13,108],[13,111,13,109],[13,112,13,110],[13,113,13,111],[13,114,13,112],[13,115,13,113],[13,116,13,114],[13,117,13,115],[13,118,13,116],[13,119,13,117],[13,120,13,118],[13,121,13,119],[13,122,13,120],[13,123,13,121],[13,124,13,122],[13,125,13,123],[13,126,13,124],[13,127,13,125],[13,128,13,126],[13,129,13,127],[13,130,13,128],[13,131,13,129],[13,132,13,130],[13,133,13,131],[13,134,13,132],[13,135,13,133],[13,136,13,134],[13,137,13,135],[13,138,13,136],[13,139,13,137],[13,140,13,138],[13,141,13,139],[13,142,13,140],[13,143,13,141],[13,144,13,142],[13,145,13,143],[13,146,13,144],[13,147,13,145],[13,148,13,146],[13,149,13,147],[13,150,13,148],[13,151,13,149],[13,152,13,150],[13,153,13,151],[13,154,13,152],[13,155,13,153],[13,156,13,154],[13,157,13,155],[13,158,13,156],[13,159,13,157],[13,160,13,158],[13,161,13,159],[13,162,13,160],[13,163,13,161],[13,164,13,162],[13,165,13,163],[13,166,13,164],[13,167,13,165],[13,168,13,166],[13,169,13,167],[12,169,13,168],[13,171,12,170],[13,172,13,170],[13,173,13,171],[13,174,13,172],[13,175,13,173],[13,176,13,174],[13,177,13,175],[13,178,13,176],[13,179,13,177],[13,180,13,178],[13,181,13,179],[13,182,13,180],[13,183,13,181],[13,184,13,182],[13,185,13,183],[13,186,13,184],[13,187,13,185],[13,188,13,186],[13,189,13,187],[13,190,13,188],[13,191,13,189],[13,192,13,190],[13,193,13,191],[13,194,13,192],[13,195,13,193],[13,196,13,194],[13,197,13,195],[13,198,13,196],[13,199,13,197],[13,200,13,198],[13,201,13,199],[13,202,13,200],[13,203,13,201],[13,204,13,202],[13,205,13,203],[13,206,13,204],[13,207,13,205],[13,208,13,206],[13,209,13,207],[13,210,13,208],[13,211,13,209],[13,212,13,210],[13,213,13,211],[13,214,13,212],[13,215,13,213],[13,216,13,214],[13,217,13,215],[13,218,13,216],[13,219,13,217],[13,220,13,218],[13,221,13,219],[13,222,13,220],[13,223,13,221],[13,224,13,222],[13,225,13,223],[13,226,13,224],[13,227,13,225],[13,228,13,226],[13,229,13,227],[13,230,13,228],[13,231,13,229],[13,232,13,230],[13,233,13,231],[13,234,13,232],[13,235,13,233],[13,236,13,234],[13,237,13,235],[13,238,13,236],[13,239,13,237],[13,240,13,238],[13,241,13,239],[13,242,13,240],[13,243,13,241],[13,244,13,242],[13,245,13,243],[13,246,13,244],[13,247,13,245],[13,248,13,246],[13,249,13,247],[13,250,13,248],[13,251,13,249],[13,252,13,250],[13,253,13,251],[13,254,13,252],[13,255,13,253],[13,256,13,254],[13,257,13,255],[13,258,13,256],[13,259,13,257],[13,260,13,258],[13,261,13,259],[13,262,13,260],[13,263,13,261],[13,264,13,262],[13,265,13,263],[13,266,13,264],[13,267,13,265],[13,268,13,266],[13,269,13,267],[13,270,13,268],[13,271,13,269],[13,272,13,270],[13,273,13,271],[13,274,13,272],[12,274,13,273],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":15,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":10},{"stap_colors":[[111,13369344],[132,0],[174,3355443],[244,0],[265,0]],"num":14,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[14,19,-1,-1],[14,20,14,18],[14,21,14,19],[14,22,14,20],[14,23,14,21],[14,24,14,22],[14,25,14,23],[14,26,14,24],[14,27,14,25],[14,28,14,26],[14,29,14,27],[14,30,14,28],[14,31,14,29],[14,32,14,30],[14,33,14,31],[14,34,14,32],[15,34,14,33],[14,36,15,35],[14,37,14,35],[14,38,14,36],[14,39,14,37],[14,40,14,38],[14,41,14,39],[27,41,14,40],[14,43,27,42],[14,44,14,42],[14,45,14,43],[14,46,14,44],[14,47,14,45],[14,48,14,46],[14,49,14,47],[14,50,14,48],[14,51,14,49],[14,52,14,50],[14,53,14,51],[14,54,14,52],[14,55,14,53],[15,55,14,54],[14,57,15,56],[14,58,14,56],[14,59,14,57],[14,60,14,58],[14,61,14,59],[14,62,14,60],[27,62,14,61],[14,64,27,63],[14,65,14,63],[14,66,14,64],[14,67,14,65],[14,68,14,66],[14,69,14,67],[14,70,14,68],[14,71,14,69],[14,72,14,70],[14,73,14,71],[14,74,14,72],[14,75,14,73],[14,76,14,74],[15,76,14,75],[14,78,15,77],[14,79,14,77],[14,80,14,78],[14,81,14,79],[14,82,14,80],[14,83,14,81],[27,83,14,82],[14,85,27,84],[14,86,14,84],[14,87,14,85],[14,88,14,86],[14,89,14,87],[14,90,14,88],[14,91,14,89],[14,92,14,90],[14,93,14,91],[14,94,14,92],[14,95,14,93],[14,96,14,94],[14,97,14,95],[15,97,14,96],[14,99,15,98],[14,100,14,98],[14,101,14,99],[14,102,14,100],[14,103,14,101],[14,104,14,102],[27,104,14,103],[14,106,27,105],[14,107,14,105],[14,108,14,106],[14,109,14,107],[14,110,14,108],[14,111,14,109],[-1,-1,14,110],[14,113,-1,-1],[14,114,14,112],[14,115,14,113],[14,116,14,114],[14,117,14,115],[14,118,14,116],[15,118,14,117],[14,120,15,119],[14,121,14,119],[14,122,14,120],[14,123,14,121],[14,124,14,122],[14,125,14,123],[27,125,14,124],[14,127,27,126],[14,128,14,126],[14,129,14,127],[14,130,14,128],[14,131,14,129],[14,132,14,130],[-1,-1,14,131],[14,134,-1,-1],[14,135,14,133],[14,136,14,134],[14,137,14,135],[14,138,14,136],[14,139,14,137],[15,139,14,138],[14,141,15,140],[14,142,14,140],[14,143,14,141],[14,144,14,142],[14,145,14,143],[14,146,14,144],[27,146,14,145],[14,148,27,147],[14,149,14,147],[14,150,14,148],[14,151,14,149],[14,152,14,150],[14,153,14,151],[14,154,14,152],[14,155,14,153],[14,156,14,154],[14,157,14,155],[14,158,14,156],[14,159,14,157],[14,160,14,158],[15,160,14,159],[14,162,15,161],[14,163,14,161],[14,164,14,162],[14,165,14,163],[14,166,14,164],[14,167,14,165],[27,167,14,166],[14,169,27,168],[14,170,14,168],[14,171,14,169],[14,172,14,170],[14,173,14,171],[14,174,14,172],[-1,-1,14,173],[14,176,-1,-1],[14,177,14,175],[14,178,14,176],[14,179,14,177],[14,180,14,178],[14,181,14,179],[15,181,14,180],[14,183,15,182],[14,184,14,182],[14,185,14,183],[14,186,14,184],[14,187,14,185],[14,188,14,186],[27,188,14,187],[14,190,27,189],[14,191,14,189],[14,192,14,190],[14,193,14,191],[14,194,14,192],[14,195,14,193],[14,196,14,194],[14,197,14,195],[14,198,14,196],[14,199,14,197],[14,200,14,198],[14,201,14,199],[14,202,14,200],[15,202,14,201],[14,204,15,203],[14,205,14,203],[14,206,14,204],[14,207,14,205],[14,208,14,206],[14,209,14,207],[27,209,14,208],[14,211,27,210],[14,212,14,210],[14,213,14,211],[14,214,14,212],[14,215,14,213],[14,216,14,214],[14,217,14,215],[14,218,14,216],[14,219,14,217],[14,220,14,218],[14,221,14,219],[14,222,14,220],[14,223,14,221],[15,223,14,222],[14,225,15,224],[14,226,14,224],[14,227,14,225],[14,228,14,226],[14,229,14,227],[14,230,14,228],[27,230,14,229],[14,232,27,231],[14,233,14,231],[14,234,14,232],[14,235,14,233],[14,236,14,234],[14,237,14,235],[39,237,14,236],[14,239,39,238],[14,240,14,238],[14,241,14,239],[14,242,14,240],[14,243,14,241],[14,244,14,242],[-1,-1,14,243],[14,246,15,245],[14,247,14,245],[14,248,14,246],[14,249,14,247],[14,250,14,248],[14,251,14,249],[27,251,14,250],[14,253,27,252],[14,254,14,252],[14,255,14,253],[14,256,14,254],[14,257,14,255],[14,258,14,256],[14,259,14,257],[14,260,14,258],[14,261,14,259],[14,262,14,260],[14,263,14,261],[14,264,14,262],[14,265,14,263],[-1,-1,14,264],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[15,9,14,10],[14,9,14,11],[14,10,14,12],[14,11,14,13],[14,12,14,14],[14,13,14,15],[14,14,14,16],[14,15,14,17],[14,16,14,18],[14,17,14,19],[14,18,14,20],[14,19,14,21],[14,20,14,22],[14,21,14,23],[14,22,14,24],[14,23,14,25],[14,24,14,26],[14,25,14,27],[14,26,14,28],[14,27,14,29],[14,28,14,30],[14,29,14,31],[14,30,14,32],[14,31,14,33],[14,32,14,34],[14,33,14,35],[14,34,14,36],[14,35,14,37],[14,36,14,38],[14,37,14,39],[14,38,14,40],[14,39,14,41],[14,40,14,42],[14,41,14,43],[14,42,14,44],[14,43,14,45],[14,44,14,46],[14,45,14,47],[14,46,14,48],[14,47,14,49],[14,48,14,50],[14,49,14,51],[14,50,14,52],[14,51,14,53],[14,52,14,54],[14,53,14,55],[14,54,14,56],[14,55,14,57],[14,56,14,58],[14,57,14,59],[14,58,14,60],[14,59,14,61],[14,60,14,62],[14,61,14,63],[14,62,14,64],[14,63,14,65],[14,64,14,66],[14,65,14,67],[14,66,14,68],[14,67,14,69],[14,68,14,70],[14,69,14,71],[14,70,14,72],[14,71,14,73],[14,72,14,74],[14,73,14,75],[14,74,14,76],[14,75,14,77],[14,76,14,78],[14,77,14,79],[14,78,14,80],[14,79,14,81],[14,80,14,82],[14,81,14,83],[14,82,14,84],[14,83,14,85],[14,84,14,86],[14,85,14,87],[14,86,14,88],[14,87,14,89],[14,88,14,90],[14,89,14,91],[14,90,14,92],[14,91,14,93],[14,92,14,94],[14,93,14,95],[14,94,14,96],[14,95,14,97],[14,96,14,98],[14,97,14,99],[14,98,14,100],[14,99,14,101],[14,100,14,102],[14,101,14,103],[14,102,14,104],[14,103,14,105],[14,104,14,106],[14,105,14,107],[14,106,14,108],[14,107,14,109],[14,108,14,110],[14,109,14,111],[14,110,14,112],[14,111,14,113],[14,112,14,114],[14,113,14,115],[14,114,14,116],[14,115,14,117],[14,116,14,118],[14,117,14,119],[14,118,14,120],[14,119,14,121],[14,120,14,122],[14,121,14,123],[14,122,14,124],[14,123,14,125],[14,124,14,126],[14,125,14,127],[14,126,14,128],[14,127,14,129],[14,128,14,130],[14,129,14,131],[14,130,14,132],[14,131,14,133],[14,132,14,134],[14,133,14,135],[14,134,14,136],[14,135,14,137],[14,136,14,138],[14,137,14,139],[14,138,14,140],[14,139,14,141],[14,140,14,142],[14,141,14,143],[14,142,14,144],[14,143,14,145],[14,144,14,146],[14,145,14,147],[14,146,14,148],[14,147,14,149],[14,148,14,150],[14,149,14,151],[14,150,14,152],[14,151,14,153],[14,152,14,154],[14,153,14,155],[14,154,14,156],[14,155,14,157],[14,156,14,158],[14,157,14,159],[14,158,14,160],[14,159,14,161],[14,160,14,162],[14,161,14,163],[14,162,14,164],[14,163,14,165],[14,164,14,166],[14,165,14,167],[14,166,14,168],[14,167,14,169],[14,168,14,170],[14,169,14,171],[14,170,14,172],[14,171,14,173],[14,172,14,174],[14,173,14,175],[14,174,14,176],[14,175,14,177],[14,176,14,178],[14,177,14,179],[14,178,14,180],[14,179,14,181],[14,180,14,182],[14,181,14,183],[14,182,14,184],[14,183,14,185],[14,184,14,186],[14,185,14,187],[14,186,14,188],[14,187,14,189],[14,188,14,190],[14,189,14,191],[14,190,14,192],[14,191,14,193],[14,192,14,194],[14,193,14,195],[14,194,14,196],[14,195,14,197],[14,196,14,198],[14,197,14,199],[14,198,14,200],[14,199,14,201],[14,200,14,202],[14,201,14,203],[14,202,14,204],[14,203,14,205],[14,204,14,206],[14,205,14,207],[14,206,14,208],[14,207,14,209],[14,208,14,210],[14,209,14,211],[14,210,14,212],[14,211,14,213],[14,212,14,214],[14,213,14,215],[14,214,14,216],[14,215,14,217],[14,216,14,218],[14,217,14,219],[14,218,14,220],[14,219,14,221],[14,220,14,222],[14,221,14,223],[14,222,14,224],[14,223,14,225],[14,224,14,226],[14,225,14,227],[14,226,14,228],[14,227,14,229],[14,228,14,230],[14,229,14,231],[14,230,14,232],[14,231,14,233],[14,232,14,234],[14,233,14,235],[14,234,14,236],[14,235,14,237],[14,236,14,238],[14,237,14,239],[14,238,14,240],[14,239,14,241],[14,240,14,242],[14,241,14,243],[14,242,14,244],[14,243,14,245],[14,244,14,246],[14,245,14,247],[14,246,14,248],[14,247,14,249],[14,248,14,250],[14,249,14,251],[14,250,14,252],[14,251,14,253],[14,252,14,254],[14,253,14,255],[14,254,14,256],[14,255,14,257],[14,256,14,258],[14,257,14,259],[14,258,14,260],[14,259,14,261],[14,260,14,262],[14,261,14,263],[14,262,14,264],[14,263,14,265],[14,264,14,266],[14,265,14,267],[14,266,14,268],[14,267,14,269],[14,268,14,270],[14,269,15,270],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":16,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":14},{"stap_colors":[[22,0],[42,0],[63,0],[196,0],[210,255],[252,0]],"num":15,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,15,23],[15,22,15,24],[15,23,15,25],[15,24,15,26],[15,25,15,27],[15,26,15,28],[15,27,15,29],[15,28,15,30],[15,29,15,31],[15,30,15,32],[15,31,15,33],[15,32,15,34],[15,33,14,34],[14,35,15,36],[15,35,15,37],[15,36,15,38],[15,37,15,39],[15,38,15,40],[15,39,15,41],[15,40,-1,-1],[-1,-1,15,43],[15,42,15,44],[15,43,15,45],[15,44,15,46],[15,45,15,47],[15,46,15,48],[15,47,15,49],[15,48,15,50],[15,49,15,51],[15,50,15,52],[15,51,15,53],[15,52,15,54],[15,53,15,55],[15,54,14,55],[14,56,15,57],[15,56,15,58],[15,57,15,59],[15,58,15,60],[15,59,15,61],[15,60,15,62],[15,61,-1,-1],[-1,-1,15,64],[15,63,15,65],[15,64,15,66],[15,65,15,67],[15,66,15,68],[15,67,15,69],[15,68,16,69],[16,70,15,71],[15,70,15,72],[15,71,15,73],[15,72,15,74],[15,73,15,75],[15,74,15,76],[15,75,14,76],[14,77,15,78],[15,77,15,79],[15,78,15,80],[15,79,15,81],[15,80,15,82],[15,81,15,83],[15,82,15,84],[15,83,15,85],[15,84,15,86],[15,85,15,87],[15,86,15,88],[15,87,15,89],[15,88,15,90],[15,89,16,90],[16,91,15,92],[15,91,15,93],[15,92,15,94],[15,93,15,95],[15,94,15,96],[15,95,15,97],[15,96,14,97],[14,98,15,99],[15,98,15,100],[15,99,15,101],[15,100,15,102],[15,101,15,103],[15,102,15,104],[15,103,15,105],[15,104,15,106],[15,105,15,107],[15,106,15,108],[15,107,15,109],[15,108,15,110],[15,109,15,111],[15,110,16,111],[16,112,15,113],[15,112,15,114],[15,113,15,115],[15,114,15,116],[15,115,15,117],[15,116,15,118],[15,117,14,118],[14,119,15,120],[15,119,15,121],[15,120,15,122],[15,121,15,123],[15,122,15,124],[15,123,15,125],[15,124,15,126],[15,125,15,127],[15,126,15,128],[15,127,15,129],[15,128,15,130],[15,129,15,131],[15,130,15,132],[15,131,15,133],[15,132,15,134],[15,133,15,135],[15,134,15,136],[15,135,15,137],[15,136,15,138],[15,137,15,139],[15,138,14,139],[14,140,15,141],[15,140,15,142],[15,141,15,143],[15,142,15,144],[15,143,15,145],[15,144,15,146],[15,145,15,147],[15,146,15,148],[15,147,15,149],[15,148,15,150],[15,149,15,151],[15,150,15,152],[15,151,15,153],[15,152,-1,-1],[16,154,15,155],[15,154,15,156],[15,155,15,157],[15,156,15,158],[15,157,15,159],[15,158,15,160],[15,159,14,160],[14,161,15,162],[15,161,15,163],[15,162,15,164],[15,163,15,165],[15,164,15,166],[15,165,15,167],[15,166,15,168],[15,167,15,169],[15,168,15,170],[15,169,15,171],[15,170,15,172],[15,171,15,173],[15,172,15,174],[15,173,16,174],[16,175,15,176],[15,175,15,177],[15,176,15,178],[15,177,15,179],[15,178,15,180],[15,179,15,181],[15,180,14,181],[14,182,15,183],[15,182,15,184],[15,183,15,185],[15,184,15,186],[15,185,15,187],[15,186,15,188],[15,187,15,189],[15,188,15,190],[15,189,15,191],[15,190,15,192],[15,191,15,193],[15,192,15,194],[15,193,15,195],[15,194,16,195],[-1,-1,15,197],[15,196,15,198],[15,197,15,199],[15,198,15,200],[15,199,15,201],[15,200,15,202],[15,201,14,202],[14,203,15,204],[15,203,15,205],[15,204,15,206],[15,205,15,207],[15,206,15,208],[15,207,15,209],[15,208,-1,-1],[-1,-1,15,211],[15,210,15,212],[15,211,15,213],[15,212,15,214],[15,213,15,215],[15,214,15,216],[15,215,15,217],[15,216,15,218],[15,217,15,219],[15,218,15,220],[15,219,15,221],[15,220,15,222],[15,221,15,223],[15,222,14,223],[14,224,15,225],[15,224,15,226],[15,225,15,227],[15,226,15,228],[15,227,15,229],[15,228,15,230],[15,229,36,230],[36,231,15,232],[15,231,15,233],[15,232,15,234],[15,233,15,235],[15,234,15,236],[15,235,15,237],[15,236,15,238],[15,237,15,239],[15,238,15,240],[15,239,15,241],[15,240,15,242],[15,241,15,243],[15,242,15,244],[15,243,-1,-1],[14,245,15,246],[15,245,15,247],[15,246,15,248],[15,247,15,249],[15,248,15,250],[15,249,15,251],[15,250,-1,-1],[-1,-1,15,253],[15,252,15,254],[15,253,15,255],[15,254,15,256],[15,255,15,257],[15,256,15,258],[15,257,16,258],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[15,10,14,9],[15,11,15,9],[15,12,15,10],[15,13,15,11],[15,14,15,12],[15,15,15,13],[15,16,15,14],[15,17,15,15],[15,18,15,16],[15,19,15,17],[15,20,15,18],[15,21,15,19],[15,22,15,20],[15,23,15,21],[15,24,15,22],[15,25,15,23],[15,26,15,24],[15,27,15,25],[15,28,15,26],[15,29,15,27],[15,30,15,28],[15,31,15,29],[15,32,15,30],[16,32,15,31],[15,34,16,33],[15,35,15,33],[15,36,15,34],[15,37,15,35],[15,38,15,36],[15,39,15,37],[15,40,15,38],[15,41,15,39],[15,42,15,40],[15,43,15,41],[15,44,15,42],[15,45,15,43],[15,46,15,44],[15,47,15,45],[15,48,15,46],[15,49,15,47],[15,50,15,48],[15,51,15,49],[15,52,15,50],[15,53,15,51],[15,54,15,52],[15,55,15,53],[15,56,15,54],[15,57,15,55],[15,58,15,56],[15,59,15,57],[15,60,15,58],[15,61,15,59],[15,62,15,60],[15,63,15,61],[15,64,15,62],[15,65,15,63],[15,66,15,64],[15,67,15,65],[15,68,15,66],[15,69,15,67],[15,70,15,68],[15,71,15,69],[15,72,15,70],[15,73,15,71],[15,74,15,72],[15,75,15,73],[15,76,15,74],[15,77,15,75],[15,78,15,76],[15,79,15,77],[15,80,15,78],[15,81,15,79],[15,82,15,80],[15,83,15,81],[15,84,15,82],[15,85,15,83],[15,86,15,84],[15,87,15,85],[15,88,15,86],[15,89,15,87],[15,90,15,88],[15,91,15,89],[15,92,15,90],[15,93,15,91],[15,94,15,92],[15,95,15,93],[15,96,15,94],[15,97,15,95],[15,98,15,96],[15,99,15,97],[15,100,15,98],[15,101,15,99],[15,102,15,100],[15,103,15,101],[15,104,15,102],[15,105,15,103],[15,106,15,104],[15,107,15,105],[15,108,15,106],[15,109,15,107],[15,110,15,108],[15,111,15,109],[15,112,15,110],[15,113,15,111],[15,114,15,112],[15,115,15,113],[15,116,15,114],[15,117,15,115],[15,118,15,116],[15,119,15,117],[15,120,15,118],[15,121,15,119],[15,122,15,120],[15,123,15,121],[15,124,15,122],[15,125,15,123],[15,126,15,124],[15,127,15,125],[16,127,15,126],[15,129,16,128],[15,130,15,128],[15,131,15,129],[15,132,15,130],[15,133,15,131],[15,134,15,132],[15,135,15,133],[15,136,15,134],[15,137,15,135],[15,138,15,136],[15,139,15,137],[15,140,15,138],[15,141,15,139],[15,142,15,140],[15,143,15,141],[15,144,15,142],[15,145,15,143],[15,146,15,144],[15,147,15,145],[15,148,15,146],[15,149,15,147],[15,150,15,148],[15,151,15,149],[15,152,15,150],[15,153,15,151],[15,154,15,152],[15,155,15,153],[15,156,15,154],[15,157,15,155],[15,158,15,156],[15,159,15,157],[15,160,15,158],[15,161,15,159],[15,162,15,160],[15,163,15,161],[15,164,15,162],[15,165,15,163],[15,166,15,164],[15,167,15,165],[15,168,15,166],[15,169,15,167],[15,170,15,168],[15,171,15,169],[15,172,15,170],[15,173,15,171],[15,174,15,172],[15,175,15,173],[15,176,15,174],[15,177,15,175],[15,178,15,176],[15,179,15,177],[15,180,15,178],[15,181,15,179],[15,182,15,180],[15,183,15,181],[15,184,15,182],[15,185,15,183],[15,186,15,184],[15,187,15,185],[15,188,15,186],[15,189,15,187],[15,190,15,188],[15,191,15,189],[15,192,15,190],[15,193,15,191],[15,194,15,192],[15,195,15,193],[15,196,15,194],[15,197,15,195],[15,198,15,196],[15,199,15,197],[15,200,15,198],[15,201,15,199],[15,202,15,200],[15,203,15,201],[15,204,15,202],[15,205,15,203],[15,206,15,204],[15,207,15,205],[15,208,15,206],[15,209,15,207],[15,210,15,208],[15,211,15,209],[15,212,15,210],[15,213,15,211],[15,214,15,212],[15,215,15,213],[15,216,15,214],[15,217,15,215],[15,218,15,216],[15,219,15,217],[15,220,15,218],[15,221,15,219],[15,222,15,220],[15,223,15,221],[15,224,15,222],[15,225,15,223],[15,226,15,224],[15,227,15,225],[15,228,15,226],[15,229,15,227],[15,230,15,228],[15,231,15,229],[15,232,15,230],[16,232,15,231],[15,234,16,233],[15,235,15,233],[15,236,15,234],[15,237,15,235],[15,238,15,236],[15,239,15,237],[15,240,15,238],[15,241,15,239],[15,242,15,240],[15,243,15,241],[15,244,15,242],[15,245,15,243],[15,246,15,244],[36,246,15,245],[15,248,36,247],[15,249,15,247],[15,250,15,248],[15,251,15,249],[15,252,15,250],[15,253,15,251],[15,254,15,252],[15,255,15,253],[15,256,15,254],[15,257,15,255],[15,258,15,256],[15,259,15,257],[15,260,15,258],[15,261,15,259],[15,262,15,260],[15,263,15,261],[15,264,15,262],[15,265,15,263],[15,266,15,264],[15,267,15,265],[15,268,15,266],[15,269,15,267],[15,270,15,268],[14,270,15,269],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":16,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":13},{"stap_colors":[[83,0],[97,0],[132,11141120],[153,0],[160,3355443],[188,3355443]],"num":16,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[16,25,-1,-1],[16,26,16,24],[16,27,16,25],[16,28,16,26],[16,29,16,27],[16,30,16,28],[16,31,16,29],[16,32,16,30],[16,33,16,31],[16,34,16,32],[16,35,16,33],[16,36,16,34],[16,37,16,35],[16,38,16,36],[16,39,16,37],[16,40,16,38],[16,41,16,39],[17,41,16,40],[16,43,17,42],[16,44,16,42],[16,45,16,43],[16,46,16,44],[16,47,16,45],[16,48,16,46],[16,49,16,47],[16,50,16,48],[16,51,16,49],[16,52,16,50],[16,53,16,51],[16,54,16,52],[16,55,16,53],[16,56,16,54],[16,57,16,55],[16,58,16,56],[16,59,16,57],[16,60,16,58],[16,61,16,59],[16,62,16,60],[17,62,16,61],[16,64,17,63],[16,65,16,63],[16,66,16,64],[16,67,16,65],[16,68,16,66],[16,69,16,67],[15,69,16,68],[16,71,15,70],[16,72,16,70],[16,73,16,71],[16,74,16,72],[16,75,16,73],[16,76,16,74],[16,77,16,75],[16,78,16,76],[16,79,16,77],[16,80,16,78],[16,81,16,79],[16,82,16,80],[16,83,16,81],[-1,-1,16,82],[16,85,-1,-1],[16,86,16,84],[16,87,16,85],[16,88,16,86],[16,89,16,87],[16,90,16,88],[15,90,16,89],[16,92,15,91],[16,93,16,91],[16,94,16,92],[16,95,16,93],[16,96,16,94],[16,97,16,95],[-1,-1,16,96],[16,99,-1,-1],[16,100,16,98],[16,101,16,99],[16,102,16,100],[16,103,16,101],[16,104,16,102],[16,105,16,103],[16,106,16,104],[16,107,16,105],[16,108,16,106],[16,109,16,107],[16,110,16,108],[16,111,16,109],[15,111,16,110],[16,113,15,112],[16,114,16,112],[16,115,16,113],[16,116,16,114],[16,117,16,115],[16,118,16,116],[16,119,16,117],[16,120,16,118],[16,121,16,119],[16,122,16,120],[16,123,16,121],[16,124,16,122],[16,125,16,123],[17,125,16,124],[16,127,17,126],[16,128,16,126],[16,129,16,127],[16,130,16,128],[16,131,16,129],[16,132,16,130],[-1,-1,16,131],[16,134,-1,-1],[16,135,16,133],[16,136,16,134],[16,137,16,135],[16,138,16,136],[16,139,16,137],[16,140,16,138],[16,141,16,139],[16,142,16,140],[16,143,16,141],[16,144,16,142],[16,145,16,143],[16,146,16,144],[17,146,16,145],[16,148,17,147],[16,149,16,147],[16,150,16,148],[16,151,16,149],[16,152,16,150],[16,153,16,151],[-1,-1,16,152],[16,155,15,154],[16,156,16,154],[16,157,16,155],[16,158,16,156],[16,159,16,157],[16,160,16,158],[-1,-1,16,159],[16,162,-1,-1],[16,163,16,161],[16,164,16,162],[16,165,16,163],[16,166,16,164],[16,167,16,165],[17,167,16,166],[16,169,17,168],[16,170,16,168],[16,171,16,169],[16,172,16,170],[16,173,16,171],[16,174,16,172],[15,174,16,173],[16,176,15,175],[16,177,16,175],[16,178,16,176],[16,179,16,177],[16,180,16,178],[16,181,16,179],[16,182,16,180],[16,183,16,181],[16,184,16,182],[16,185,16,183],[16,186,16,184],[16,187,16,185],[16,188,16,186],[-1,-1,16,187],[16,190,-1,-1],[16,191,16,189],[16,192,16,190],[16,193,16,191],[16,194,16,192],[16,195,16,193],[15,195,16,194],[16,197,-1,-1],[16,198,16,196],[16,199,16,197],[16,200,16,198],[16,201,16,199],[16,202,16,200],[16,203,16,201],[16,204,16,202],[16,205,16,203],[16,206,16,204],[16,207,16,205],[16,208,16,206],[16,209,16,207],[17,209,16,208],[16,211,17,210],[16,212,16,210],[16,213,16,211],[16,214,16,212],[16,215,16,213],[16,216,16,214],[16,217,16,215],[16,218,16,216],[16,219,16,217],[16,220,16,218],[16,221,16,219],[16,222,16,220],[16,223,16,221],[16,224,16,222],[16,225,16,223],[16,226,16,224],[16,227,16,225],[16,228,16,226],[16,229,16,227],[16,230,16,228],[17,230,16,229],[16,232,17,231],[16,233,16,231],[16,234,16,232],[16,235,16,233],[16,236,16,234],[16,237,16,235],[16,238,16,236],[16,239,16,237],[16,240,16,238],[16,241,16,239],[16,242,16,240],[16,243,16,241],[16,244,16,242],[16,245,16,243],[16,246,16,244],[16,247,16,245],[16,248,16,246],[16,249,16,247],[16,250,16,248],[16,251,16,249],[17,251,16,250],[16,253,17,252],[16,254,16,252],[16,255,16,253],[16,256,16,254],[16,257,16,255],[16,258,16,256],[15,258,16,257],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[17,5,16,6],[16,5,16,7],[16,6,16,8],[16,7,16,9],[16,8,16,10],[16,9,16,11],[16,10,16,12],[16,11,16,13],[16,12,16,14],[16,13,16,15],[16,14,16,16],[16,15,16,17],[16,16,16,18],[16,17,16,19],[16,18,16,20],[16,19,16,21],[16,20,16,22],[16,21,16,23],[16,22,16,24],[16,23,16,25],[16,24,16,26],[16,25,16,27],[16,26,16,28],[16,27,16,29],[16,28,16,30],[16,29,16,31],[16,30,16,32],[16,31,15,32],[15,33,16,34],[16,33,16,35],[16,34,16,36],[16,35,16,37],[16,36,16,38],[16,37,16,39],[16,38,16,40],[16,39,16,41],[16,40,16,42],[16,41,16,43],[16,42,16,44],[16,43,16,45],[16,44,16,46],[16,45,16,47],[16,46,16,48],[16,47,16,49],[16,48,16,50],[16,49,16,51],[16,50,16,52],[16,51,16,53],[16,52,16,54],[16,53,16,55],[16,54,16,56],[16,55,16,57],[16,56,16,58],[16,57,16,59],[16,58,16,60],[16,59,16,61],[16,60,16,62],[16,61,16,63],[16,62,16,64],[16,63,16,65],[16,64,16,66],[16,65,16,67],[16,66,16,68],[16,67,16,69],[16,68,16,70],[16,69,16,71],[16,70,16,72],[16,71,16,73],[16,72,16,74],[16,73,16,75],[16,74,16,76],[16,75,16,77],[16,76,16,78],[16,77,17,78],[17,79,16,80],[16,79,16,81],[16,80,16,82],[16,81,16,83],[16,82,16,84],[16,83,16,85],[16,84,16,86],[16,85,16,87],[16,86,16,88],[16,87,16,89],[16,88,16,90],[16,89,16,91],[16,90,16,92],[16,91,16,93],[16,92,16,94],[16,93,16,95],[16,94,16,96],[16,95,16,97],[16,96,16,98],[16,97,16,99],[16,98,16,100],[16,99,16,101],[16,100,16,102],[16,101,16,103],[16,102,16,104],[16,103,16,105],[16,104,16,106],[16,105,16,107],[16,106,16,108],[16,107,16,109],[16,108,16,110],[16,109,16,111],[16,110,16,112],[16,111,16,113],[16,112,16,114],[16,113,16,115],[16,114,16,116],[16,115,16,117],[16,116,16,118],[16,117,16,119],[16,118,16,120],[16,119,16,121],[16,120,16,122],[16,121,16,123],[16,122,16,124],[16,123,16,125],[16,124,16,126],[16,125,16,127],[16,126,15,127],[15,128,16,129],[16,128,16,130],[16,129,16,131],[16,130,16,132],[16,131,16,133],[16,132,16,134],[16,133,16,135],[16,134,16,136],[16,135,16,137],[16,136,16,138],[16,137,16,139],[16,138,16,140],[16,139,16,141],[16,140,16,142],[16,141,16,143],[16,142,16,144],[16,143,16,145],[16,144,16,146],[16,145,16,147],[16,146,16,148],[16,147,16,149],[16,148,16,150],[16,149,16,151],[16,150,16,152],[16,151,16,153],[16,152,16,154],[16,153,16,155],[16,154,16,156],[16,155,16,157],[16,156,16,158],[16,157,16,159],[16,158,16,160],[16,159,16,161],[16,160,16,162],[16,161,16,163],[16,162,16,164],[16,163,16,165],[16,164,16,166],[16,165,16,167],[16,166,16,168],[16,167,16,169],[16,168,16,170],[16,169,16,171],[16,170,16,172],[16,171,16,173],[16,172,16,174],[16,173,16,175],[16,174,16,176],[16,175,16,177],[16,176,16,178],[16,177,16,179],[16,178,16,180],[16,179,16,181],[16,180,16,182],[16,181,16,183],[16,182,17,183],[17,184,16,185],[16,184,16,186],[16,185,16,187],[16,186,16,188],[16,187,16,189],[16,188,16,190],[16,189,16,191],[16,190,16,192],[16,191,16,193],[16,192,16,194],[16,193,16,195],[16,194,16,196],[16,195,16,197],[16,196,16,198],[16,197,16,199],[16,198,16,200],[16,199,16,201],[16,200,16,202],[16,201,16,203],[16,202,16,204],[16,203,16,205],[16,204,16,206],[16,205,16,207],[16,206,16,208],[16,207,16,209],[16,208,16,210],[16,209,16,211],[16,210,16,212],[16,211,16,213],[16,212,16,214],[16,213,16,215],[16,214,16,216],[16,215,16,217],[16,216,16,218],[16,217,16,219],[16,218,16,220],[16,219,16,221],[16,220,16,222],[16,221,16,223],[16,222,16,224],[16,223,16,225],[16,224,16,226],[16,225,16,227],[16,226,16,228],[16,227,16,229],[16,228,16,230],[16,229,16,231],[16,230,16,232],[16,231,15,232],[15,233,16,234],[16,233,16,235],[16,234,16,236],[16,235,16,237],[16,236,16,238],[16,237,16,239],[16,238,16,240],[16,239,16,241],[16,240,16,242],[16,241,16,243],[16,242,16,244],[16,243,16,245],[16,244,16,246],[16,245,16,247],[16,246,16,248],[16,247,16,249],[16,248,16,250],[16,249,16,251],[16,250,16,252],[16,251,16,253],[16,252,16,254],[16,253,16,255],[16,254,16,256],[16,255,16,257],[16,256,16,258],[16,257,16,259],[16,258,16,260],[16,259,16,261],[16,260,16,262],[16,261,16,263],[16,262,16,264],[16,263,16,265],[16,264,16,266],[16,265,16,267],[16,266,16,268],[16,267,16,269],[16,268,16,270],[16,269,16,271],[16,270,16,272],[16,271,16,273],[16,272,16,274],[16,273,16,275],[16,274,16,276],[16,275,16,277],[16,276,17,277],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":15,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":13},{"stap_colors":[[28,0],[49,0],[217,0],[238,0]],"num":17,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,17,29],[17,28,17,30],[17,29,17,31],[17,30,17,32],[17,31,17,33],[17,32,17,34],[17,33,26,34],[26,35,17,36],[17,35,17,37],[17,36,17,38],[17,37,17,39],[17,38,17,40],[17,39,17,41],[17,40,16,41],[16,42,17,43],[17,42,17,44],[17,43,17,45],[17,44,17,46],[17,45,17,47],[17,46,17,48],[17,47,-1,-1],[-1,-1,17,50],[17,49,17,51],[17,50,17,52],[17,51,17,53],[17,52,17,54],[17,53,17,55],[17,54,26,55],[26,56,17,57],[17,56,17,58],[17,57,17,59],[17,58,17,60],[17,59,17,61],[17,60,17,62],[17,61,16,62],[16,63,17,64],[17,63,17,65],[17,64,17,66],[17,65,17,67],[17,66,17,68],[17,67,17,69],[17,68,18,69],[18,70,17,71],[17,70,17,72],[17,71,17,73],[17,72,17,74],[17,73,17,75],[17,74,17,76],[17,75,26,76],[26,77,17,78],[17,77,17,79],[17,78,17,80],[17,79,17,81],[17,80,17,82],[17,81,17,83],[17,82,17,84],[17,83,17,85],[17,84,17,86],[17,85,17,87],[17,86,17,88],[17,87,17,89],[17,88,17,90],[17,89,18,90],[18,91,17,92],[17,91,17,93],[17,92,17,94],[17,93,17,95],[17,94,17,96],[17,95,17,97],[17,96,26,97],[26,98,17,99],[17,98,17,100],[17,99,17,101],[17,100,17,102],[17,101,17,103],[17,102,17,104],[17,103,17,105],[17,104,17,106],[17,105,17,107],[17,106,17,108],[17,107,17,109],[17,108,17,110],[17,109,17,111],[17,110,17,112],[17,111,17,113],[17,112,17,114],[17,113,17,115],[17,114,17,116],[17,115,17,117],[17,116,17,118],[17,117,26,118],[26,119,17,120],[17,119,17,121],[17,120,17,122],[17,121,17,123],[17,122,17,124],[17,123,17,125],[17,124,16,125],[16,126,17,127],[17,126,17,128],[17,127,17,129],[17,128,17,130],[17,129,17,131],[17,130,17,132],[17,131,17,133],[17,132,17,134],[17,133,17,135],[17,134,17,136],[17,135,17,137],[17,136,17,138],[17,137,17,139],[17,138,26,139],[26,140,17,141],[17,140,17,142],[17,141,17,143],[17,142,17,144],[17,143,17,145],[17,144,17,146],[17,145,16,146],[16,147,17,148],[17,147,17,149],[17,148,17,150],[17,149,17,151],[17,150,17,152],[17,151,17,153],[17,152,18,153],[18,154,17,155],[17,154,17,156],[17,155,17,157],[17,156,17,158],[17,157,17,159],[17,158,17,160],[17,159,26,160],[26,161,17,162],[17,161,17,163],[17,162,17,164],[17,163,17,165],[17,164,17,166],[17,165,17,167],[17,166,16,167],[16,168,17,169],[17,168,17,170],[17,169,17,171],[17,170,17,172],[17,171,17,173],[17,172,17,174],[17,173,18,174],[18,175,17,176],[17,175,17,177],[17,176,17,178],[17,177,17,179],[17,178,17,180],[17,179,17,181],[17,180,26,181],[26,182,17,183],[17,182,17,184],[17,183,17,185],[17,184,17,186],[17,185,17,187],[17,186,17,188],[17,187,17,189],[17,188,17,190],[17,189,17,191],[17,190,17,192],[17,191,17,193],[17,192,17,194],[17,193,17,195],[17,194,18,195],[18,196,17,197],[17,196,17,198],[17,197,17,199],[17,198,17,200],[17,199,17,201],[17,200,17,202],[17,201,-1,-1],[26,203,17,204],[17,203,17,205],[17,204,17,206],[17,205,17,207],[17,206,17,208],[17,207,17,209],[17,208,16,209],[16,210,17,211],[17,210,17,212],[17,211,17,213],[17,212,17,214],[17,213,17,215],[17,214,17,216],[17,215,-1,-1],[-1,-1,17,218],[17,217,17,219],[17,218,17,220],[17,219,17,221],[17,220,17,222],[17,221,17,223],[17,222,26,223],[26,224,17,225],[17,224,17,226],[17,225,17,227],[17,226,17,228],[17,227,17,229],[17,228,17,230],[17,229,16,230],[16,231,17,232],[17,231,17,233],[17,232,17,234],[17,233,17,235],[17,234,17,236],[17,235,17,237],[17,236,-1,-1],[-1,-1,17,239],[17,238,17,240],[17,239,17,241],[17,240,17,242],[17,241,17,243],[17,242,17,244],[17,243,26,244],[26,245,17,246],[17,245,17,247],[17,246,17,248],[17,247,17,249],[17,248,17,250],[17,249,17,251],[17,250,16,251],[16,252,17,253],[17,252,17,254],[17,253,17,255],[17,254,17,256],[17,255,17,257],[17,256,17,258],[17,257,17,259],[17,258,17,260],[17,259,17,261],[17,260,17,262],[17,261,17,263],[17,262,17,264],[17,263,17,265],[17,264,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[17,6,16,5],[17,7,17,5],[17,8,17,6],[17,9,17,7],[17,10,17,8],[17,11,17,9],[17,12,17,10],[17,13,17,11],[17,14,17,12],[17,15,17,13],[17,16,17,14],[17,17,17,15],[17,18,17,16],[17,19,17,17],[17,20,17,18],[17,21,17,19],[17,22,17,20],[17,23,17,21],[17,24,17,22],[17,25,17,23],[17,26,17,24],[17,27,17,25],[17,28,17,26],[17,29,17,27],[17,30,17,28],[17,31,17,29],[17,32,17,30],[17,33,17,31],[17,34,17,32],[17,35,17,33],[17,36,17,34],[17,37,17,35],[17,38,17,36],[17,39,17,37],[17,40,17,38],[17,41,17,39],[17,42,17,40],[17,43,17,41],[18,43,17,42],[17,45,18,44],[17,46,17,44],[17,47,17,45],[17,48,17,46],[17,49,17,47],[17,50,17,48],[17,51,17,49],[17,52,17,50],[17,53,17,51],[17,54,17,52],[17,55,17,53],[17,56,17,54],[17,57,17,55],[17,58,17,56],[17,59,17,57],[17,60,17,58],[17,61,17,59],[17,62,17,60],[17,63,17,61],[17,64,17,62],[17,65,17,63],[17,66,17,64],[17,67,17,65],[17,68,17,66],[17,69,17,67],[17,70,17,68],[17,71,17,69],[17,72,17,70],[17,73,17,71],[17,74,17,72],[17,75,17,73],[17,76,17,74],[17,77,17,75],[17,78,17,76],[16,78,17,77],[17,80,16,79],[17,81,17,79],[17,82,17,80],[17,83,17,81],[17,84,17,82],[17,85,17,83],[17,86,17,84],[17,87,17,85],[17,88,17,86],[17,89,17,87],[17,90,17,88],[17,91,17,89],[17,92,17,90],[17,93,17,91],[17,94,17,92],[17,95,17,93],[17,96,17,94],[17,97,17,95],[17,98,17,96],[17,99,17,97],[17,100,17,98],[17,101,17,99],[17,102,17,100],[17,103,17,101],[17,104,17,102],[17,105,17,103],[17,106,17,104],[17,107,17,105],[17,108,17,106],[17,109,17,107],[17,110,17,108],[17,111,17,109],[17,112,17,110],[17,113,17,111],[17,114,17,112],[17,115,17,113],[17,116,17,114],[18,116,17,115],[17,118,18,117],[17,119,17,117],[17,120,17,118],[17,121,17,119],[17,122,17,120],[17,123,17,121],[17,124,17,122],[17,125,17,123],[17,126,17,124],[17,127,17,125],[17,128,17,126],[17,129,17,127],[17,130,17,128],[17,131,17,129],[17,132,17,130],[17,133,17,131],[17,134,17,132],[17,135,17,133],[17,136,17,134],[17,137,17,135],[17,138,17,136],[17,139,17,137],[17,140,17,138],[17,141,17,139],[17,142,17,140],[17,143,17,141],[17,144,17,142],[17,145,17,143],[17,146,17,144],[17,147,17,145],[17,148,17,146],[17,149,17,147],[17,150,17,148],[17,151,17,149],[17,152,17,150],[17,153,17,151],[17,154,17,152],[17,155,17,153],[17,156,17,154],[17,157,17,155],[17,158,17,156],[17,159,17,157],[17,160,17,158],[17,161,17,159],[17,162,17,160],[17,163,17,161],[17,164,17,162],[17,165,17,163],[17,166,17,164],[17,167,17,165],[17,168,17,166],[17,169,17,167],[17,170,17,168],[17,171,17,169],[17,172,17,170],[17,173,17,171],[17,174,17,172],[17,175,17,173],[17,176,17,174],[17,177,17,175],[17,178,17,176],[17,179,17,177],[17,180,17,178],[17,181,17,179],[17,182,17,180],[17,183,17,181],[16,183,17,182],[17,185,16,184],[17,186,17,184],[17,187,17,185],[17,188,17,186],[17,189,17,187],[17,190,17,188],[17,191,17,189],[17,192,17,190],[17,193,17,191],[17,194,17,192],[17,195,17,193],[17,196,17,194],[17,197,17,195],[17,198,17,196],[17,199,17,197],[17,200,17,198],[17,201,17,199],[17,202,17,200],[17,203,17,201],[17,204,17,202],[17,205,17,203],[17,206,17,204],[17,207,17,205],[17,208,17,206],[17,209,17,207],[17,210,17,208],[17,211,17,209],[17,212,17,210],[17,213,17,211],[17,214,17,212],[17,215,17,213],[17,216,17,214],[17,217,17,215],[17,218,17,216],[17,219,17,217],[17,220,17,218],[17,221,17,219],[17,222,17,220],[17,223,17,221],[17,224,17,222],[17,225,17,223],[17,226,17,224],[17,227,17,225],[17,228,17,226],[17,229,17,227],[17,230,17,228],[17,231,17,229],[17,232,17,230],[17,233,17,231],[17,234,17,232],[17,235,17,233],[17,236,17,234],[17,237,17,235],[17,238,17,236],[17,239,17,237],[17,240,17,238],[17,241,17,239],[17,242,17,240],[18,242,17,241],[17,244,18,243],[17,245,17,243],[17,246,17,244],[17,247,17,245],[17,248,17,246],[17,249,17,247],[17,250,17,248],[17,251,17,249],[17,252,17,250],[17,253,17,251],[17,254,17,252],[17,255,17,253],[17,256,17,254],[17,257,17,255],[17,258,17,256],[17,259,17,257],[17,260,17,258],[17,261,17,259],[17,262,17,260],[17,263,17,261],[17,264,17,262],[17,265,17,263],[17,266,17,264],[17,267,17,265],[17,268,17,266],[17,269,17,267],[17,270,17,268],[17,271,17,269],[17,272,17,270],[17,273,17,271],[17,274,17,272],[17,275,17,273],[17,276,17,274],[17,277,17,275],[16,277,17,276],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":14,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":13},{"stap_colors":[[48,0],[83,11141120],[118,11141120],[139,0],[160,11141120],[188,11141120],[223,29184],[244,0],[258,0]],"num":18,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[18,25,-1,-1],[18,26,18,24],[18,27,18,25],[18,28,18,26],[18,29,18,27],[18,30,18,28],[18,31,18,29],[18,32,18,30],[18,33,18,31],[18,34,18,32],[18,35,18,33],[18,36,18,34],[18,37,18,35],[18,38,18,36],[18,39,18,37],[18,40,18,38],[18,41,18,39],[19,41,18,40],[18,43,19,42],[18,44,18,42],[18,45,18,43],[18,46,18,44],[18,47,18,45],[18,48,18,46],[-1,-1,18,47],[18,50,-1,-1],[18,51,18,49],[18,52,18,50],[18,53,18,51],[18,54,18,52],[18,55,18,53],[18,56,18,54],[18,57,18,55],[18,58,18,56],[18,59,18,57],[18,60,18,58],[18,61,18,59],[18,62,18,60],[19,62,18,61],[18,64,19,63],[18,65,18,63],[18,66,18,64],[18,67,18,65],[18,68,18,66],[18,69,18,67],[17,69,18,68],[18,71,17,70],[18,72,18,70],[18,73,18,71],[18,74,18,72],[18,75,18,73],[18,76,18,74],[18,77,18,75],[18,78,18,76],[18,79,18,77],[18,80,18,78],[18,81,18,79],[18,82,18,80],[18,83,18,81],[-1,-1,18,82],[18,85,-1,-1],[18,86,18,84],[18,87,18,85],[18,88,18,86],[18,89,18,87],[18,90,18,88],[17,90,18,89],[18,92,17,91],[18,93,18,91],[18,94,18,92],[18,95,18,93],[18,96,18,94],[18,97,18,95],[18,98,18,96],[18,99,18,97],[18,100,18,98],[18,101,18,99],[18,102,18,100],[18,103,18,101],[18,104,18,102],[18,105,18,103],[18,106,18,104],[18,107,18,105],[18,108,18,106],[18,109,18,107],[18,110,18,108],[18,111,18,109],[18,112,18,110],[18,113,18,111],[18,114,18,112],[18,115,18,113],[18,116,18,114],[18,117,18,115],[18,118,18,116],[-1,-1,18,117],[18,120,-1,-1],[18,121,18,119],[18,122,18,120],[18,123,18,121],[18,124,18,122],[18,125,18,123],[19,125,18,124],[18,127,19,126],[18,128,18,126],[18,129,18,127],[18,130,18,128],[18,131,18,129],[18,132,18,130],[18,133,18,131],[18,134,18,132],[18,135,18,133],[18,136,18,134],[18,137,18,135],[18,138,18,136],[18,139,18,137],[-1,-1,18,138],[18,141,-1,-1],[18,142,18,140],[18,143,18,141],[18,144,18,142],[18,145,18,143],[18,146,18,144],[19,146,18,145],[18,148,19,147],[18,149,18,147],[18,150,18,148],[18,151,18,149],[18,152,18,150],[18,153,18,151],[17,153,18,152],[18,155,17,154],[18,156,18,154],[18,157,18,155],[18,158,18,156],[18,159,18,157],[18,160,18,158],[-1,-1,18,159],[18,162,-1,-1],[18,163,18,161],[18,164,18,162],[18,165,18,163],[18,166,18,164],[18,167,18,165],[19,167,18,166],[18,169,-1,-1],[18,170,18,168],[18,171,18,169],[18,172,18,170],[18,173,18,171],[18,174,18,172],[17,174,18,173],[18,176,17,175],[18,177,18,175],[18,178,18,176],[18,179,18,177],[18,180,18,178],[18,181,18,179],[18,182,18,180],[18,183,18,181],[18,184,18,182],[18,185,18,183],[18,186,18,184],[18,187,18,185],[18,188,18,186],[-1,-1,18,187],[18,190,-1,-1],[18,191,18,189],[18,192,18,190],[18,193,18,191],[18,194,18,192],[18,195,18,193],[17,195,18,194],[18,197,17,196],[18,198,18,196],[18,199,18,197],[18,200,18,198],[18,201,18,199],[18,202,18,200],[18,203,18,201],[18,204,18,202],[18,205,18,203],[18,206,18,204],[18,207,18,205],[18,208,18,206],[18,209,18,207],[19,209,18,208],[18,211,19,210],[18,212,18,210],[18,213,18,211],[18,214,18,212],[18,215,18,213],[18,216,18,214],[18,217,18,215],[18,218,18,216],[18,219,18,217],[18,220,18,218],[18,221,18,219],[18,222,18,220],[18,223,18,221],[-1,-1,18,222],[18,225,-1,-1],[18,226,18,224],[18,227,18,225],[18,228,18,226],[18,229,18,227],[18,230,18,228],[19,230,18,229],[18,232,19,231],[18,233,18,231],[18,234,18,232],[18,235,18,233],[18,236,18,234],[18,237,18,235],[18,238,18,236],[18,239,18,237],[18,240,18,238],[18,241,18,239],[18,242,18,240],[18,243,18,241],[18,244,18,242],[-1,-1,18,243],[18,246,-1,-1],[18,247,18,245],[18,248,18,246],[18,249,18,247],[18,250,18,248],[18,251,18,249],[19,251,18,250],[18,253,19,252],[18,254,18,252],[18,255,18,253],[18,256,18,254],[18,257,18,255],[18,258,18,256],[-1,-1,18,257],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[19,16,18,17],[18,16,18,18],[18,17,18,19],[18,18,18,20],[18,19,18,21],[18,20,18,22],[18,21,18,23],[18,22,18,24],[18,23,18,25],[18,24,18,26],[18,25,18,27],[18,26,18,28],[18,27,18,29],[18,28,18,30],[18,29,18,31],[18,30,18,32],[18,31,18,33],[18,32,18,34],[18,33,18,35],[18,34,18,36],[18,35,18,37],[18,36,18,38],[18,37,18,39],[18,38,18,40],[18,39,18,41],[18,40,18,42],[18,41,18,43],[18,42,17,43],[17,44,18,45],[18,44,18,46],[18,45,18,47],[18,46,18,48],[18,47,18,49],[18,48,18,50],[18,49,18,51],[18,50,18,52],[18,51,18,53],[18,52,18,54],[18,53,18,55],[18,54,18,56],[18,55,18,57],[18,56,18,58],[18,57,18,59],[18,58,18,60],[18,59,18,61],[18,60,18,62],[18,61,18,63],[18,62,18,64],[18,63,18,65],[18,64,18,66],[18,65,18,67],[18,66,18,68],[18,67,18,69],[18,68,18,70],[18,69,18,71],[18,70,18,72],[18,71,18,73],[18,72,18,74],[18,73,18,75],[18,74,18,76],[18,75,18,77],[18,76,18,78],[18,77,18,79],[18,78,18,80],[18,79,18,81],[18,80,18,82],[18,81,18,83],[18,82,18,84],[18,83,18,85],[18,84,18,86],[18,85,18,87],[18,86,18,88],[18,87,18,89],[18,88,18,90],[18,89,18,91],[18,90,18,92],[18,91,18,93],[18,92,18,94],[18,93,18,95],[18,94,18,96],[18,95,18,97],[18,96,18,98],[18,97,18,99],[18,98,19,99],[19,100,18,101],[18,100,18,102],[18,101,18,103],[18,102,18,104],[18,103,18,105],[18,104,18,106],[18,105,18,107],[18,106,18,108],[18,107,18,109],[18,108,18,110],[18,109,18,111],[18,110,18,112],[18,111,18,113],[18,112,18,114],[18,113,18,115],[18,114,18,116],[18,115,17,116],[17,117,18,118],[18,117,18,119],[18,118,18,120],[18,119,18,121],[18,120,18,122],[18,121,18,123],[18,122,18,124],[18,123,18,125],[18,124,18,126],[18,125,18,127],[18,126,18,128],[18,127,18,129],[18,128,18,130],[18,129,18,131],[18,130,18,132],[18,131,18,133],[18,132,18,134],[18,133,30,119],[30,153,18,136],[18,135,18,137],[18,136,18,138],[18,137,18,139],[18,138,18,140],[18,139,18,141],[18,140,18,142],[18,141,18,143],[18,142,18,144],[18,143,18,145],[18,144,18,146],[18,145,18,147],[18,146,18,148],[18,147,18,149],[18,148,18,150],[18,149,18,151],[18,150,18,152],[18,151,18,153],[18,152,18,154],[18,153,18,155],[18,154,18,156],[18,155,18,157],[18,156,18,158],[18,157,18,159],[18,158,18,160],[18,159,18,161],[18,160,18,162],[18,161,18,163],[18,162,18,164],[18,163,18,165],[18,164,18,166],[18,165,18,167],[18,166,18,168],[18,167,18,169],[18,168,18,170],[18,169,18,171],[18,170,18,172],[18,171,18,173],[18,172,18,174],[18,173,18,175],[18,174,18,176],[18,175,18,177],[18,176,18,178],[18,177,18,179],[18,178,18,180],[18,179,18,181],[18,180,18,182],[18,181,18,183],[18,182,18,184],[18,183,18,185],[18,184,18,186],[18,185,18,187],[18,186,18,188],[18,187,18,189],[18,188,18,190],[18,189,18,191],[18,190,18,192],[18,191,18,193],[18,192,19,193],[19,194,18,195],[18,194,18,196],[18,195,18,197],[18,196,18,198],[18,197,18,199],[18,198,18,200],[18,199,18,201],[18,200,18,202],[18,201,18,203],[18,202,18,204],[18,203,18,205],[18,204,18,206],[18,205,18,207],[18,206,18,208],[18,207,18,209],[18,208,18,210],[18,209,18,211],[18,210,18,212],[18,211,18,213],[18,212,18,214],[18,213,18,215],[18,214,18,216],[18,215,18,217],[18,216,18,218],[18,217,18,219],[18,218,18,220],[18,219,18,221],[18,220,18,222],[18,221,18,223],[18,222,18,224],[18,223,18,225],[18,224,18,226],[18,225,18,227],[18,226,18,228],[18,227,18,229],[18,228,18,230],[18,229,18,231],[18,230,18,232],[18,231,18,233],[18,232,18,234],[18,233,18,235],[18,234,18,236],[18,235,18,237],[18,236,18,238],[18,237,18,239],[18,238,18,240],[18,239,18,241],[18,240,18,242],[18,241,17,242],[17,243,18,244],[18,243,18,245],[18,244,18,246],[18,245,18,247],[18,246,18,248],[18,247,18,249],[18,248,18,250],[18,249,18,251],[18,250,18,252],[18,251,18,253],[18,252,18,254],[18,253,18,255],[18,254,18,256],[18,255,18,257],[18,256,18,258],[18,257,18,259],[18,258,18,260],[18,259,18,261],[18,260,18,262],[18,261,18,263],[18,262,18,264],[18,263,18,265],[18,264,18,266],[18,265,18,267],[18,266,18,268],[18,267,18,269],[18,268,18,270],[18,269,18,271],[18,270,18,272],[18,271,18,273],[18,272,18,274],[18,273,18,275],[18,274,18,276],[18,275,18,277],[18,276,19,277],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":13,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":13},{"stap_colors":[[168,0],[196,0]],"num":19,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[20,28,19,29],[19,28,19,30],[19,29,19,31],[19,30,19,32],[19,31,19,33],[19,32,19,34],[19,33,24,34],[24,35,19,36],[19,35,19,37],[19,36,19,38],[19,37,19,39],[19,38,19,40],[19,39,19,41],[19,40,18,41],[18,42,19,43],[19,42,19,44],[19,43,19,45],[19,44,19,46],[19,45,19,47],[19,46,19,48],[19,47,19,49],[19,48,19,50],[19,49,19,51],[19,50,19,52],[19,51,19,53],[19,52,19,54],[19,53,19,55],[19,54,24,55],[24,56,19,57],[19,56,19,58],[19,57,19,59],[19,58,19,60],[19,59,19,61],[19,60,19,62],[19,61,18,62],[18,63,19,64],[19,63,19,65],[19,64,19,66],[19,65,19,67],[19,66,19,68],[19,67,19,69],[19,68,-1,-1],[20,70,19,71],[19,70,19,72],[19,71,19,73],[19,72,19,74],[19,73,19,75],[19,74,19,76],[19,75,24,76],[24,77,19,78],[19,77,19,79],[19,78,19,80],[19,79,19,81],[19,80,19,82],[19,81,19,83],[19,82,19,84],[19,83,19,85],[19,84,19,86],[19,85,19,87],[19,86,19,88],[19,87,19,89],[19,88,19,90],[19,89,20,90],[20,91,19,92],[19,91,19,93],[19,92,19,94],[19,93,19,95],[19,94,19,96],[19,95,19,97],[19,96,24,97],[24,98,19,99],[19,98,19,100],[19,99,19,101],[19,100,19,102],[19,101,19,103],[19,102,19,104],[19,103,19,105],[19,104,19,106],[19,105,19,107],[19,106,19,108],[19,107,19,109],[19,108,19,110],[19,109,19,111],[19,110,20,111],[20,112,19,113],[19,112,19,114],[19,113,19,115],[19,114,19,116],[19,115,19,117],[19,116,19,118],[19,117,24,118],[24,119,19,120],[19,119,19,121],[19,120,19,122],[19,121,19,123],[19,122,19,124],[19,123,19,125],[19,124,18,125],[18,126,19,127],[19,126,19,128],[19,127,19,129],[19,128,19,130],[19,129,19,131],[19,130,19,132],[19,131,20,132],[20,133,19,134],[19,133,19,135],[19,134,19,136],[19,135,19,137],[19,136,19,138],[19,137,19,139],[19,138,24,139],[24,140,19,141],[19,140,19,142],[19,141,19,143],[19,142,19,144],[19,143,19,145],[19,144,19,146],[19,145,18,146],[18,147,19,148],[19,147,19,149],[19,148,19,150],[19,149,19,151],[19,150,19,152],[19,151,19,153],[19,152,20,153],[20,154,19,155],[19,154,19,156],[19,155,19,157],[19,156,19,158],[19,157,19,159],[19,158,19,160],[19,159,24,160],[24,161,19,162],[19,161,19,163],[19,162,19,164],[19,163,19,165],[19,164,19,166],[19,165,19,167],[19,166,18,167],[-1,-1,19,169],[19,168,19,170],[19,169,19,171],[19,170,19,172],[19,171,19,173],[19,172,19,174],[19,173,20,174],[20,175,19,176],[19,175,19,177],[19,176,19,178],[19,177,19,179],[19,178,19,180],[19,179,19,181],[19,180,24,181],[24,182,19,183],[19,182,19,184],[19,183,19,185],[19,184,19,186],[19,185,19,187],[19,186,19,188],[19,187,19,189],[19,188,19,190],[19,189,19,191],[19,190,19,192],[19,191,19,193],[19,192,19,194],[19,193,19,195],[19,194,-1,-1],[-1,-1,19,197],[19,196,19,198],[19,197,19,199],[19,198,19,200],[19,199,19,201],[19,200,19,202],[19,201,24,202],[24,203,19,204],[19,203,19,205],[19,204,19,206],[19,205,19,207],[19,206,19,208],[19,207,19,209],[19,208,18,209],[18,210,19,211],[19,210,19,212],[19,211,19,213],[19,212,19,214],[19,213,19,215],[19,214,19,216],[19,215,20,216],[20,217,19,218],[19,217,19,219],[19,218,19,220],[19,219,19,221],[19,220,19,222],[19,221,19,223],[19,222,24,223],[24,224,19,225],[19,224,19,226],[19,225,19,227],[19,226,19,228],[19,227,19,229],[19,228,19,230],[19,229,18,230],[18,231,19,232],[19,231,19,233],[19,232,19,234],[19,233,19,235],[19,234,19,236],[19,235,19,237],[19,236,19,238],[19,237,19,239],[19,238,19,240],[19,239,19,241],[19,240,19,242],[19,241,19,243],[19,242,19,244],[19,243,24,244],[24,245,19,246],[19,245,19,247],[19,246,19,248],[19,247,19,249],[19,248,19,250],[19,249,19,251],[19,250,18,251],[18,252,19,253],[19,252,19,254],[19,253,19,255],[19,254,19,256],[19,255,19,257],[19,256,19,258],[19,257,20,258],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[19,17,18,16],[19,18,19,16],[19,19,19,17],[19,20,19,18],[19,21,19,19],[19,22,19,20],[19,23,19,21],[19,24,19,22],[19,25,19,23],[19,26,19,24],[19,27,19,25],[19,28,19,26],[19,29,19,27],[19,30,19,28],[19,31,19,29],[19,32,19,30],[19,33,19,31],[19,34,19,32],[19,35,19,33],[19,36,19,34],[19,37,19,35],[19,38,19,36],[19,39,19,37],[19,40,19,38],[19,41,19,39],[19,42,19,40],[19,43,19,41],[19,44,19,42],[19,45,19,43],[19,46,19,44],[19,47,19,45],[19,48,19,46],[19,49,19,47],[19,50,19,48],[19,51,19,49],[19,52,19,50],[19,53,19,51],[20,53,19,52],[19,55,20,54],[19,56,19,54],[19,57,19,55],[19,58,19,56],[19,59,19,57],[19,60,19,58],[19,61,19,59],[19,62,19,60],[19,63,19,61],[19,64,19,62],[19,65,19,63],[19,66,19,64],[19,67,19,65],[19,68,19,66],[19,69,19,67],[19,70,19,68],[19,71,19,69],[19,72,19,70],[19,73,19,71],[19,74,19,72],[19,75,19,73],[19,76,19,74],[19,77,19,75],[19,78,19,76],[19,79,19,77],[19,80,19,78],[19,81,19,79],[19,82,19,80],[19,83,19,81],[19,84,19,82],[19,85,19,83],[19,86,19,84],[19,87,19,85],[19,88,19,86],[19,89,19,87],[19,90,19,88],[19,91,19,89],[19,92,19,90],[19,93,19,91],[19,94,19,92],[19,95,19,93],[19,96,19,94],[19,97,19,95],[19,98,19,96],[19,99,19,97],[18,99,19,98],[19,101,18,100],[19,102,19,100],[19,103,19,101],[19,104,19,102],[19,105,19,103],[19,106,19,104],[19,107,19,105],[19,108,19,106],[19,109,19,107],[19,110,19,108],[19,111,19,109],[19,112,19,110],[19,113,19,111],[19,114,19,112],[19,115,19,113],[19,116,19,114],[19,117,19,115],[19,118,19,116],[19,119,19,117],[19,120,19,118],[19,121,19,119],[19,122,19,120],[19,123,19,121],[19,124,19,122],[19,125,19,123],[19,126,19,124],[19,127,19,125],[19,128,19,126],[19,129,19,127],[19,130,19,128],[19,131,19,129],[19,132,19,130],[19,133,19,131],[19,134,19,132],[19,135,19,133],[19,136,19,134],[19,137,19,135],[19,138,19,136],[19,139,19,137],[19,140,19,138],[19,141,19,139],[19,142,19,140],[19,143,19,141],[19,144,19,142],[19,145,19,143],[19,146,19,144],[19,147,19,145],[19,148,19,146],[19,149,19,147],[19,150,19,148],[19,151,19,149],[19,152,19,150],[19,153,19,151],[19,154,19,152],[19,155,19,153],[19,156,19,154],[19,157,19,155],[19,158,19,156],[19,159,19,157],[19,160,19,158],[19,161,19,159],[19,162,19,160],[19,163,19,161],[19,164,19,162],[19,165,19,163],[19,166,19,164],[19,167,19,165],[19,168,19,166],[19,169,19,167],[19,170,19,168],[19,171,19,169],[19,172,19,170],[19,173,19,171],[19,174,19,172],[19,175,19,173],[19,176,19,174],[19,177,19,175],[19,178,19,176],[19,179,19,177],[19,180,19,178],[19,181,19,179],[19,182,19,180],[19,183,19,181],[19,184,19,182],[19,185,19,183],[19,186,19,184],[19,187,19,185],[19,188,19,186],[19,189,19,187],[19,190,19,188],[19,191,19,189],[19,192,19,190],[19,193,19,191],[18,193,19,192],[19,195,18,194],[19,196,19,194],[19,197,19,195],[19,198,19,196],[19,199,19,197],[19,200,19,198],[19,201,19,199],[19,202,19,200],[19,203,19,201],[19,204,19,202],[19,205,19,203],[19,206,19,204],[19,207,19,205],[19,208,19,206],[19,209,19,207],[19,210,19,208],[19,211,19,209],[19,212,19,210],[19,213,19,211],[19,214,19,212],[19,215,19,213],[19,216,19,214],[19,217,19,215],[19,218,19,216],[19,219,19,217],[19,220,19,218],[19,221,19,219],[19,222,19,220],[19,223,19,221],[19,224,19,222],[19,225,19,223],[19,226,19,224],[19,227,19,225],[19,228,19,226],[19,229,19,227],[19,230,19,228],[19,231,19,229],[19,232,19,230],[19,233,19,231],[19,234,19,232],[19,235,19,233],[19,236,19,234],[19,237,19,235],[19,238,19,236],[19,239,19,237],[19,240,19,238],[19,241,19,239],[19,242,19,240],[20,242,19,241],[19,244,20,243],[19,245,19,243],[19,246,19,244],[19,247,19,245],[19,248,19,246],[19,249,19,247],[19,250,19,248],[19,251,19,249],[19,252,19,250],[19,253,19,251],[19,254,19,252],[19,255,19,253],[19,256,19,254],[19,257,19,255],[19,258,19,256],[19,259,19,257],[19,260,19,258],[19,261,19,259],[19,262,19,260],[19,263,19,261],[19,264,19,262],[19,265,19,263],[19,266,19,264],[19,267,19,265],[19,268,19,266],[19,269,19,267],[19,270,19,268],[19,271,19,269],[19,272,19,270],[19,273,19,271],[19,274,19,272],[19,275,19,273],[19,276,19,274],[19,277,19,275],[18,277,19,276],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":12,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":13},{"stap_colors":[[48,0],[69,0],[76,11141120],[97,11141120],[195,11141120]],"num":20,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[20,29,19,28],[20,30,20,28],[20,31,20,29],[20,32,20,30],[20,33,20,31],[20,34,20,32],[20,35,20,33],[20,36,20,34],[20,37,20,35],[20,38,20,36],[20,39,20,37],[20,40,20,38],[20,41,20,39],[21,41,20,40],[20,43,21,42],[20,44,20,42],[20,45,20,43],[20,46,20,44],[20,47,20,45],[20,48,20,46],[-1,-1,20,47],[20,50,-1,-1],[20,51,20,49],[20,52,20,50],[20,53,20,51],[20,54,20,52],[20,55,20,53],[20,56,20,54],[20,57,20,55],[20,58,20,56],[20,59,20,57],[20,60,20,58],[20,61,20,59],[20,62,20,60],[21,62,20,61],[20,64,21,63],[20,65,20,63],[20,66,20,64],[20,67,20,65],[20,68,20,66],[20,69,20,67],[-1,-1,20,68],[20,71,19,70],[20,72,20,70],[20,73,20,71],[20,74,20,72],[20,75,20,73],[20,76,20,74],[-1,-1,20,75],[20,78,-1,-1],[20,79,20,77],[20,80,20,78],[20,81,20,79],[20,82,20,80],[20,83,20,81],[20,84,20,82],[20,85,20,83],[20,86,20,84],[20,87,20,85],[20,88,20,86],[20,89,20,87],[20,90,20,88],[19,90,20,89],[20,92,19,91],[20,93,20,91],[20,94,20,92],[20,95,20,93],[20,96,20,94],[20,97,20,95],[-1,-1,20,96],[20,99,-1,-1],[20,100,20,98],[20,101,20,99],[20,102,20,100],[20,103,20,101],[20,104,20,102],[21,104,20,103],[20,106,21,105],[20,107,20,105],[20,108,20,106],[20,109,20,107],[20,110,20,108],[20,111,20,109],[19,111,20,110],[20,113,19,112],[20,114,20,112],[20,115,20,113],[20,116,20,114],[20,117,20,115],[20,118,20,116],[20,119,20,117],[20,120,20,118],[20,121,20,119],[20,122,20,120],[20,123,20,121],[20,124,20,122],[20,125,20,123],[21,125,20,124],[20,127,21,126],[20,128,20,126],[20,129,20,127],[20,130,20,128],[20,131,20,129],[20,132,20,130],[19,132,20,131],[20,134,19,133],[20,135,20,133],[20,136,20,134],[20,137,20,135],[20,138,20,136],[20,139,20,137],[20,140,20,138],[20,141,20,139],[20,142,20,140],[20,143,20,141],[20,144,20,142],[20,145,20,143],[20,146,20,144],[21,146,20,145],[20,148,21,147],[20,149,20,147],[20,150,20,148],[20,151,20,149],[20,152,20,150],[20,153,20,151],[19,153,20,152],[20,155,19,154],[20,156,20,154],[20,157,20,155],[20,158,20,156],[20,159,20,157],[20,160,20,158],[20,161,20,159],[20,162,20,160],[20,163,20,161],[20,164,20,162],[20,165,20,163],[20,166,20,164],[20,167,20,165],[21,167,20,166],[20,169,21,168],[20,170,20,168],[20,171,20,169],[20,172,20,170],[20,173,20,171],[20,174,20,172],[19,174,20,173],[20,176,19,175],[20,177,20,175],[20,178,20,176],[20,179,20,177],[20,180,20,178],[20,181,20,179],[20,182,20,180],[20,183,20,181],[20,184,20,182],[20,185,20,183],[20,186,20,184],[20,187,20,185],[20,188,20,186],[20,189,20,187],[20,190,20,188],[20,191,20,189],[20,192,20,190],[20,193,20,191],[20,194,20,192],[20,195,20,193],[-1,-1,20,194],[20,197,-1,-1],[20,198,20,196],[20,199,20,197],[20,200,20,198],[20,201,20,199],[20,202,20,200],[20,203,20,201],[20,204,20,202],[20,205,20,203],[20,206,20,204],[20,207,20,205],[20,208,20,206],[20,209,20,207],[21,209,20,208],[20,211,21,210],[20,212,20,210],[20,213,20,211],[20,214,20,212],[20,215,20,213],[20,216,20,214],[19,216,20,215],[20,218,19,217],[20,219,20,217],[20,220,20,218],[20,221,20,219],[20,222,20,220],[20,223,20,221],[20,224,20,222],[20,225,20,223],[20,226,20,224],[20,227,20,225],[20,228,20,226],[20,229,20,227],[20,230,20,228],[21,230,20,229],[20,232,21,231],[20,233,20,231],[20,234,20,232],[20,235,20,233],[20,236,20,234],[20,237,20,235],[20,238,20,236],[20,239,20,237],[20,240,20,238],[20,241,20,239],[20,242,20,240],[20,243,20,241],[20,244,20,242],[20,245,20,243],[20,246,20,244],[20,247,20,245],[20,248,20,246],[20,249,20,247],[20,250,20,248],[20,251,20,249],[21,251,20,250],[20,253,21,252],[20,254,20,252],[20,255,20,253],[20,256,20,254],[20,257,20,255],[20,258,20,256],[19,258,20,257],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[21,5,20,6],[20,5,20,7],[20,6,20,8],[20,7,20,9],[20,8,20,10],[20,9,20,11],[20,10,20,12],[20,11,20,13],[20,12,20,14],[20,13,20,15],[20,14,20,16],[20,15,20,17],[20,16,20,18],[20,17,20,19],[20,18,20,20],[20,19,20,21],[20,20,20,22],[20,21,20,23],[20,22,20,24],[20,23,20,25],[20,24,20,26],[20,25,20,27],[20,26,20,28],[20,27,20,29],[20,28,20,30],[20,29,20,31],[20,30,20,32],[20,31,20,33],[20,32,20,34],[20,33,20,35],[20,34,20,36],[20,35,20,37],[20,36,20,38],[20,37,20,39],[20,38,20,40],[20,39,20,41],[20,40,20,42],[20,41,20,43],[20,42,20,44],[20,43,20,45],[20,44,20,46],[20,45,20,47],[20,46,20,48],[20,47,20,49],[20,48,20,50],[20,49,20,51],[20,50,20,52],[20,51,20,53],[20,52,19,53],[19,54,20,55],[20,54,20,56],[20,55,20,57],[20,56,20,58],[20,57,20,59],[20,58,20,60],[20,59,20,61],[20,60,20,62],[20,61,20,63],[20,62,20,64],[20,63,20,65],[20,64,20,66],[20,65,20,67],[20,66,20,68],[20,67,20,69],[20,68,20,70],[20,69,20,71],[20,70,20,72],[20,71,20,73],[20,72,20,74],[20,73,20,75],[20,74,20,76],[20,75,20,77],[20,76,20,78],[20,77,20,79],[20,78,20,80],[20,79,20,81],[20,80,20,82],[20,81,20,83],[20,82,20,84],[20,83,20,85],[20,84,20,86],[20,85,20,87],[20,86,20,88],[20,87,21,88],[21,89,20,90],[20,89,20,91],[20,90,20,92],[20,91,20,93],[20,92,20,94],[20,93,20,95],[20,94,20,96],[20,95,20,97],[20,96,20,98],[20,97,20,99],[20,98,20,100],[20,99,20,101],[20,100,20,102],[20,101,20,103],[20,102,20,104],[20,103,20,105],[20,104,20,106],[20,105,20,107],[20,106,20,108],[20,107,20,109],[20,108,20,110],[20,109,20,111],[20,110,20,112],[20,111,20,113],[20,112,20,114],[20,113,20,115],[20,114,20,116],[20,115,20,117],[20,116,20,118],[20,117,20,119],[20,118,20,120],[20,119,20,121],[20,120,20,122],[20,121,20,123],[20,122,20,124],[20,123,20,125],[20,124,20,126],[20,125,20,127],[20,126,20,128],[20,127,20,129],[20,128,20,130],[20,129,20,131],[20,130,20,132],[20,131,20,133],[20,132,20,134],[20,133,20,135],[20,134,20,136],[20,135,20,137],[20,136,20,138],[20,137,20,139],[20,138,20,140],[20,139,20,141],[20,140,20,142],[20,141,20,143],[20,142,20,144],[20,143,20,145],[20,144,20,146],[20,145,20,147],[20,146,20,148],[20,147,20,149],[20,148,20,150],[20,149,20,151],[20,150,20,152],[20,151,20,153],[20,152,20,154],[20,153,20,155],[20,154,20,156],[20,155,20,157],[20,156,20,158],[20,157,20,159],[20,158,20,160],[20,159,20,161],[20,160,20,162],[20,161,20,163],[20,162,20,164],[20,163,20,165],[20,164,20,166],[20,165,20,167],[20,166,20,168],[20,167,20,169],[20,168,20,170],[20,169,20,171],[20,170,20,172],[20,171,20,173],[20,172,20,174],[20,173,20,175],[20,174,20,176],[20,175,20,177],[20,176,20,178],[20,177,20,179],[20,178,20,180],[20,179,20,181],[20,180,20,182],[20,181,20,183],[20,182,21,183],[21,184,20,185],[20,184,20,186],[20,185,20,187],[20,186,20,188],[20,187,20,189],[20,188,20,190],[20,189,20,191],[20,190,20,192],[20,191,20,193],[20,192,20,194],[20,193,20,195],[20,194,20,196],[20,195,20,197],[20,196,20,198],[20,197,20,199],[20,198,20,200],[20,199,20,201],[20,200,20,202],[20,201,20,203],[20,202,20,204],[20,203,20,205],[20,204,20,206],[20,205,20,207],[20,206,20,208],[20,207,20,209],[20,208,20,210],[20,209,20,211],[20,210,20,212],[20,211,20,213],[20,212,20,214],[20,213,20,215],[20,214,20,216],[20,215,20,217],[20,216,20,218],[20,217,20,219],[20,218,20,220],[20,219,20,221],[20,220,20,222],[20,221,20,223],[20,222,20,224],[20,223,20,225],[20,224,20,226],[20,225,20,227],[20,226,20,228],[20,227,20,229],[20,228,20,230],[20,229,20,231],[20,230,20,232],[20,231,20,233],[20,232,20,234],[20,233,20,235],[20,234,20,236],[20,235,20,237],[20,236,20,238],[20,237,20,239],[20,238,20,240],[20,239,20,241],[20,240,20,242],[20,241,19,242],[19,243,20,244],[20,243,20,245],[20,244,20,246],[20,245,20,247],[20,246,20,248],[20,247,20,249],[20,248,20,250],[20,249,20,251],[20,250,20,252],[20,251,20,253],[20,252,20,254],[20,253,20,255],[20,254,20,256],[20,255,20,257],[20,256,20,258],[20,257,20,259],[20,258,20,260],[20,259,20,261],[20,260,20,262],[20,261,20,263],[20,262,20,264],[20,263,20,265],[20,264,20,266],[20,265,20,267],[20,266,20,268],[20,267,20,269],[20,268,20,270],[20,269,20,271],[20,270,20,272],[20,271,20,273],[20,272,20,274],[20,273,20,275],[20,274,20,276],[20,275,20,277],[20,276,21,277],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":11,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":13},{"stap_colors":[[21,0],[40,3355443],[119,0],[140,13369344],[154,0],[196,0],[217,3355443],[238,0]],"num":21,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,21,22],[21,21,21,23],[21,22,21,24],[21,23,21,25],[21,24,21,26],[21,25,21,27],[21,26,21,28],[21,27,21,29],[21,28,21,30],[21,29,21,31],[21,30,21,32],[21,31,21,33],[21,32,21,34],[21,33,22,34],[22,35,21,36],[21,35,21,37],[21,36,21,38],[21,37,21,39],[21,38,-1,-1],[-1,-1,21,41],[21,40,20,41],[20,42,21,43],[21,42,21,44],[21,43,21,45],[21,44,21,46],[21,45,21,47],[21,46,21,48],[21,47,21,49],[21,48,21,50],[21,49,21,51],[21,50,21,52],[21,51,21,53],[21,52,21,54],[21,53,21,55],[21,54,21,56],[21,55,21,57],[21,56,21,58],[21,57,21,59],[21,58,21,60],[21,59,21,61],[21,60,21,62],[21,61,20,62],[20,63,21,64],[21,63,21,65],[21,64,21,66],[21,65,21,67],[21,66,21,68],[21,67,21,69],[21,68,21,70],[21,69,21,71],[21,70,21,72],[21,71,21,73],[21,72,21,74],[21,73,21,75],[21,74,21,76],[21,75,22,76],[22,77,21,78],[21,77,21,79],[21,78,21,80],[21,79,21,81],[21,80,21,82],[21,81,21,83],[21,82,21,84],[21,83,21,85],[21,84,21,86],[21,85,21,87],[21,86,21,88],[21,87,21,89],[21,88,21,90],[21,89,21,91],[21,90,21,92],[21,91,21,93],[21,92,21,94],[21,93,21,95],[21,94,21,96],[21,95,21,97],[21,96,22,97],[22,98,21,99],[21,98,21,100],[21,99,21,101],[21,100,21,102],[21,101,21,103],[21,102,21,104],[21,103,20,104],[20,105,21,106],[21,105,21,107],[21,106,21,108],[21,107,21,109],[21,108,21,110],[21,109,21,111],[21,110,21,112],[21,111,21,113],[21,112,21,114],[21,113,21,115],[21,114,21,116],[21,115,21,117],[21,116,21,118],[21,117,-1,-1],[-1,-1,21,120],[21,119,21,121],[21,120,21,122],[21,121,21,123],[21,122,21,124],[21,123,21,125],[21,124,20,125],[20,126,21,127],[21,126,21,128],[21,127,21,129],[21,128,21,130],[21,129,21,131],[21,130,21,132],[21,131,21,133],[21,132,21,134],[21,133,21,135],[21,134,21,136],[21,135,21,137],[21,136,21,138],[21,137,21,139],[21,138,-1,-1],[-1,-1,21,141],[21,140,21,142],[21,141,21,143],[21,142,21,144],[21,143,21,145],[21,144,21,146],[21,145,20,146],[20,147,21,148],[21,147,21,149],[21,148,21,150],[21,149,21,151],[21,150,21,152],[21,151,21,153],[21,152,-1,-1],[-1,-1,21,155],[21,154,21,156],[21,155,21,157],[21,156,21,158],[21,157,21,159],[21,158,21,160],[21,159,22,160],[22,161,21,162],[21,161,21,163],[21,162,21,164],[21,163,21,165],[21,164,21,166],[21,165,21,167],[21,166,20,167],[20,168,21,169],[21,168,21,170],[21,169,21,171],[21,170,21,172],[21,171,21,173],[21,172,21,174],[21,173,21,175],[21,174,21,176],[21,175,21,177],[21,176,21,178],[21,177,21,179],[21,178,21,180],[21,179,21,181],[21,180,22,181],[22,182,21,183],[21,182,21,184],[21,183,21,185],[21,184,21,186],[21,185,21,187],[21,186,21,188],[21,187,21,189],[21,188,21,190],[21,189,21,191],[21,190,21,192],[21,191,21,193],[21,192,21,194],[21,193,21,195],[21,194,-1,-1],[-1,-1,21,197],[21,196,21,198],[21,197,21,199],[21,198,21,200],[21,199,21,201],[21,200,21,202],[21,201,22,202],[22,203,21,204],[21,203,21,205],[21,204,21,206],[21,205,21,207],[21,206,21,208],[21,207,21,209],[21,208,20,209],[20,210,21,211],[21,210,21,212],[21,211,21,213],[21,212,21,214],[21,213,21,215],[21,214,21,216],[21,215,-1,-1],[-1,-1,21,218],[21,217,21,219],[21,218,21,220],[21,219,21,221],[21,220,21,222],[21,221,21,223],[21,222,21,224],[21,223,21,225],[21,224,21,226],[21,225,21,227],[21,226,21,228],[21,227,21,229],[21,228,21,230],[21,229,20,230],[20,231,21,232],[21,231,21,233],[21,232,21,234],[21,233,21,235],[21,234,21,236],[21,235,21,237],[21,236,-1,-1],[-1,-1,21,239],[21,238,21,240],[21,239,21,241],[21,240,21,242],[21,241,21,243],[21,242,21,244],[21,243,22,244],[22,245,21,246],[21,245,21,247],[21,246,21,248],[21,247,21,249],[21,248,21,250],[21,249,21,251],[21,250,20,251],[20,252,21,253],[21,252,21,254],[21,253,21,255],[21,254,21,256],[21,255,21,257],[21,256,21,258],[21,257,21,259],[21,258,21,260],[21,259,21,261],[21,260,21,262],[21,261,21,263],[21,262,21,264],[21,263,21,265],[21,264,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[21,6,20,5],[21,7,21,5],[21,8,21,6],[21,9,21,7],[21,10,21,8],[21,11,21,9],[21,12,21,10],[21,13,21,11],[21,14,21,12],[21,15,21,13],[21,16,21,14],[21,17,21,15],[21,18,21,16],[21,19,21,17],[21,20,21,18],[21,21,21,19],[21,22,21,20],[21,23,21,21],[21,24,21,22],[21,25,21,23],[21,26,21,24],[21,27,21,25],[21,28,21,26],[21,29,21,27],[21,30,21,28],[21,31,21,29],[21,32,21,30],[21,33,21,31],[21,34,21,32],[21,35,21,33],[21,36,21,34],[21,37,21,35],[21,38,21,36],[21,39,21,37],[21,40,21,38],[21,41,21,39],[21,42,21,40],[21,43,21,41],[21,44,21,42],[21,45,21,43],[21,46,21,44],[21,47,21,45],[21,48,21,46],[21,49,21,47],[21,50,21,48],[22,50,21,49],[21,52,22,51],[21,53,21,51],[21,54,21,52],[21,55,21,53],[21,56,21,54],[21,57,21,55],[21,58,21,56],[21,59,21,57],[21,60,21,58],[21,61,21,59],[21,62,21,60],[21,63,21,61],[21,64,21,62],[21,65,21,63],[21,66,21,64],[21,67,21,65],[21,68,21,66],[21,69,21,67],[21,70,21,68],[21,71,21,69],[21,72,21,70],[21,73,21,71],[21,74,21,72],[21,75,21,73],[21,76,21,74],[21,77,21,75],[21,78,21,76],[21,79,21,77],[21,80,21,78],[21,81,21,79],[21,82,21,80],[21,83,21,81],[21,84,21,82],[21,85,21,83],[21,86,21,84],[21,87,21,85],[21,88,21,86],[20,88,21,87],[21,90,20,89],[21,91,21,89],[21,92,21,90],[21,93,21,91],[21,94,21,92],[21,95,21,93],[21,96,21,94],[21,97,21,95],[21,98,21,96],[21,99,21,97],[21,100,21,98],[21,101,21,99],[21,102,21,100],[21,103,21,101],[21,104,21,102],[21,105,21,103],[21,106,21,104],[21,107,21,105],[21,108,21,106],[21,109,21,107],[21,110,21,108],[21,111,21,109],[21,112,21,110],[21,113,21,111],[21,114,21,112],[21,115,21,113],[21,116,21,114],[21,117,21,115],[21,118,21,116],[21,119,21,117],[21,120,21,118],[21,121,21,119],[21,122,21,120],[21,123,21,121],[21,124,21,122],[21,125,21,123],[21,126,21,124],[21,127,21,125],[21,128,21,126],[21,129,21,127],[21,130,21,128],[21,131,21,129],[21,132,21,130],[21,133,21,131],[21,134,21,132],[22,134,21,133],[21,136,22,135],[21,137,21,135],[21,138,21,136],[21,139,21,137],[21,140,21,138],[21,141,21,139],[21,142,21,140],[21,143,21,141],[21,144,21,142],[21,145,21,143],[21,146,21,144],[21,147,21,145],[21,148,21,146],[21,149,21,147],[21,150,21,148],[21,151,21,149],[21,152,21,150],[21,153,21,151],[21,154,21,152],[21,155,21,153],[21,156,21,154],[21,157,21,155],[21,158,21,156],[21,159,21,157],[21,160,21,158],[21,161,21,159],[21,162,21,160],[21,163,21,161],[21,164,21,162],[21,165,21,163],[21,166,21,164],[21,167,21,165],[21,168,21,166],[21,169,21,167],[21,170,21,168],[21,171,21,169],[21,172,21,170],[21,173,21,171],[21,174,21,172],[21,175,21,173],[21,176,21,174],[21,177,21,175],[21,178,21,176],[21,179,21,177],[21,180,21,178],[21,181,21,179],[21,182,21,180],[21,183,21,181],[20,183,21,182],[21,185,20,184],[21,186,21,184],[21,187,21,185],[21,188,21,186],[21,189,21,187],[21,190,21,188],[21,191,21,189],[21,192,21,190],[21,193,21,191],[21,194,21,192],[21,195,21,193],[21,196,21,194],[21,197,21,195],[21,198,21,196],[21,199,21,197],[21,200,21,198],[21,201,21,199],[21,202,21,200],[21,203,21,201],[21,204,21,202],[21,205,21,203],[21,206,21,204],[21,207,21,205],[21,208,21,206],[21,209,21,207],[21,210,21,208],[21,211,21,209],[21,212,21,210],[21,213,21,211],[21,214,21,212],[21,215,21,213],[21,216,21,214],[21,217,21,215],[21,218,21,216],[21,219,21,217],[21,220,21,218],[21,221,21,219],[21,222,21,220],[21,223,21,221],[21,224,21,222],[21,225,21,223],[21,226,21,224],[21,227,21,225],[21,228,21,226],[22,228,21,227],[21,230,22,229],[21,231,21,229],[21,232,21,230],[21,233,21,231],[21,234,21,232],[21,235,21,233],[21,236,21,234],[21,237,21,235],[21,238,21,236],[21,239,21,237],[21,240,21,238],[21,241,21,239],[21,242,21,240],[21,243,21,241],[21,244,21,242],[21,245,21,243],[21,246,21,244],[21,247,21,245],[21,248,21,246],[21,249,21,247],[21,250,21,248],[21,251,21,249],[21,252,21,250],[21,253,21,251],[21,254,21,252],[21,255,21,253],[21,256,21,254],[21,257,21,255],[21,258,21,256],[21,259,21,257],[21,260,21,258],[21,261,21,259],[21,262,21,260],[21,263,21,261],[21,264,21,262],[21,265,21,263],[21,266,21,264],[21,267,21,265],[21,268,21,266],[21,269,21,267],[21,270,21,268],[21,271,21,269],[21,272,21,270],[21,273,21,271],[21,274,21,272],[21,275,21,273],[21,276,21,274],[21,277,21,275],[20,277,21,276],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":10,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":13},{"stap_colors":[[62,0],[83,0],[125,0],[146,0],[167,11141120],[223,0],[251,0]],"num":22,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[22,29,23,28],[22,30,22,28],[22,31,22,29],[22,32,22,30],[22,33,22,31],[22,34,22,32],[21,34,22,33],[22,36,21,35],[22,37,22,35],[22,38,22,36],[22,39,22,37],[22,40,22,38],[22,41,22,39],[22,42,22,40],[22,43,22,41],[22,44,22,42],[22,45,22,43],[22,46,22,44],[22,47,22,45],[22,48,22,46],[23,48,22,47],[22,50,23,49],[22,51,22,49],[22,52,22,50],[22,53,22,51],[22,54,22,52],[22,55,22,53],[22,56,22,54],[22,57,22,55],[22,58,22,56],[22,59,22,57],[22,60,22,58],[22,61,22,59],[22,62,22,60],[-1,-1,22,61],[22,64,-1,-1],[22,65,22,63],[22,66,22,64],[22,67,22,65],[22,68,22,66],[22,69,22,67],[23,69,22,68],[22,71,23,70],[22,72,22,70],[22,73,22,71],[22,74,22,72],[22,75,22,73],[22,76,22,74],[21,76,22,75],[22,78,21,77],[22,79,22,77],[22,80,22,78],[22,81,22,79],[22,82,22,80],[22,83,22,81],[-1,-1,22,82],[22,85,-1,-1],[22,86,22,84],[22,87,22,85],[22,88,22,86],[22,89,22,87],[22,90,22,88],[22,91,22,89],[22,92,22,90],[22,93,22,91],[22,94,22,92],[22,95,22,93],[22,96,22,94],[22,97,22,95],[21,97,22,96],[22,99,21,98],[22,100,22,98],[22,101,22,99],[22,102,22,100],[22,103,22,101],[22,104,22,102],[22,105,22,103],[22,106,22,104],[22,107,22,105],[22,108,22,106],[22,109,22,107],[22,110,22,108],[22,111,22,109],[23,111,22,110],[22,113,23,112],[22,114,22,112],[22,115,22,113],[22,116,22,114],[22,117,22,115],[22,118,22,116],[22,119,22,117],[22,120,22,118],[22,121,22,119],[22,122,22,120],[22,123,22,121],[22,124,22,122],[22,125,22,123],[-1,-1,22,124],[22,127,-1,-1],[22,128,22,126],[22,129,22,127],[22,130,22,128],[22,131,22,129],[22,132,22,130],[23,132,22,131],[22,134,23,133],[22,135,22,133],[22,136,22,134],[22,137,22,135],[22,138,22,136],[22,139,22,137],[22,140,22,138],[22,141,22,139],[22,142,22,140],[22,143,22,141],[22,144,22,142],[22,145,22,143],[22,146,22,144],[-1,-1,22,145],[22,148,-1,-1],[22,149,22,147],[22,150,22,148],[22,151,22,149],[22,152,22,150],[22,153,22,151],[23,153,22,152],[22,155,23,154],[22,156,22,154],[22,157,22,155],[22,158,22,156],[22,159,22,157],[22,160,22,158],[21,160,22,159],[22,162,21,161],[22,163,22,161],[22,164,22,162],[22,165,22,163],[22,166,22,164],[22,167,22,165],[-1,-1,22,166],[22,169,-1,-1],[22,170,22,168],[22,171,22,169],[22,172,22,170],[22,173,22,171],[22,174,22,172],[22,175,22,173],[22,176,22,174],[22,177,22,175],[22,178,22,176],[22,179,22,177],[22,180,22,178],[22,181,22,179],[21,181,22,180],[22,183,21,182],[22,184,22,182],[22,185,22,183],[22,186,22,184],[22,187,22,185],[22,188,22,186],[22,189,22,187],[22,190,22,188],[22,191,22,189],[22,192,22,190],[22,193,22,191],[22,194,22,192],[22,195,22,193],[22,196,22,194],[22,197,22,195],[22,198,22,196],[22,199,22,197],[22,200,22,198],[22,201,22,199],[22,202,22,200],[21,202,22,201],[22,204,21,203],[22,205,22,203],[22,206,22,204],[22,207,22,205],[22,208,22,206],[22,209,22,207],[22,210,22,208],[22,211,22,209],[22,212,22,210],[22,213,22,211],[22,214,22,212],[22,215,22,213],[22,216,22,214],[23,216,22,215],[22,218,23,217],[22,219,22,217],[22,220,22,218],[22,221,22,219],[22,222,22,220],[22,223,22,221],[-1,-1,22,222],[22,225,-1,-1],[22,226,22,224],[22,227,22,225],[22,228,22,226],[22,229,22,227],[22,230,22,228],[22,231,22,229],[22,232,22,230],[22,233,22,231],[22,234,22,232],[22,235,22,233],[22,236,22,234],[22,237,22,235],[23,237,22,236],[22,239,23,238],[22,240,22,238],[22,241,22,239],[22,242,22,240],[22,243,22,241],[22,244,22,242],[21,244,22,243],[22,246,21,245],[22,247,22,245],[22,248,22,246],[22,249,22,247],[22,250,22,248],[22,251,22,249],[-1,-1,22,250],[22,253,-1,-1],[22,254,22,252],[22,255,22,253],[22,256,22,254],[22,257,22,255],[22,258,22,256],[23,258,22,257],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[23,12,22,13],[22,12,22,14],[22,13,22,15],[22,14,22,16],[22,15,22,17],[22,16,22,18],[22,17,22,19],[22,18,22,20],[22,19,22,21],[22,20,22,22],[22,21,22,23],[22,22,22,24],[22,23,22,25],[22,24,22,26],[22,25,22,27],[22,26,22,28],[22,27,22,29],[22,28,22,30],[22,29,22,31],[22,30,22,32],[22,31,22,33],[22,32,22,34],[22,33,22,35],[22,34,22,36],[22,35,22,37],[22,36,22,38],[22,37,22,39],[22,38,22,40],[22,39,22,41],[22,40,22,42],[22,41,22,43],[22,42,22,44],[22,43,22,45],[22,44,22,46],[22,45,22,47],[22,46,22,48],[22,47,22,49],[22,48,22,50],[22,49,21,50],[21,51,22,52],[22,51,22,53],[22,52,22,54],[22,53,22,55],[22,54,22,56],[22,55,22,57],[22,56,22,58],[22,57,22,59],[22,58,22,60],[22,59,22,61],[22,60,22,62],[22,61,22,63],[22,62,22,64],[22,63,22,65],[22,64,22,66],[22,65,22,67],[22,66,22,68],[22,67,22,69],[22,68,22,70],[22,69,22,71],[22,70,22,72],[22,71,22,73],[22,72,22,74],[22,73,22,75],[22,74,22,76],[22,75,22,77],[22,76,22,78],[22,77,22,79],[22,78,22,80],[22,79,22,81],[22,80,22,82],[22,81,22,83],[22,82,22,84],[22,83,22,85],[22,84,22,86],[22,85,22,87],[22,86,22,88],[22,87,22,89],[22,88,22,90],[22,89,22,91],[22,90,22,92],[22,91,22,93],[22,92,22,94],[22,93,22,95],[22,94,23,95],[23,96,22,97],[22,96,22,98],[22,97,22,99],[22,98,22,100],[22,99,22,101],[22,100,22,102],[22,101,22,103],[22,102,22,104],[22,103,22,105],[22,104,22,106],[22,105,22,107],[22,106,22,108],[22,107,22,109],[22,108,22,110],[22,109,22,111],[22,110,22,112],[22,111,22,113],[22,112,22,114],[22,113,22,115],[22,114,22,116],[22,115,22,117],[22,116,22,118],[22,117,22,119],[22,118,22,120],[22,119,22,121],[22,120,22,122],[22,121,22,123],[22,122,22,124],[22,123,22,125],[22,124,22,126],[22,125,22,127],[22,126,22,128],[22,127,22,129],[22,128,22,130],[22,129,22,131],[22,130,22,132],[22,131,22,133],[22,132,22,134],[22,133,21,134],[21,135,22,136],[22,135,22,137],[22,136,22,138],[22,137,22,139],[22,138,22,140],[22,139,22,141],[22,140,22,142],[22,141,22,143],[22,142,22,144],[22,143,22,145],[22,144,22,146],[22,145,22,147],[22,146,22,148],[22,147,22,149],[22,148,22,150],[22,149,22,151],[22,150,22,152],[22,151,22,153],[22,152,22,154],[22,153,22,155],[22,154,22,156],[22,155,22,157],[22,156,22,158],[22,157,22,159],[22,158,22,160],[22,159,22,161],[22,160,22,162],[22,161,22,163],[22,162,22,164],[22,163,22,165],[22,164,22,166],[22,165,22,167],[22,166,22,168],[22,167,22,169],[22,168,22,170],[22,169,22,171],[22,170,22,172],[22,171,22,173],[22,172,22,174],[22,173,22,175],[22,174,22,176],[22,175,22,177],[22,176,22,178],[22,177,22,179],[22,178,22,180],[22,179,22,181],[22,180,22,182],[22,181,22,183],[22,182,22,184],[22,183,22,185],[22,184,22,186],[22,185,22,187],[22,186,22,188],[22,187,22,189],[22,188,22,190],[22,189,23,190],[23,191,22,192],[22,191,22,193],[22,192,22,194],[22,193,22,195],[22,194,22,196],[22,195,22,197],[22,196,22,198],[22,197,22,199],[22,198,22,200],[22,199,22,201],[22,200,22,202],[22,201,22,203],[22,202,22,204],[22,203,22,205],[22,204,22,206],[22,205,22,207],[22,206,22,208],[22,207,22,209],[22,208,22,210],[22,209,22,211],[22,210,22,212],[22,211,22,213],[22,212,22,214],[22,213,22,215],[22,214,22,216],[22,215,22,217],[22,216,22,218],[22,217,22,219],[22,218,22,220],[22,219,22,221],[22,220,22,222],[22,221,22,223],[22,222,22,224],[22,223,22,225],[22,224,22,226],[22,225,22,227],[22,226,22,228],[22,227,21,228],[21,229,22,230],[22,229,22,231],[22,230,22,232],[22,231,22,233],[22,232,22,234],[22,233,22,235],[22,234,22,236],[22,235,22,237],[22,236,22,238],[22,237,22,239],[22,238,22,240],[22,239,22,241],[22,240,22,242],[22,241,22,243],[22,242,22,244],[22,243,22,245],[22,244,22,246],[22,245,22,247],[22,246,22,248],[22,247,22,249],[22,248,22,250],[22,249,22,251],[22,250,22,252],[22,251,22,253],[22,252,22,254],[22,253,22,255],[22,254,22,256],[22,255,22,257],[22,256,22,258],[22,257,22,259],[22,258,22,260],[22,259,22,261],[22,260,22,262],[22,261,22,263],[22,262,22,264],[22,263,22,265],[22,264,22,266],[22,265,22,267],[22,266,22,268],[22,267,22,269],[22,268,22,270],[22,269,22,271],[22,270,22,272],[22,271,22,273],[22,272,22,274],[22,273,23,274],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":10,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":14},{"stap_colors":[[35,0],[77,0],[175,0],[196,0]],"num":23,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[22,28,23,29],[23,28,23,30],[23,29,23,31],[23,30,23,32],[23,31,23,33],[23,32,23,34],[23,33,-1,-1],[-1,-1,23,36],[23,35,23,37],[23,36,23,38],[23,37,23,39],[23,38,23,40],[23,39,23,41],[23,40,24,41],[24,42,23,43],[23,42,23,44],[23,43,23,45],[23,44,23,46],[23,45,23,47],[23,46,23,48],[23,47,22,48],[22,49,23,50],[23,49,23,51],[23,50,23,52],[23,51,23,53],[23,52,23,54],[23,53,23,55],[23,54,23,56],[23,55,23,57],[23,56,23,58],[23,57,23,59],[23,58,23,60],[23,59,23,61],[23,60,23,62],[23,61,23,63],[23,62,23,64],[23,63,23,65],[23,64,23,66],[23,65,23,67],[23,66,23,68],[23,67,23,69],[23,68,22,69],[22,70,23,71],[23,70,23,72],[23,71,23,73],[23,72,23,74],[23,73,23,75],[23,74,23,76],[23,75,-1,-1],[-1,-1,23,78],[23,77,23,79],[23,78,23,80],[23,79,23,81],[23,80,23,82],[23,81,23,83],[23,82,24,83],[24,84,23,85],[23,84,23,86],[23,85,23,87],[23,86,23,88],[23,87,23,89],[23,88,23,90],[23,89,23,91],[23,90,23,92],[23,91,23,93],[23,92,23,94],[23,93,23,95],[23,94,23,96],[23,95,23,97],[23,96,23,98],[23,97,23,99],[23,98,23,100],[23,99,23,101],[23,100,23,102],[23,101,23,103],[23,102,23,104],[23,103,-1,-1],[24,105,23,106],[23,105,23,107],[23,106,23,108],[23,107,23,109],[23,108,23,110],[23,109,23,111],[23,110,22,111],[22,112,23,113],[23,112,23,114],[23,113,23,115],[23,114,23,116],[23,115,23,117],[23,116,23,118],[23,117,23,119],[23,118,23,120],[23,119,23,121],[23,120,23,122],[23,121,23,123],[23,122,23,124],[23,123,23,125],[23,124,24,125],[24,126,23,127],[23,126,23,128],[23,127,23,129],[23,128,23,130],[23,129,23,131],[23,130,23,132],[23,131,22,132],[22,133,23,134],[23,133,23,135],[23,134,23,136],[23,135,23,137],[23,136,23,138],[23,137,23,139],[23,138,23,140],[23,139,23,141],[23,140,23,142],[23,141,23,143],[23,142,23,144],[23,143,23,145],[23,144,23,146],[23,145,23,147],[23,146,23,148],[23,147,23,149],[23,148,23,150],[23,149,23,151],[23,150,23,152],[23,151,23,153],[23,152,22,153],[22,154,23,155],[23,154,23,156],[23,155,23,157],[23,156,23,158],[23,157,23,159],[23,158,23,160],[23,159,23,161],[23,160,23,162],[23,161,23,163],[23,162,23,164],[23,163,23,165],[23,164,23,166],[23,165,23,167],[23,166,24,167],[24,168,23,169],[23,168,23,170],[23,169,23,171],[23,170,23,172],[23,171,23,173],[23,172,23,174],[23,173,-1,-1],[-1,-1,23,176],[23,175,23,177],[23,176,23,178],[23,177,23,179],[23,178,23,180],[23,179,23,181],[23,180,23,182],[23,181,23,183],[23,182,23,184],[23,183,23,185],[23,184,23,186],[23,185,23,187],[23,186,23,188],[23,187,24,188],[24,189,23,190],[23,189,23,191],[23,190,23,192],[23,191,23,193],[23,192,23,194],[23,193,23,195],[23,194,-1,-1],[-1,-1,23,197],[23,196,23,198],[23,197,23,199],[23,198,23,200],[23,199,23,201],[23,200,23,202],[23,201,23,203],[23,202,23,204],[23,203,23,205],[23,204,23,206],[23,205,23,207],[23,206,23,208],[23,207,23,209],[23,208,24,209],[24,210,23,211],[23,210,23,212],[23,211,23,213],[23,212,23,214],[23,213,23,215],[23,214,23,216],[23,215,22,216],[22,217,23,218],[23,217,23,219],[23,218,23,220],[23,219,23,221],[23,220,23,222],[23,221,23,223],[23,222,23,224],[23,223,23,225],[23,224,23,226],[23,225,23,227],[23,226,23,228],[23,227,23,229],[23,228,23,230],[23,229,24,230],[24,231,23,232],[23,231,23,233],[23,232,23,234],[23,233,23,235],[23,234,23,236],[23,235,23,237],[23,236,22,237],[22,238,23,239],[23,238,23,240],[23,239,23,241],[23,240,23,242],[23,241,23,243],[23,242,23,244],[23,243,23,245],[23,244,23,246],[23,245,23,247],[23,246,23,248],[23,247,23,249],[23,248,23,250],[23,249,23,251],[23,250,24,251],[24,252,23,253],[23,252,23,254],[23,253,23,255],[23,254,23,256],[23,255,23,257],[23,256,23,258],[23,257,22,258],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[23,13,22,12],[23,14,23,12],[23,15,23,13],[23,16,23,14],[23,17,23,15],[23,18,23,16],[23,19,23,17],[23,20,23,18],[23,21,23,19],[23,22,23,20],[23,23,23,21],[23,24,23,22],[23,25,23,23],[23,26,23,24],[23,27,23,25],[23,28,23,26],[23,29,23,27],[23,30,23,28],[23,31,23,29],[23,32,23,30],[23,33,23,31],[23,34,23,32],[23,35,23,33],[23,36,23,34],[23,37,23,35],[23,38,23,36],[23,39,23,37],[23,40,23,38],[23,41,23,39],[23,42,23,40],[23,43,23,41],[23,44,23,42],[23,45,23,43],[23,46,23,44],[23,47,23,45],[23,48,23,46],[23,49,23,47],[23,50,23,48],[23,51,23,49],[23,52,23,50],[23,53,23,51],[23,54,23,52],[23,55,23,53],[23,56,23,54],[23,57,23,55],[24,57,23,56],[23,59,24,58],[23,60,23,58],[23,61,23,59],[23,62,23,60],[23,63,23,61],[23,64,23,62],[23,65,23,63],[23,66,23,64],[23,67,23,65],[23,68,23,66],[23,69,23,67],[23,70,23,68],[23,71,23,69],[23,72,23,70],[23,73,23,71],[23,74,23,72],[23,75,23,73],[23,76,23,74],[23,77,23,75],[23,78,23,76],[23,79,23,77],[23,80,23,78],[23,81,23,79],[23,82,23,80],[23,83,23,81],[23,84,23,82],[23,85,23,83],[23,86,23,84],[23,87,23,85],[23,88,23,86],[23,89,23,87],[23,90,23,88],[23,91,23,89],[23,92,23,90],[23,93,23,91],[23,94,23,92],[23,95,23,93],[22,95,23,94],[23,97,22,96],[23,98,23,96],[23,99,23,97],[23,100,23,98],[23,101,23,99],[23,102,23,100],[23,103,23,101],[23,104,23,102],[23,105,23,103],[23,106,23,104],[23,107,23,105],[23,108,23,106],[23,109,23,107],[23,110,23,108],[23,111,23,109],[23,112,23,110],[23,113,23,111],[23,114,23,112],[23,115,23,113],[23,116,23,114],[23,117,23,115],[23,118,23,116],[23,119,23,117],[23,120,23,118],[23,121,23,119],[23,122,23,120],[23,123,23,121],[23,124,23,122],[23,125,23,123],[23,126,23,124],[23,127,23,125],[23,128,23,126],[23,129,23,127],[23,130,23,128],[23,131,23,129],[23,132,23,130],[23,133,23,131],[23,134,23,132],[23,135,23,133],[23,136,23,134],[23,137,23,135],[23,138,23,136],[23,139,23,137],[23,140,23,138],[23,141,23,139],[24,141,23,140],[23,143,24,142],[23,144,23,142],[23,145,23,143],[23,146,23,144],[23,147,23,145],[23,148,23,146],[23,149,23,147],[23,150,23,148],[23,151,23,149],[23,152,23,150],[23,153,23,151],[23,154,23,152],[23,155,23,153],[23,156,23,154],[23,157,23,155],[23,158,23,156],[23,159,23,157],[23,160,23,158],[23,161,23,159],[23,162,23,160],[23,163,23,161],[23,164,23,162],[23,165,23,163],[23,166,23,164],[23,167,23,165],[23,168,23,166],[23,169,23,167],[23,170,23,168],[23,171,23,169],[23,172,23,170],[23,173,23,171],[23,174,23,172],[23,175,23,173],[23,176,23,174],[23,177,23,175],[23,178,23,176],[23,179,23,177],[23,180,23,178],[23,181,23,179],[23,182,23,180],[23,183,23,181],[23,184,23,182],[23,185,23,183],[23,186,23,184],[23,187,23,185],[23,188,23,186],[23,189,23,187],[23,190,23,188],[22,190,23,189],[23,192,22,191],[23,193,23,191],[23,194,23,192],[23,195,23,193],[23,196,23,194],[23,197,23,195],[23,198,23,196],[23,199,23,197],[23,200,23,198],[23,201,23,199],[23,202,23,200],[23,203,23,201],[23,204,23,202],[23,205,23,203],[23,206,23,204],[23,207,23,205],[23,208,23,206],[23,209,23,207],[23,210,23,208],[23,211,23,209],[23,212,23,210],[23,213,23,211],[23,214,23,212],[23,215,23,213],[23,216,23,214],[23,217,23,215],[23,218,23,216],[23,219,23,217],[23,220,23,218],[23,221,23,219],[23,222,23,220],[23,223,23,221],[23,224,23,222],[23,225,23,223],[23,226,23,224],[23,227,23,225],[23,228,23,226],[23,229,23,227],[23,230,23,228],[23,231,23,229],[23,232,23,230],[23,233,23,231],[23,234,23,232],[23,235,23,233],[23,236,23,234],[23,237,23,235],[23,238,23,236],[23,239,23,237],[23,240,23,238],[23,241,23,239],[23,242,23,240],[23,243,23,241],[23,244,23,242],[23,245,23,243],[23,246,23,244],[23,247,23,245],[23,248,23,246],[23,249,23,247],[23,250,23,248],[23,251,23,249],[23,252,23,250],[23,253,23,251],[23,254,23,252],[23,255,23,253],[23,256,23,254],[23,257,23,255],[23,258,23,256],[23,259,23,257],[23,260,23,258],[23,261,23,259],[23,262,23,260],[23,263,23,261],[23,264,23,262],[23,265,23,263],[23,266,23,264],[23,267,23,265],[23,268,23,266],[23,269,23,267],[23,270,23,268],[23,271,23,269],[23,272,23,270],[23,273,23,271],[23,274,23,272],[22,274,23,273],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":11,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":14},{"stap_colors":[[90,0],[104,0],[111,0],[216,0],[265,0]],"num":24,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[24,22,-1,-1],[24,23,24,21],[24,24,24,22],[24,25,24,23],[24,26,24,24],[24,27,24,25],[24,28,24,26],[24,29,24,27],[24,30,24,28],[24,31,24,29],[24,32,24,30],[24,33,24,31],[24,34,24,32],[19,34,24,33],[24,36,19,35],[24,37,24,35],[24,38,24,36],[24,39,24,37],[24,40,24,38],[24,41,24,39],[23,41,24,40],[24,43,23,42],[24,44,24,42],[24,45,24,43],[24,46,24,44],[24,47,24,45],[24,48,24,46],[25,48,24,47],[24,50,25,49],[24,51,24,49],[24,52,24,50],[24,53,24,51],[24,54,24,52],[24,55,24,53],[19,55,24,54],[24,57,19,56],[24,58,24,56],[24,59,24,57],[24,60,24,58],[24,61,24,59],[24,62,24,60],[24,63,24,61],[24,64,24,62],[24,65,24,63],[24,66,24,64],[24,67,24,65],[24,68,24,66],[24,69,24,67],[25,69,24,68],[24,71,25,70],[24,72,24,70],[24,73,24,71],[24,74,24,72],[24,75,24,73],[24,76,24,74],[19,76,24,75],[24,78,19,77],[24,79,24,77],[24,80,24,78],[24,81,24,79],[24,82,24,80],[24,83,24,81],[23,83,24,82],[24,85,23,84],[24,86,24,84],[24,87,24,85],[24,88,24,86],[24,89,24,87],[24,90,24,88],[-1,-1,24,89],[24,92,25,91],[24,93,24,91],[24,94,24,92],[24,95,24,93],[24,96,24,94],[24,97,24,95],[19,97,24,96],[24,99,19,98],[24,100,24,98],[24,101,24,99],[24,102,24,100],[24,103,24,101],[24,104,24,102],[-1,-1,24,103],[24,106,23,105],[24,107,24,105],[24,108,24,106],[24,109,24,107],[24,110,24,108],[24,111,24,109],[-1,-1,24,110],[24,113,-1,-1],[24,114,24,112],[24,115,24,113],[24,116,24,114],[24,117,24,115],[24,118,24,116],[19,118,24,117],[24,120,19,119],[24,121,24,119],[24,122,24,120],[24,123,24,121],[24,124,24,122],[24,125,24,123],[23,125,24,124],[24,127,23,126],[24,128,24,126],[24,129,24,127],[24,130,24,128],[24,131,24,129],[24,132,24,130],[25,132,24,131],[24,134,25,133],[24,135,24,133],[24,136,24,134],[24,137,24,135],[24,138,24,136],[24,139,24,137],[19,139,24,138],[24,141,19,140],[24,142,24,140],[24,143,24,141],[24,144,24,142],[24,145,24,143],[24,146,24,144],[24,147,24,145],[24,148,24,146],[24,149,24,147],[24,150,24,148],[24,151,24,149],[24,152,24,150],[24,153,24,151],[25,153,24,152],[24,155,25,154],[24,156,24,154],[24,157,24,155],[24,158,24,156],[24,159,24,157],[24,160,24,158],[19,160,24,159],[24,162,19,161],[24,163,24,161],[24,164,24,162],[24,165,24,163],[24,166,24,164],[24,167,24,165],[23,167,24,166],[24,169,23,168],[24,170,24,168],[24,171,24,169],[24,172,24,170],[24,173,24,171],[24,174,24,172],[25,174,24,173],[24,176,25,175],[24,177,24,175],[24,178,24,176],[24,179,24,177],[24,180,24,178],[24,181,24,179],[19,181,24,180],[24,183,19,182],[24,184,24,182],[24,185,24,183],[24,186,24,184],[24,187,24,185],[24,188,24,186],[23,188,24,187],[24,190,23,189],[24,191,24,189],[24,192,24,190],[24,193,24,191],[24,194,24,192],[24,195,24,193],[24,196,24,194],[24,197,24,195],[24,198,24,196],[24,199,24,197],[24,200,24,198],[24,201,24,199],[24,202,24,200],[19,202,24,201],[24,204,19,203],[24,205,24,203],[24,206,24,204],[24,207,24,205],[24,208,24,206],[24,209,24,207],[23,209,24,208],[24,211,23,210],[24,212,24,210],[24,213,24,211],[24,214,24,212],[24,215,24,213],[24,216,24,214],[-1,-1,24,215],[24,218,-1,-1],[24,219,24,217],[24,220,24,218],[24,221,24,219],[24,222,24,220],[24,223,24,221],[19,223,24,222],[24,225,19,224],[24,226,24,224],[24,227,24,225],[24,228,24,226],[24,229,24,227],[24,230,24,228],[23,230,24,229],[24,232,23,231],[24,233,24,231],[24,234,24,232],[24,235,24,233],[24,236,24,234],[24,237,24,235],[25,237,24,236],[24,239,25,238],[24,240,24,238],[24,241,24,239],[24,242,24,240],[24,243,24,241],[24,244,24,242],[19,244,24,243],[24,246,19,245],[24,247,24,245],[24,248,24,246],[24,249,24,247],[24,250,24,248],[24,251,24,249],[23,251,24,250],[24,253,23,252],[24,254,24,252],[24,255,24,253],[24,256,24,254],[24,257,24,255],[24,258,24,256],[24,259,24,257],[24,260,24,258],[24,261,24,259],[24,262,24,260],[24,263,24,261],[24,264,24,262],[24,265,24,263],[-1,-1,24,264],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[25,12,24,13],[24,12,24,14],[24,13,24,15],[24,14,24,16],[24,15,24,17],[24,16,24,18],[24,17,24,19],[24,18,24,20],[24,19,24,21],[24,20,24,22],[24,21,24,23],[24,22,24,24],[24,23,24,25],[24,24,24,26],[24,25,24,27],[24,26,24,28],[24,27,24,29],[24,28,24,30],[24,29,24,31],[24,30,24,32],[24,31,24,33],[24,32,24,34],[24,33,24,35],[24,34,24,36],[24,35,24,37],[24,36,24,38],[24,37,24,39],[24,38,24,40],[24,39,24,41],[24,40,24,42],[24,41,24,43],[24,42,24,44],[24,43,24,45],[24,44,24,46],[24,45,24,47],[24,46,24,48],[24,47,24,49],[24,48,24,50],[24,49,24,51],[24,50,24,52],[24,51,24,53],[24,52,24,54],[24,53,24,55],[24,54,24,56],[24,55,24,57],[24,56,23,57],[23,58,24,59],[24,58,24,60],[24,59,24,61],[24,60,24,62],[24,61,24,63],[24,62,24,64],[24,63,24,65],[24,64,24,66],[24,65,24,67],[24,66,24,68],[24,67,24,69],[24,68,24,70],[24,69,24,71],[24,70,24,72],[24,71,24,73],[24,72,24,74],[24,73,24,75],[24,74,24,76],[24,75,24,77],[24,76,24,78],[24,77,24,79],[24,78,24,80],[24,79,24,81],[24,80,24,82],[24,81,24,83],[24,82,24,84],[24,83,24,85],[24,84,25,85],[25,86,24,87],[24,86,24,88],[24,87,24,89],[24,88,24,90],[24,89,24,91],[24,90,24,92],[24,91,24,93],[24,92,24,94],[24,93,24,95],[24,94,24,96],[24,95,24,97],[24,96,24,98],[24,97,24,99],[24,98,24,100],[24,99,24,101],[24,100,24,102],[24,101,24,103],[24,102,24,104],[24,103,24,105],[24,104,24,106],[24,105,24,107],[24,106,24,108],[24,107,24,109],[24,108,24,110],[24,109,24,111],[24,110,24,112],[24,111,24,113],[24,112,24,114],[24,113,24,115],[24,114,24,116],[24,115,24,117],[24,116,24,118],[24,117,24,119],[24,118,24,120],[24,119,24,121],[24,120,24,122],[24,121,24,123],[24,122,24,124],[24,123,24,125],[24,124,24,126],[24,125,24,127],[24,126,24,128],[24,127,24,129],[24,128,24,130],[24,129,24,131],[24,130,24,132],[24,131,24,133],[24,132,24,134],[24,133,24,135],[24,134,24,136],[24,135,24,137],[24,136,24,138],[24,137,24,139],[24,138,24,140],[24,139,24,141],[24,140,23,141],[23,142,24,143],[24,142,24,144],[24,143,24,145],[24,144,24,146],[24,145,24,147],[24,146,24,148],[24,147,24,149],[24,148,24,150],[24,149,24,151],[24,150,24,152],[24,151,24,153],[24,152,24,154],[24,153,24,155],[24,154,24,156],[24,155,24,157],[24,156,24,158],[24,157,24,159],[24,158,24,160],[24,159,24,161],[24,160,24,162],[24,161,24,163],[24,162,24,164],[24,163,24,165],[24,164,24,166],[24,165,24,167],[24,166,24,168],[24,167,24,169],[24,168,24,170],[24,169,24,171],[24,170,24,172],[24,171,24,173],[24,172,24,174],[24,173,24,175],[24,174,24,176],[24,175,24,177],[24,176,24,178],[24,177,24,179],[24,178,24,180],[24,179,24,181],[24,180,24,182],[24,181,24,183],[24,182,24,184],[24,183,24,185],[24,184,24,186],[24,185,24,187],[24,186,24,188],[24,187,24,189],[24,188,24,190],[24,189,25,190],[25,191,24,192],[24,191,24,193],[24,192,24,194],[24,193,24,195],[24,194,24,196],[24,195,24,197],[24,196,24,198],[24,197,24,199],[24,198,24,200],[24,199,24,201],[24,200,24,202],[24,201,24,203],[24,202,24,204],[24,203,24,205],[24,204,24,206],[24,205,24,207],[24,206,24,208],[24,207,24,209],[24,208,24,210],[24,209,24,211],[24,210,24,212],[24,211,24,213],[24,212,24,214],[24,213,24,215],[24,214,24,216],[24,215,24,217],[24,216,24,218],[24,217,24,219],[24,218,24,220],[24,219,24,221],[24,220,24,222],[24,221,24,223],[24,222,24,224],[24,223,24,225],[24,224,24,226],[24,225,24,227],[24,226,24,228],[24,227,24,229],[24,228,24,230],[24,229,24,231],[24,230,24,232],[24,231,24,233],[24,232,24,234],[24,233,24,235],[24,234,24,236],[24,235,24,237],[24,236,24,238],[24,237,24,239],[24,238,24,240],[24,239,24,241],[24,240,24,242],[24,241,24,243],[24,242,24,244],[24,243,24,245],[24,244,24,246],[24,245,24,247],[24,246,24,248],[24,247,24,249],[24,248,24,250],[24,249,24,251],[24,250,24,252],[24,251,24,253],[24,252,24,254],[24,253,24,255],[24,254,24,256],[24,255,24,257],[24,256,24,258],[24,257,24,259],[24,258,24,260],[24,259,24,261],[24,260,24,262],[24,261,24,263],[24,262,24,264],[24,263,24,265],[24,264,24,266],[24,265,24,267],[24,266,24,268],[24,267,24,269],[24,268,24,270],[24,269,24,271],[24,270,24,272],[24,271,24,273],[24,272,24,274],[24,273,25,274],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":12,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":14},{"stap_colors":[[25,0],[63,0],[77,0],[98,11141120],[119,0],[140,0],[161,0],[182,3355443],[203,0],[217,0],[245,0]],"num":25,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,25,26],[25,25,25,27],[25,26,25,28],[25,27,25,29],[25,28,25,30],[25,29,25,31],[25,30,25,32],[25,31,25,33],[25,32,25,34],[25,33,25,35],[25,34,25,36],[25,35,25,37],[25,36,25,38],[25,37,25,39],[25,38,25,40],[25,39,25,41],[25,40,26,41],[26,42,25,43],[25,42,25,44],[25,43,25,45],[25,44,25,46],[25,45,25,47],[25,46,25,48],[25,47,24,48],[24,49,25,50],[25,49,25,51],[25,50,25,52],[25,51,25,53],[25,52,25,54],[25,53,25,55],[25,54,25,56],[25,55,25,57],[25,56,25,58],[25,57,25,59],[25,58,25,60],[25,59,25,61],[25,60,25,62],[25,61,-1,-1],[-1,-1,25,64],[25,63,25,65],[25,64,25,66],[25,65,25,67],[25,66,25,68],[25,67,25,69],[25,68,24,69],[24,70,25,71],[25,70,25,72],[25,71,25,73],[25,72,25,74],[25,73,25,75],[25,74,25,76],[25,75,-1,-1],[-1,-1,25,78],[25,77,25,79],[25,78,25,80],[25,79,25,81],[25,80,25,82],[25,81,25,83],[25,82,26,83],[26,84,25,85],[25,84,25,86],[25,85,25,87],[25,86,25,88],[25,87,25,89],[25,88,25,90],[25,89,-1,-1],[24,91,25,92],[25,91,25,93],[25,92,25,94],[25,93,25,95],[25,94,25,96],[25,95,25,97],[25,96,-1,-1],[-1,-1,25,99],[25,98,25,100],[25,99,25,101],[25,100,25,102],[25,101,25,103],[25,102,25,104],[25,103,26,104],[26,105,25,106],[25,105,25,107],[25,106,25,108],[25,107,25,109],[25,108,25,110],[25,109,25,111],[25,110,25,112],[25,111,25,113],[25,112,25,114],[25,113,25,115],[25,114,25,116],[25,115,25,117],[25,116,25,118],[25,117,-1,-1],[-1,-1,25,120],[25,119,25,121],[25,120,25,122],[25,121,25,123],[25,122,25,124],[25,123,25,125],[25,124,26,125],[26,126,25,127],[25,126,25,128],[25,127,25,129],[25,128,25,130],[25,129,25,131],[25,130,25,132],[25,131,24,132],[24,133,25,134],[25,133,25,135],[25,134,25,136],[25,135,25,137],[25,136,25,138],[25,137,25,139],[25,138,-1,-1],[-1,-1,25,141],[25,140,25,142],[25,141,25,143],[25,142,25,144],[25,143,25,145],[25,144,25,146],[25,145,25,147],[25,146,25,148],[25,147,25,149],[25,148,25,150],[25,149,25,151],[25,150,25,152],[25,151,25,153],[25,152,24,153],[24,154,25,155],[25,154,25,156],[25,155,25,157],[25,156,25,158],[25,157,25,159],[25,158,25,160],[25,159,-1,-1],[-1,-1,25,162],[25,161,25,163],[25,162,25,164],[25,163,25,165],[25,164,25,166],[25,165,25,167],[25,166,26,167],[26,168,25,169],[25,168,25,170],[25,169,25,171],[25,170,25,172],[25,171,25,173],[25,172,25,174],[25,173,24,174],[24,175,25,176],[25,175,25,177],[25,176,25,178],[25,177,25,179],[25,178,25,180],[25,179,25,181],[25,180,-1,-1],[-1,-1,25,183],[25,182,25,184],[25,183,25,185],[25,184,25,186],[25,185,25,187],[25,186,25,188],[25,187,26,188],[26,189,25,190],[25,189,25,191],[25,190,25,192],[25,191,25,193],[25,192,25,194],[25,193,25,195],[25,194,25,196],[25,195,25,197],[25,196,25,198],[25,197,25,199],[25,198,25,200],[25,199,25,201],[25,200,25,202],[25,201,-1,-1],[-1,-1,25,204],[25,203,25,205],[25,204,25,206],[25,205,25,207],[25,206,25,208],[25,207,25,209],[25,208,26,209],[26,210,25,211],[25,210,25,212],[25,211,25,213],[25,212,25,214],[25,213,25,215],[25,214,25,216],[25,215,-1,-1],[-1,-1,25,218],[25,217,25,219],[25,218,25,220],[25,219,25,221],[25,220,25,222],[25,221,25,223],[25,222,25,224],[25,223,25,225],[25,224,25,226],[25,225,25,227],[25,226,25,228],[25,227,25,229],[25,228,25,230],[25,229,25,231],[25,230,25,232],[25,231,25,233],[25,232,25,234],[25,233,25,235],[25,234,25,236],[25,235,25,237],[25,236,24,237],[24,238,25,239],[25,238,25,240],[25,239,25,241],[25,240,25,242],[25,241,25,243],[25,242,25,244],[25,243,-1,-1],[-1,-1,25,246],[25,245,25,247],[25,246,25,248],[25,247,25,249],[25,248,25,250],[25,249,25,251],[25,250,26,251],[26,252,25,253],[25,252,25,254],[25,253,25,255],[25,254,25,256],[25,255,25,257],[25,256,25,258],[25,257,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[25,13,24,12],[25,14,25,12],[25,15,25,13],[25,16,25,14],[25,17,25,15],[25,18,25,16],[25,19,25,17],[25,20,25,18],[25,21,25,19],[25,22,25,20],[25,23,25,21],[25,24,25,22],[25,25,25,23],[25,26,25,24],[25,27,25,25],[25,28,25,26],[25,29,25,27],[25,30,25,28],[25,31,25,29],[25,32,25,30],[25,33,25,31],[25,34,25,32],[25,35,25,33],[25,36,25,34],[25,37,25,35],[25,38,25,36],[25,39,25,37],[25,40,25,38],[25,41,25,39],[25,42,25,40],[25,43,25,41],[25,44,25,42],[25,45,25,43],[25,46,25,44],[25,47,25,45],[25,48,25,46],[25,49,25,47],[25,50,25,48],[25,51,25,49],[25,52,25,50],[25,53,25,51],[25,54,25,52],[25,55,25,53],[25,56,25,54],[25,57,25,55],[26,57,25,56],[25,59,26,58],[25,60,25,58],[25,61,25,59],[25,62,25,60],[25,63,25,61],[25,64,25,62],[25,65,25,63],[25,66,25,64],[25,67,25,65],[25,68,25,66],[25,69,25,67],[25,70,25,68],[25,71,25,69],[25,72,25,70],[25,73,25,71],[25,74,25,72],[25,75,25,73],[25,76,25,74],[25,77,25,75],[25,78,25,76],[25,79,25,77],[25,80,25,78],[25,81,25,79],[25,82,25,80],[25,83,25,81],[25,84,25,82],[25,85,25,83],[24,85,25,84],[25,87,24,86],[25,88,25,86],[25,89,25,87],[25,90,25,88],[25,91,25,89],[25,92,25,90],[25,93,25,91],[25,94,25,92],[25,95,25,93],[25,96,25,94],[25,97,25,95],[25,98,25,96],[25,99,25,97],[25,100,25,98],[25,101,25,99],[25,102,25,100],[25,103,25,101],[25,104,25,102],[25,105,25,103],[25,106,25,104],[25,107,25,105],[25,108,25,106],[25,109,25,107],[25,110,25,108],[25,111,25,109],[25,112,25,110],[25,113,25,111],[25,114,25,112],[25,115,25,113],[25,116,25,114],[25,117,25,115],[25,118,25,116],[25,119,25,117],[25,120,25,118],[25,121,25,119],[25,122,25,120],[25,123,25,121],[25,124,25,122],[25,125,25,123],[25,126,25,124],[25,127,25,125],[25,128,25,126],[25,129,25,127],[25,130,25,128],[25,131,25,129],[25,132,25,130],[25,133,25,131],[25,134,25,132],[25,135,25,133],[25,136,25,134],[25,137,25,135],[25,138,25,136],[25,139,25,137],[25,140,25,138],[25,141,25,139],[25,142,25,140],[25,143,25,141],[25,144,25,142],[25,145,25,143],[25,146,25,144],[25,147,25,145],[25,148,25,146],[25,149,25,147],[25,150,25,148],[25,151,25,149],[26,151,25,150],[25,153,26,152],[25,154,25,152],[25,155,25,153],[25,156,25,154],[25,157,25,155],[25,158,25,156],[25,159,25,157],[25,160,25,158],[25,161,25,159],[25,162,25,160],[25,163,25,161],[25,164,25,162],[25,165,25,163],[25,166,25,164],[25,167,25,165],[25,168,25,166],[25,169,25,167],[25,170,25,168],[25,171,25,169],[25,172,25,170],[25,173,25,171],[25,174,25,172],[25,175,25,173],[25,176,25,174],[25,177,25,175],[25,178,25,176],[25,179,25,177],[25,180,25,178],[25,181,25,179],[25,182,25,180],[25,183,25,181],[25,184,25,182],[25,185,25,183],[25,186,25,184],[25,187,25,185],[25,188,25,186],[25,189,25,187],[25,190,25,188],[24,190,25,189],[25,192,24,191],[25,193,25,191],[25,194,25,192],[25,195,25,193],[25,196,25,194],[25,197,25,195],[25,198,25,196],[25,199,25,197],[25,200,25,198],[25,201,25,199],[25,202,25,200],[25,203,25,201],[25,204,25,202],[25,205,25,203],[25,206,25,204],[25,207,25,205],[25,208,25,206],[25,209,25,207],[25,210,25,208],[25,211,25,209],[25,212,25,210],[25,213,25,211],[25,214,25,212],[25,215,25,213],[25,216,25,214],[25,217,25,215],[25,218,25,216],[25,219,25,217],[25,220,25,218],[25,221,25,219],[25,222,25,220],[25,223,25,221],[25,224,25,222],[25,225,25,223],[25,226,25,224],[25,227,25,225],[25,228,25,226],[25,229,25,227],[25,230,25,228],[25,231,25,229],[25,232,25,230],[25,233,25,231],[25,234,25,232],[25,235,25,233],[26,235,25,234],[25,237,26,236],[25,238,25,236],[25,239,25,237],[25,240,25,238],[25,241,25,239],[25,242,25,240],[25,243,25,241],[25,244,25,242],[25,245,25,243],[25,246,25,244],[25,247,25,245],[25,248,25,246],[25,249,25,247],[25,250,25,248],[25,251,25,249],[25,252,25,250],[25,253,25,251],[25,254,25,252],[25,255,25,253],[25,256,25,254],[25,257,25,255],[25,258,25,256],[25,259,25,257],[25,260,25,258],[25,261,25,259],[25,262,25,260],[25,263,25,261],[25,264,25,262],[25,265,25,263],[25,266,25,264],[25,267,25,265],[25,268,25,266],[25,269,25,267],[25,270,25,268],[25,271,25,269],[25,272,25,270],[25,273,25,271],[25,274,25,272],[24,274,25,273],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":13,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":14},{"stap_colors":[[48,0],[62,0],[146,0],[202,29184],[230,3355443]],"num":26,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[26,29,27,28],[26,30,26,28],[26,31,26,29],[26,32,26,30],[26,33,26,31],[26,34,26,32],[17,34,26,33],[26,36,17,35],[26,37,26,35],[26,38,26,36],[26,39,26,37],[26,40,26,38],[26,41,26,39],[25,41,26,40],[26,43,25,42],[26,44,26,42],[26,45,26,43],[26,46,26,44],[26,47,26,45],[26,48,26,46],[-1,-1,26,47],[26,50,27,49],[26,51,26,49],[26,52,26,50],[26,53,26,51],[26,54,26,52],[26,55,26,53],[17,55,26,54],[26,57,17,56],[26,58,26,56],[26,59,26,57],[26,60,26,58],[26,61,26,59],[26,62,26,60],[-1,-1,26,61],[26,64,-1,-1],[26,65,26,63],[26,66,26,64],[26,67,26,65],[26,68,26,66],[26,69,26,67],[27,69,26,68],[26,71,27,70],[26,72,26,70],[26,73,26,71],[26,74,26,72],[26,75,26,73],[26,76,26,74],[17,76,26,75],[26,78,17,77],[26,79,26,77],[26,80,26,78],[26,81,26,79],[26,82,26,80],[26,83,26,81],[25,83,26,82],[26,85,25,84],[26,86,26,84],[26,87,26,85],[26,88,26,86],[26,89,26,87],[26,90,26,88],[27,90,26,89],[26,92,27,91],[26,93,26,91],[26,94,26,92],[26,95,26,93],[26,96,26,94],[26,97,26,95],[17,97,26,96],[26,99,17,98],[26,100,26,98],[26,101,26,99],[26,102,26,100],[26,103,26,101],[26,104,26,102],[25,104,26,103],[26,106,25,105],[26,107,26,105],[26,108,26,106],[26,109,26,107],[26,110,26,108],[26,111,26,109],[27,111,26,110],[26,113,27,112],[26,114,26,112],[26,115,26,113],[26,116,26,114],[26,117,26,115],[26,118,26,116],[17,118,26,117],[26,120,17,119],[26,121,26,119],[26,122,26,120],[26,123,26,121],[26,124,26,122],[26,125,26,123],[25,125,26,124],[26,127,25,126],[26,128,26,126],[26,129,26,127],[26,130,26,128],[26,131,26,129],[26,132,26,130],[27,132,26,131],[26,134,27,133],[26,135,26,133],[26,136,26,134],[26,137,26,135],[26,138,26,136],[26,139,26,137],[17,139,26,138],[26,141,17,140],[26,142,26,140],[26,143,26,141],[26,144,26,142],[26,145,26,143],[26,146,26,144],[-1,-1,26,145],[26,148,-1,-1],[26,149,26,147],[26,150,26,148],[26,151,26,149],[26,152,26,150],[26,153,26,151],[27,153,26,152],[26,155,27,154],[26,156,26,154],[26,157,26,155],[26,158,26,156],[26,159,26,157],[26,160,26,158],[17,160,26,159],[26,162,17,161],[26,163,26,161],[26,164,26,162],[26,165,26,163],[26,166,26,164],[26,167,26,165],[25,167,26,166],[26,169,25,168],[26,170,26,168],[26,171,26,169],[26,172,26,170],[26,173,26,171],[26,174,26,172],[27,174,26,173],[26,176,27,175],[26,177,26,175],[26,178,26,176],[26,179,26,177],[26,180,26,178],[26,181,26,179],[17,181,26,180],[26,183,17,182],[26,184,26,182],[26,185,26,183],[26,186,26,184],[26,187,26,185],[26,188,26,186],[25,188,26,187],[26,190,25,189],[26,191,26,189],[26,192,26,190],[26,193,26,191],[26,194,26,192],[26,195,26,193],[27,195,26,194],[26,197,27,196],[26,198,26,196],[26,199,26,197],[26,200,26,198],[26,201,26,199],[26,202,26,200],[-1,-1,26,201],[26,204,17,203],[26,205,26,203],[26,206,26,204],[26,207,26,205],[26,208,26,206],[26,209,26,207],[25,209,26,208],[26,211,25,210],[26,212,26,210],[26,213,26,211],[26,214,26,212],[26,215,26,213],[26,216,26,214],[27,216,26,215],[26,218,27,217],[26,219,26,217],[26,220,26,218],[26,221,26,219],[26,222,26,220],[26,223,26,221],[17,223,26,222],[26,225,17,224],[26,226,26,224],[26,227,26,225],[26,228,26,226],[26,229,26,227],[26,230,26,228],[-1,-1,26,229],[26,232,-1,-1],[26,233,26,231],[26,234,26,232],[26,235,26,233],[26,236,26,234],[26,237,26,235],[27,237,26,236],[26,239,27,238],[26,240,26,238],[26,241,26,239],[26,242,26,240],[26,243,26,241],[26,244,26,242],[17,244,26,243],[26,246,17,245],[26,247,26,245],[26,248,26,246],[26,249,26,247],[26,250,26,248],[26,251,26,249],[25,251,26,250],[26,253,25,252],[26,254,26,252],[26,255,26,253],[26,256,26,254],[26,257,26,255],[26,258,26,256],[27,258,26,257],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[27,12,26,13],[26,12,26,14],[26,13,26,15],[26,14,26,16],[26,15,26,17],[26,16,26,18],[26,17,26,19],[26,18,26,20],[26,19,26,21],[26,20,26,22],[26,21,26,23],[26,22,26,24],[26,23,26,25],[26,24,26,26],[26,25,26,27],[26,26,26,28],[26,27,26,29],[26,28,26,30],[26,29,26,31],[26,30,26,32],[26,31,26,33],[26,32,26,34],[26,33,26,35],[26,34,26,36],[26,35,26,37],[26,36,26,38],[26,37,26,39],[26,38,26,40],[26,39,26,41],[26,40,26,42],[26,41,26,43],[26,42,26,44],[26,43,26,45],[26,44,26,46],[26,45,26,47],[26,46,26,48],[26,47,26,49],[26,48,26,50],[26,49,26,51],[26,50,26,52],[26,51,26,53],[26,52,26,54],[26,53,26,55],[26,54,26,56],[26,55,26,57],[26,56,25,57],[25,58,26,59],[26,58,26,60],[26,59,26,61],[26,60,26,62],[26,61,26,63],[26,62,26,64],[26,63,26,65],[26,64,26,66],[26,65,26,67],[26,66,26,68],[26,67,26,69],[26,68,26,70],[26,69,26,71],[26,70,26,72],[26,71,26,73],[26,72,26,74],[26,73,26,75],[26,74,26,76],[26,75,26,77],[26,76,26,78],[26,77,26,79],[26,78,26,80],[26,79,26,81],[26,80,26,82],[26,81,26,83],[26,82,26,84],[26,83,26,85],[26,84,26,86],[26,85,26,87],[26,86,26,88],[26,87,26,89],[26,88,26,90],[26,89,26,91],[26,90,26,92],[26,91,26,93],[26,92,26,94],[26,93,26,95],[26,94,26,96],[26,95,26,97],[26,96,26,98],[26,97,26,99],[26,98,26,100],[26,99,26,101],[26,100,26,102],[26,101,26,103],[26,102,26,104],[26,103,26,105],[26,104,26,106],[26,105,26,107],[26,106,26,108],[26,107,26,109],[26,108,26,110],[26,109,26,111],[26,110,26,112],[26,111,26,113],[26,112,26,114],[26,113,26,115],[26,114,26,116],[26,115,26,117],[26,116,26,118],[26,117,26,119],[26,118,26,120],[26,119,26,121],[26,120,26,122],[26,121,26,123],[26,122,26,124],[26,123,26,125],[26,124,26,126],[26,125,26,127],[26,126,26,128],[26,127,26,129],[26,128,26,130],[26,129,26,131],[26,130,26,132],[26,131,26,133],[26,132,26,134],[26,133,26,135],[26,134,26,136],[26,135,26,137],[26,136,26,138],[26,137,26,139],[26,138,26,140],[26,139,26,141],[26,140,26,142],[26,141,26,143],[26,142,26,144],[26,143,26,145],[26,144,26,146],[26,145,26,147],[26,146,26,148],[26,147,26,149],[26,148,26,150],[26,149,26,151],[26,150,25,151],[25,152,26,153],[26,152,26,154],[26,153,26,155],[26,154,26,156],[26,155,26,157],[26,156,26,158],[26,157,26,159],[26,158,26,160],[26,159,26,161],[26,160,26,162],[26,161,26,163],[26,162,26,164],[26,163,26,165],[26,164,26,166],[26,165,26,167],[26,166,26,168],[26,167,26,169],[26,168,26,170],[26,169,26,171],[26,170,26,172],[26,171,26,173],[26,172,26,174],[26,173,26,175],[26,174,26,176],[26,175,26,177],[26,176,26,178],[26,177,26,179],[26,178,26,180],[26,179,26,181],[26,180,26,182],[26,181,26,183],[26,182,26,184],[26,183,26,185],[26,184,26,186],[26,185,26,187],[26,186,26,188],[26,187,26,189],[26,188,26,190],[26,189,26,191],[26,190,26,192],[26,191,26,193],[26,192,26,194],[26,193,26,195],[26,194,26,196],[26,195,26,197],[26,196,26,198],[26,197,26,199],[26,198,26,200],[26,199,26,201],[26,200,26,202],[26,201,26,203],[26,202,26,204],[26,203,26,205],[26,204,26,206],[26,205,26,207],[26,206,26,208],[26,207,26,209],[26,208,26,210],[26,209,26,211],[26,210,26,212],[26,211,26,213],[26,212,26,214],[26,213,26,215],[26,214,26,216],[26,215,26,217],[26,216,26,218],[26,217,26,219],[26,218,26,220],[26,219,26,221],[26,220,26,222],[26,221,26,223],[26,222,26,224],[26,223,26,225],[26,224,26,226],[26,225,26,227],[26,226,26,228],[26,227,26,229],[26,228,26,230],[26,229,26,231],[26,230,26,232],[26,231,26,233],[26,232,26,234],[26,233,26,235],[26,234,25,235],[25,236,26,237],[26,236,26,238],[26,237,26,239],[26,238,26,240],[26,239,26,241],[26,240,26,242],[26,241,26,243],[26,242,26,244],[26,243,26,245],[26,244,26,246],[26,245,26,247],[26,246,26,248],[26,247,26,249],[26,248,26,250],[26,249,26,251],[26,250,26,252],[26,251,26,253],[26,252,26,254],[26,253,26,255],[26,254,26,256],[26,255,26,257],[26,256,26,258],[26,257,26,259],[26,258,26,260],[26,259,26,261],[26,260,26,262],[26,261,26,263],[26,262,26,264],[26,263,26,265],[26,264,26,266],[26,265,26,267],[26,266,26,268],[26,267,26,269],[26,268,26,270],[26,269,26,271],[26,270,26,272],[26,271,26,273],[26,272,26,274],[26,273,27,274],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":14,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":14},{"stap_colors":[[77,0],[98,0],[119,0],[140,0],[161,3355443],[182,3355443]],"num":27,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[26,28,27,29],[27,28,27,30],[27,29,27,31],[27,30,27,32],[27,31,27,33],[27,32,27,34],[27,33,27,35],[27,34,27,36],[27,35,27,37],[27,36,27,38],[27,37,27,39],[27,38,27,40],[27,39,27,41],[27,40,14,41],[14,42,27,43],[27,42,27,44],[27,43,27,45],[27,44,27,46],[27,45,27,47],[27,46,27,48],[27,47,-1,-1],[26,49,27,50],[27,49,27,51],[27,50,27,52],[27,51,27,53],[27,52,27,54],[27,53,27,55],[27,54,27,56],[27,55,27,57],[27,56,27,58],[27,57,27,59],[27,58,27,60],[27,59,27,61],[27,60,27,62],[27,61,14,62],[14,63,27,64],[27,63,27,65],[27,64,27,66],[27,65,27,67],[27,66,27,68],[27,67,27,69],[27,68,26,69],[26,70,27,71],[27,70,27,72],[27,71,27,73],[27,72,27,74],[27,73,27,75],[27,74,27,76],[27,75,-1,-1],[-1,-1,27,78],[27,77,27,79],[27,78,27,80],[27,79,27,81],[27,80,27,82],[27,81,27,83],[27,82,14,83],[14,84,27,85],[27,84,27,86],[27,85,27,87],[27,86,27,88],[27,87,27,89],[27,88,27,90],[27,89,26,90],[26,91,27,92],[27,91,27,93],[27,92,27,94],[27,93,27,95],[27,94,27,96],[27,95,27,97],[27,96,-1,-1],[-1,-1,27,99],[27,98,27,100],[27,99,27,101],[27,100,27,102],[27,101,27,103],[27,102,27,104],[27,103,14,104],[14,105,27,106],[27,105,27,107],[27,106,27,108],[27,107,27,109],[27,108,27,110],[27,109,27,111],[27,110,26,111],[26,112,27,113],[27,112,27,114],[27,113,27,115],[27,114,27,116],[27,115,27,117],[27,116,27,118],[27,117,-1,-1],[-1,-1,27,120],[27,119,27,121],[27,120,27,122],[27,121,27,123],[27,122,27,124],[27,123,27,125],[27,124,14,125],[14,126,27,127],[27,126,27,128],[27,127,27,129],[27,128,27,130],[27,129,27,131],[27,130,27,132],[27,131,26,132],[26,133,27,134],[27,133,27,135],[27,134,27,136],[27,135,27,137],[27,136,27,138],[27,137,27,139],[27,138,-1,-1],[-1,-1,27,141],[27,140,27,142],[27,141,27,143],[27,142,27,144],[27,143,27,145],[27,144,27,146],[27,145,14,146],[14,147,27,148],[27,147,27,149],[27,148,27,150],[27,149,27,151],[27,150,27,152],[27,151,27,153],[27,152,26,153],[26,154,27,155],[27,154,27,156],[27,155,27,157],[27,156,27,158],[27,157,27,159],[27,158,27,160],[27,159,-1,-1],[-1,-1,27,162],[27,161,27,163],[27,162,27,164],[27,163,27,165],[27,164,27,166],[27,165,27,167],[27,166,14,167],[14,168,27,169],[27,168,27,170],[27,169,27,171],[27,170,27,172],[27,171,27,173],[27,172,27,174],[27,173,26,174],[26,175,27,176],[27,175,27,177],[27,176,27,178],[27,177,27,179],[27,178,27,180],[27,179,27,181],[27,180,-1,-1],[-1,-1,27,183],[27,182,27,184],[27,183,27,185],[27,184,27,186],[27,185,27,187],[27,186,27,188],[27,187,14,188],[14,189,27,190],[27,189,27,191],[27,190,27,192],[27,191,27,193],[27,192,27,194],[27,193,27,195],[27,194,26,195],[26,196,27,197],[27,196,27,198],[27,197,27,199],[27,198,27,200],[27,199,27,201],[27,200,27,202],[27,201,27,203],[27,202,27,204],[27,203,27,205],[27,204,27,206],[27,205,27,207],[27,206,27,208],[27,207,27,209],[27,208,14,209],[14,210,27,211],[27,210,27,212],[27,211,27,213],[27,212,27,214],[27,213,27,215],[27,214,27,216],[27,215,26,216],[26,217,27,218],[27,217,27,219],[27,218,27,220],[27,219,27,221],[27,220,27,222],[27,221,27,223],[27,222,27,224],[27,223,27,225],[27,224,27,226],[27,225,27,227],[27,226,27,228],[27,227,27,229],[27,228,27,230],[27,229,14,230],[14,231,27,232],[27,231,27,233],[27,232,27,234],[27,233,27,235],[27,234,27,236],[27,235,27,237],[27,236,26,237],[26,238,27,239],[27,238,27,240],[27,239,27,241],[27,240,27,242],[27,241,27,243],[27,242,27,244],[27,243,27,245],[27,244,27,246],[27,245,27,247],[27,246,27,248],[27,247,27,249],[27,248,27,250],[27,249,27,251],[27,250,14,251],[14,252,27,253],[27,252,27,254],[27,253,27,255],[27,254,27,256],[27,255,27,257],[27,256,27,258],[27,257,26,258],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[27,13,26,12],[27,14,27,12],[27,15,27,13],[27,16,27,14],[27,17,27,15],[27,18,27,16],[27,19,27,17],[27,20,27,18],[27,21,27,19],[27,22,27,20],[27,23,27,21],[27,24,27,22],[27,25,27,23],[27,26,27,24],[27,27,27,25],[27,28,27,26],[27,29,27,27],[27,30,27,28],[27,31,27,29],[27,32,27,30],[27,33,27,31],[27,34,27,32],[27,35,27,33],[27,36,27,34],[27,37,27,35],[27,38,27,36],[27,39,27,37],[27,40,27,38],[27,41,27,39],[27,42,27,40],[27,43,27,41],[27,44,27,42],[27,45,27,43],[27,46,27,44],[27,47,27,45],[27,48,27,46],[27,49,27,47],[27,50,27,48],[27,51,27,49],[27,52,27,50],[27,53,27,51],[27,54,27,52],[27,55,27,53],[30,106,27,54],[27,57,-1,-1],[27,58,27,56],[27,59,27,57],[27,60,27,58],[27,61,27,59],[27,62,27,60],[27,63,27,61],[27,64,27,62],[27,65,27,63],[27,66,27,64],[27,67,27,65],[27,68,27,66],[27,69,27,67],[27,70,27,68],[27,71,27,69],[27,72,27,70],[27,73,27,71],[27,74,27,72],[27,75,27,73],[27,76,27,74],[27,77,27,75],[27,78,27,76],[27,79,27,77],[27,80,27,78],[27,81,27,79],[27,82,27,80],[27,83,27,81],[27,84,27,82],[27,85,27,83],[27,86,27,84],[27,87,27,85],[27,88,27,86],[27,89,27,87],[27,90,27,88],[27,91,27,89],[27,92,27,90],[27,93,27,91],[27,94,27,92],[27,95,27,93],[27,96,27,94],[27,97,27,95],[27,98,27,96],[27,99,27,97],[27,100,27,98],[27,101,27,99],[27,102,27,100],[27,103,27,101],[27,104,27,102],[27,105,27,103],[27,106,27,104],[27,107,27,105],[27,108,27,106],[27,109,27,107],[27,110,27,108],[27,111,27,109],[27,112,27,110],[27,113,27,111],[27,114,27,112],[27,115,27,113],[27,116,27,114],[27,117,27,115],[27,118,27,116],[27,119,27,117],[27,120,27,118],[27,121,27,119],[27,122,27,120],[27,123,27,121],[27,124,27,122],[27,125,27,123],[27,126,27,124],[27,127,27,125],[27,128,27,126],[27,129,27,127],[27,130,27,128],[27,131,27,129],[27,132,27,130],[27,133,27,131],[27,134,27,132],[27,135,27,133],[27,136,27,134],[27,137,27,135],[27,138,27,136],[27,139,27,137],[27,140,27,138],[27,141,27,139],[27,142,27,140],[27,143,27,141],[27,144,27,142],[27,145,27,143],[27,146,27,144],[27,147,27,145],[27,148,27,146],[27,149,27,147],[27,150,27,148],[27,151,27,149],[27,152,27,150],[27,153,27,151],[27,154,27,152],[27,155,27,153],[27,156,27,154],[27,157,27,155],[27,158,27,156],[27,159,27,157],[27,160,27,158],[27,161,27,159],[27,162,27,160],[27,163,27,161],[27,164,27,162],[27,165,27,163],[27,166,27,164],[27,167,27,165],[27,168,27,166],[27,169,27,167],[27,170,27,168],[27,171,27,169],[27,172,27,170],[27,173,27,171],[27,174,27,172],[27,175,27,173],[27,176,27,174],[27,177,27,175],[27,178,27,176],[27,179,27,177],[27,180,27,178],[27,181,27,179],[27,182,27,180],[27,183,27,181],[27,184,27,182],[27,185,27,183],[27,186,27,184],[27,187,27,185],[27,188,27,186],[27,189,27,187],[27,190,27,188],[27,191,27,189],[27,192,27,190],[27,193,27,191],[27,194,27,192],[27,195,27,193],[27,196,27,194],[27,197,27,195],[27,198,27,196],[27,199,27,197],[27,200,27,198],[27,201,27,199],[27,202,27,200],[27,203,27,201],[27,204,27,202],[27,205,27,203],[27,206,27,204],[27,207,27,205],[27,208,27,206],[27,209,27,207],[27,210,27,208],[27,211,27,209],[27,212,27,210],[27,213,27,211],[27,214,27,212],[27,215,27,213],[27,216,27,214],[27,217,27,215],[27,218,27,216],[27,219,27,217],[27,220,27,218],[27,221,27,219],[27,222,27,220],[27,223,27,221],[27,224,27,222],[27,225,27,223],[27,226,27,224],[27,227,27,225],[27,228,27,226],[27,229,27,227],[27,230,27,228],[27,231,27,229],[27,232,27,230],[27,233,27,231],[27,234,27,232],[27,235,27,233],[27,236,27,234],[27,237,27,235],[27,238,27,236],[27,239,27,237],[27,240,27,238],[27,241,27,239],[27,242,27,240],[27,243,27,241],[27,244,27,242],[27,245,27,243],[27,246,27,244],[27,247,27,245],[27,248,27,246],[27,249,27,247],[27,250,27,248],[27,251,27,249],[27,252,27,250],[27,253,27,251],[27,254,27,252],[27,255,27,253],[27,256,27,254],[27,257,27,255],[27,258,27,256],[27,259,27,257],[27,260,27,258],[27,261,27,259],[27,262,27,260],[27,263,27,261],[27,264,27,262],[27,265,27,263],[27,266,27,264],[27,267,27,265],[27,268,27,266],[27,269,27,267],[27,270,27,268],[27,271,27,269],[27,272,27,270],[27,273,27,271],[27,274,27,272],[26,274,27,273],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":15,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":14},{"stap_colors":[],"num":28,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":11,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":11},{"stap_colors":[],"num":30,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,30,84],[30,83,30,85],[30,84,30,86],[30,85,30,87],[30,86,30,88],[30,87,30,89],[30,88,30,90],[30,89,30,91],[30,90,30,92],[30,91,30,93],[30,92,30,94],[30,93,30,95],[30,94,30,96],[30,95,30,97],[30,96,30,98],[30,97,30,99],[30,98,30,100],[30,99,30,101],[30,100,30,102],[30,101,30,103],[30,102,30,104],[30,103,30,105],[30,104,30,106],[30,105,27,55],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[18,134,30,120],[30,119,30,121],[30,120,30,122],[30,121,30,123],[30,122,30,124],[30,123,30,125],[30,124,30,126],[30,125,11,134],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[11,135,30,147],[30,146,30,148],[30,147,30,149],[30,148,30,150],[30,149,30,151],[30,150,30,152],[30,151,30,153],[30,152,18,135],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":15,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":15},{"stap_colors":[],"num":29,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":7,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":6},{"stap_colors":[],"num":31,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":15,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":12},{"stap_colors":[],"num":32,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":17,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":9},{"stap_colors":[],"num":33,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":18,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":9},{"stap_colors":[],"num":34,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":18,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":10},{"stap_colors":[],"num":35,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":17,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":10},{"stap_colors":[[249,3355443]],"num":36,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[36,227,-1,-1],[36,228,36,226],[36,229,36,227],[36,230,36,228],[15,230,36,229],[36,232,15,231],[36,233,36,231],[36,234,36,232],[36,235,36,233],[36,236,36,234],[36,237,36,235],[37,237,36,236],[36,239,37,238],[36,240,36,238],[36,241,36,239],[36,242,36,240],[36,243,36,241],[36,244,36,242],[36,245,36,243],[36,246,36,244],[36,247,36,245],[36,248,36,246],[36,249,36,247],[-1,-1,36,248],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[37,222,36,223],[36,222,36,224],[36,223,36,225],[36,224,36,226],[36,225,36,227],[36,226,36,228],[36,227,36,229],[36,228,36,230],[36,229,36,231],[36,230,36,232],[36,231,36,233],[36,232,36,234],[36,233,36,235],[36,234,36,236],[36,235,36,237],[36,236,36,238],[36,237,36,239],[36,238,36,240],[36,239,36,241],[36,240,36,242],[36,241,36,243],[36,242,36,244],[36,243,36,245],[36,244,36,246],[36,245,15,246],[15,247,36,248],[36,247,36,249],[36,248,36,250],[36,249,36,251],[36,250,36,252],[36,251,36,253],[36,252,37,253],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":17,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":13},{"stap_colors":[[226,3355443]],"num":37,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,37,227],[37,226,37,228],[37,227,37,229],[37,228,37,230],[37,229,37,231],[37,230,37,232],[37,231,37,233],[37,232,37,234],[37,233,37,235],[37,234,37,236],[37,235,37,237],[37,236,36,237],[36,238,37,239],[37,238,37,240],[37,239,37,241],[37,240,37,242],[37,241,37,243],[37,242,37,244],[37,243,38,244],[38,245,37,246],[37,245,37,247],[37,246,37,248],[37,247,37,249],[37,248,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[37,223,36,222],[37,224,37,222],[37,225,37,223],[37,226,37,224],[37,227,37,225],[37,228,37,226],[38,228,37,227],[37,230,38,229],[37,231,37,229],[37,232,37,230],[37,233,37,231],[37,234,37,232],[37,235,37,233],[37,236,37,234],[37,237,37,235],[37,238,37,236],[37,239,37,237],[37,240,37,238],[37,241,37,239],[37,242,37,240],[37,243,37,241],[37,244,37,242],[37,245,37,243],[37,246,37,244],[37,247,37,245],[37,248,37,246],[37,249,37,247],[37,250,37,248],[37,251,37,249],[37,252,37,250],[37,253,37,251],[36,253,37,252],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":18,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":13},{"stap_colors":[[237,3355443]],"num":38,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[38,232,39,231],[38,233,38,231],[38,234,38,232],[38,235,38,233],[38,236,38,234],[38,237,38,235],[-1,-1,38,236],[38,239,-1,-1],[38,240,38,238],[38,241,38,239],[38,242,38,240],[38,243,38,241],[38,244,38,242],[37,244,38,243],[38,246,37,245],[38,247,38,245],[38,248,38,246],[38,249,38,247],[38,250,38,248],[38,251,38,249],[39,251,38,250],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[39,226,38,227],[38,226,38,228],[38,227,37,228],[37,229,38,230],[38,229,38,231],[38,230,38,232],[38,231,38,233],[38,232,38,234],[38,233,38,235],[38,234,38,236],[38,235,38,237],[38,236,38,238],[38,237,38,239],[38,238,38,240],[38,239,38,241],[38,240,38,242],[38,241,38,243],[38,242,38,244],[38,243,38,245],[38,244,38,246],[38,245,38,247],[38,246,38,248],[38,247,38,249],[38,248,38,250],[38,249,38,251],[38,250,38,252],[38,251,38,253],[38,252,38,254],[38,253,38,255],[38,254,38,256],[38,255,39,256],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":18,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":14},{"stap_colors":[],"num":39,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[38,231,39,232],[39,231,39,233],[39,232,39,234],[39,233,39,235],[39,234,39,236],[39,235,39,237],[39,236,14,237],[14,238,39,239],[39,238,39,240],[39,239,39,241],[39,240,39,242],[39,241,39,243],[39,242,39,244],[39,243,39,245],[39,244,39,246],[39,245,39,247],[39,246,39,248],[39,247,39,249],[39,248,39,250],[39,249,39,251],[39,250,38,251],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[39,227,38,226],[39,228,39,226],[39,229,39,227],[39,230,39,228],[39,231,39,229],[39,232,39,230],[39,233,39,231],[39,234,39,232],[39,235,39,233],[39,236,39,234],[39,237,39,235],[39,238,39,236],[39,239,39,237],[39,240,39,238],[39,241,39,239],[39,242,39,240],[39,243,39,241],[39,244,39,242],[39,245,39,243],[39,246,39,244],[39,247,39,245],[39,248,39,246],[39,249,39,247],[39,250,39,248],[39,251,39,249],[39,252,39,250],[39,253,39,251],[39,254,39,252],[39,255,39,253],[39,256,39,254],[38,256,39,255],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":17,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":14},{"stap_colors":[],"num":41,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":10,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":17},{"stap_colors":[],"num":40,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":11,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":17},{"stap_colors":[],"num":42,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":12,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":18},{"stap_colors":[],"num":44,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":8,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":18},{"stap_colors":[],"num":46,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":5,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":19},{"stap_colors":[],"num":48,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":6,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":20},{"stap_colors":[],"num":50,"scafLoop":[],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stapLoop":[],"col":28,"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"row":14}]} \ No newline at end of file diff --git a/mrdna/readers/cadnano_segments.py b/mrdna/readers/cadnano_segments.py index 47cf148..2d8dfbe 100644 --- a/mrdna/readers/cadnano_segments.py +++ b/mrdna/readers/cadnano_segments.py @@ -9,7 +9,7 @@ from ..arbdmodel.coords import readArbdCoords, readAvgArbdCoords, rotationAboutA from ..segmentmodel import SegmentModel, SingleStrandedSegment, DoubleStrandedSegment from ..model.dna_sequence import m13 as m13seq - +## Only testing on cadnano2.5 ## TODO: separate SegmentModel from ArbdModel so multiple parts can be combined ## TODO: catch circular strands in "get_5prime" cadnano calls ## TODO: handle special motifs diff --git a/mrdna/readers/libs b/mrdna/readers/libs index 8266af3..b95cada 120000 --- a/mrdna/readers/libs +++ b/mrdna/readers/libs @@ -1 +1 @@ -/home/pinyili2/server5/tacoxDNA/src/libs/ \ No newline at end of file +/Users/pinyili/Documents/research/tacoxDNA/src/libs \ No newline at end of file diff --git a/mrdna/readers/segmentmodel_from_cadnano.py b/mrdna/readers/segmentmodel_from_cadnano.py index 32d4471..c003ea7 100644 --- a/mrdna/readers/segmentmodel_from_cadnano.py +++ b/mrdna/readers/segmentmodel_from_cadnano.py @@ -4,470 +4,19 @@ import numpy as np import os,sys from glob import glob import re +import pandas as pd from ..arbdmodel.coords import readArbdCoords, readAvgArbdCoords, rotationAboutAxis from ..segmentmodel import SegmentModel, SingleStrandedSegment, DoubleStrandedSegment from ..model.dna_sequence import m13 as m13seq - +## Only testing on cadnano2.5 ## TODO: separate SegmentModel from ArbdModel so multiple parts can be combined ## TODO: catch circular strands in "get_5prime" cadnano calls ## TODO: handle special motifs ## - doubly-nicked helices ## - helices that should be stacked across an empty region (crossovers from and end in the helix to another end in the helix) ## - circular constructs - - -class cadnano_part(SegmentModel): - def __init__(self, part, - **kwargs - ): - self.part = part - self.lattice_type = _get_lattice(part) - - self._cadnano_part_to_segments(part) - # SegmentModel.__init__(self,...) - # self.segments = [seg for hid,segs in self.helices.items() for seg in segs] - self.segments = [seg for hid,segs in sorted(self.helices.items()) for seg in segs] - self._add_intrahelical_connections() - self._add_crossovers() - self._add_prime_ends() - SegmentModel.__init__(self, self.segments, - **kwargs) - - def _get_helix_angle(self, helix_id, indices): - """ Get "start_orientation" for helix """ - # import ipdb - # ipdb.set_trace() - - """ FROM CADNANO2.5 - + angle is CCW - - angle is CW - Right handed DNA rotates clockwise from 5' to 3' - we use the convention the 5' end starts at 0 degrees - and it's pair is minor_groove_angle degrees away - direction, hence the minus signs. eulerZ - """ - - hp, bpr, tpr, eulerZ, mgroove = self.part.vh_properties.loc[helix_id, - ['helical_pitch', - 'bases_per_repeat', - 'turns_per_repeat', - 'eulerZ', - 'minor_groove_angle']] - twist_per_base = tpr*360./bpr - # angle = eulerZ - twist_per_base*indices + 0.5*mgroove + 180 - angle = eulerZ + twist_per_base*indices - 0.5*mgroove - return angle - - def _cadnano_part_to_segments(self,part): - try: - from cadnano.cnenum import PointType - except: - try: - from cadnano.proxies.cnenum import PointType - except: - from cadnano.proxies.cnenum import PointEnum as PointType - - segments = dict() - self.helices = helices = dict() - self.helix_ranges = helix_ranges = dict() - - props = part.getModelProperties().copy() - - if props.get('point_type') == PointType.ARBITRARY: - # TODO add code to encode Parts with ARBITRARY point configurations - raise NotImplementedError("Not implemented") - else: - try: - vh_props, origins = part.helixPropertiesAndOrigins() - except: - origins = {hid:part.getVirtualHelixOrigin(hid)[:2] for hid in part.getidNums()} - - self.origins = origins - - vh_list = [] - strand_list = [] - xover_list = [] - self.xovers_from = dict() - self.xovers_to = dict() - - try: - numHID = part.getMaxIdNum() + 1 - except: - numHID = part.getIdNumMax() + 1 - - for id_num in range(numHID): - try: - offset_and_size = part.getOffsetAndSize(id_num) - except: - offset_and_size = None - if offset_and_size is None: - ## Add a placeholder for empty helix - vh_list.append((id_num, 0)) - strand_list.append(None) - else: - offset, size = offset_and_size - vh_list.append((id_num, size)) - fwd_ss, rev_ss = part.getStrandSets(id_num) - fwd_idxs, fwd_colors = fwd_ss.dump(xover_list) - rev_idxs, rev_colors = rev_ss.dump(xover_list) - strand_list.append((fwd_idxs, rev_idxs)) - - self.xovers_from[id_num] = [] - self.xovers_to[id_num] = [] - - for xo in xover_list: - h1,f1,z1,h2,f2,z2 = xo - self.xovers_from[h1].append(xo) - self.xovers_to[h2].append(xo) - - ## Get lists of 5/3prime ends - strands5 = [o.strand5p() for o in part.oligos()] - strands3 = [o.strand3p() for o in part.oligos()] - - self._5prime_list = [(s.idNum(),s.isForward(),s.idx5Prime()) for s in strands5] - self._3prime_list = [(s.idNum(),s.isForward(),s.idx3Prime()) for s in strands3] - - ## Get dictionary of insertions - self.insertions = allInsertions = part.insertions() - self.strand_occupancies = dict() - - ## Build helices - for hid in range(numHID): - # print("Working on helix",hid) - helices[hid] = [] - helix_ranges[hid] = [] - self.strand_occupancies[hid] = [] - - helixStrands = strand_list[hid] - if helixStrands is None: continue - - ## Build list of tuples containing (idx,length) of insertions/skips - insertions = sorted( [(i[0],i[1].length()) for i in allInsertions[hid].items()], - key=lambda x: x[0] ) - - ## TODO: make the following code (until "regions = ...") more readable - ## Build list of strand ends and list of mandatory node locations - ends1,ends2 = self._helixStrandsToEnds(helixStrands) - - ## Find crossovers for this helix - reqNodeZids = sorted(list(set( ends1 + ends2 ) ) ) - - ## Build lists of which nt sites are occupied in the helix - strandOccupancies = [ [x for i in range(0,len(e),2) - for x in range(e[i],e[i+1]+1)] - for e in (ends1,ends2) ] - self.strand_occupancies[hid] = strandOccupancies - - ends1,ends2 = [ [(e[i],e[i+1]) for i in range(0,len(e),2)] for e in (ends1,ends2) ] - - regions = combineRegionLists(ends1,ends2) - - ## Split regions in event of ssDNA crossover - split_regions = [] - for zid1,zid2 in regions: - zMid = int(0.5*(zid1+zid2)) - if zMid in strandOccupancies[0] and zMid in strandOccupancies[1]: - split_regions.append( (zid1,zid2) ) - else: - is_fwd = zMid in strandOccupancies[0] - ends = [z for h,f,z in self._get_crossover_locations( hid, range(zid1+1,zid2), is_fwd )] - z1 = zid1 - for z in sorted(ends): - z2 = z - if z2 > z1: - split_regions.append( (z1,z2) ) - z1 = z2+1 - z2 = zid2 - split_regions.append( (z1,z2) ) - - # if hid == 43: - # import pdb - for zid1,zid2 in split_regions: - zMid = int(0.5*(zid1+zid2)) - assert( zMid in strandOccupancies[0] or zMid in strandOccupancies[1] ) - - bp_to_zidx = [] - insertion_dict = {idx:length for idx,length in insertions} - for i in range(zid1,zid2+1): - if i in insertion_dict: - l = insertion_dict[i] - else: - l = 0 - for j in range(i,i+1+l): - bp_to_zidx.append(i) - numBps = len(bp_to_zidx) - - # print("Adding helix with length",numBps,zid1,zid2) - - name = "%d-%d" % (hid,len(helices[hid])) - # "H%03d" % hid - kwargs = dict(name=name, segname=name, occupancy=hid) - - posargs1 = dict( start_position = self._get_cadnano_position(hid,zid1-0.25), - end_position = self._get_cadnano_position(hid,zid2+0.25) ) - posargs2 = dict( start_position = posargs1['end_position'], - end_position = posargs1['start_position']) - - ## TODO get sequence from cadnano api - if zMid in strandOccupancies[0] and zMid in strandOccupancies[1]: - kwargs['num_bp'] = numBps - _angle = self._get_helix_angle(hid, zid1) - start_orientation = rotationAboutAxis(np.array((0,0,1)), _angle) - seg = DoubleStrandedSegment(**kwargs,**posargs1, start_orientation = start_orientation) - elif zMid in strandOccupancies[0]: - kwargs['num_nt'] = numBps - seg = SingleStrandedSegment(**kwargs,**posargs1) - elif zMid in strandOccupancies[1]: - kwargs['num_nt'] = numBps - seg = SingleStrandedSegment(**kwargs,**posargs2) - else: - raise Exception("Segment could not be found") - - seg._cadnano_helix = hid - seg._cadnano_start = zid1 - seg._cadnano_end = zid2 - seg._cadnano_bp_to_zidx = bp_to_zidx - - def callback(segment): - for b in segment.beads: - bp = int(round(b.get_nt_position(segment))) - if bp < 0: bp = 0 - if bp >= segment.num_nt: bp = segment.num_nt-1 - try: - b.beta = segment._cadnano_bp_to_zidx[bp] - if 'orientation_bead' in b.__dict__: - b.orientation_bead.beta = segment._cadnano_bp_to_zidx[bp] - except: - pass - seg._generate_bead_callbacks.append(callback) - - def atomic_callback(nucleotide, bp_to_zidx=bp_to_zidx): - nt = nucleotide - segment = nucleotide.parent.segment - bp = int(round(segment.contour_to_nt_pos( nt.contour_position ))) - if bp < 0: bp = 0 - if bp >= segment.num_nt: bp = segment.num_nt-1 - try: - nt.beta = bp_to_zidx[bp] - nt.parent.occupancy = segment.occupancy - except: - pass - seg._generate_nucleotide_callbacks.append(atomic_callback) - - - helices[hid].append( seg ) - helix_ranges[hid].append( (zid1,zid2) ) - - def _get_cadnano_position(self, hid, zid): - return [10*a for a in self.origins[hid]] + [-3.4*zid] - - def _helixStrandsToEnds(self, helixStrands): - """Utility method to convert cadnano strand lists into list of - indices of terminal points""" - - endLists = [[],[]] - for endList, strandList in zip(endLists,helixStrands): - lastStrand = None - for s in strandList: - if lastStrand is None: - ## first strand - endList.append(s[0]) - elif lastStrand[1] != s[0]-1: - assert( s[0] > lastStrand[1] ) - endList.extend( [lastStrand[1], s[0]] ) - lastStrand = s - if lastStrand is not None: - endList.append(lastStrand[1]) - return endLists - - def _helix_strands_to_segment_ranges(self, helix_strands): - """Utility method to convert cadnano strand lists into list of - indices of terminal points""" - def _join(strands): - ends = [] - lastEnd = None - for start,end in strands: - if lastEnd is None: - ends.append([start]) - elif lastEnd != start-1: - ends[-1].append(lastEnd) - ends.append([start]) - lastEnd = end - if lastEnd is not None: - ends[-1].append(lastEnd) - return ends - - s1,s2 = [_join(s) for s in helix_strands] - i = j = 0 - - ## iterate through strands - while i < len(s1) and j < len(s2): - min(s1[i][0],s2[j][0]) - - def _get_segment(self, hid, zid): - ## TODO: rename these variables to segments - segs = self.helices[hid] - ranges = self.helix_ranges[hid] - for i in range(len(ranges)): - zmin,zmax = ranges[i] - if zmin <= zid and zid <= zmax: - return segs[i] - raise Exception("Could not find segment in helix %d at position %d" % (hid,zid)) - - def _get_nucleotide(self, hid, zid): - raise Exception("Deprecated") - seg = self._get_segment(hid,zid) - sid = self.helices[hid].index(seg) - zmin,zmax = self.helix_ranges[hid][sid] - - nt = zid-zmin - - ## Find insertions - # TODO: for i in range(zmin,zid+1): ? - for i in range(zmin,zid): - if i in self.insertions[hid]: - nt += self.insertions[hid][i].length() - return nt - - def _get_segment_nucleotide(self, hid, zid, get_forward_location=False): - """ returns segments and zero-based nucleotide index """ - seg = self._get_segment(hid,zid) - sid = self.helices[hid].index(seg) - zmin,zmax = self.helix_ranges[hid][sid] - - zMid = int(0.5*(zmin+zmax)) - occ = self.strand_occupancies[hid] - ins = self.insertions[hid] - - ## TODO combine if/else when nested TODO is resolved - # if zid in self.insertions[hid]: - # import pdb - # pdb.set_trace() - - if (zMid not in occ[0]) and (zMid in occ[1]): - ## reversed ssDNA strand - nt = zmax-zid - # TODO: for i in range(zmin,zid+1): ? - for i in range(zid,zmax+1): - if i in self.insertions[hid]: - nt += self.insertions[hid][i].length() - else: - ## normal condition - if get_forward_location: - while zid in ins and ins[zid].length() < 0 and zid <= zmax: - zid+=1 - # else: - # while zid in ins and ins[zid].length() > 0 and zid >= zmax: - # zid-=1 - nt = zid-zmin - for i in range(zmin,zid): - if i in ins: - nt += ins[i].length() - - if not get_forward_location and zid in ins: - nt += ins[zid].length() - - ## Find insertions - return seg, nt - - - - """ Routines to add connnections between helices """ - def _add_intrahelical_connections(self): - for hid,segs in self.helices.items(): - occ = self.strand_occupancies[hid] - for i in range(len(segs)-1): - seg1,seg2 = [segs[j] for j in (i,i+1)] - if isinstance(seg1,SingleStrandedSegment) and isinstance(seg2,SingleStrandedSegment): - continue - r1,r2 = [self.helix_ranges[hid][j] for j in (i,i+1)] - if r1[1]+1 == r2[0]: - ## TODO: handle nicks that are at intrahelical connections(?) - zmid1 = int(0.5*(r1[0]+r1[1])) - zmid2 = int(0.5*(r2[0]+r2[1])) - - ## TODO: validate - if zmid1 in occ[0] and zmid2 in occ[0]: - seg1.connect_end3(seg2.start5) - - if zmid1 in occ[1] and zmid2 in occ[1]: - if zmid1 in occ[0]: - end = seg1.end5 - else: - end = seg1.start5 - if zmid2 in occ[0]: - seg2.connect_start3(end) - else: - seg2.connect_end3(end) - - - def _get_crossover_locations(self, helix_idx, nt_idx_range, fwd_strand=None): - xos = [] - def append_if_in_range(h,f,z): - if fwd_strand in (None,f) and z in nt_idx_range: - xos.append((h,f,z)) - - for xo in self.xovers_from[helix_idx]: - ## h1,f1,z1,h2,f2,z2 = xo[3:] - - append_if_in_range(*xo[:3]) - for xo in self.xovers_to[helix_idx]: - append_if_in_range(*xo[3:]) - return xos - - def _add_crossovers(self): - for hid,xos in self.xovers_from.items(): - for h1,f1,z1,h2,f2,z2 in xos: - seg1, nt1 = self._get_segment_nucleotide(h1,z1,not f1) - seg2, nt2 = self._get_segment_nucleotide(h2,z2,f2) - ## TODO: use different types of crossovers - ## fwd? - ## 5'-to-3' direction - if isinstance(seg1, SingleStrandedSegment): f1 = True - if isinstance(seg2, SingleStrandedSegment): f2 = True - seg1.add_crossover(nt1,seg2,nt2,[f1,f2]) - - def _add_prime_ends(self): - for h,fwd,z in self._5prime_list: - seg, nt = self._get_segment_nucleotide(h,z, fwd) - if isinstance(seg, SingleStrandedSegment): fwd = True - # print("adding 5prime",seg.name,nt,fwd) - seg.add_5prime(nt,fwd) - - for h,fwd,z in self._3prime_list: - seg, nt = self._get_segment_nucleotide(h,z, not fwd) - if isinstance(seg, SingleStrandedSegment): fwd = True - # print("adding 3prime",seg.name,nt,fwd) - seg.add_3prime(nt,fwd) - - def get_bead(self, hid, zid): - # get segment, get nucleotide, - seg, nt = self._get_segment_nucleotide(h,z) - # return seg.get_nearest_bead(seg,nt / seg.num_nt) - return seg.get_nearest_bead(seg,nt / (seg.num_nt-1)) - -def read_json_file(filename): - import json - import re - - try: - with open(filename) as ch: - data = json.load(ch) - except: - with open(filename) as ch: - content = "" - for l in ch: - l = re.sub(r"'", r'"', l) - # https://stackoverflow.com/questions/4033633/handling-lazy-json-in-python-expecting-property-name - # l = re.sub(r"{\s*(\w)", r'{"\1', l) - # l = re.sub(r",\s*(\w)", r',"\1', l) - # l = re.sub(r"(\w):", r'\1":', l) - content += l+"\n" - data = json.loads(content) - return data - def decode_cadnano_part(json_data): import cadnano from cadnano.document import Document @@ -493,10 +42,11 @@ def decode_cadnano_part(json_data): for id_num in part.getIdNums(): if part.vh_properties.loc[id_num,'eulerZ'] == 0: part.vh_properties.loc[id_num,'eulerZ'] = 360*(6/10.5) + json_df=pd.read_json("test.json") + vslist=list(df["vstrands"]) + return part,pd.DataFrame(vslist) - return part - -def _get_lattice(part): +def get_lattice(part): lattice_type = None _gt = part.getGridType() try: @@ -509,43 +59,44 @@ def _get_lattice(part): else: print("WARNING: unable to determine cadnano part lattice type") return lattice_type + +def get_helix_angle(cadnanopart,helix_id, indices): + """ Get "start_orientation" for helix """ + # import ipdb + # ipdb.set_trace() + """ FROM CADNANO2.5 + + angle is CCW + - angle is CW + Right handed DNA rotates clockwise from 5' to 3' + we use the convention the 5' end starts at 0 degrees + and it's pair is minor_groove_angle degrees away + direction, hence the minus signs. eulerZ + """ -def package_archive( name, directory ): - ... - -def read_model(json_data, sequence=None, fill_sequence='T', **kwargs): - """ Read in data """ - part = decode_cadnano_part(json_data) - model = cadnano_part(part, - **kwargs) - - # TODO - # try: - # model.set_cadnano_sequence() - # finally: - # ... - # if sequence is not None and len() : - # model.strands[0].set_sequence(seq) - - if sequence is None or len(sequence) == 0: - ## default m13mp18 - model.set_sequence(m13seq,force=False, fill_sequence=fill_sequence) - else: - model.set_sequence(sequence, fill_sequence=fill_sequence) - - return model - -# pynvml.nvmlInit() -# gpus = range(pynvml.nvmlDeviceGetCount()) -# pynvml.nvmlShutdown() -# gpus = [0,1,2] -# print(gpus) - -if __name__ == '__main__': + hp, bpr, tpr, eulerZ, mgroove = cadnanopart.vh_properties.loc[helix_id, + ['helical_pitch', + 'bases_per_repeat', + 'turns_per_repeat', + 'eulerZ', + 'minor_groove_angle']] + twist_per_base = tpr*360./bpr + # angle = eulerZ - twist_per_base*indices + 0.5*mgroove + 180 + angle = eulerZ + twist_per_base*indices - 0.5*mgroove + return angle + +def mrdna_model_from_cadnano(json_data,**model_parameters): + part,vslist=decode_cadnano_part(json_data) + props = part.getModelProperties().copy() + + if props.get('point_type') == PointType.ARBITRARY: + # TODO add code to encode Parts with ARBITRARY point configurations + raise NotImplementedError("Not implemented") + else: + try: + vh_props, origins = part.helixPropertiesAndOrigins() + except: + origins = {hid:part.getVirtualHelixOrigin(hid)[:2] for hid in part.getidNums()} + cad_bps=part.getIndices(0) + - - # for f in glob('json/*'): - # print("Working on {}".format(f)) - # out = re.match('json/(.*).json',f).group(1) - # data = read_json_file(f) - # run_simulation_protocol( out, "job-id", data, gpu=0 ) + model = model_from_basepair_stack_3prime( r, bp, stack, three_prime, seq, orientation, **model_parameters ) diff --git a/mrdna/readers/test.ipynb b/mrdna/readers/test.ipynb index 2b75bca..2a29aae 100644 --- a/mrdna/readers/test.ipynb +++ b/mrdna/readers/test.ipynb @@ -2,120 +2,260 @@ "cells": [ { "cell_type": "code", - "execution_count": 124, + "execution_count": 222, "id": "767c8226", "metadata": { "scrolled": true }, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import pickle\n", + "import numpy as np\n", + "df=pd.read_json(\"test.json\")\n", + "d=list(df[\"vstrands\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 226, + "id": "1dc9b21a-360c-49a4-9ea5-c9916f27d962", + "metadata": {}, "outputs": [ { "data": { + "text/html": [ + "<div>\n", + "<style scoped>\n", + " .dataframe tbody tr th:only-of-type {\n", + " vertical-align: middle;\n", + " }\n", + "\n", + " .dataframe tbody tr th {\n", + " vertical-align: top;\n", + " }\n", + "\n", + " .dataframe thead th {\n", + " text-align: right;\n", + " }\n", + "</style>\n", + "<table border=\"1\" class=\"dataframe\">\n", + " <thead>\n", + " <tr style=\"text-align: right;\">\n", + " <th></th>\n", + " <th>row</th>\n", + " <th>col</th>\n", + " <th>scaf</th>\n", + " <th>stap</th>\n", + " <th>loop</th>\n", + " <th>skip</th>\n", + " <th>scafLoop</th>\n", + " <th>stapLoop</th>\n", + " <th>stap_colors</th>\n", + " </tr>\n", + " <tr>\n", + " <th>num</th>\n", + " <th></th>\n", + " <th></th>\n", + " <th></th>\n", + " <th></th>\n", + " <th></th>\n", + " <th></th>\n", + " <th></th>\n", + " <th></th>\n", + " <th></th>\n", + " </tr>\n", + " </thead>\n", + " <tbody>\n", + " <tr>\n", + " <th>0</th>\n", + " <td>12</td>\n", + " <td>16</td>\n", + " <td>[[-1, -1, -1, -1], [-1, -1, -1, -1], [-1, -1, ...</td>\n", + " <td>[[-1, -1, -1, -1], [-1, -1, -1, -1], [0, 3, -1...</td>\n", + " <td>[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...</td>\n", + " <td>[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[[23, 13369809], [38, 12060012]]</td>\n", + " </tr>\n", + " <tr>\n", + " <th>1</th>\n", + " <td>12</td>\n", + " <td>15</td>\n", + " <td>[[-1, -1, -1, -1], [-1, -1, -1, -1], [-1, -1, ...</td>\n", + " <td>[[-1, -1, -1, -1], [-1, -1, -1, -1], [-1, -1, ...</td>\n", + " <td>[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...</td>\n", + " <td>[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[[3, 1501302]]</td>\n", + " </tr>\n", + " <tr>\n", + " <th>2</th>\n", + " <td>13</td>\n", + " <td>15</td>\n", + " <td>[[-1, -1, -1, -1], [-1, -1, -1, -1], [3, 2, 2,...</td>\n", + " <td>[[2, 1, -1, -1], [2, 2, 2, 0], [2, 3, 2, 1], [...</td>\n", + " <td>[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...</td>\n", + " <td>[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[[34, 8947848]]</td>\n", + " </tr>\n", + " <tr>\n", + " <th>3</th>\n", + " <td>13</td>\n", + " <td>16</td>\n", + " <td>[[-1, -1, -1, -1], [-1, -1, -1, -1], [3, 3, 2,...</td>\n", + " <td>[[-1, -1, 3, 1], [3, 0, 3, 2], [3, 1, 3, 3], [...</td>\n", + " <td>[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...</td>\n", + " <td>[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[[0, 13369344]]</td>\n", + " </tr>\n", + " <tr>\n", + " <th>4</th>\n", + " <td>13</td>\n", + " <td>17</td>\n", + " <td>[[-1, -1, 4, 1], [4, 0, 4, 2], [4, 1, 4, 3], [...</td>\n", + " <td>[[-1, -1, -1, -1], [-1, -1, -1, -1], [-1, -1, ...</td>\n", + " <td>[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...</td>\n", + " <td>[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[[39, 8947848]]</td>\n", + " </tr>\n", + " <tr>\n", + " <th>5</th>\n", + " <td>12</td>\n", + " <td>17</td>\n", + " <td>[[5, 1, -1, -1], [5, 2, 5, 0], [5, 3, 5, 1], [...</td>\n", + " <td>[[-1, -1, -1, -1], [-1, -1, -1, -1], [-1, -1, ...</td>\n", + " <td>[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...</td>\n", + " <td>[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...</td>\n", + " <td>[]</td>\n", + " <td>[]</td>\n", + " <td>[[9, 0]]</td>\n", + " </tr>\n", + " </tbody>\n", + "</table>\n", + "</div>" + ], "text/plain": [ - "dict_keys(['row', 'col', 'num', 'scaf', 'stap', 'loop', 'skip', 'scafLoop', 'stapLoop', 'stap_colors'])" + " row col scaf \\\n", + "num \n", + "0 12 16 [[-1, -1, -1, -1], [-1, -1, -1, -1], [-1, -1, ... \n", + "1 12 15 [[-1, -1, -1, -1], [-1, -1, -1, -1], [-1, -1, ... \n", + "2 13 15 [[-1, -1, -1, -1], [-1, -1, -1, -1], [3, 2, 2,... \n", + "3 13 16 [[-1, -1, -1, -1], [-1, -1, -1, -1], [3, 3, 2,... \n", + "4 13 17 [[-1, -1, 4, 1], [4, 0, 4, 2], [4, 1, 4, 3], [... \n", + "5 12 17 [[5, 1, -1, -1], [5, 2, 5, 0], [5, 3, 5, 1], [... \n", + "\n", + " stap \\\n", + "num \n", + "0 [[-1, -1, -1, -1], [-1, -1, -1, -1], [0, 3, -1... \n", + "1 [[-1, -1, -1, -1], [-1, -1, -1, -1], [-1, -1, ... \n", + "2 [[2, 1, -1, -1], [2, 2, 2, 0], [2, 3, 2, 1], [... \n", + "3 [[-1, -1, 3, 1], [3, 0, 3, 2], [3, 1, 3, 3], [... \n", + "4 [[-1, -1, -1, -1], [-1, -1, -1, -1], [-1, -1, ... \n", + "5 [[-1, -1, -1, -1], [-1, -1, -1, -1], [-1, -1, ... \n", + "\n", + " loop \\\n", + "num \n", + "0 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ... \n", + "1 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ... \n", + "2 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ... \n", + "3 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ... \n", + "4 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ... \n", + "5 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ... \n", + "\n", + " skip scafLoop stapLoop \\\n", + "num \n", + "0 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ... [] [] \n", + "1 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ... [] [] \n", + "2 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ... [] [] \n", + "3 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ... [] [] \n", + "4 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ... [] [] \n", + "5 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ... [] [] \n", + "\n", + " stap_colors \n", + "num \n", + "0 [[23, 13369809], [38, 12060012]] \n", + "1 [[3, 1501302]] \n", + "2 [[34, 8947848]] \n", + "3 [[0, 13369344]] \n", + "4 [[39, 8947848]] \n", + "5 [[9, 0]] " ] }, - "execution_count": 124, + "execution_count": 226, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "import pandas as pd\n", - "import pickle\n", - "import numpy as np\n", - "df=pd.read_json(\"test.json\")\n", - "df[\"vstrands\"][0].keys()" + "df" ] }, { "cell_type": "code", - "execution_count": 164, + "execution_count": 225, "id": "bf2d37ca", "metadata": {}, + "outputs": [], + "source": [ + "df=pd.DataFrame(data=d)\n", + "df=df.set_index(\"num\")" + ] + }, + { + "cell_type": "code", + "execution_count": 205, + "id": "22a5db0b-2ce5-4af9-83f1-88114342c36d", + "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "[[-1, -1, -1, -1],\n", - " [-1, -1, -1, -1],\n", - " [0, 3, -1, -1],\n", - " [0, 4, 0, 2],\n", - " [0, 5, 0, 3],\n", - " [0, 6, 0, 4],\n", - " [0, 7, 0, 5],\n", - " [0, 8, 0, 6],\n", - " [0, 9, 0, 7],\n", - " [0, 10, 0, 8],\n", - " [0, 11, 0, 9],\n", - " [0, 12, 0, 10],\n", - " [0, 13, 0, 11],\n", - " [0, 14, 0, 12],\n", - " [0, 15, 0, 13],\n", - " [0, 16, 0, 14],\n", - " [0, 17, 0, 15],\n", - " [0, 18, 0, 16],\n", - " [0, 19, 0, 17],\n", - " [0, 20, 0, 18],\n", - " [1, 20, 0, 19],\n", - " [0, 22, 1, 21],\n", - " [0, 23, 0, 21],\n", - " [-1, -1, 0, 22],\n", - " [0, 25, -1, -1],\n", - " [0, 26, 0, 24],\n", - " [0, 27, 0, 25],\n", - " [5, 27, 0, 26],\n", - " [0, 29, 5, 28],\n", - " [0, 30, 0, 28],\n", - " [0, 31, 0, 29],\n", - " [0, 32, 0, 30],\n", - " [0, 33, 0, 31],\n", - " [0, 34, 0, 32],\n", - " [0, 35, 0, 33],\n", - " [0, 36, 0, 34],\n", - " [0, 37, 0, 35],\n", - " [0, 38, 0, 36],\n", - " [-1, -1, 0, 37],\n", - " [-1, -1, -1, -1],\n", - " [-1, -1, -1, -1],\n", - " [-1, -1, -1, -1]]" + "[42, 42, 42, 42, 42, 42]" ] }, - "execution_count": 164, + "execution_count": 205, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "df[\"vstrands\"][0][\"stap\"]" + "bpnum=[len(df[\"scaf\"][i]) for i in df.index]\n", + "bpnum" ] }, { "cell_type": "code", - "execution_count": 65, - "id": "4ce8f67f", + "execution_count": 13, + "id": "46079e58-4747-42ff-8b68-906c94440474", "metadata": {}, "outputs": [ { - "ename": "UnicodeDecodeError", - "evalue": "'utf-8' codec can't decode byte 0x80 in position 0: invalid start byte", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mUnicodeDecodeError\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m<ipython-input-65-71f198107f5e>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[0mf\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mopen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"test.virt2nuc\"\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\"r\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 2\u001b[0;31m \u001b[0mpickle\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mload\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mf\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", - "\u001b[0;32m/data/server1/cmaffeo2/miniconda3/lib/python3.8/codecs.py\u001b[0m in \u001b[0;36mdecode\u001b[0;34m(self, input, final)\u001b[0m\n\u001b[1;32m 320\u001b[0m \u001b[0;31m# decode input (taking the buffer into account)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 321\u001b[0m \u001b[0mdata\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mbuffer\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0minput\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 322\u001b[0;31m \u001b[0;34m(\u001b[0m\u001b[0mresult\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mconsumed\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_buffer_decode\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mdata\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0merrors\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mfinal\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 323\u001b[0m \u001b[0;31m# keep undecoded input until the next call\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 324\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mbuffer\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mdata\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mconsumed\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;31mUnicodeDecodeError\u001b[0m: 'utf-8' codec can't decode byte 0x80 in position 0: invalid start byte" - ] + "data": { + "text/plain": [ + "[[23, 13369809], [38, 12060012]]" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" } ], "source": [ - "f=open(\"test.virt2nuc\",\"r\")\n", - "pickle.load(f)" + "df[\"vstrands\"][0][\"stap_colors\"]" ] }, { "cell_type": "code", - "execution_count": 119, + "execution_count": 14, "id": "625c831b", "metadata": {}, "outputs": [ @@ -125,7 +265,7 @@ "210" ] }, - "execution_count": 119, + "execution_count": 14, "metadata": {}, "output_type": "execute_result" } @@ -137,60 +277,50 @@ }, { "cell_type": "code", - "execution_count": 66, - "id": "6a4129c2", + "execution_count": 198, + "id": "0f88b0bb-bc42-4ef3-88e7-518ae2628c0d", "metadata": {}, "outputs": [ { - "data": { - "text/plain": [ - "{0: (12, 16), 1: (12, 15), 2: (13, 15), 3: (13, 16), 4: (13, 17), 5: (12, 17)}" - ] - }, - "execution_count": 66, - "metadata": {}, - "output_type": "execute_result" + "ename": "TypeError", + "evalue": "file must have 'read' and 'readline' attributes", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[198], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m df \u001b[38;5;241m=\u001b[39m \u001b[43mpickle\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mload\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mtest.virt2nuc\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\n", + "\u001b[0;31mTypeError\u001b[0m: file must have 'read' and 'readline' attributes" + ] } ], "source": [ - "pattern" + "df = pickle.load(\"test.virt2nuc\")" ] }, { "cell_type": "code", - "execution_count": 141, - "id": "f85af2e4", + "execution_count": 15, + "id": "6a4129c2", "metadata": {}, "outputs": [ { - "name": "stdout", - "output_type": "stream", - "text": [ - "(0, 40)\n", - "(0, 41)\n" - ] - }, - { - "ename": "AttributeError", - "evalue": "'NoneType' object has no attribute 'append'", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mAttributeError\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m<ipython-input-141-a0e59df19136>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0ms\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mdecode_vh_vb\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"test.virt2nuc\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2\u001b[0m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0ms\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mto_dict\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m<ipython-input-140-99891f72666f>\u001b[0m in \u001b[0;36mdecode_vh_vb\u001b[0;34m(virt2nuc)\u001b[0m\n\u001b[1;32m 21\u001b[0m \u001b[0mscafs\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mvh_vb\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_scaf\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 22\u001b[0m \u001b[0mstaps\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mvh_vb\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_stap\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 23\u001b[0;31m \u001b[0mscaf_strands\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mfind_segs\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mscafs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 24\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 25\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mvh_list\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m<ipython-input-140-99891f72666f>\u001b[0m in \u001b[0;36mfind_segs\u001b[0;34m(vir2nuc_scaf)\u001b[0m\n\u001b[1;32m 8\u001b[0m \u001b[0mb\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mlist\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mvir2nuc_scaf\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mkeys\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 9\u001b[0m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mb\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 10\u001b[0;31m \u001b[0moligos\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0moligo\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0moligos\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0moligo\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mappend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mlist\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mvir2nuc_scaf\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mkeys\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 11\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0moligos\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 12\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;31mAttributeError\u001b[0m: 'NoneType' object has no attribute 'append'" - ] + "data": { + "text/plain": [ + "{0: (12, 16), 1: (12, 15), 2: (13, 15), 3: (13, 16), 4: (13, 17), 5: (12, 17)}" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" } ], "source": [ - "s=decode_vh_vb(\"test.virt2nuc\")[0]\n" + "pattern" ] }, { "cell_type": "code", - "execution_count": 165, + "execution_count": 173, "id": "aefe656e", "metadata": {}, "outputs": [], @@ -221,13 +351,12 @@ " d['scafLoop']=self.scafLoop\n", " d['stapLoop']=self.stapLoop\n", " d['stap_colors']=self.stap_colors\n", - " return d\n", - " \n" + " return d\n" ] }, { "cell_type": "code", - "execution_count": 160, + "execution_count": 177, "id": "e154a8c3", "metadata": {}, "outputs": [], @@ -240,237 +369,512 @@ " oligos[oligo]=[]\n", " oligos[oligo].append(list(vir2nuc_scaf.keys())[i])\n", " return oligos\n", - " \n", + "\n", + "#class\n", "def decode_vh_vb(virt2nuc):\n", - " vh_list=[]\n", + " vh_list={}\n", " vh_vb,pattern=pd.read_pickle(virt2nuc)\n", " for i in pattern.keys():\n", " s=strands()\n", " s.row,s.col=pattern[i]\n", " s.num=i\n", - " vh_list.append(s)\n", + " vh_list[s.num]=s\n", " scafs=vh_vb._scaf\n", " staps=vh_vb._stap\n", " scaf_strands=find_segs(scafs)\n", " scaf_oligos=list(scaf_strands.keys())\n", " for i in scaf_oligos:\n", - " bases=len(scaf_oligos)\n", - " vh0,vb0=scaf_oligos[i][0]\n", - " vh1,vb1=scaf_oligos[i][1]\n", - " if vb0>vb1:#53\n", - " scaf_contact\n", - " else: #35\n", - " \n", + " pass\n", + " \n", " \n", " return vh_list" ] }, { "cell_type": "code", - "execution_count": 163, - "id": "09619e4e", + "execution_count": 187, + "id": "0a709be4-a426-4eb0-a82f-49905307b07b", "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "{0: [(0, 39), (0, 40), (0, 41)],\n", - " 1: [(1, 41), (1, 40), (1, 39)],\n", - " 2: [(2, 39), (2, 40), (2, 41)],\n", - " 4: [(3, 41), (3, 40), (3, 39), (3, 38), (3, 37)],\n", - " 5: [(4, 0), (4, 1), (4, 2), (4, 3)],\n", - " 6: [(5, 3), (5, 2), (5, 1), (5, 0)],\n", - " 7: [(5, 22),\n", - " (5, 21),\n", - " (5, 20),\n", - " (5, 19),\n", - " (5, 18),\n", - " (5, 17),\n", - " (5, 16),\n", - " (5, 15),\n", - " (5, 14),\n", - " (5, 13),\n", - " (5, 12),\n", - " (5, 11),\n", - " (5, 10),\n", - " (5, 9),\n", - " (4, 9),\n", - " (4, 10),\n", - " (4, 11),\n", - " (4, 12),\n", - " (4, 13),\n", - " (4, 14),\n", - " (4, 15),\n", - " (3, 15),\n", - " (3, 14),\n", - " (3, 13),\n", - " (3, 12),\n", - " (3, 11),\n", - " (3, 10),\n", - " (3, 9),\n", - " (3, 8),\n", - " (3, 7),\n", - " (3, 6),\n", - " (3, 5),\n", - " (3, 4),\n", - " (3, 3),\n", - " (3, 2),\n", - " (2, 2),\n", - " (2, 3),\n", - " (2, 4),\n", - " (2, 5),\n", - " (2, 6),\n", - " (2, 7),\n", - " (2, 8),\n", - " (2, 9),\n", - " (2, 10),\n", - " (2, 11),\n", - " (2, 12),\n", - " (2, 13),\n", - " (2, 14),\n", - " (2, 15),\n", - " (2, 16),\n", - " (2, 17),\n", + "[[(2, 34),\n", + " (2, 33),\n", + " (2, 32),\n", + " (2, 31),\n", + " (2, 30),\n", + " (2, 29),\n", + " (2, 28),\n", + " (2, 27),\n", + " (2, 26),\n", + " (2, 25),\n", + " (2, 24),\n", + " (2, 23),\n", + " (2, 22),\n", + " (2, 21),\n", + " (2, 20),\n", + " (2, 19),\n", " (2, 18),\n", - " (1, 18),\n", - " (1, 17),\n", - " (1, 16),\n", - " (1, 15),\n", - " (1, 14),\n", - " (1, 13),\n", - " (1, 12),\n", - " (1, 11),\n", - " (1, 10),\n", - " (1, 9),\n", - " (1, 8),\n", - " (1, 7),\n", - " (1, 6),\n", + " (2, 17),\n", + " (2, 16),\n", + " (2, 15),\n", + " (2, 14),\n", + " (2, 13),\n", + " (2, 12),\n", + " (2, 11),\n", + " (2, 10),\n", + " (2, 9),\n", + " (2, 8),\n", + " (2, 7),\n", + " (2, 6),\n", + " (2, 5),\n", + " (2, 4),\n", + " (2, 3),\n", + " (2, 2),\n", + " (2, 1),\n", + " (2, 0)],\n", + " [(1, 3),\n", + " (1, 4),\n", " (1, 5),\n", - " (0, 5),\n", - " (0, 6),\n", - " (0, 7),\n", - " (0, 8),\n", - " (0, 9),\n", - " (0, 10),\n", - " (0, 11),\n", - " (0, 12),\n", - " (0, 13),\n", - " (0, 14),\n", - " (0, 15),\n", - " (0, 16),\n", - " (0, 17),\n", - " (0, 18),\n", - " (0, 19),\n", + " (1, 6),\n", + " (1, 7),\n", + " (1, 8),\n", + " (1, 9),\n", + " (1, 10),\n", + " (1, 11),\n", + " (1, 12),\n", + " (1, 13),\n", + " (1, 14),\n", + " (1, 15),\n", + " (1, 16),\n", + " (1, 17),\n", + " (1, 18),\n", + " (1, 19),\n", + " (1, 20),\n", " (0, 20),\n", - " (0, 21),\n", + " (0, 19),\n", + " (0, 18),\n", + " (0, 17),\n", + " (0, 16),\n", + " (0, 15),\n", + " (0, 14),\n", + " (0, 13),\n", + " (0, 12),\n", + " (0, 11),\n", + " (0, 10),\n", + " (0, 9),\n", + " (0, 8),\n", + " (0, 7),\n", + " (0, 6),\n", + " (0, 5),\n", + " (0, 4),\n", + " (0, 3),\n", + " (0, 2)],\n", + " [(0, 23),\n", " (0, 22),\n", - " (0, 23),\n", - " (0, 24),\n", - " (0, 25),\n", - " (0, 26),\n", + " (0, 21),\n", + " (1, 21),\n", + " (1, 22),\n", + " (1, 23),\n", + " (1, 24),\n", + " (1, 25),\n", + " (1, 26),\n", + " (1, 27),\n", + " (1, 28),\n", + " (1, 29),\n", + " (1, 30),\n", + " (1, 31),\n", + " (1, 32),\n", + " (1, 33),\n", + " (1, 34),\n", + " (1, 35),\n", + " (1, 36),\n", + " (1, 37),\n", + " (1, 38)],\n", + " [(5, 9),\n", + " (5, 10),\n", + " (5, 11),\n", + " (5, 12),\n", + " (5, 13),\n", + " (5, 14),\n", + " (5, 15),\n", + " (5, 16),\n", + " (5, 17),\n", + " (5, 18),\n", + " (5, 19),\n", + " (5, 20),\n", + " (5, 21),\n", + " (5, 22),\n", + " (5, 23),\n", + " (5, 24),\n", + " (5, 25),\n", + " (5, 26),\n", + " (5, 27),\n", " (0, 27),\n", - " (0, 28),\n", - " (0, 29),\n", - " (0, 30),\n", - " (0, 31),\n", - " (0, 32),\n", - " (0, 33),\n", - " (0, 34),\n", - " (0, 35),\n", + " (0, 26),\n", + " (0, 25),\n", + " (0, 24)],\n", + " [(0, 38),\n", + " (0, 37),\n", " (0, 36),\n", - " (1, 36),\n", - " (1, 35),\n", - " (1, 34),\n", - " (1, 33),\n", - " (1, 32),\n", - " (1, 31),\n", - " (1, 30),\n", - " (1, 29),\n", - " (1, 28),\n", - " (1, 27),\n", - " (1, 26),\n", - " (1, 25),\n", - " (1, 24),\n", - " (1, 23),\n", - " (1, 22),\n", - " (1, 21),\n", - " (1, 20),\n", - " (1, 19),\n", - " (2, 19),\n", - " (2, 20),\n", - " (2, 21),\n", - " (2, 22),\n", - " (2, 23),\n", - " (2, 24),\n", - " (2, 25),\n", - " (2, 26),\n", - " (2, 27),\n", - " (2, 28),\n", - " (2, 29),\n", - " (2, 30),\n", - " (2, 31),\n", - " (2, 32),\n", - " (3, 32),\n", - " (3, 31),\n", - " (3, 30),\n", - " (3, 29),\n", - " (3, 28),\n", - " (3, 27),\n", - " (3, 26),\n", - " (3, 25),\n", - " (3, 24),\n", - " (3, 23),\n", - " (3, 22),\n", - " (3, 21),\n", - " (3, 20),\n", - " (3, 19),\n", - " (3, 18),\n", - " (3, 17),\n", + " (0, 35),\n", + " (0, 34),\n", + " (0, 33),\n", + " (0, 32),\n", + " (0, 31),\n", + " (0, 30),\n", + " (0, 29),\n", + " (0, 28),\n", + " (5, 28),\n", + " (5, 29),\n", + " (5, 30),\n", + " (5, 31),\n", + " (5, 32),\n", + " (5, 33),\n", + " (5, 34),\n", + " (5, 35),\n", + " (5, 36),\n", + " (5, 37),\n", + " (5, 38),\n", + " (5, 39)],\n", + " [(3, 0),\n", + " (3, 1),\n", + " (3, 2),\n", + " (3, 3),\n", + " (3, 4),\n", + " (3, 5),\n", + " (3, 6),\n", + " (3, 7),\n", + " (3, 8),\n", + " (3, 9),\n", + " (3, 10),\n", + " (3, 11),\n", + " (3, 12),\n", + " (3, 13),\n", + " (3, 14),\n", + " (3, 15),\n", " (3, 16),\n", - " (4, 16),\n", - " (4, 17),\n", - " (4, 18),\n", - " (4, 19),\n", + " (3, 17),\n", + " (3, 18),\n", + " (3, 19),\n", + " (3, 20),\n", " (4, 20),\n", - " (4, 21),\n", - " (4, 22),\n", - " (4, 23),\n", - " (4, 24),\n", - " (4, 25),\n", - " (4, 26),\n", - " (4, 27),\n", - " (4, 28),\n", - " (4, 29),\n", - " (4, 30),\n", - " (4, 31),\n", - " (4, 32),\n", - " (4, 33),\n", - " (4, 34),\n", - " (4, 35),\n", - " (4, 36),\n", - " (4, 37),\n", + " (4, 19),\n", + " (4, 18),\n", + " (4, 17),\n", + " (4, 16),\n", + " (4, 15),\n", + " (4, 14),\n", + " (4, 13),\n", + " (4, 12),\n", + " (4, 11),\n", + " (4, 10),\n", + " (4, 9)],\n", + " [(4, 39),\n", " (4, 38),\n", - " (4, 39),\n", - " (5, 39),\n", - " (5, 38),\n", - " (5, 37),\n", - " (5, 36),\n", - " (5, 35),\n", - " (5, 34),\n", - " (5, 33),\n", - " (5, 32),\n", - " (5, 31),\n", - " (5, 30),\n", - " (5, 29),\n", - " (5, 28),\n", - " (5, 27),\n", - " (5, 26),\n", - " (5, 25),\n", - " (5, 24),\n", - " (5, 23)]}" + " (4, 37),\n", + " (4, 36),\n", + " (4, 35),\n", + " (4, 34),\n", + " (4, 33),\n", + " (4, 32),\n", + " (4, 31),\n", + " (4, 30),\n", + " (4, 29),\n", + " (4, 28),\n", + " (4, 27),\n", + " (4, 26),\n", + " (4, 25),\n", + " (4, 24),\n", + " (4, 23),\n", + " (4, 22),\n", + " (4, 21),\n", + " (3, 21),\n", + " (3, 22),\n", + " (3, 23),\n", + " (3, 24),\n", + " (3, 25),\n", + " (3, 26),\n", + " (3, 27),\n", + " (3, 28),\n", + " (3, 29),\n", + " (3, 30),\n", + " (3, 31),\n", + " (3, 32),\n", + " (3, 33),\n", + " (3, 34)]]" ] }, - "execution_count": 163, + "execution_count": 187, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "s1=decode_vh_vb(\"test.virt2nuc\")\n", + "vh_vb,pattern=pd.read_pickle(\"test.virt2nuc\")\n", + "list(find_segs(vh_vb._stap).values())" + ] + }, + { + "cell_type": "code", + "execution_count": 142, + "id": "125b30e0-7dcc-464a-b3cf-cfbf090d3982", + "metadata": {}, + "outputs": [], + "source": [ + "def find_segs(vir2nuc_scaf):\n", + " oligos={}\n", + " for i in range(len(vir2nuc_scaf)):\n", + " oligo,ox_ind=list(vir2nuc_scaf.values())[i]\n", + " if oligo not in oligos.keys():\n", + " oligos[oligo]=[]\n", + " oligos[oligo].append(list(vir2nuc_scaf.keys())[i])\n", + " return oligos\n", + "\n", + "def decode_vh_vb(virt2nuc):\n", + " vh_vb,pattern=pd.read_pickle(virt2nuc)\n", + " vi={'row':0, 'col':0, 'num':0, 'scaf':dict(), 'stap':dict(), 'loop':[], 'skip':[], 'scafLoop':[],'stapLoop':[], 'stap_colors':[],\"scaf53\":True}\n", + " vs=[] \n", + " for i in range(len(pattern.keys())):\n", + " vhi=vi.copy()\n", + " vhi[\"row\"],vhi[\"col\"]=list(pattern.values())[i]\n", + " vhi[\"num\"]=list(pattern.keys())[i]\n", + " vs.append(vhi)\n", + " vhelices=pd.DataFrame(vs)\n", + " vhelices=vhelices.set_index('num')\n", + " scafs=vh_vb._scaf\n", + " staps=vh_vb._stap\n", + " scaf_strands=find_segs(scafs)\n", + " stap_strands=find_segs(staps)\n", + " scaf_oligos=list(scaf_strands.keys())\n", + "\n", + " \n", + " return vhelices" + ] + }, + { + "cell_type": "code", + "execution_count": 117, + "id": "5b149587-3224-4137-a7bc-e41aa4049034", + "metadata": {}, + "outputs": [], + "source": [ + "def find_base_map(oligo,i,vhx,scaf=True):\n", + " vh0,vb0=oligo[i]\n", + " vh1,vb1=oligo[i+1]\n", + " if scaf==True:\n", + " if vb0 not in vhx[\"scaf\"][vh0].keys():\n", + " \n", + " if vh0==vh1 and scaf==True:\n", + " if vb0>vb1:\n", + " vhx[vh0][\"scaf\"][vb0]=\n", + " \n", + "\n", + " \n" + ] + }, + { + "cell_type": "code", + "execution_count": 116, + "id": "09619e4e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[(5, 22),\n", + " (5, 21),\n", + " (5, 20),\n", + " (5, 19),\n", + " (5, 18),\n", + " (5, 17),\n", + " (5, 16),\n", + " (5, 15),\n", + " (5, 14),\n", + " (5, 13),\n", + " (5, 12),\n", + " (5, 11),\n", + " (5, 10),\n", + " (5, 9),\n", + " (4, 9),\n", + " (4, 10),\n", + " (4, 11),\n", + " (4, 12),\n", + " (4, 13),\n", + " (4, 14),\n", + " (4, 15),\n", + " (3, 15),\n", + " (3, 14),\n", + " (3, 13),\n", + " (3, 12),\n", + " (3, 11),\n", + " (3, 10),\n", + " (3, 9),\n", + " (3, 8),\n", + " (3, 7),\n", + " (3, 6),\n", + " (3, 5),\n", + " (3, 4),\n", + " (3, 3),\n", + " (3, 2),\n", + " (2, 2),\n", + " (2, 3),\n", + " (2, 4),\n", + " (2, 5),\n", + " (2, 6),\n", + " (2, 7),\n", + " (2, 8),\n", + " (2, 9),\n", + " (2, 10),\n", + " (2, 11),\n", + " (2, 12),\n", + " (2, 13),\n", + " (2, 14),\n", + " (2, 15),\n", + " (2, 16),\n", + " (2, 17),\n", + " (2, 18),\n", + " (1, 18),\n", + " (1, 17),\n", + " (1, 16),\n", + " (1, 15),\n", + " (1, 14),\n", + " (1, 13),\n", + " (1, 12),\n", + " (1, 11),\n", + " (1, 10),\n", + " (1, 9),\n", + " (1, 8),\n", + " (1, 7),\n", + " (1, 6),\n", + " (1, 5),\n", + " (0, 5),\n", + " (0, 6),\n", + " (0, 7),\n", + " (0, 8),\n", + " (0, 9),\n", + " (0, 10),\n", + " (0, 11),\n", + " (0, 12),\n", + " (0, 13),\n", + " (0, 14),\n", + " (0, 15),\n", + " (0, 16),\n", + " (0, 17),\n", + " (0, 18),\n", + " (0, 19),\n", + " (0, 20),\n", + " (0, 21),\n", + " (0, 22),\n", + " (0, 23),\n", + " (0, 24),\n", + " (0, 25),\n", + " (0, 26),\n", + " (0, 27),\n", + " (0, 28),\n", + " (0, 29),\n", + " (0, 30),\n", + " (0, 31),\n", + " (0, 32),\n", + " (0, 33),\n", + " (0, 34),\n", + " (0, 35),\n", + " (0, 36),\n", + " (1, 36),\n", + " (1, 35),\n", + " (1, 34),\n", + " (1, 33),\n", + " (1, 32),\n", + " (1, 31),\n", + " (1, 30),\n", + " (1, 29),\n", + " (1, 28),\n", + " (1, 27),\n", + " (1, 26),\n", + " (1, 25),\n", + " (1, 24),\n", + " (1, 23),\n", + " (1, 22),\n", + " (1, 21),\n", + " (1, 20),\n", + " (1, 19),\n", + " (2, 19),\n", + " (2, 20),\n", + " (2, 21),\n", + " (2, 22),\n", + " (2, 23),\n", + " (2, 24),\n", + " (2, 25),\n", + " (2, 26),\n", + " (2, 27),\n", + " (2, 28),\n", + " (2, 29),\n", + " (2, 30),\n", + " (2, 31),\n", + " (2, 32),\n", + " (3, 32),\n", + " (3, 31),\n", + " (3, 30),\n", + " (3, 29),\n", + " (3, 28),\n", + " (3, 27),\n", + " (3, 26),\n", + " (3, 25),\n", + " (3, 24),\n", + " (3, 23),\n", + " (3, 22),\n", + " (3, 21),\n", + " (3, 20),\n", + " (3, 19),\n", + " (3, 18),\n", + " (3, 17),\n", + " (3, 16),\n", + " (4, 16),\n", + " (4, 17),\n", + " (4, 18),\n", + " (4, 19),\n", + " (4, 20),\n", + " (4, 21),\n", + " (4, 22),\n", + " (4, 23),\n", + " (4, 24),\n", + " (4, 25),\n", + " (4, 26),\n", + " (4, 27),\n", + " (4, 28),\n", + " (4, 29),\n", + " (4, 30),\n", + " (4, 31),\n", + " (4, 32),\n", + " (4, 33),\n", + " (4, 34),\n", + " (4, 35),\n", + " (4, 36),\n", + " (4, 37),\n", + " (4, 38),\n", + " (4, 39),\n", + " (5, 39),\n", + " (5, 38),\n", + " (5, 37),\n", + " (5, 36),\n", + " (5, 35),\n", + " (5, 34),\n", + " (5, 33),\n", + " (5, 32),\n", + " (5, 31),\n", + " (5, 30),\n", + " (5, 29),\n", + " (5, 28),\n", + " (5, 27),\n", + " (5, 26),\n", + " (5, 25),\n", + " (5, 24),\n", + " (5, 23)]" + ] + }, + "execution_count": 116, "metadata": {}, "output_type": "execute_result" } @@ -479,7 +883,8 @@ "scafs=vh_vb._scaf\n", "s=list(scafs.values())\n", "len(scafs)\n", - "find_segs(scafs)" + "ss=find_segs(scafs)[7]\n", + "ss" ] }, { @@ -531,9 +936,7 @@ "cell_type": "code", "execution_count": 62, "id": "422e2b48", - "metadata": { - "scrolled": false - }, + "metadata": {}, "outputs": [ { "data": { @@ -2110,7 +2513,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -2124,7 +2527,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.8.18" + "version": "3.8.19" } }, "nbformat": 4, diff --git a/mrdna/readers/test.json b/mrdna/readers/test.json index de6cfc7..5332be9 100644 --- a/mrdna/readers/test.json +++ b/mrdna/readers/test.json @@ -1 +1 @@ -{"name":"test.json","vstrands":[{"row":12,"col":16,"num":0,"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[1,5,0,6],[0,5,0,7],[0,6,0,8],[0,7,0,9],[0,8,0,10],[0,9,0,11],[0,10,0,12],[0,11,0,13],[0,12,0,14],[0,13,0,15],[0,14,0,16],[0,15,0,17],[0,16,0,18],[0,17,0,19],[0,18,0,20],[0,19,0,21],[0,20,0,22],[0,21,0,23],[0,22,0,24],[0,23,0,25],[0,24,0,26],[0,25,0,27],[0,26,0,28],[0,27,0,29],[0,28,0,30],[0,29,0,31],[0,30,0,32],[0,31,0,33],[0,32,0,34],[0,33,0,35],[0,34,0,36],[0,35,1,36],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,0,40],[0,39,0,41],[0,40,-1,-1]],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[0,3,-1,-1],[0,4,0,2],[0,5,0,3],[0,6,0,4],[0,7,0,5],[0,8,0,6],[0,9,0,7],[0,10,0,8],[0,11,0,9],[0,12,0,10],[0,13,0,11],[0,14,0,12],[0,15,0,13],[0,16,0,14],[0,17,0,15],[0,18,0,16],[0,19,0,17],[0,20,0,18],[1,20,0,19],[0,22,1,21],[0,23,0,21],[-1,-1,0,22],[0,25,-1,-1],[0,26,0,24],[0,27,0,25],[5,27,0,26],[0,29,5,28],[0,30,0,28],[0,31,0,29],[0,32,0,30],[0,33,0,31],[0,34,0,32],[0,35,0,33],[0,36,0,34],[0,37,0,35],[0,38,0,36],[-1,-1,0,37],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scafLoop":[],"stapLoop":[],"stap_colors":[[23,12060012],[38,1507550]]},{"row":12,"col":15,"num":1,"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[1,6,0,5],[1,7,1,5],[1,8,1,6],[1,9,1,7],[1,10,1,8],[1,11,1,9],[1,12,1,10],[1,13,1,11],[1,14,1,12],[1,15,1,13],[1,16,1,14],[1,17,1,15],[1,18,1,16],[2,18,1,17],[1,20,2,19],[1,21,1,19],[1,22,1,20],[1,23,1,21],[1,24,1,22],[1,25,1,23],[1,26,1,24],[1,27,1,25],[1,28,1,26],[1,29,1,27],[1,30,1,28],[1,31,1,29],[1,32,1,30],[1,33,1,31],[1,34,1,32],[1,35,1,33],[1,36,1,34],[0,36,1,35],[-1,-1,-1,-1],[-1,-1,-1,-1],[1,40,-1,-1],[1,41,1,39],[-1,-1,1,40]],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,1,4],[1,3,1,5],[1,4,1,6],[1,5,1,7],[1,6,1,8],[1,7,1,9],[1,8,1,10],[1,9,1,11],[1,10,1,12],[1,11,1,13],[1,12,1,14],[1,13,1,15],[1,14,1,16],[1,15,1,17],[1,16,1,18],[1,17,1,19],[1,18,1,20],[1,19,0,20],[0,21,1,22],[1,21,1,23],[1,22,1,24],[1,23,1,25],[1,24,1,26],[1,25,1,27],[1,26,1,28],[1,27,1,29],[1,28,1,30],[1,29,1,31],[1,30,1,32],[1,31,1,33],[1,32,1,34],[1,33,1,35],[1,34,1,36],[1,35,1,37],[1,36,1,38],[1,37,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scafLoop":[],"stapLoop":[],"stap_colors":[[3,13369344]]},{"row":13,"col":15,"num":2,"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[3,2,2,3],[2,2,2,4],[2,3,2,5],[2,4,2,6],[2,5,2,7],[2,6,2,8],[2,7,2,9],[2,8,2,10],[2,9,2,11],[2,10,2,12],[2,11,2,13],[2,12,2,14],[2,13,2,15],[2,14,2,16],[2,15,2,17],[2,16,2,18],[2,17,1,18],[1,19,2,20],[2,19,2,21],[2,20,2,22],[2,21,2,23],[2,22,2,24],[2,23,2,25],[2,24,2,26],[2,25,2,27],[2,26,2,28],[2,27,2,29],[2,28,2,30],[2,29,2,31],[2,30,2,32],[2,31,3,32],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,2,40],[2,39,2,41],[2,40,-1,-1]],"stap":[[2,1,-1,-1],[2,2,2,0],[2,3,2,1],[2,4,2,2],[2,5,2,3],[2,6,2,4],[2,7,2,5],[2,8,2,6],[2,9,2,7],[2,10,2,8],[2,11,2,9],[2,12,2,10],[2,13,2,11],[2,14,2,12],[2,15,2,13],[2,16,2,14],[2,17,2,15],[2,18,2,16],[2,19,2,17],[2,20,2,18],[2,21,2,19],[2,22,2,20],[2,23,2,21],[2,24,2,22],[2,25,2,23],[2,26,2,24],[2,27,2,25],[2,28,2,26],[2,29,2,27],[2,30,2,28],[2,31,2,29],[2,32,2,30],[2,33,2,31],[2,34,2,32],[-1,-1,2,33],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scafLoop":[],"stapLoop":[],"stap_colors":[[34,8947848]]},{"row":13,"col":16,"num":3,"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[3,3,2,2],[3,4,3,2],[3,5,3,3],[3,6,3,4],[3,7,3,5],[3,8,3,6],[3,9,3,7],[3,10,3,8],[3,11,3,9],[3,12,3,10],[3,13,3,11],[3,14,3,12],[3,15,3,13],[4,15,3,14],[3,17,4,16],[3,18,3,16],[3,19,3,17],[3,20,3,18],[3,21,3,19],[3,22,3,20],[3,23,3,21],[3,24,3,22],[3,25,3,23],[3,26,3,24],[3,27,3,25],[3,28,3,26],[3,29,3,27],[3,30,3,28],[3,31,3,29],[3,32,3,30],[2,32,3,31],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[3,38,-1,-1],[3,39,3,37],[3,40,3,38],[3,41,3,39],[-1,-1,3,40]],"stap":[[-1,-1,3,1],[3,0,3,2],[3,1,3,3],[3,2,3,4],[3,3,3,5],[3,4,3,6],[3,5,3,7],[3,6,3,8],[3,7,3,9],[3,8,3,10],[3,9,3,11],[3,10,3,12],[3,11,3,13],[3,12,3,14],[3,13,3,15],[3,14,3,16],[3,15,3,17],[3,16,3,18],[3,17,3,19],[3,18,3,20],[3,19,4,20],[4,21,3,22],[3,21,3,23],[3,22,3,24],[3,23,3,25],[3,24,3,26],[3,25,3,27],[3,26,3,28],[3,27,3,29],[3,28,3,30],[3,29,3,31],[3,30,3,32],[3,31,3,33],[3,32,3,34],[3,33,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scafLoop":[],"stapLoop":[],"stap_colors":[[0,13369344]]},{"row":13,"col":17,"num":4,"scaf":[[-1,-1,4,1],[4,0,4,2],[4,1,4,3],[4,2,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[5,9,4,10],[4,9,4,11],[4,10,4,12],[4,11,4,13],[4,12,4,14],[4,13,4,15],[4,14,3,15],[3,16,4,17],[4,16,4,18],[4,17,4,19],[4,18,4,20],[4,19,4,21],[4,20,4,22],[4,21,4,23],[4,22,4,24],[4,23,4,25],[4,24,4,26],[4,25,4,27],[4,26,4,28],[4,27,4,29],[4,28,4,30],[4,29,4,31],[4,30,4,32],[4,31,4,33],[4,32,4,34],[4,33,4,35],[4,34,4,36],[4,35,4,37],[4,36,4,38],[4,37,4,39],[4,38,5,39],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[4,10,-1,-1],[4,11,4,9],[4,12,4,10],[4,13,4,11],[4,14,4,12],[4,15,4,13],[4,16,4,14],[4,17,4,15],[4,18,4,16],[4,19,4,17],[4,20,4,18],[3,20,4,19],[4,22,3,21],[4,23,4,21],[4,24,4,22],[4,25,4,23],[4,26,4,24],[4,27,4,25],[4,28,4,26],[4,29,4,27],[4,30,4,28],[4,31,4,29],[4,32,4,30],[4,33,4,31],[4,34,4,32],[4,35,4,33],[4,36,4,34],[4,37,4,35],[4,38,4,36],[4,39,4,37],[-1,-1,4,38],[-1,-1,-1,-1],[-1,-1,-1,-1]],"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scafLoop":[],"stapLoop":[],"stap_colors":[[39,8947848]]},{"row":12,"col":17,"num":5,"scaf":[[5,1,-1,-1],[5,2,5,0],[5,3,5,1],[-1,-1,5,2],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[5,10,4,9],[5,11,5,9],[5,12,5,10],[5,13,5,11],[5,14,5,12],[5,15,5,13],[5,16,5,14],[5,17,5,15],[5,18,5,16],[5,19,5,17],[5,20,5,18],[5,21,5,19],[5,22,5,20],[-1,-1,5,21],[5,24,-1,-1],[5,25,5,23],[5,26,5,24],[5,27,5,25],[5,28,5,26],[5,29,5,27],[5,30,5,28],[5,31,5,29],[5,32,5,30],[5,33,5,31],[5,34,5,32],[5,35,5,33],[5,36,5,34],[5,37,5,35],[5,38,5,36],[5,39,5,37],[4,39,5,38],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,5,10],[5,9,5,11],[5,10,5,12],[5,11,5,13],[5,12,5,14],[5,13,5,15],[5,14,5,16],[5,15,5,17],[5,16,5,18],[5,17,5,19],[5,18,5,20],[5,19,5,21],[5,20,5,22],[5,21,5,23],[5,22,5,24],[5,23,5,25],[5,24,5,26],[5,25,5,27],[5,26,0,27],[0,28,5,29],[5,28,5,30],[5,29,5,31],[5,30,5,32],[5,31,5,33],[5,32,5,34],[5,33,5,35],[5,34,5,36],[5,35,5,37],[5,36,5,38],[5,37,5,39],[5,38,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scafLoop":[],"stapLoop":[],"stap_colors":[[9,16204552]]}]} \ No newline at end of file +{"name":"test.json","vstrands":[{"row":12,"col":16,"num":0,"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[1,5,0,6],[0,5,0,7],[0,6,0,8],[0,7,0,9],[0,8,0,10],[0,9,0,11],[0,10,0,12],[0,11,0,13],[0,12,0,14],[0,13,0,15],[0,14,0,16],[0,15,0,17],[0,16,0,18],[0,17,0,19],[0,18,0,20],[0,19,0,21],[0,20,0,22],[0,21,0,23],[0,22,0,24],[0,23,0,25],[0,24,0,26],[0,25,0,27],[0,26,0,28],[0,27,0,29],[0,28,0,30],[0,29,0,31],[0,30,0,32],[0,31,0,33],[0,32,0,34],[0,33,0,35],[0,34,0,36],[0,35,1,36],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,0,40],[0,39,0,41],[0,40,-1,-1]],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[0,3,-1,-1],[0,4,0,2],[0,5,0,3],[0,6,0,4],[0,7,0,5],[0,8,0,6],[0,9,0,7],[0,10,0,8],[0,11,0,9],[0,12,0,10],[0,13,0,11],[0,14,0,12],[0,15,0,13],[0,16,0,14],[0,17,0,15],[0,18,0,16],[0,19,0,17],[0,20,0,18],[1,20,0,19],[0,22,1,21],[0,23,0,21],[-1,-1,0,22],[0,25,-1,-1],[0,26,0,24],[0,27,0,25],[5,27,0,26],[0,29,5,28],[0,30,0,28],[0,31,0,29],[0,32,0,30],[0,33,0,31],[0,34,0,32],[0,35,0,33],[0,36,0,34],[0,37,0,35],[0,38,0,36],[-1,-1,0,37],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scafLoop":[],"stapLoop":[],"stap_colors":[[23,13369809],[38,12060012]]},{"row":12,"col":15,"num":1,"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[1,6,0,5],[1,7,1,5],[1,8,1,6],[1,9,1,7],[1,10,1,8],[1,11,1,9],[1,12,1,10],[1,13,1,11],[1,14,1,12],[1,15,1,13],[1,16,1,14],[1,17,1,15],[1,18,1,16],[2,18,1,17],[1,20,2,19],[1,21,1,19],[1,22,1,20],[1,23,1,21],[1,24,1,22],[1,25,1,23],[1,26,1,24],[1,27,1,25],[1,28,1,26],[1,29,1,27],[1,30,1,28],[1,31,1,29],[1,32,1,30],[1,33,1,31],[1,34,1,32],[1,35,1,33],[1,36,1,34],[0,36,1,35],[-1,-1,-1,-1],[-1,-1,-1,-1],[1,40,-1,-1],[1,41,1,39],[-1,-1,1,40]],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,1,4],[1,3,1,5],[1,4,1,6],[1,5,1,7],[1,6,1,8],[1,7,1,9],[1,8,1,10],[1,9,1,11],[1,10,1,12],[1,11,1,13],[1,12,1,14],[1,13,1,15],[1,14,1,16],[1,15,1,17],[1,16,1,18],[1,17,1,19],[1,18,1,20],[1,19,0,20],[0,21,1,22],[1,21,1,23],[1,22,1,24],[1,23,1,25],[1,24,1,26],[1,25,1,27],[1,26,1,28],[1,27,1,29],[1,28,1,30],[1,29,1,31],[1,30,1,32],[1,31,1,33],[1,32,1,34],[1,33,1,35],[1,34,1,36],[1,35,1,37],[1,36,1,38],[1,37,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scafLoop":[],"stapLoop":[],"stap_colors":[[3,1501302]]},{"row":13,"col":15,"num":2,"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[3,2,2,3],[2,2,2,4],[2,3,2,5],[2,4,2,6],[2,5,2,7],[2,6,2,8],[2,7,2,9],[2,8,2,10],[2,9,2,11],[2,10,2,12],[2,11,2,13],[2,12,2,14],[2,13,2,15],[2,14,2,16],[2,15,2,17],[2,16,2,18],[2,17,1,18],[1,19,2,20],[2,19,2,21],[2,20,2,22],[2,21,2,23],[2,22,2,24],[2,23,2,25],[2,24,2,26],[2,25,2,27],[2,26,2,28],[2,27,2,29],[2,28,2,30],[2,29,2,31],[2,30,2,32],[2,31,3,32],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,2,40],[2,39,2,41],[2,40,-1,-1]],"stap":[[2,1,-1,-1],[2,2,2,0],[2,3,2,1],[2,4,2,2],[2,5,2,3],[2,6,2,4],[2,7,2,5],[2,8,2,6],[2,9,2,7],[2,10,2,8],[2,11,2,9],[2,12,2,10],[2,13,2,11],[2,14,2,12],[2,15,2,13],[2,16,2,14],[2,17,2,15],[2,18,2,16],[2,19,2,17],[2,20,2,18],[2,21,2,19],[2,22,2,20],[2,23,2,21],[2,24,2,22],[2,25,2,23],[2,26,2,24],[2,27,2,25],[2,28,2,26],[2,29,2,27],[2,30,2,28],[2,31,2,29],[2,32,2,30],[2,33,2,31],[2,34,2,32],[-1,-1,2,33],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scafLoop":[],"stapLoop":[],"stap_colors":[[34,8947848]]},{"row":13,"col":16,"num":3,"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[3,3,2,2],[3,4,3,2],[3,5,3,3],[3,6,3,4],[3,7,3,5],[3,8,3,6],[3,9,3,7],[3,10,3,8],[3,11,3,9],[3,12,3,10],[3,13,3,11],[3,14,3,12],[3,15,3,13],[4,15,3,14],[3,17,4,16],[3,18,3,16],[3,19,3,17],[3,20,3,18],[3,21,3,19],[3,22,3,20],[3,23,3,21],[3,24,3,22],[3,25,3,23],[3,26,3,24],[3,27,3,25],[3,28,3,26],[3,29,3,27],[3,30,3,28],[3,31,3,29],[3,32,3,30],[2,32,3,31],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[3,38,-1,-1],[3,39,3,37],[3,40,3,38],[3,41,3,39],[-1,-1,3,40]],"stap":[[-1,-1,3,1],[3,0,3,2],[3,1,3,3],[3,2,3,4],[3,3,3,5],[3,4,3,6],[3,5,3,7],[3,6,3,8],[3,7,3,9],[3,8,3,10],[3,9,3,11],[3,10,3,12],[3,11,3,13],[3,12,3,14],[3,13,3,15],[3,14,3,16],[3,15,3,17],[3,16,3,18],[3,17,3,19],[3,18,3,20],[3,19,4,20],[4,21,3,22],[3,21,3,23],[3,22,3,24],[3,23,3,25],[3,24,3,26],[3,25,3,27],[3,26,3,28],[3,27,3,29],[3,28,3,30],[3,29,3,31],[3,30,3,32],[3,31,3,33],[3,32,3,34],[3,33,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scafLoop":[],"stapLoop":[],"stap_colors":[[0,13369344]]},{"row":13,"col":17,"num":4,"scaf":[[-1,-1,4,1],[4,0,4,2],[4,1,4,3],[4,2,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[5,9,4,10],[4,9,4,11],[4,10,4,12],[4,11,4,13],[4,12,4,14],[4,13,4,15],[4,14,3,15],[3,16,4,17],[4,16,4,18],[4,17,4,19],[4,18,4,20],[4,19,4,21],[4,20,4,22],[4,21,4,23],[4,22,4,24],[4,23,4,25],[4,24,4,26],[4,25,4,27],[4,26,4,28],[4,27,4,29],[4,28,4,30],[4,29,4,31],[4,30,4,32],[4,31,4,33],[4,32,4,34],[4,33,4,35],[4,34,4,36],[4,35,4,37],[4,36,4,38],[4,37,4,39],[4,38,5,39],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[4,10,-1,-1],[4,11,4,9],[4,12,4,10],[4,13,4,11],[4,14,4,12],[4,15,4,13],[4,16,4,14],[4,17,4,15],[4,18,4,16],[4,19,4,17],[4,20,4,18],[3,20,4,19],[4,22,3,21],[4,23,4,21],[4,24,4,22],[4,25,4,23],[4,26,4,24],[4,27,4,25],[4,28,4,26],[4,29,4,27],[4,30,4,28],[4,31,4,29],[4,32,4,30],[4,33,4,31],[4,34,4,32],[4,35,4,33],[4,36,4,34],[4,37,4,35],[4,38,4,36],[4,39,4,37],[-1,-1,4,38],[-1,-1,-1,-1],[-1,-1,-1,-1]],"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scafLoop":[],"stapLoop":[],"stap_colors":[[39,8947848]]},{"row":12,"col":17,"num":5,"scaf":[[5,1,-1,-1],[5,2,5,0],[5,3,5,1],[-1,-1,5,2],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[5,10,4,9],[5,11,5,9],[5,12,5,10],[5,13,5,11],[5,14,5,12],[5,15,5,13],[5,16,5,14],[5,17,5,15],[5,18,5,16],[5,19,5,17],[5,20,5,18],[5,21,5,19],[5,22,5,20],[-1,-1,5,21],[5,24,-1,-1],[5,25,5,23],[5,26,5,24],[5,27,5,25],[5,28,5,26],[5,29,5,27],[5,30,5,28],[5,31,5,29],[5,32,5,30],[5,33,5,31],[5,34,5,32],[5,35,5,33],[5,36,5,34],[5,37,5,35],[5,38,5,36],[5,39,5,37],[4,39,5,38],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,5,10],[5,9,5,11],[5,10,5,12],[5,11,5,13],[5,12,5,14],[5,13,5,15],[5,14,5,16],[5,15,5,17],[5,16,5,18],[5,17,5,19],[5,18,5,20],[5,19,5,21],[5,20,5,22],[5,21,5,23],[5,22,5,24],[5,23,5,25],[5,24,5,26],[5,25,5,27],[5,26,0,27],[0,28,5,29],[5,28,5,30],[5,29,5,31],[5,30,5,32],[5,31,5,33],[5,32,5,34],[5,33,5,35],[5,34,5,36],[5,35,5,37],[5,36,5,38],[5,37,5,39],[5,38,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scafLoop":[],"stapLoop":[],"stap_colors":[[9,0]]}]} \ No newline at end of file diff --git a/mrdna/readers/test.seq.json b/mrdna/readers/test.seq.json new file mode 100644 index 0000000..ff7a17c --- /dev/null +++ b/mrdna/readers/test.seq.json @@ -0,0 +1 @@ +{"name":"test.seq.json","vstrands":[{"row":12,"col":16,"num":0,"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[1,5,0,6],[0,5,0,7],[0,6,0,8],[0,7,0,9],[0,8,0,10],[0,9,0,11],[0,10,0,12],[0,11,0,13],[0,12,0,14],[0,13,0,15],[0,14,0,16],[0,15,0,17],[0,16,0,18],[0,17,0,19],[0,18,0,20],[0,19,0,21],[0,20,0,22],[0,21,0,23],[0,22,0,24],[0,23,0,25],[0,24,0,26],[0,25,0,27],[0,26,0,28],[0,27,0,29],[0,28,0,30],[0,29,0,31],[0,30,0,32],[0,31,0,33],[0,32,0,34],[0,33,0,35],[0,34,0,36],[0,35,1,36],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,0,40],[0,39,0,41],[0,40,-1,-1]],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[0,3,-1,-1],[0,4,0,2],[0,5,0,3],[0,6,0,4],[0,7,0,5],[0,8,0,6],[0,9,0,7],[0,10,0,8],[0,11,0,9],[0,12,0,10],[0,13,0,11],[0,14,0,12],[0,15,0,13],[0,16,0,14],[0,17,0,15],[0,18,0,16],[0,19,0,17],[0,20,0,18],[1,20,0,19],[0,22,1,21],[0,23,0,21],[-1,-1,0,22],[0,25,-1,-1],[0,26,0,24],[0,27,0,25],[5,27,0,26],[0,29,5,28],[0,30,0,28],[0,31,0,29],[0,32,0,30],[0,33,0,31],[0,34,0,32],[0,35,0,33],[0,36,0,34],[0,37,0,35],[0,38,0,36],[-1,-1,0,37],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scafLoop":[],"stapLoop":[],"stap_colors":[[23,13369809],[38,12060012]]},{"row":12,"col":15,"num":1,"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[1,6,0,5],[1,7,1,5],[1,8,1,6],[1,9,1,7],[1,10,1,8],[1,11,1,9],[1,12,1,10],[1,13,1,11],[1,14,1,12],[1,15,1,13],[1,16,1,14],[1,17,1,15],[1,18,1,16],[2,18,1,17],[1,20,2,19],[1,21,1,19],[1,22,1,20],[1,23,1,21],[1,24,1,22],[1,25,1,23],[1,26,1,24],[1,27,1,25],[1,28,1,26],[1,29,1,27],[1,30,1,28],[1,31,1,29],[1,32,1,30],[1,33,1,31],[1,34,1,32],[1,35,1,33],[1,36,1,34],[0,36,1,35],[-1,-1,-1,-1],[-1,-1,-1,-1],[1,40,-1,-1],[1,41,1,39],[-1,-1,1,40]],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,1,4],[1,3,1,5],[1,4,1,6],[1,5,1,7],[1,6,1,8],[1,7,1,9],[1,8,1,10],[1,9,1,11],[1,10,1,12],[1,11,1,13],[1,12,1,14],[1,13,1,15],[1,14,1,16],[1,15,1,17],[1,16,1,18],[1,17,1,19],[1,18,1,20],[1,19,0,20],[0,21,1,22],[1,21,1,23],[1,22,1,24],[1,23,1,25],[1,24,1,26],[1,25,1,27],[1,26,1,28],[1,27,1,29],[1,28,1,30],[1,29,1,31],[1,30,1,32],[1,31,1,33],[1,32,1,34],[1,33,1,35],[1,34,1,36],[1,35,1,37],[1,36,1,38],[1,37,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scafLoop":[],"stapLoop":[],"stap_colors":[[3,1501302]]},{"row":13,"col":15,"num":2,"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[3,2,2,3],[2,2,2,4],[2,3,2,5],[2,4,2,6],[2,5,2,7],[2,6,2,8],[2,7,2,9],[2,8,2,10],[2,9,2,11],[2,10,2,12],[2,11,2,13],[2,12,2,14],[2,13,2,15],[2,14,2,16],[2,15,2,17],[2,16,2,18],[2,17,1,18],[1,19,2,20],[2,19,2,21],[2,20,2,22],[2,21,2,23],[2,22,2,24],[2,23,2,25],[2,24,2,26],[2,25,2,27],[2,26,2,28],[2,27,2,29],[2,28,2,30],[2,29,2,31],[2,30,2,32],[2,31,3,32],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,2,40],[2,39,2,41],[2,40,-1,-1]],"stap":[[2,1,-1,-1],[2,2,2,0],[2,3,2,1],[2,4,2,2],[2,5,2,3],[2,6,2,4],[2,7,2,5],[2,8,2,6],[2,9,2,7],[2,10,2,8],[2,11,2,9],[2,12,2,10],[2,13,2,11],[2,14,2,12],[2,15,2,13],[2,16,2,14],[2,17,2,15],[2,18,2,16],[2,19,2,17],[2,20,2,18],[2,21,2,19],[2,22,2,20],[2,23,2,21],[2,24,2,22],[2,25,2,23],[2,26,2,24],[2,27,2,25],[2,28,2,26],[2,29,2,27],[2,30,2,28],[2,31,2,29],[2,32,2,30],[2,33,2,31],[2,34,2,32],[-1,-1,2,33],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scafLoop":[],"stapLoop":[],"stap_colors":[[34,8947848]]},{"row":13,"col":16,"num":3,"scaf":[[-1,-1,-1,-1],[-1,-1,-1,-1],[3,3,2,2],[3,4,3,2],[3,5,3,3],[3,6,3,4],[3,7,3,5],[3,8,3,6],[3,9,3,7],[3,10,3,8],[3,11,3,9],[3,12,3,10],[3,13,3,11],[3,14,3,12],[3,15,3,13],[4,15,3,14],[3,17,4,16],[3,18,3,16],[3,19,3,17],[3,20,3,18],[3,21,3,19],[3,22,3,20],[3,23,3,21],[3,24,3,22],[3,25,3,23],[3,26,3,24],[3,27,3,25],[3,28,3,26],[3,29,3,27],[3,30,3,28],[3,31,3,29],[3,32,3,30],[2,32,3,31],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[3,38,-1,-1],[3,39,3,37],[3,40,3,38],[3,41,3,39],[-1,-1,3,40]],"stap":[[-1,-1,3,1],[3,0,3,2],[3,1,3,3],[3,2,3,4],[3,3,3,5],[3,4,3,6],[3,5,3,7],[3,6,3,8],[3,7,3,9],[3,8,3,10],[3,9,3,11],[3,10,3,12],[3,11,3,13],[3,12,3,14],[3,13,3,15],[3,14,3,16],[3,15,3,17],[3,16,3,18],[3,17,3,19],[3,18,3,20],[3,19,4,20],[4,21,3,22],[3,21,3,23],[3,22,3,24],[3,23,3,25],[3,24,3,26],[3,25,3,27],[3,26,3,28],[3,27,3,29],[3,28,3,30],[3,29,3,31],[3,30,3,32],[3,31,3,33],[3,32,3,34],[3,33,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scafLoop":[],"stapLoop":[],"stap_colors":[[0,13369344]]},{"row":13,"col":17,"num":4,"scaf":[[-1,-1,4,1],[4,0,4,2],[4,1,4,3],[4,2,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[5,9,4,10],[4,9,4,11],[4,10,4,12],[4,11,4,13],[4,12,4,14],[4,13,4,15],[4,14,3,15],[3,16,4,17],[4,16,4,18],[4,17,4,19],[4,18,4,20],[4,19,4,21],[4,20,4,22],[4,21,4,23],[4,22,4,24],[4,23,4,25],[4,24,4,26],[4,25,4,27],[4,26,4,28],[4,27,4,29],[4,28,4,30],[4,29,4,31],[4,30,4,32],[4,31,4,33],[4,32,4,34],[4,33,4,35],[4,34,4,36],[4,35,4,37],[4,36,4,38],[4,37,4,39],[4,38,5,39],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[4,10,-1,-1],[4,11,4,9],[4,12,4,10],[4,13,4,11],[4,14,4,12],[4,15,4,13],[4,16,4,14],[4,17,4,15],[4,18,4,16],[4,19,4,17],[4,20,4,18],[3,20,4,19],[4,22,3,21],[4,23,4,21],[4,24,4,22],[4,25,4,23],[4,26,4,24],[4,27,4,25],[4,28,4,26],[4,29,4,27],[4,30,4,28],[4,31,4,29],[4,32,4,30],[4,33,4,31],[4,34,4,32],[4,35,4,33],[4,36,4,34],[4,37,4,35],[4,38,4,36],[4,39,4,37],[-1,-1,4,38],[-1,-1,-1,-1],[-1,-1,-1,-1]],"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scafLoop":[],"stapLoop":[],"stap_colors":[[39,8947848]]},{"row":12,"col":17,"num":5,"scaf":[[5,1,-1,-1],[5,2,5,0],[5,3,5,1],[-1,-1,5,2],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[5,10,4,9],[5,11,5,9],[5,12,5,10],[5,13,5,11],[5,14,5,12],[5,15,5,13],[5,16,5,14],[5,17,5,15],[5,18,5,16],[5,19,5,17],[5,20,5,18],[5,21,5,19],[5,22,5,20],[-1,-1,5,21],[5,24,-1,-1],[5,25,5,23],[5,26,5,24],[5,27,5,25],[5,28,5,26],[5,29,5,27],[5,30,5,28],[5,31,5,29],[5,32,5,30],[5,33,5,31],[5,34,5,32],[5,35,5,33],[5,36,5,34],[5,37,5,35],[5,38,5,36],[5,39,5,37],[4,39,5,38],[-1,-1,-1,-1],[-1,-1,-1,-1]],"stap":[[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1],[-1,-1,5,10],[5,9,5,11],[5,10,5,12],[5,11,5,13],[5,12,5,14],[5,13,5,15],[5,14,5,16],[5,15,5,17],[5,16,5,18],[5,17,5,19],[5,18,5,20],[5,19,5,21],[5,20,5,22],[5,21,5,23],[5,22,5,24],[5,23,5,25],[5,24,5,26],[5,25,5,27],[5,26,0,27],[0,28,5,29],[5,28,5,30],[5,29,5,31],[5,30,5,32],[5,31,5,33],[5,32,5,34],[5,33,5,35],[5,34,5,36],[5,35,5,37],[5,36,5,38],[5,37,5,39],[5,38,-1,-1],[-1,-1,-1,-1],[-1,-1,-1,-1]],"loop":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"skip":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"scafLoop":[],"stapLoop":[],"stap_colors":[[9,0]]}]} \ No newline at end of file -- GitLab