From 8363b1b6c83c361731145725a035e80a911db7f7 Mon Sep 17 00:00:00 2001 From: Docker Build Date: Sat, 9 May 2026 14:38:55 -0400 Subject: [PATCH] Paragon: ship class-12 SkillLineAbility overlay so proficiency passives auto-learn Companion to 2026_05_09_00.sql (DBC overlay for chrclasses + srci) and 2026_05_10_01.sql (proficiency skill rows in playercreateinfo_skills). Those two grant the SKILL (Maces, Shield, Cloth, ...) to Paragon at character creation; this one opens the SkillLineAbility rows that CASCADE skill -> passive spell, so when a fresh Paragon is created AC's `Player::LearnDefaultSkill` actually grants the proficiency passives: Block (107), Parry (3127), Dual Wield (674), Defense, weapon Shoot, racial Mace/Sword Specialization, ... Without this overlay, a class-12 Paragon spawns with the right skill rows but a near-empty spellbook past the racials and class defaults that come from playercreateinfo_action. How it works ------------ AC's DBCStores.cpp::LoadDBC loads each store from the on-disk .dbc file first, then merges _dbc world-DB rows on top. Our patched client SkillLineAbility.dbc (in patch-enUS-4.MPQ) OR's the class-12 bit (0x800) into ClassMask on 3,314 rows -- the same rows the server needs for the cascade to fire on Paragon. Stock Docker installs use the upstream `ac-wotlk-client-data` image which fills data/dbc/ from a vanilla 3.3.5a extract, so without this SQL overlay the server runs against an unmodified SkillLineAbility.dbc and the cascade never fires. Generation ---------- Auto-generated end-to-end by `fractured-tooling/from-workspace-root/_gen_paragon_dbc_overlay_sql.py`, extended in this commit to handle SkillLineAbility.dbc (14-int WotLK layout, 56 bytes per record). The script diffs patched vs stock by ID, keeps only rows whose stock ClassMask did NOT include the class-12 bit but whose patched ClassMask does, and emits the 3,314 REPLACE INTO rows. Re-running with the same inputs is byte- stable. Verified locally ---------------- - Migration applies twice in a row at exactly 3,314 SQL overlay rows (idempotent: DELETE WHERE ID IN (...) before INSERT). - ac-worldserver restart logs: >> Loaded 10219 SkillLineAbility MultiMap Data -- the same total as stock (10,219 rows), confirming our overlay REPLACES existing rows by ID rather than appending duplicates. - Spot-checked spell IDs: 107 (Block, ClassMask 2115 = warrior + paladin + dk + Paragon), 3127 (Parry, 2063), 674 (Dual Wield, 2157), 75 (Auto Shoot, 2052) all carry the 0x800 bit. Existing characters ------------------- The cascade fires inside Player::Create and Player::LearnDefaultSkill at character spawn, so existing class-12 characters created before this migration keep their broken state. Delete and re-roll, or hand- grant the missing spells via .learn for individual existing chars. CLIENT-PATCHES.md updated to add the third symptom ("proficiency skills exist but passive spells don't auto-learn") and document this migration as the fourth piece of the class-12 bootstrap. Co-authored-by: Cursor --- .../fractured-dev-extras/CLIENT-PATCHES.md | 38 +- .../sql/db-world/updates/2026_05_10_02.sql | 3345 +++++++++++++++++ 2 files changed, 3372 insertions(+), 11 deletions(-) create mode 100644 modules/mod-paragon/data/sql/db-world/updates/2026_05_10_02.sql diff --git a/contrib/fractured-dev-extras/CLIENT-PATCHES.md b/contrib/fractured-dev-extras/CLIENT-PATCHES.md index ef284eb..c58402b 100644 --- a/contrib/fractured-dev-extras/CLIENT-PATCHES.md +++ b/contrib/fractured-dev-extras/CLIENT-PATCHES.md @@ -56,13 +56,14 @@ If the **client** shows the Paragon class on the create screen but the server replies **Character Creation Failed** (sometimes shown as "Error creating character") when you pick it -- **or** the character is created but spawns with no weapon / armor proficiencies (auto-attack -greys out, can't equip anything beyond a fist) -- the worldserver is -missing one of three pieces of class-12 data. All ship as SQL -migrations under `modules/mod-paragon/data/sql/db-world/updates/` -and are auto-applied by AzerothCore's DBUpdater on every -`ac-db-import` run, but the SQL files are baked into the dbimport -Docker image at build time -- so a stale image won't pick up new -migrations. Fix: +greys out, can't equip anything beyond a fist), or with the proficiency +**skills** but no **passive spells** like Block, Parry, Dual Wield -- +the worldserver is missing one of four pieces of class-12 data. All +ship as SQL migrations under +`modules/mod-paragon/data/sql/db-world/updates/` and are auto-applied +by AzerothCore's DBUpdater on every `ac-db-import` run, but the SQL +files are baked into the dbimport Docker image at build time -- so a +stale image won't pick up new migrations. Fix: ```bash git pull origin main @@ -71,7 +72,12 @@ docker compose up -d ac-db-import docker compose restart ac-worldserver ``` -The three migrations: +Existing class-12 characters created before these migrations will +keep their broken state -- the cascade only fires inside +`Player::Create` and `Player::LearnDefaultSkill` at character spawn. +Delete the old Paragon and re-roll after the rebuild. + +The four migrations: - `2026_05_09_00.sql` -- DBC overlay rows for `chrclasses_dbc` and `skillraceclassinfo_dbc`. Without this the server can't even @@ -88,12 +94,22 @@ The three migrations: armor proficiency at level 1. Without this a Paragon spawns with only the universal `classMask = 0` skills (Defense, Unarmed, Cloth, languages, Mounts) -- no Swords, no Mail, no Shield, etc. +- `2026_05_10_02.sql` -- 3,314 `skilllineability_dbc` rows opening + the class-12 bit on every SkillLineAbility row our patched + `SkillLineAbility.dbc` modified. AC reads these rows in + `Player::LearnDefaultSkill` to drive the `skill -> passive spell` + cascade. Without it the proficiency *skills* from `_01.sql` exist + but the *passive spells* (Block, Parry, Dual Wield, Defense, + weapon Shoot, racial Mace/Sword Specialization, etc.) never auto- + learn, so the spellbook past the racials looks empty. After the rebuild + restart, `ac-worldserver` should log `>> Loaded 72 Player Create Definitions` (was 62 pre-Paragon), -`>> Loaded 1391 Player Create Skills` (was 1371), and character -creation succeeds for any DK-eligible race with a full weapon / -armor kit. +`>> Loaded 1391 Player Create Skills` (was 1371), +`>> Loaded 10219 SkillLineAbility MultiMap Data` (unchanged total -- +the SQL overlay replaces existing rows by ID, doesn't add new ones), +and character creation succeeds for any DK-eligible race with a full +weapon / armor kit and the matching passive spells. If the client **logs in** successfully but **disconnects immediately** when entering the realm: the auth server is handing your client the diff --git a/modules/mod-paragon/data/sql/db-world/updates/2026_05_10_02.sql b/modules/mod-paragon/data/sql/db-world/updates/2026_05_10_02.sql new file mode 100644 index 0000000..cbac18e --- /dev/null +++ b/modules/mod-paragon/data/sql/db-world/updates/2026_05_10_02.sql @@ -0,0 +1,3345 @@ +-- mod-paragon: SkillLineAbility overlay for class 12 (Paragon). +-- Auto-generated by fractured-tooling/from-workspace-root/ +-- _gen_paragon_dbc_overlay_sql.py +-- +-- Companion to 2026_05_09_00.sql (chrclasses + srci) and +-- 2026_05_10_01.sql (proficiency skill rows). Those grant the +-- *skill* (e.g. Maces / Shield / Cloth) to Paragon. This one +-- opens up the SkillLineAbility rows that *cascade* skill -> +-- passive spell, so when a fresh Paragon is created or logs in, +-- AC's `Player::LearnDefaultSkill` actually grants the +-- proficiency passives (Block, Parry, Dual Wield, Defense, +-- weapon Shoot, racial Mace/Sword Specialization, ...). +-- +-- Without this migration, a Paragon spawns with the right skill +-- rows but a near-empty spellbook past the racials and class +-- defaults that come from playercreateinfo_action. +-- +-- This file is regenerated end-to-end from patch-enUS-4.MPQ; +-- do not hand-edit. Update the patched DBC source and rerun +-- the bake script. + +-- skilllineability_dbc: rows where patch-enUS-4 OR'd the +-- class-12 bit (0x800) into ClassMask, so the +-- AC `Player::LearnDefaultSkill` cascade auto-grants weapon / +-- armor proficiency passives (Block, Parry, Dual Wield, Defense, +-- weapon Shoot, racial Mace/Sword Specialization, ...) to +-- Paragon characters. Replaces the stock row by ID. +DELETE FROM `skilllineability_dbc` WHERE `ID` IN ( + 69,472,474,751,1813,3592,3822,3823,4042,4224,4225,4226,4241,4242,4243,4669,4670,4671,4678,4705,4707,4716,5439,5440,5441,5448,5449,5450,5451,5452,5453,5454,5455,5471,5472,5476,5995,6356,6742,6743,6744,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6776,6777,6778,6816,6817,6818,6891,6893,7102,7103,7104,7136,7137,7138,7160,7418,7419,7420,13244,13644,13645,13646,13647,13648,13649,13651,13931,13954,13955,13956,14004,14127,14128,14129,14645,14689,14690,14691,14698,14699,14700,14701,14702,14703,14704,14705,14706,14707,14916,15031,15732,15911,15912,15922,15923,15924,15929,15930,15931,15932,15933,15934,15935,15936,15937,15938,15939,15940,15941,15956,15958,15965,15966,15985,15986,15987,15988,15989,15990,15991,16069,16070,16071,16072,16073,16074,16075,16076,16077,16078,16079,16080,16081,16082,16083,16140,16197,19146,19199,19200,19201,21382,455,460,470,1330,1331,1812,2976,4221,4222,4223,4666,4667,4668,4672,4673,4676,4677,4691,4692,4693,4694,4703,4704,5433,5434,5435,5436,5460,5461,5464,5465,5466,5469,5470,5473,5474,5906,5988,6556,6557,6558,6561,6656,6676,6677,6679,6680,6681,6682,6696,6697,6698,6699,6700,6701,6702,6704,6705,6706,6709,6716,6717,6718,6719,6720,6796,6797,6798,6799,6800,6801,7176,7177,7178,7179,10618,12381,12596,12597,12598,13245,13635,13636,13637,13638,13639,13640,13641,13642,13643,14073,14075,14076,14077,14388,14666,14667,14668,14669,14683,14684,14685,14686,14687,14688,14935,14936,15111,15113,15114,15115,15116,15161,15162,15163,15731,15909,15910,15913,15914,15915,15916,15917,15918,15927,15928,15942,15943,15944,15945,15957,15967,15968,15969,15970,15971,16052,16053,16054,16055,16057,16058,16059,16060,16061,16062,16063,16065,16066,16067,16068,16141,16428,19135,19137,19138,19139,19140,19291,19292,19294,19295,20989,20990,20991,20992,1401,1402,1403,1404,3979,3980,3981,3982,3995,6057,6058,6059,6060,6061,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,7130,11781,11978,12036,12037,12038,13163,13173,13178,13217,14158,14176,14178,14180,14242,14243,14245,14246,14250,14251,14266,14267,14268,14377,14378,15496,15497,15498,16308,16309,16310,16311,16312,16313,16314,16319,16320,16321,16400,16401,16402,16408,16409,16422,16423,16672,16673,16674,17291,17445,17509,19598,19599,19600,19601,19636,19637,19638,19793,20258,20259,20260,20994,20995,21023,21024,21029,3394,3395,3396,3397,3398,3399,4769,4781,5936,5937,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,7638,7639,7640,12039,13238,13239,13461,13542,13707,13708,13709,13710,14503,14504,14508,14509,14510,14894,15032,15033,15514,15515,15516,15517,15518,16670,16671,16675,16676,16677,16678,17716,17717,17718,17719,17720,17721,17722,17723,17726,17727,17728,17729,17730,17731,17750,19980,19981,19986,20622,3276,3965,6360,6361,6365,6366,6383,6384,6385,7822,7914,8055,9116,9856,9857,11739,13717,14575,14576,14577,14580,14581,14582,14583,14584,14585,14586,14587,14588,14609,14610,14611,14789,15687,16679,17732,17733,17734,17735,17736,17737,17738,17743,17744,17745,17746,17747,17748,17751,19962,19963,19987,19988,19989,19990,19991,19992,19993,19994,252,248,246,15696,251,15695,935,936,1790,7260,7261,7262,7263,7265,7266,7267,7268,7269,7270,7272,7273,7275,7396,7476,7477,7478,7695,7856,7857,7858,7859,7860,7861,7862,8417,11016,11017,11018,11038,11356,11464,11868,12912,12913,13232,13595,13613,13614,15141,15147,15205,15206,15207,15208,15209,15213,15214,15215,15216,15217,15218,15219,15220,15221,15248,15354,15355,16785,16786,16845,20723,20724,20785,7288,7289,7290,7292,7337,7534,7587,7588,7589,7863,7864,7865,7866,7867,7868,7869,7872,7873,7874,7877,7878,7879,7880,7881,7882,7883,7884,10826,10827,10828,10891,10893,10921,10930,11319,11320,11321,11322,11323,11324,11325,11326,12556,12557,12558,12824,12825,12826,12827,12828,12880,12886,12887,12888,12889,13046,13047,13048,13049,13050,13051,13053,13054,13596,13598,13602,13603,13609,13610,13611,15173,15174,15175,15176,15177,15178,15179,15180,15181,15182,15183,15184,15185,15186,15187,15243,15254,15255,15256,15257,15258,15259,15260,15319,15320,15321,15356,15698,16789,16790,16791,16792,16804,16805,16806,16807,16834,16835,16836,16837,16838,16839,16840,16841,16842,18029,20264,20668,20856,20857,20858,20859,20860,20861,254,256,2313,2314,2315,2316,2317,2319,2320,2321,2322,2323,2325,2326,2327,2331,2332,3776,3777,3778,3779,3787,3790,3791,3792,3793,3794,3795,5107,5108,5109,5110,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5855,5856,5869,5870,8178,8275,8277,8278,8279,8280,8281,8282,8356,8357,10616,10839,10840,10841,10842,10843,10844,11793,12601,12602,12603,13185,13186,13189,13190,13191,13192,13194,13213,13214,13215,13216,13220,13221,13222,13223,13252,13267,13268,13823,13824,13825,13826,13827,13828,13829,13830,13832,13833,13834,13835,13836,13837,13838,13839,13850,13851,13852,13853,13854,13855,13856,13857,13858,14944,14945,14946,14947,14948,14949,14950,14954,14955,14956,14957,14958,15018,15019,15050,15051,15250,15251,15261,15262,15263,15264,15265,15266,15267,16519,16520,16523,16524,16525,16526,16527,16530,16531,16532,16533,16534,16535,16536,16537,16538,16539,16540,16541,16544,16545,16547,16548,16555,16556,16584,16585,16586,21025,21285,2337,2340,2346,2347,2348,2349,2350,4025,4522,4523,4524,4525,4526,4527,4528,4529,4545,5166,5831,5832,5833,5834,5835,5836,5837,5859,5862,5863,5864,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8262,8263,8264,8266,8267,8268,8270,8271,8272,8273,8274,8328,8336,8376,8377,8378,9836,9837,9838,9839,9841,9842,10180,10617,10876,10877,10878,10879,10880,13224,13225,13241,13242,13253,13265,13282,13810,13846,13847,14839,14938,14982,14983,14984,14985,14986,14987,14988,14989,15024,15025,15249,15294,15295,15296,15299,15300,15301,15306,15307,15308,15310,15754,16550,16551,16552,16553,16571,16572,16573,16574,16575,16576,16582,16583,16605,16606,17182,2200,2201,3370,7336,10636,13068,13093,15058,16245,17542,610,11708,11711,11712,12041,15034,15035,18904,21040,20665,1839,1840,1841,4414,4415,4417,5766,5767,5768,10488,10489,17878,17879,19181,20720,17871,17872,17873,17874,17875,17876,17877,716,717,719,862,2075,2077,3304,3305,3306,3307,3310,3311,3313,3314,3315,3318,3470,4060,4063,4064,4067,4069,4071,4072,4073,4074,4075,4140,4962,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,5128,5129,5130,5131,5150,5206,5207,5210,5211,5246,5247,5248,5249,5250,5251,5252,5259,5260,5261,5262,5270,5271,5276,5277,5280,5281,5282,5283,5285,5287,6036,6037,6252,6255,9493,9494,10460,11780,12016,12256,12257,12327,12328,12329,12345,12348,13085,13581,13582,13583,13585,13586,13587,13588,13589,13590,13591,13592,13593,13594,14491,14708,15020,15048,15090,15091,15094,15095,15096,15097,15098,15101,15102,15103,15106,15107,15108,15119,15121,15142,15143,15144,15145,15164,15165,15167,15703,15704,15832,16646,16647,16649,16650,16651,16652,16653,16654,16655,16656,16657,16658,16659,16660,16661,16662,16663,16665,16666,16667,16668,16669,17177,17178,17179,17180,17181,17449,17890,20633,20741,20794,20888,21284,700,3214,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7885,7886,7887,7888,7889,7890,7891,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,11784,13233,13234,13599,13604,13606,13607,13608,15191,15192,15196,15197,15198,15199,15200,15201,15202,15203,15204,15315,15316,15317,15318,15357,15358,15359,15360,15361,15362,15363,15364,15365,15649,15981,15982,15983,15984,16793,16794,16825,16826,16828,16829,16830,16831,16832,16833,18032,19639,20406,20407,3213,1387,13820,13821,13822,15148,17893,20867,20868,6496,6497,6498,6499,6500,11216,11217,11218,11219,11220,11221,11549,13231,13369,13372,13376,13377,13378,13379,13380,13382,13383,13385,13386,13387,13388,13454,13691,13692,13702,14760,14761,14762,14763,14766,14767,14768,14769,14770,14774,14776,14777,14778,14779,14783,14784,14787,14788,14808,15493,15494,15495,16628,16629,16630,16631,16708,16709,16753,16754,16755,16756,18097,18098,18101,18103,18104,18105,18109,18112,18113,18145,18149,18150,18151,18157,18158,18159,18160,18161,18264,18299,18308,18311,18314,18510,20154,20155,20156,20191,20243,15833,15850,15851,15852,15853,15854,15855,15856,15857,15858,15859,16248,16249,16250,16251,16252,16253,16254,16255,16256,16257,16258,19559,19576,19588,19589,19590,19591,19592,19593,20653,20654,20655,20759,2929,15697,2927,2935,2928,3248,3249,3250,3255,3256,3257,3258,3267,3269,3270,3271,3272,3273,3274,4674,4675,4686,4687,4688,4689,4696,4697,4698,4699,4700,4702,4717,4719,5437,5438,5444,5445,5446,5447,5457,5458,5459,5462,5463,5467,5468,5726,5989,5990,5991,5992,5993,5994,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6833,6834,6990,6992,7031,7182,7184,12316,12317,12318,12330,12397,13246,13652,13653,13654,13655,13657,13658,13659,13661,13662,13663,13926,13927,13953,14006,14130,14131,14135,14386,14646,14647,14648,14649,14650,14651,14652,14653,14654,14655,14656,14660,14661,14664,14665,14815,14816,14817,14818,15039,15040,15041,15117,15118,15521,15522,15606,15607,15705,15729,15730,15905,15906,15919,15920,15921,15925,15926,15946,15947,15953,15954,15955,15959,15960,15961,15962,15963,15964,16019,16030,16031,16035,16036,16037,16038,16039,16040,16041,16042,16043,16047,16051,16146,16147,16999,17000,17003,17004,18007,18008,18538,18890,18891,18892,18893,18894,18895,19095,19097,19114,19115,19287,19288,19289,20054,20095,20715,4033,4037,4038,4050,4051,4052,4770,4771,4772,4773,4774,4778,4779,4827,4828,4829,5939,5940,5941,5945,5946,5947,5948,5949,5950,5951,6386,6387,6388,6389,6390,13547,13711,13713,13714,13715,13716,14489,14589,14590,14597,14598,14599,14607,14608,14614,14615,14616,14734,14798,14799,14895,14908,14909,15168,15169,15170,16680,16681,16682,16683,16685,16686,16687,16688,16689,16690,16691,16692,16693,17694,17695,17696,17697,17698,17701,17702,17703,17704,17705,17706,17707,17708,17709,17710,17711,17712,17713,17714,17715,17749,19966,19967,19985,19995,19996,19997,21723,4724,4886,4888,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6093,6094,6095,6096,6097,6098,6099,10484,11657,11705,11736,11759,11760,11776,11777,11778,11779,12116,12656,12657,12658,12659,12660,12776,12777,12778,13149,13161,13162,13168,13169,13170,13171,13172,14161,14162,14163,14164,14165,14168,14169,14171,14177,14291,14801,14802,14803,15171,15503,15504,16325,16326,16327,16328,16330,16331,16333,16334,16335,16396,16397,16398,16399,16404,16405,16406,16407,16425,16426,16427,19386,19514,19645,19649,19650,19651,19652,19653,20390,20490,20491,20492,21021,21022,3424,3427,4278,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6114,6974,6975,12796,12797,12798,12799,13158,13160,13177,13181,13184,14142,14143,14147,14148,14151,14152,14153,14173,14174,14175,14271,14272,14273,14382,14383,15513,16199,16346,16347,16349,16350,16352,16353,16354,16357,16392,16393,16394,16410,16411,16418,16419,17525,17526,17527,17536,19750,19959,20101,20102,20103,20130,20131,20261,20262,20263,3530,3531,3532,5522,5523,5524,5525,6530,6531,6532,6533,6535,6536,6537,10464,11256,11257,11258,11259,11260,11261,11262,11263,11264,11545,11546,11882,11916,13345,13356,13357,13358,13359,13360,13364,13368,13448,13449,13450,13452,13455,13456,13701,13703,13704,13705,13706,14710,14711,14741,14742,14743,14749,14750,14751,14754,14755,14758,14759,14780,14910,14911,15052,16763,16764,16765,16767,16769,16772,16773,17585,17586,18176,18186,18187,18188,18189,18190,18236,18237,18238,18239,18240,18251,18252,18294,18295,18296,18297,18298,20721,20743,20851,20852,20853,20854,20855,20923,21002,21003,4141,4326,4327,4328,4329,4330,4331,4332,6165,6166,6167,6168,6169,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6460,6461,6462,6464,6467,6468,9996,10018,10019,10077,10107,10108,10109,10336,10477,10478,10497,10498,10622,11032,11789,11790,11791,11792,12517,12736,12737,12738,12739,12740,12741,12742,12743,12744,12745,12746,12747,12748,12749,12750,12751,12752,12753,12754,12755,12756,12757,12758,12759,12760,13735,13746,13747,13749,13750,13906,13907,13908,14005,14249,14297,14298,14299,14306,14317,14318,14319,14320,14321,14339,14340,14341,14344,14812,14813,15575,15576,15577,15601,15602,15603,15604,15605,16467,16479,16480,16481,16482,16483,16484,16485,16486,16487,16488,16489,16514,16515,20108,20109,20464,20658,20813,20814,4333,4334,4336,4340,4341,4342,4343,4410,6156,6157,6159,6160,6161,6162,6163,6164,6451,6452,6453,6454,10057,10076,10100,10116,10144,10145,10146,10147,10148,10149,10150,10151,10152,10153,10154,10155,10156,10160,10161,10162,10163,10203,10204,10205,10238,10679,10683,10684,13249,13557,13725,13734,13736,13737,13739,13741,13742,13744,13752,14284,14285,14286,14287,14288,14289,14290,14296,14809,14825,14826,14827,14829,14830,14831,14832,14833,14834,14835,14836,14837,14838,14840,14841,14842,14846,14847,14848,15520,15648,16367,16368,16388,16389,16390,16391,16440,16441,16456,16457,16458,16459,16462,16463,16466,16468,16470,16471,16474,16475,16476,16478,16604,16613,18320,19964,20002,20135,20136,20137,20138,20809,4480,4499,4500,4501,4502,4532,4572,4573,4725,5588,5589,5636,5639,5640,5641,8700,8701,8702,8747,8748,8749,8750,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8967,8975,8990,8991,8992,8993,8994,8995,8996,9016,9017,9565,9860,13151,13193,13227,13284,13285,13289,13294,13295,13297,13299,13309,13311,13312,13315,14078,14079,14080,14081,14082,14104,14105,14126,14436,14437,14438,14439,14440,14441,14442,14443,14444,14445,14446,14447,14448,14449,14450,14451,14452,14455,14456,14793,14794,14795,15347,15639,15700,15972,15973,16988,16989,16990,16991,19765,20063,20064,20065,20066,20067,20068,20069,20070,20072,20079,20080,20081,20082,20084,20085,20086,20087,20248,20288,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4539,4544,5569,5570,5598,5599,5600,5601,5602,5626,5627,5628,5648,5649,5650,8696,8699,8876,8877,8878,8910,11732,11798,11799,11800,11801,11996,13148,13228,13258,13259,13260,13261,13262,13313,13314,14085,14086,14087,14101,14102,14103,14106,14107,14108,14109,14457,14458,14459,14460,14461,14462,14465,14466,14467,14471,14472,14473,14474,14475,14796,14797,14892,14893,15042,15699,16982,16983,16984,16985,16986,16987,16992,16993,17788,19965,20073,20074,20075,20076,20077,20078,20159,20160,4456,4457,4458,4459,4468,4469,4470,4471,4481,5576,5577,5578,5590,5591,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8743,8744,8745,8746,13270,13271,13273,13274,13276,13278,13281,13298,13302,13304,13305,13306,14050,14051,14052,14053,14054,14055,14056,14057,14096,14097,14099,14100,14110,14307,14410,14411,14412,14415,14416,14417,14423,14424,14425,14426,14427,14428,14431,14432,16962,16963,16964,16965,16966,16967,16968,16969,16970,16971,16978,16979,16980,16981,17644,17645,19790,19791,19792,19968,20055,20056,20057,20058,20059,20060,20061,20062,20132,20133,20134,20235,20663,20664,20837,20838,21724,4997,4998,4999,5006,8438,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6349,6350,6351,6352,9545,11656,11785,11786,11787,11788,12096,12097,13088,13089,13090,13091,13094,13095,13096,13097,13098,13236,13237,13559,13560,13561,13562,13563,13564,13574,13575,13579,15049,15077,15078,15079,15080,15081,15082,15083,15084,15085,15086,15089,15152,15153,15154,15413,15414,15415,15416,16614,16615,16622,16623,16624,16625,16626,16627,16641,16642,16645,17366,17455,18166,18167,18168,19960,19961,21049,21102,6309,6310,6311,6312,6313,6314,6315,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6353,6354,6355,9356,9395,9876,9877,9878,9879,9891,9892,9893,10499,10500,10501,10737,12324,13083,13084,13086,13235,13565,13566,13567,13568,13569,13570,13571,13576,13580,15057,15059,15060,15061,15062,15063,15064,15065,15066,15068,15069,15070,15071,15072,15073,15074,15075,15120,15158,15406,15407,15408,15409,15411,15412,15417,15418,15611,15974,15978,15979,15980,16632,16633,16634,16635,16636,16637,16638,16640,17467,18025,18026,18027,18169,18170,18171,20662,20710,20711,20712,20713,20729,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,10039,10040,10091,10094,10095,10096,10097,10098,10099,10117,10656,10657,10658,10659,10660,13247,13248,13723,13724,13726,13727,13728,13729,13730,13731,14160,14326,14327,14328,14329,14330,14331,14332,14333,14334,14335,14336,14337,14810,14844,14845,15311,15312,15313,15314,15352,15608,15650,15992,15993,15994,15995,15996,16436,16437,16438,16439,16442,16443,16444,16445,16446,16447,16448,16449,16450,16451,16452,16453,16460,16461,16464,16465,16513,17537,19982,20139,20140,20141,20507,21722,6501,6502,6503,6504,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6521,6526,6527,6528,6529,7594,11245,11246,11247,11248,11249,11276,11277,11278,11279,11280,11281,11536,11537,11538,11539,11540,11541,11605,11606,11607,11641,11794,11795,11796,11797,11896,11897,11957,12518,13229,13230,13349,13350,13351,13354,13355,13366,13394,13395,13421,13444,13445,13446,13447,13453,13664,13665,13666,13667,13668,13670,13671,13672,13676,13680,13693,13694,13935,13936,13937,13938,13939,13940,14713,14714,14715,14716,14717,14718,14719,14720,14721,14722,14723,14724,14725,14728,14729,14730,14731,14733,14923,14940,14941,14942,15252,15253,16699,16700,16701,16702,16703,16705,16706,16710,16711,16712,16713,16714,16715,16716,16717,16718,16719,16757,16758,16759,16760,16770,16771,18191,18192,18193,18194,18207,18208,18210,18211,18217,18228,18229,18253,18266,18267,18268,18269,18270,18271,18272,18273,18274,18275,18276,18282,18283,18287,18523,18525,18526,18527,18528,18529,18887,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7950,7951,7956,7972,7973,8003,8004,9580,12042,12043,13187,13188,13195,13255,13256,13264,13809,13831,13840,13841,13848,14823,14939,14959,14975,14976,14979,14980,14981,15289,15290,15291,16049,16161,16163,16164,16165,16166,16167,16168,16521,16522,16528,16529,16563,16577,16578,16581,8439,13338,14013,17510,14022,14023,14024,20142,20171,20172,20173,20174,20175,20176,20177,20178,20179,20180,20181,20182,15030,19184,16229,16430,16616,16695,16696,17016,17282,17283,17284,17545,20151,20152,20153,16230,16231,16431,16432,16611,16707,17254,17255,17256,17257,17546,17555,18034,18108,20226,20646,16232,16233,16237,16238,16291,16433,16434,16435,16612,16694,16698,16939,17101,17103,17250,17251,17252,17253,17265,17266,17267,17268,17269,17279,17280,17281,17562,17761,17762,17763,17764,17765,18121,18122,18123,18124,18125,18126,18127,18888,18889,20748,21341,20089,20090,20091,20092 +); +INSERT INTO `skilllineability_dbc` (`ID`,`SkillLine`,`Spell`,`RaceMask`,`ClassMask`,`ExcludeRace`,`ExcludeClass`,`MinSkillLineRank`,`SupercededBySpell`,`AcquireMethod`,`TrivialSkillLineRankHigh`,`TrivialSkillLineRankLow`,`CharacterPoints_1`,`CharacterPoints_2`) VALUES + (69,6,116,0,2176,0,0,1,0,0,0,0,0,0), + (472,6,205,0,2176,0,0,1,0,0,0,0,0,0), + (474,6,122,0,2176,0,0,1,0,0,0,0,0,0), + (751,6,865,0,2176,0,0,1,0,0,0,0,0,0), + (1813,6,837,0,2176,0,0,1,0,0,0,0,0,0), + (3592,6,10,0,2176,0,0,1,0,0,0,0,0,0), + (3822,6,6141,0,2176,0,0,1,0,0,0,0,0,0), + (3823,6,6143,0,2176,0,0,1,0,0,0,0,0,0), + (4042,6,6131,0,2176,0,0,1,0,0,0,0,0,0), + (4224,6,168,0,2176,0,0,1,0,2,0,0,0,0), + (4225,6,7300,0,2176,0,0,1,0,0,0,0,0,0), + (4226,6,7301,0,2176,0,0,1,0,0,0,0,0,0), + (4241,6,7302,0,2176,0,0,1,0,0,0,0,0,0), + (4242,6,7320,0,2176,0,0,1,0,0,0,0,0,0), + (4243,6,7322,0,2176,0,0,1,0,0,0,0,0,0), + (4669,6,8406,0,2176,0,0,1,0,0,0,0,0,0), + (4670,6,8407,0,2176,0,0,1,0,0,0,0,0,0), + (4671,6,8408,0,2176,0,0,1,0,0,0,0,0,0), + (4678,6,8427,0,2176,0,0,1,0,0,0,0,0,0), + (4705,6,8461,0,2176,0,0,1,0,0,0,0,0,0), + (4707,6,120,0,2176,0,0,1,0,0,0,0,0,0), + (4716,6,8492,0,2176,0,0,1,0,0,0,0,0,0), + (5439,6,10159,0,2176,0,0,1,0,0,0,0,0,0), + (5440,6,10160,0,2176,0,0,1,0,0,0,0,0,0), + (5441,6,10161,0,2176,0,0,1,0,0,0,0,0,0), + (5448,6,8462,0,2176,0,0,1,0,0,0,0,0,0), + (5449,6,10177,0,2176,0,0,1,0,0,0,0,0,0), + (5450,6,10179,0,2176,0,0,1,0,0,0,0,0,0), + (5451,6,10180,0,2176,0,0,1,0,0,0,0,0,0), + (5452,6,10181,0,2176,0,0,1,0,0,0,0,0,0), + (5453,6,10185,0,2176,0,0,1,0,0,0,0,0,0), + (5454,6,10186,0,2176,0,0,1,0,0,0,0,0,0), + (5455,6,10187,0,2176,0,0,1,0,0,0,0,0,0), + (5471,6,10219,0,2176,0,0,1,0,0,0,0,0,0), + (5472,6,10220,0,2176,0,0,1,0,0,0,0,0,0), + (5476,6,10230,0,2176,0,0,1,0,0,0,0,0,0), + (5995,6,11426,0,2176,0,0,1,0,0,0,0,0,0), + (6356,6,11958,0,2176,0,0,1,0,0,0,0,0,0), + (6742,6,12472,0,2176,0,0,1,0,0,0,0,0,0), + (6743,6,11070,0,2176,0,0,1,0,0,0,0,0,0), + (6744,6,12473,0,2176,0,0,1,0,0,0,0,0,0), + (6751,6,12484,0,2176,0,0,1,0,0,0,0,0,0), + (6752,6,11185,0,2176,0,0,1,0,0,0,0,0,0), + (6753,6,12487,0,2176,0,0,1,0,0,0,0,0,0), + (6754,6,12488,0,2176,0,0,1,0,0,0,0,0,0), + (6755,6,12485,0,2176,0,0,1,0,0,0,0,0,0), + (6756,6,12486,0,2176,0,0,1,0,0,0,0,0,0), + (6757,6,11190,0,2176,0,0,1,0,0,0,0,0,0), + (6758,6,12489,0,2176,0,0,1,0,0,0,0,0,0), + (6759,6,12490,0,2176,0,0,1,0,0,0,0,0,0), + (6760,6,11071,0,2176,0,0,1,0,0,0,0,0,0), + (6761,6,12494,0,2176,0,0,1,0,0,0,0,0,0), + (6762,6,12496,0,2176,0,0,1,0,0,0,0,0,0), + (6763,6,12497,0,2176,0,0,1,0,0,0,0,0,0), + (6776,6,11160,0,2176,0,0,1,0,0,0,0,0,0), + (6777,6,12518,0,2176,0,0,1,0,0,0,0,0,0), + (6778,6,12519,0,2176,0,0,1,0,0,0,0,0,0), + (6816,6,11175,0,2176,0,0,1,0,0,0,0,0,0), + (6817,6,12569,0,2176,0,0,1,0,0,0,0,0,0), + (6818,6,12571,0,2176,0,0,1,0,0,0,0,0,0), + (6891,6,11207,0,2176,0,0,1,0,0,0,0,0,0), + (6893,6,12672,0,2176,0,0,1,0,0,0,0,0,0), + (7102,6,11151,0,2176,0,0,1,0,0,0,0,0,0), + (7103,6,12952,0,2176,0,0,1,0,0,0,0,0,0), + (7104,6,12953,0,2176,0,0,1,0,0,0,0,0,0), + (7136,6,11170,0,2176,0,0,1,0,0,0,0,0,0), + (7137,6,12982,0,2176,0,0,1,0,0,0,0,0,0), + (7138,6,12983,0,2176,0,0,1,0,0,0,0,0,0), + (7160,6,11189,0,2176,0,0,1,0,0,0,0,0,0), + (7418,6,13031,0,2176,0,0,1,0,0,0,0,0,0), + (7419,6,13032,0,2176,0,0,1,0,0,0,0,0,0), + (7420,6,13033,0,2176,0,0,1,0,0,0,0,0,0), + (13244,6,25304,0,2176,0,0,1,0,0,0,0,0,0), + (13644,6,27071,0,2176,0,0,1,0,0,0,0,0,0), + (13645,6,27072,0,2176,0,0,1,0,0,0,0,0,0), + (13646,6,27088,0,2176,0,0,1,0,0,0,0,0,0), + (13647,6,27087,0,2176,0,0,1,0,0,0,0,0,0), + (13648,6,27085,0,2176,0,0,1,0,0,0,0,0,0), + (13649,6,27124,0,2176,0,0,1,0,0,0,0,0,0), + (13651,6,27134,0,2176,0,0,1,0,0,0,0,0,0), + (13931,6,28332,0,2176,0,0,1,0,0,0,0,0,0), + (13954,6,11180,0,2176,0,0,1,0,0,0,0,0,0), + (13955,6,28592,0,2176,0,0,1,0,0,0,0,0,0), + (13956,6,28593,0,2176,0,0,1,0,0,0,0,0,0), + (14004,6,28609,0,2176,0,0,1,0,0,0,0,0,0), + (14127,6,29438,0,2176,0,0,1,0,0,0,0,0,0), + (14128,6,29439,0,2176,0,0,1,0,0,0,0,0,0), + (14129,6,29440,0,2176,0,0,1,0,0,0,0,0,0), + (14645,6,30455,0,2176,0,0,1,0,0,0,0,0,0), + (14689,6,31687,0,2176,0,0,1,0,0,0,0,0,0), + (14690,6,31682,0,2176,0,0,1,0,0,0,0,0,0), + (14691,6,31683,0,2176,0,0,1,0,0,0,0,0,0), + (14698,6,31674,0,2176,0,0,1,0,0,0,0,0,0), + (14699,6,31675,0,2176,0,0,1,0,0,0,0,0,0), + (14700,6,31676,0,2176,0,0,1,0,0,0,0,0,0), + (14701,6,31677,0,2176,0,0,1,0,0,0,0,0,0), + (14702,6,31678,0,2176,0,0,1,0,0,0,0,0,0), + (14703,6,31670,0,2176,0,0,1,0,0,0,0,0,0), + (14704,6,31672,0,2176,0,0,1,0,0,0,0,0,0), + (14705,6,31667,0,2176,0,0,1,0,0,0,0,0,0), + (14706,6,31668,0,2176,0,0,1,0,0,0,0,0,0), + (14707,6,31669,0,2176,0,0,1,0,0,0,0,0,0), + (14916,6,32796,0,2176,0,0,1,0,0,0,0,0,0), + (15031,6,33405,0,2176,0,0,1,0,0,0,0,0,0), + (15732,6,38697,0,2176,0,0,1,0,0,0,0,0,0), + (15911,6,42841,0,2176,0,0,1,0,0,0,0,0,0), + (15912,6,42842,0,2176,0,0,1,0,0,0,0,0,0), + (15922,6,42913,0,2176,0,0,1,0,0,0,0,0,0), + (15923,6,42914,0,2176,0,0,1,0,0,0,0,0,0), + (15924,6,42917,0,2176,0,0,1,0,0,0,0,0,0), + (15929,6,42930,0,2176,0,0,1,0,0,0,0,0,0), + (15930,6,42931,0,2176,0,0,1,0,0,0,0,0,0), + (15931,6,42939,0,2176,0,0,1,0,0,0,0,0,0), + (15932,6,42940,0,2176,0,0,1,0,0,0,0,0,0), + (15933,6,42208,0,2176,0,0,1,0,0,0,0,0,0), + (15934,6,42209,0,2176,0,0,1,0,0,0,0,0,0), + (15935,6,42210,0,2176,0,0,1,0,0,0,0,0,0), + (15936,6,42211,0,2176,0,0,1,0,0,0,0,0,0), + (15937,6,42212,0,2176,0,0,1,0,0,0,0,0,0), + (15938,6,42213,0,2176,0,0,1,0,0,0,0,0,0), + (15939,6,42198,0,2176,0,0,1,0,0,0,0,0,0), + (15940,6,42938,0,2176,0,0,1,0,0,0,0,0,0), + (15941,6,42937,0,2176,0,0,1,0,0,0,0,0,0), + (15956,6,43008,0,2176,0,0,1,0,0,0,0,0,0), + (15958,6,43012,0,2176,0,0,1,0,0,0,0,0,0), + (15965,6,43038,0,2176,0,0,1,0,0,0,0,0,0), + (15966,6,43039,0,2176,0,0,1,0,0,0,0,0,0), + (15985,6,42208,0,2176,0,0,1,0,0,0,0,0,0), + (15986,6,42209,0,2176,0,0,1,0,0,0,0,0,0), + (15987,6,42210,0,2176,0,0,1,0,0,0,0,0,0), + (15988,6,42211,0,2176,0,0,1,0,0,0,0,0,0), + (15989,6,42212,0,2176,0,0,1,0,0,0,0,0,0), + (15990,6,42213,0,2176,0,0,1,0,0,0,0,0,0), + (15991,6,42198,0,2176,0,0,1,0,0,0,0,0,0), + (16069,6,44543,0,2176,0,0,1,0,0,0,0,0,0), + (16070,6,44545,0,2176,0,0,1,0,0,0,0,0,0), + (16071,6,44544,0,2176,0,0,1,0,0,0,0,0,0), + (16072,6,44557,0,2176,0,0,1,0,0,0,0,0,0), + (16073,6,44560,0,2176,0,0,1,0,0,0,0,0,0), + (16074,6,44561,0,2176,0,0,1,0,0,0,0,0,0), + (16075,6,44546,0,2176,0,0,1,0,0,0,0,0,0), + (16076,6,44548,0,2176,0,0,1,0,0,0,0,0,0), + (16077,6,44549,0,2176,0,0,1,0,0,0,0,0,0), + (16078,6,44566,0,2176,0,0,1,0,0,0,0,0,0), + (16079,6,44567,0,2176,0,0,1,0,0,0,0,0,0), + (16080,6,44568,0,2176,0,0,1,0,0,0,0,0,0), + (16081,6,44570,0,2176,0,0,1,0,0,0,0,0,0), + (16082,6,44571,0,2176,0,0,1,0,0,0,0,0,0), + (16083,6,44572,0,2176,0,0,1,0,0,0,0,0,0), + (16140,6,44745,0,2176,0,0,1,0,0,0,0,0,0), + (16197,6,45438,0,2176,0,0,1,0,0,0,0,0,0), + (19146,6,54787,0,2176,0,0,1,0,0,0,0,0,0), + (19199,6,55094,0,2176,0,0,1,0,0,0,0,0,0), + (19200,6,55091,0,2176,0,0,1,0,0,0,0,0,0), + (19201,6,55092,0,2176,0,0,1,0,0,0,0,0,0), + (21382,6,71761,0,2176,0,0,1,0,2,0,0,0,0), + (455,8,133,0,2176,0,0,1,0,2,0,0,0,0), + (460,8,143,0,2176,0,0,1,0,0,0,0,0,0), + (470,8,145,0,2176,0,0,1,0,0,0,0,0,0), + (1330,8,2120,0,2176,0,0,1,0,0,0,0,0,0), + (1331,8,2121,0,2176,0,0,1,0,0,0,0,0,0), + (1812,8,3140,0,2176,0,0,1,0,0,0,0,0,0), + (2976,8,543,0,2176,0,0,1,0,0,0,0,0,0), + (4221,8,2136,0,2176,0,0,1,0,0,0,0,0,0), + (4222,8,2137,0,2176,0,0,1,0,0,0,0,0,0), + (4223,8,2138,0,2176,0,0,1,0,0,0,0,0,0), + (4666,8,8400,0,2176,0,0,1,0,0,0,0,0,0), + (4667,8,8401,0,2176,0,0,1,0,0,0,0,0,0), + (4668,8,8402,0,2176,0,0,1,0,0,0,0,0,0), + (4672,8,8412,0,2176,0,0,1,0,0,0,0,0,0), + (4673,8,8413,0,2176,0,0,1,0,0,0,0,0,0), + (4676,8,8422,0,2176,0,0,1,0,0,0,0,0,0), + (4677,8,8423,0,2176,0,0,1,0,0,0,0,0,0), + (4691,8,2948,0,2176,0,0,1,0,0,0,0,0,0), + (4692,8,8444,0,2176,0,0,1,0,0,0,0,0,0), + (4693,8,8445,0,2176,0,0,1,0,0,0,0,0,0), + (4694,8,8446,0,2176,0,0,1,0,0,0,0,0,0), + (4703,8,8457,0,2176,0,0,1,0,0,0,0,0,0), + (4704,8,8458,0,2176,0,0,1,0,0,0,0,0,0), + (5433,8,10148,0,2176,0,0,1,0,0,0,0,0,0), + (5434,8,10149,0,2176,0,0,1,0,0,0,0,0,0), + (5435,8,10150,0,2176,0,0,1,0,0,0,0,0,0), + (5436,8,10151,0,2176,0,0,1,0,0,0,0,0,0), + (5460,8,10197,0,2176,0,0,1,0,0,0,0,0,0), + (5461,8,10199,0,2176,0,0,1,0,0,0,0,0,0), + (5464,8,10205,0,2176,0,0,1,0,0,0,0,0,0), + (5465,8,10206,0,2176,0,0,1,0,0,0,0,0,0), + (5466,8,10207,0,2176,0,0,1,0,0,0,0,0,0), + (5469,8,10215,0,2176,0,0,1,0,0,0,0,0,0), + (5470,8,10216,0,2176,0,0,1,0,0,0,0,0,0), + (5473,8,10223,0,2176,0,0,1,0,0,0,0,0,0), + (5474,8,10225,0,2176,0,0,1,0,0,0,0,0,0), + (5906,8,11113,0,2176,0,0,1,0,0,0,0,0,0), + (5988,8,11366,0,2176,0,0,1,0,0,0,0,0,0), + (6556,8,11115,0,2176,0,0,1,0,0,0,0,0,0), + (6557,8,11367,0,2176,0,0,1,0,0,0,0,0,0), + (6558,8,11368,0,2176,0,0,1,0,0,0,0,0,0), + (6561,8,11129,0,2176,0,0,1,0,0,0,0,0,0), + (6656,8,11069,0,2176,0,0,1,0,0,0,0,0,0), + (6676,8,12338,0,2176,0,0,1,0,0,0,0,0,0), + (6677,8,12339,0,2176,0,0,1,0,0,0,0,0,0), + (6679,8,12340,0,2176,0,0,1,0,0,0,0,0,0), + (6680,8,12341,0,2176,0,0,1,0,0,0,0,0,0), + (6681,8,11078,0,2176,0,0,1,0,0,0,0,0,0), + (6682,8,11080,0,2176,0,0,1,0,0,0,0,0,0), + (6696,8,11108,0,2176,0,0,1,0,0,0,0,0,0), + (6697,8,12349,0,2176,0,0,1,0,0,0,0,0,0), + (6698,8,12350,0,2176,0,0,1,0,0,0,0,0,0), + (6699,8,11100,0,2176,0,0,1,0,0,0,0,0,0), + (6700,8,12353,0,2176,0,0,1,0,0,0,0,0,0), + (6701,8,11083,0,2176,0,0,1,0,0,0,0,0,0), + (6702,8,12351,0,2176,0,0,1,0,0,0,0,0,0), + (6704,8,11103,0,2176,0,0,1,0,0,0,0,0,0), + (6705,8,12357,0,2176,0,0,1,0,0,0,0,0,0), + (6706,8,12358,0,2176,0,0,1,0,0,0,0,0,0), + (6709,8,12355,0,2176,0,0,1,0,0,0,0,0,0), + (6716,8,11124,0,2176,0,0,1,0,0,0,0,0,0), + (6717,8,12378,0,2176,0,0,1,0,0,0,0,0,0), + (6718,8,12398,0,2176,0,0,1,0,0,0,0,0,0), + (6719,8,12399,0,2176,0,0,1,0,0,0,0,0,0), + (6720,8,12400,0,2176,0,0,1,0,0,0,0,0,0), + (6796,8,12505,0,2176,0,0,1,0,0,0,0,0,0), + (6797,8,12522,0,2176,0,0,1,0,0,0,0,0,0), + (6798,8,12523,0,2176,0,0,1,0,0,0,0,0,0), + (6799,8,12524,0,2176,0,0,1,0,0,0,0,0,0), + (6800,8,12525,0,2176,0,0,1,0,0,0,0,0,0), + (6801,8,12526,0,2176,0,0,1,0,0,0,0,0,0), + (7176,8,13018,0,2176,0,0,1,0,0,0,0,0,0), + (7177,8,13019,0,2176,0,0,1,0,0,0,0,0,0), + (7178,8,13020,0,2176,0,0,1,0,0,0,0,0,0), + (7179,8,13021,0,2176,0,0,1,0,0,0,0,0,0), + (10618,8,18809,0,2176,0,0,1,0,0,0,0,0,0), + (12381,8,22959,0,2176,0,0,1,0,0,0,0,0,0), + (12596,8,11095,0,2176,0,0,1,0,0,0,0,0,0), + (12597,8,12872,0,2176,0,0,1,0,0,0,0,0,0), + (12598,8,12873,0,2176,0,0,1,0,0,0,0,0,0), + (13245,8,25306,0,2176,0,0,1,0,0,0,0,0,0), + (13635,8,27070,0,2176,0,0,1,0,0,0,0,0,0), + (13636,8,27074,0,2176,0,0,1,0,0,0,0,0,0), + (13637,8,27073,0,2176,0,0,1,0,0,0,0,0,0), + (13638,8,27079,0,2176,0,0,1,0,0,0,0,0,0), + (13639,8,27078,0,2176,0,0,1,0,0,0,0,0,0), + (13640,8,27132,0,2176,0,0,1,0,0,0,0,0,0), + (13641,8,27086,0,2176,0,0,1,0,0,0,0,0,0), + (13642,8,27133,0,2176,0,0,1,0,0,0,0,0,0), + (13643,8,27128,0,2176,0,0,1,0,0,0,0,0,0), + (14073,8,29074,0,2176,0,0,1,0,0,0,0,0,0), + (14075,8,29075,0,2176,0,0,1,0,0,0,0,0,0), + (14076,8,29076,0,2176,0,0,1,0,0,0,0,0,0), + (14077,8,29077,0,2176,0,0,1,0,0,0,0,0,0), + (14388,8,30482,0,2176,0,0,1,0,0,0,0,0,0), + (14666,8,31661,0,2176,0,0,1,0,0,0,0,0,0), + (14667,8,31656,0,2176,0,0,1,0,0,0,0,0,0), + (14668,8,31657,0,2176,0,0,1,0,0,0,0,0,0), + (14669,8,31658,0,2176,0,0,1,0,0,0,0,0,0), + (14683,8,31641,0,2176,0,0,1,0,0,0,0,0,0), + (14684,8,31642,0,2176,0,0,1,0,0,0,0,0,0), + (14685,8,31643,0,2176,0,0,1,0,0,0,0,0,0), + (14686,8,31638,0,2176,0,0,1,0,0,0,0,0,0), + (14687,8,31639,0,2176,0,0,1,0,0,0,0,0,0), + (14688,8,31640,0,2176,0,0,1,0,0,0,0,0,0), + (14935,8,31679,0,2176,0,0,1,0,0,0,0,0,0), + (14936,8,31680,0,2176,0,0,1,0,0,0,0,0,0), + (15111,8,33933,0,2176,0,0,1,0,0,0,0,0,0), + (15113,8,33938,0,2176,0,0,1,0,0,0,0,0,0), + (15114,8,33041,0,2176,0,0,1,0,0,0,0,0,0), + (15115,8,33042,0,2176,0,0,1,0,0,0,0,0,0), + (15116,8,33043,0,2176,0,0,1,0,0,0,0,0,0), + (15161,8,34293,0,2176,0,0,1,0,0,0,0,0,0), + (15162,8,34295,0,2176,0,0,1,0,0,0,0,0,0), + (15163,8,34296,0,2176,0,0,1,0,0,0,0,0,0), + (15731,8,38692,0,2176,0,0,1,0,0,0,0,0,0), + (15909,8,42832,0,2176,0,0,1,0,0,0,0,0,0), + (15910,8,42833,0,2176,0,0,1,0,0,0,0,0,0), + (15913,8,42872,0,2176,0,0,1,0,0,0,0,0,0), + (15914,8,42873,0,2176,0,0,1,0,0,0,0,0,0), + (15915,8,42858,0,2176,0,0,1,0,0,0,0,0,0), + (15916,8,42859,0,2176,0,0,1,0,0,0,0,0,0), + (15917,8,42890,0,2176,0,0,1,0,0,0,0,0,0), + (15918,8,42891,0,2176,0,0,1,0,0,0,0,0,0), + (15927,8,42925,0,2176,0,0,1,0,0,0,0,0,0), + (15928,8,42926,0,2176,0,0,1,0,0,0,0,0,0), + (15942,8,42944,0,2176,0,0,1,0,0,0,0,0,0), + (15943,8,42945,0,2176,0,0,1,0,0,0,0,0,0), + (15944,8,42949,0,2176,0,0,1,0,0,0,0,0,0), + (15945,8,42950,0,2176,0,0,1,0,0,0,0,0,0), + (15957,8,43010,0,2176,0,0,1,0,0,0,0,0,0), + (15967,8,43045,0,2176,0,0,1,0,0,0,0,0,0), + (15968,8,43046,0,2176,0,0,1,0,0,0,0,0,0), + (15969,8,34913,0,2176,0,0,1,0,0,0,0,0,0), + (15970,8,43043,0,2176,0,0,1,0,0,0,0,0,0), + (15971,8,43044,0,2176,0,0,1,0,0,0,0,0,0), + (16052,8,44440,0,2176,0,0,1,0,0,0,0,0,0), + (16053,8,44441,0,2176,0,0,1,0,0,0,0,0,0), + (16054,8,44442,0,2176,0,0,1,0,0,0,0,0,0), + (16055,8,44443,0,2176,0,0,1,0,0,0,0,0,0), + (16057,8,44445,0,2176,0,0,1,0,0,0,0,0,0), + (16058,8,44446,0,2176,0,0,1,0,0,0,0,0,0), + (16059,8,44448,0,2176,0,0,1,0,0,0,0,0,0), + (16060,8,44449,0,2176,0,0,1,0,0,0,0,0,0), + (16061,8,44450,0,2176,0,0,1,0,0,0,0,0,0), + (16062,8,44457,0,2176,0,0,1,0,0,0,0,0,0), + (16063,8,44461,0,2176,0,0,1,0,0,0,0,0,0), + (16065,8,44469,0,2176,0,0,1,0,0,0,0,0,0), + (16066,8,44470,0,2176,0,0,1,0,0,0,0,0,0), + (16067,8,44471,0,2176,0,0,1,0,0,0,0,0,0), + (16068,8,44472,0,2176,0,0,1,0,0,0,0,0,0), + (16141,8,44614,0,2176,0,0,1,0,0,0,0,0,0), + (16428,8,47610,0,2176,0,0,1,0,0,0,0,0,0), + (19135,8,54734,0,2176,0,0,1,0,0,0,0,0,0), + (19137,8,54741,0,2176,0,0,1,0,0,0,0,0,0), + (19138,8,54747,0,2176,0,0,1,0,0,0,0,0,0), + (19139,8,54749,0,2176,0,0,1,0,0,0,0,0,0), + (19140,8,54748,0,2176,0,0,1,0,0,0,0,0,0), + (19291,8,55359,0,2176,0,0,1,0,0,0,0,0,0), + (19292,8,55360,0,2176,0,0,1,0,0,0,0,0,0), + (19294,8,55361,0,2176,0,0,1,0,0,0,0,0,0), + (19295,8,55362,0,2176,0,0,1,0,0,0,0,0,0), + (20989,8,64353,0,2176,0,0,1,0,0,0,0,0,0), + (20990,8,64357,0,2176,0,0,1,0,0,0,0,0,0), + (20991,8,64350,0,2176,0,0,1,0,0,0,0,0,0), + (20992,8,64349,0,2176,0,0,1,0,0,0,0,0,0), + (1401,26,78,0,2049,0,0,1,284,2,0,0,0,0), + (1402,26,284,0,2049,0,0,1,285,0,0,0,0,0), + (1403,26,285,0,2049,0,0,1,1608,0,0,0,0,0), + (1404,26,1608,0,2049,0,0,1,11564,0,0,0,0,0), + (3979,26,772,0,2049,0,0,1,6546,0,0,0,0,0), + (3980,26,6546,0,2049,0,0,1,6547,0,0,0,0,0), + (3981,26,6547,0,2049,0,0,1,6548,0,0,0,0,0), + (3982,26,6548,0,2049,0,0,1,11572,0,0,0,0,0), + (3995,26,1715,0,2049,0,0,1,7372,0,0,0,0,0), + (6057,26,2457,0,2049,0,0,1,0,2,0,0,0,0), + (6058,26,100,0,2049,0,0,1,6178,0,0,0,0,0), + (6059,26,6178,0,2049,0,0,1,11578,0,0,0,0,0), + (6060,26,11578,0,2049,0,0,1,57817,0,0,0,0,0), + (6061,26,7384,0,2049,0,0,1,7887,0,0,0,0,0), + (6066,26,11572,0,2049,0,0,1,11573,0,0,0,0,0), + (6067,26,11573,0,2049,0,0,1,11574,0,0,0,0,0), + (6068,26,11574,0,2049,0,0,1,25208,0,0,0,0,0), + (6069,26,11564,0,2049,0,0,1,11565,0,0,0,0,0), + (6070,26,11565,0,2049,0,0,1,11566,0,0,0,0,0), + (6071,26,11566,0,2049,0,0,1,11567,0,0,0,0,0), + (6072,26,11567,0,2049,0,0,1,25286,0,0,0,0,0), + (6073,26,6343,0,2049,0,0,1,8198,0,0,0,0,0), + (6074,26,8198,0,2049,0,0,1,8204,0,0,0,0,0), + (6075,26,8204,0,2049,0,0,1,8205,0,0,0,0,0), + (6076,26,8205,0,2049,0,0,1,11580,0,0,0,0,0), + (6077,26,11580,0,2049,0,0,1,11581,0,0,0,0,0), + (6078,26,11581,0,2049,0,0,1,25264,0,0,0,0,0), + (7130,26,12294,0,2049,0,0,1,21551,0,0,0,0,0), + (11781,26,20230,0,2049,0,0,1,0,0,0,0,0,0), + (11978,26,21156,0,2049,0,0,1,0,0,0,0,0,0), + (12036,26,21551,0,2049,0,0,1,21552,0,0,0,0,0), + (12037,26,21552,0,2049,0,0,1,21553,0,0,0,0,0), + (12038,26,21553,0,2049,0,0,1,25248,0,0,0,0,0), + (13163,26,25208,0,2049,0,0,1,46845,0,0,0,0,0), + (13173,26,25248,0,2049,0,0,1,30330,0,0,0,0,0), + (13178,26,25264,0,2049,0,0,1,47501,0,0,0,0,0), + (13217,26,25286,0,2049,0,0,1,29707,0,0,0,0,0), + (14158,26,29707,0,2049,0,0,1,30324,0,0,0,0,0), + (14176,26,29623,0,2049,0,0,1,0,0,0,0,0,0), + (14178,26,29723,0,2049,0,0,1,0,0,0,0,0,0), + (14180,26,29725,0,2049,0,0,1,0,0,0,0,0,0), + (14242,26,29834,0,2049,0,0,1,0,0,0,0,0,0), + (14243,26,29838,0,2049,0,0,1,0,0,0,0,0,0), + (14245,26,29841,0,2049,0,0,1,0,0,0,0,0,0), + (14246,26,29842,0,2049,0,0,1,0,0,0,0,0,0), + (14250,26,29836,0,2049,0,0,1,0,0,0,0,0,0), + (14251,26,29859,0,2049,0,0,1,0,0,0,0,0,0), + (14266,26,12300,0,2049,0,0,1,0,0,0,0,0,0), + (14267,26,12959,0,2049,0,0,1,0,0,0,0,0,0), + (14268,26,12960,0,2049,0,0,1,0,0,0,0,0,0), + (14377,26,30324,0,2049,0,0,1,47449,0,0,0,0,0), + (14378,26,30330,0,2049,0,0,1,47485,0,0,0,0,0), + (15496,26,35446,0,2049,0,0,1,0,0,0,0,0,0), + (15497,26,35448,0,2049,0,0,1,0,0,0,0,0,0), + (15498,26,35449,0,2049,0,0,1,0,0,0,0,0,0), + (16308,26,46854,0,2049,0,0,1,0,0,0,0,0,0), + (16309,26,46855,0,2049,0,0,1,0,0,0,0,0,0), + (16310,26,46856,0,2049,0,0,1,0,0,0,0,0,0), + (16311,26,46857,0,2049,0,0,1,0,0,0,0,0,0), + (16312,26,46845,0,2049,0,0,1,47465,0,0,0,0,0), + (16313,26,46859,0,2049,0,0,1,0,0,0,0,0,0), + (16314,26,46860,0,2049,0,0,1,0,0,0,0,0,0), + (16319,26,46865,0,2049,0,0,1,0,0,0,0,0,0), + (16320,26,46866,0,2049,0,0,1,0,0,0,0,0,0), + (16321,26,46867,0,2049,0,0,1,0,0,0,0,0,0), + (16400,26,47449,0,2049,0,0,1,47450,0,0,0,0,0), + (16401,26,47450,0,2049,0,0,1,0,0,0,0,0,0), + (16402,26,47465,0,2049,0,0,1,0,0,0,0,0,0), + (16408,26,47485,0,2049,0,0,1,47486,0,0,0,0,0), + (16409,26,47486,0,2049,0,0,1,0,0,0,0,0,0), + (16422,26,47501,0,2049,0,0,1,47502,0,0,0,0,0), + (16423,26,47502,0,2049,0,0,1,0,0,0,0,0,0), + (16672,26,12328,0,2049,0,0,1,0,0,0,0,0,0), + (16673,26,12723,0,2049,0,0,1,0,0,0,0,0,0), + (16674,26,26654,0,2049,0,0,1,0,0,0,0,0,0), + (17291,26,46924,0,2049,0,0,1,0,0,0,0,0,0), + (17445,26,694,0,2049,0,0,1,0,0,0,0,0,0), + (17509,26,29724,0,2049,0,0,1,0,0,0,0,0,0), + (19598,26,56611,0,2049,0,0,1,0,0,0,0,0,0), + (19599,26,56612,0,2049,0,0,1,0,0,0,0,0,0), + (19600,26,56613,0,2049,0,0,1,0,0,0,0,0,0), + (19601,26,56614,0,2049,0,0,1,0,0,0,0,0,0), + (19636,26,56636,0,2049,0,0,1,0,0,0,0,0,0), + (19637,26,56637,0,2049,0,0,1,0,0,0,0,0,0), + (19638,26,56638,0,2049,0,0,1,0,0,0,0,0,0), + (19793,26,57755,0,2049,0,0,1,0,0,0,0,0,0), + (20258,26,12295,0,2049,0,0,1,0,0,0,0,0,0), + (20259,26,12676,0,2049,0,0,1,0,0,0,0,0,0), + (20260,26,12677,0,2049,0,0,1,0,0,0,0,0,0), + (20994,26,64382,0,2049,0,0,1,0,0,0,0,0,0), + (20995,26,64380,0,2049,0,0,1,0,0,0,0,0,0), + (21023,26,20504,0,2049,0,0,1,0,0,0,0,0,0), + (21024,26,20505,0,2049,0,0,1,0,0,0,0,0,0), + (21029,26,64976,0,2049,0,0,1,0,0,0,0,0,0), + (3394,38,1776,0,2056,0,0,1,1777,0,0,0,0,0), + (3395,38,1752,0,2056,0,0,1,1757,2,0,0,0,0), + (3396,38,1757,0,2056,0,0,1,1758,0,0,0,0,0), + (3397,38,1758,0,2056,0,0,1,1759,0,0,0,0,0), + (3398,38,1759,0,2056,0,0,1,1760,0,0,0,0,0), + (3399,38,1760,0,2056,0,0,1,8621,0,0,0,0,0), + (4769,38,8621,0,2056,0,0,1,11293,0,0,0,0,0), + (4781,38,1766,0,2056,0,0,1,1767,0,0,0,0,0), + (5936,38,11293,0,2056,0,0,1,11294,0,0,0,0,0), + (5937,38,11294,0,2056,0,0,1,26861,0,0,0,0,0), + (6367,38,53,0,2056,0,0,1,2589,0,0,0,0,0), + (6368,38,2589,0,2056,0,0,1,2590,0,0,0,0,0), + (6369,38,2590,0,2056,0,0,1,2591,0,0,0,0,0), + (6370,38,2591,0,2056,0,0,1,8721,0,0,0,0,0), + (6371,38,8721,0,2056,0,0,1,11279,0,0,0,0,0), + (6372,38,11279,0,2056,0,0,1,11280,0,0,0,0,0), + (6373,38,11280,0,2056,0,0,1,11281,0,0,0,0,0), + (6374,38,11281,0,2056,0,0,1,25300,0,0,0,0,0), + (6375,38,1966,0,2056,0,0,1,6768,0,0,0,0,0), + (6376,38,6768,0,2056,0,0,1,8637,0,0,0,0,0), + (6377,38,8637,0,2056,0,0,1,11303,0,0,0,0,0), + (6378,38,11303,0,2056,0,0,1,25302,0,0,0,0,0), + (6379,38,5277,0,2056,0,0,1,26669,0,0,0,0,0), + (7638,38,2983,0,2056,0,0,1,8696,0,0,0,0,0), + (7639,38,8696,0,2056,0,0,1,11305,0,0,0,0,0), + (7640,38,11305,0,2056,0,0,1,0,0,0,0,0,0), + (12039,38,21184,0,2056,0,0,1,0,2,0,0,0,0), + (13238,38,25300,0,2056,0,0,1,26863,0,0,0,0,0), + (13239,38,25302,0,2056,0,0,1,27448,0,0,0,0,0), + (13461,38,5938,0,2056,0,0,1,0,0,0,0,0,0), + (13542,38,26669,0,2056,0,0,1,0,0,0,0,0,0), + (13707,38,26861,0,2056,0,0,1,26862,0,0,0,0,0), + (13708,38,26862,0,2056,0,0,1,48637,0,0,0,0,0), + (13709,38,26863,0,2056,0,0,1,48656,0,0,0,0,0), + (13710,38,27448,0,2056,0,0,1,48658,0,0,0,0,0), + (14503,38,31124,0,2056,0,0,1,0,0,0,0,0,0), + (14504,38,31126,0,2056,0,0,1,0,0,0,0,0,0), + (14508,38,31125,0,2056,0,0,1,0,0,0,0,0,0), + (14509,38,31122,0,2056,0,0,1,0,0,0,0,0,0), + (14510,38,31123,0,2056,0,0,1,0,0,0,0,0,0), + (14894,38,32601,0,2056,0,0,1,0,0,0,0,0,0), + (15032,38,31130,0,2056,0,0,1,0,0,0,0,0,0), + (15033,38,31131,0,2056,0,0,1,0,0,0,0,0,0), + (15514,38,35541,0,2056,0,0,1,0,0,0,0,0,0), + (15515,38,35550,0,2056,0,0,1,0,0,0,0,0,0), + (15516,38,35551,0,2056,0,0,1,0,0,0,0,0,0), + (15517,38,35552,0,2056,0,0,1,0,0,0,0,0,0), + (15518,38,35553,0,2056,0,0,1,0,0,0,0,0,0), + (16670,38,48637,0,2056,0,0,1,48638,0,0,0,0,0), + (16671,38,48638,0,2056,0,0,1,0,0,0,0,0,0), + (16675,38,48656,0,2056,0,0,1,48657,0,0,0,0,0), + (16676,38,48657,0,2056,0,0,1,0,0,0,0,0,0), + (16677,38,48658,0,2056,0,0,1,48659,0,0,0,0,0), + (16678,38,48659,0,2056,0,0,1,0,0,0,0,0,0), + (17716,38,51672,0,2056,0,0,1,0,0,0,0,0,0), + (17717,38,51674,0,2056,0,0,1,0,0,0,0,0,0), + (17718,38,51675,0,2056,0,0,1,0,0,0,0,0,0), + (17719,38,51677,0,2056,0,0,1,0,0,0,0,0,0), + (17720,38,5952,0,2056,0,0,1,0,0,0,0,0,0), + (17721,38,51679,0,2056,0,0,1,0,0,0,0,0,0), + (17722,38,51680,0,2056,0,0,1,0,0,0,0,0,0), + (17723,38,51682,0,2056,0,0,1,0,0,0,0,0,0), + (17726,38,51685,0,2056,0,0,1,0,0,0,0,0,0), + (17727,38,51686,0,2056,0,0,1,0,0,0,0,0,0), + (17728,38,51687,0,2056,0,0,1,0,0,0,0,0,0), + (17729,38,51688,0,2056,0,0,1,0,0,0,0,0,0), + (17730,38,51689,0,2056,0,0,1,0,0,0,0,0,0), + (17731,38,51690,0,2056,0,0,1,0,0,0,0,0,0), + (17750,38,51723,0,2056,0,0,1,0,0,0,0,0,0), + (19980,38,14165,0,2056,0,0,1,0,0,0,0,0,0), + (19981,38,14166,0,2056,0,0,1,0,0,0,0,0,0), + (19986,38,58413,0,2056,0,0,1,0,0,0,0,0,0), + (20622,38,61329,0,2056,0,0,1,0,0,0,0,0,0), + (3276,39,1725,0,2056,0,0,1,0,0,0,0,0,0), + (3965,39,2094,0,2056,0,0,1,0,0,0,0,0,0), + (6360,39,921,0,2056,0,0,1,0,0,0,0,0,0), + (6361,39,1784,0,2056,0,0,1,1785,0,0,0,0,0), + (6365,39,1856,0,2056,0,0,1,1857,0,0,0,0,0), + (6366,39,1857,0,2056,0,0,1,26889,0,0,0,0,0), + (6383,39,6770,0,2056,0,0,1,2070,0,0,0,0,0), + (6384,39,2070,0,2056,0,0,1,11297,0,0,0,0,0), + (6385,39,11297,0,2056,0,0,1,51724,0,0,0,0,0), + (7822,39,14278,0,2056,0,0,1,0,0,0,0,0,0), + (7914,39,2836,0,2056,0,0,1,0,0,0,0,0,0), + (8055,39,1842,0,2056,0,0,1,0,0,0,0,0,0), + (9116,39,16511,0,2056,0,0,1,17347,0,0,0,0,0), + (9856,39,17347,0,2056,0,0,1,17348,0,0,0,0,0), + (9857,39,17348,0,2056,0,0,1,26864,0,0,0,0,0), + (11739,39,1860,0,2056,0,0,1,0,0,0,0,0,0), + (13717,39,26889,0,2056,0,0,1,0,0,0,0,0,0), + (14575,39,31211,0,2056,0,0,1,0,0,0,0,0,0), + (14576,39,31212,0,2056,0,0,1,0,0,0,0,0,0), + (14577,39,31213,0,2056,0,0,1,0,0,0,0,0,0), + (14580,39,31216,0,2056,0,0,1,0,0,0,0,0,0), + (14581,39,31217,0,2056,0,0,1,0,0,0,0,0,0), + (14582,39,31218,0,2056,0,0,1,0,0,0,0,0,0), + (14583,39,31219,0,2056,0,0,1,0,0,0,0,0,0), + (14584,39,31220,0,2056,0,0,1,0,0,0,0,0,0), + (14585,39,31221,0,2056,0,0,1,0,0,0,0,0,0), + (14586,39,31222,0,2056,0,0,1,0,0,0,0,0,0), + (14587,39,31223,0,2056,0,0,1,0,0,0,0,0,0), + (14588,39,31224,0,2056,0,0,1,0,0,0,0,0,0), + (14609,39,31228,0,2056,0,0,1,0,0,0,0,0,0), + (14610,39,31229,0,2056,0,0,1,0,0,0,0,0,0), + (14611,39,31230,0,2056,0,0,1,0,0,0,0,0,0), + (14789,39,26864,0,2056,0,0,1,48660,0,0,0,0,0), + (15687,39,36554,0,2056,0,0,1,0,0,0,0,0,0), + (16679,39,48660,0,2056,0,0,1,0,0,0,0,0,0), + (17732,39,51692,0,2056,0,0,1,0,0,0,0,0,0), + (17733,39,51696,0,2056,0,0,1,0,0,0,0,0,0), + (17734,39,51693,0,2056,0,0,1,0,0,0,0,0,0), + (17735,39,51698,0,2056,0,0,1,0,0,0,0,0,0), + (17736,39,51700,0,2056,0,0,1,0,0,0,0,0,0), + (17737,39,51701,0,2056,0,0,1,0,0,0,0,0,0), + (17738,39,51699,0,2056,0,0,1,0,0,0,0,0,0), + (17743,39,51708,0,2056,0,0,1,0,0,0,0,0,0), + (17744,39,51709,0,2056,0,0,1,0,0,0,0,0,0), + (17745,39,51710,0,2056,0,0,1,0,0,0,0,0,0), + (17746,39,51711,0,2056,0,0,1,0,0,0,0,0,0), + (17747,39,51712,0,2056,0,0,1,0,0,0,0,0,0), + (17748,39,51713,0,2056,0,0,1,0,0,0,0,0,0), + (17751,39,51724,0,2056,0,0,1,0,0,0,0,0,0), + (19962,39,57934,0,2056,0,0,1,0,0,0,0,0,0), + (19963,39,57933,0,2056,0,0,1,0,0,0,0,0,0), + (19987,39,58414,0,2056,0,0,1,0,0,0,0,0,0), + (19988,39,58415,0,2056,0,0,1,0,0,0,0,0,0), + (19989,39,14179,0,2056,0,0,1,0,0,0,0,0,0), + (19990,39,58422,0,2056,0,0,1,0,0,0,0,0,0), + (19991,39,58423,0,2056,0,0,1,0,0,0,0,0,0), + (19992,39,58424,0,2056,0,0,1,0,0,0,0,0,0), + (19993,39,58425,0,2056,0,0,1,0,0,0,0,0,0), + (19994,39,14181,0,2056,0,0,1,0,0,0,0,0,0), + (252,43,201,0,2479,0,0,1,0,2,0,0,0,0), + (248,44,196,0,2159,0,0,1,0,2,0,0,0,0), + (246,45,264,0,2061,0,0,1,0,2,0,0,0,0), + (15696,45,3018,0,2057,0,0,1,0,1,0,0,0,0), + (251,46,266,0,2061,0,0,1,0,2,0,0,0,0), + (15695,46,3018,0,2057,0,0,1,0,1,0,0,0,0), + (935,50,1513,0,2052,0,0,1,1528,0,0,0,0,0), + (936,50,1515,0,2052,0,0,1,2997,0,0,0,0,0), + (1790,50,883,0,2052,0,0,1,0,0,0,0,0,0), + (7260,50,136,0,2052,0,0,1,0,0,0,0,0,0), + (7261,50,3111,0,2052,0,0,1,0,0,0,0,0,0), + (7262,50,3661,0,2052,0,0,1,0,0,0,0,0,0), + (7263,50,3662,0,2052,0,0,1,0,0,0,0,0,0), + (7265,50,982,0,2052,0,0,1,0,0,0,0,0,0), + (7266,50,13161,0,2052,0,0,1,0,0,0,0,0,0), + (7267,50,13163,0,2052,0,0,1,0,0,0,0,0,0), + (7268,50,13159,0,2052,0,0,1,0,0,0,0,0,0), + (7269,50,13165,0,2052,0,0,1,0,0,0,0,0,0), + (7270,50,5118,0,2052,0,0,1,0,0,0,0,0,0), + (7272,50,6197,0,2052,0,0,1,0,0,0,0,0,0), + (7273,50,1462,0,2052,0,0,1,0,0,0,0,0,0), + (7275,50,1002,0,2052,0,0,1,0,0,0,0,0,0), + (7396,50,6991,0,2052,0,0,1,0,0,0,0,0,0), + (7476,50,13542,0,2052,0,0,1,0,0,0,0,0,0), + (7477,50,13543,0,2052,0,0,1,0,0,0,0,0,0), + (7478,50,13544,0,2052,0,0,1,0,0,0,0,0,0), + (7695,50,2641,0,2052,0,0,1,0,0,0,0,0,0), + (7856,50,14318,0,2052,0,0,1,0,0,0,0,0,0), + (7857,50,14319,0,2052,0,0,1,0,0,0,0,0,0), + (7858,50,14320,0,2052,0,0,1,0,0,0,0,0,0), + (7859,50,14321,0,2052,0,0,1,0,0,0,0,0,0), + (7860,50,14322,0,2052,0,0,1,0,0,0,0,0,0), + (7861,50,14326,0,2052,0,0,1,0,0,0,0,0,0), + (7862,50,14327,0,2052,0,0,1,0,0,0,0,0,0), + (8417,50,13481,0,2052,0,0,1,0,0,0,0,0,0), + (11016,50,19549,0,2052,0,0,1,0,0,0,0,0,0), + (11017,50,19550,0,2052,0,0,1,0,0,0,0,0,0), + (11018,50,19551,0,2052,0,0,1,0,0,0,0,0,0), + (11038,50,19578,0,2052,0,0,1,0,0,0,0,0,0), + (11356,50,20043,0,2052,0,0,1,0,0,0,0,0,0), + (11464,50,20190,0,2052,0,0,1,0,0,0,0,0,0), + (11868,50,20895,0,2052,0,0,1,0,0,0,0,0,0), + (12912,50,24443,0,2052,0,0,1,0,0,0,0,0,0), + (12913,50,19575,0,2052,0,0,1,0,0,0,0,0,0), + (13232,50,25296,0,2052,0,0,1,0,0,0,0,0,0), + (13595,50,27046,0,2052,0,0,1,0,0,0,0,0,0), + (13613,50,27044,0,2052,0,0,1,0,0,0,0,0,0), + (13614,50,27045,0,2052,0,0,1,0,0,0,0,0,0), + (15141,50,34026,0,2052,0,0,1,0,0,0,0,0,0), + (15147,50,34074,0,2052,0,0,1,0,0,0,0,0,0), + (15205,50,34453,0,2052,0,0,1,0,0,0,0,0,0), + (15206,50,34454,0,2052,0,0,1,0,0,0,0,0,0), + (15207,50,34455,0,2052,0,0,1,0,0,0,0,0,0), + (15208,50,34459,0,2052,0,0,1,0,0,0,0,0,0), + (15209,50,34460,0,2052,0,0,1,0,0,0,0,0,0), + (15213,50,34462,0,2052,0,0,1,0,0,0,0,0,0), + (15214,50,34464,0,2052,0,0,1,0,0,0,0,0,0), + (15215,50,34465,0,2052,0,0,1,0,0,0,0,0,0), + (15216,50,34466,0,2052,0,0,1,0,0,0,0,0,0), + (15217,50,34467,0,2052,0,0,1,0,0,0,0,0,0), + (15218,50,34468,0,2052,0,0,1,0,0,0,0,0,0), + (15219,50,34469,0,2052,0,0,1,0,0,0,0,0,0), + (15220,50,34470,0,2052,0,0,1,0,0,0,0,0,0), + (15221,50,34471,0,2052,0,0,1,0,0,0,0,0,0), + (15248,50,34692,0,2052,0,0,1,0,0,0,0,0,0), + (15354,50,35029,0,2052,0,0,1,0,0,0,0,0,0), + (15355,50,35030,0,2052,0,0,1,0,0,0,0,0,0), + (16785,50,48989,0,2052,0,0,1,0,0,0,0,0,0), + (16786,50,48990,0,2052,0,0,1,0,0,0,0,0,0), + (16845,50,49071,0,2052,0,0,1,0,0,0,0,0,0), + (20723,50,61846,0,2052,0,0,1,0,0,0,0,0,0), + (20724,50,61847,0,2052,0,0,1,0,0,0,0,0,0), + (20785,50,62757,0,2052,0,0,1,0,0,0,0,0,0), + (7288,51,5384,0,2052,0,0,1,0,0,0,0,0,0), + (7289,51,2974,0,2052,0,0,1,0,0,0,0,0,0), + (7290,51,781,0,2052,0,0,1,0,0,0,0,0,0), + (7292,51,2973,0,2052,0,0,1,0,2,0,0,0,0), + (7337,51,1495,0,2052,0,0,1,0,0,0,0,0,0), + (7534,51,1499,0,2052,0,0,1,0,0,0,0,0,0), + (7587,51,13795,0,2052,0,0,1,0,0,0,0,0,0), + (7588,51,13809,0,2052,0,0,1,0,0,0,0,0,0), + (7589,51,13813,0,2052,0,0,1,0,0,0,0,0,0), + (7863,51,14260,0,2052,0,0,1,0,0,0,0,0,0), + (7864,51,14261,0,2052,0,0,1,0,0,0,0,0,0), + (7865,51,14262,0,2052,0,0,1,0,0,0,0,0,0), + (7866,51,14263,0,2052,0,0,1,0,0,0,0,0,0), + (7867,51,14264,0,2052,0,0,1,0,0,0,0,0,0), + (7868,51,14265,0,2052,0,0,1,0,0,0,0,0,0), + (7869,51,14266,0,2052,0,0,1,0,0,0,0,0,0), + (7872,51,14269,0,2052,0,0,1,0,0,0,0,0,0), + (7873,51,14270,0,2052,0,0,1,0,0,0,0,0,0), + (7874,51,14271,0,2052,0,0,1,0,0,0,0,0,0), + (7877,51,14302,0,2052,0,0,1,0,0,0,0,0,0), + (7878,51,14303,0,2052,0,0,1,0,0,0,0,0,0), + (7879,51,14304,0,2052,0,0,1,0,0,0,0,0,0), + (7880,51,14305,0,2052,0,0,1,0,0,0,0,0,0), + (7881,51,14310,0,2052,0,0,1,0,0,0,0,0,0), + (7882,51,14311,0,2052,0,0,1,0,0,0,0,0,0), + (7883,51,14316,0,2052,0,0,1,0,0,0,0,0,0), + (7884,51,14317,0,2052,0,0,1,0,0,0,0,0,0), + (10826,51,19168,0,2052,0,0,1,0,0,0,0,0,0), + (10827,51,19180,0,2052,0,0,1,0,0,0,0,0,0), + (10828,51,19181,0,2052,0,0,1,0,0,0,0,0,0), + (10891,51,19290,0,2052,0,0,1,0,0,0,0,0,0), + (10893,51,19294,0,2052,0,0,1,0,0,0,0,0,0), + (10921,51,19376,0,2052,0,0,1,0,0,0,0,0,0), + (10930,51,19386,0,2052,0,0,1,0,0,0,0,0,0), + (11319,51,1494,0,2052,0,0,1,0,0,0,0,0,0), + (11320,51,19878,0,2052,0,0,1,0,0,0,0,0,0), + (11321,51,19879,0,2052,0,0,1,0,0,0,0,0,0), + (11322,51,19880,0,2052,0,0,1,0,0,0,0,0,0), + (11323,51,19882,0,2052,0,0,1,0,0,0,0,0,0), + (11324,51,19885,0,2052,0,0,1,0,0,0,0,0,0), + (11325,51,19883,0,2052,0,0,1,0,0,0,0,0,0), + (11326,51,19884,0,2052,0,0,1,0,0,0,0,0,0), + (12556,51,13812,0,2052,0,0,1,0,0,0,0,0,0), + (12557,51,14314,0,2052,0,0,1,0,0,0,0,0,0), + (12558,51,14315,0,2052,0,0,1,0,0,0,0,0,0), + (12824,51,24132,0,2052,0,0,1,0,0,0,0,0,0), + (12825,51,24133,0,2052,0,0,1,0,0,0,0,0,0), + (12826,51,24131,0,2052,0,0,1,0,0,0,0,0,0), + (12827,51,24134,0,2052,0,0,1,0,0,0,0,0,0), + (12828,51,24135,0,2052,0,0,1,0,0,0,0,0,0), + (12880,51,24283,0,2052,0,0,1,0,0,0,0,0,0), + (12886,51,24296,0,2052,0,0,1,0,0,0,0,0,0), + (12887,51,24297,0,2052,0,0,1,0,0,0,0,0,0), + (12888,51,19258,0,2052,0,0,1,0,0,0,0,0,0), + (12889,51,19259,0,2052,0,0,1,0,0,0,0,0,0), + (13046,51,19306,0,2052,0,0,1,0,0,0,0,0,0), + (13047,51,20909,0,2052,0,0,1,0,0,0,0,0,0), + (13048,51,20910,0,2052,0,0,1,0,0,0,0,0,0), + (13049,51,13797,0,2052,0,0,1,0,0,0,0,0,0), + (13050,51,14298,0,2052,0,0,1,0,0,0,0,0,0), + (13051,51,14299,0,2052,0,0,1,0,0,0,0,0,0), + (13053,51,14300,0,2052,0,0,1,0,0,0,0,0,0), + (13054,51,14301,0,2052,0,0,1,0,0,0,0,0,0), + (13596,51,27014,0,2052,0,0,1,0,0,0,0,0,0), + (13598,51,27067,0,2052,0,0,1,0,0,0,0,0,0), + (13602,51,27068,0,2052,0,0,1,0,0,0,0,0,0), + (13603,51,27069,0,2052,0,0,1,0,0,0,0,0,0), + (13609,51,27023,0,2052,0,0,1,0,0,0,0,0,0), + (13610,51,27024,0,2052,0,0,1,0,0,0,0,0,0), + (13611,51,27025,0,2052,0,0,1,0,0,0,0,0,0), + (15173,51,34506,0,2052,0,0,1,0,0,0,0,0,0), + (15174,51,34507,0,2052,0,0,1,0,0,0,0,0,0), + (15175,51,34508,0,2052,0,0,1,0,0,0,0,0,0), + (15176,51,34500,0,2052,0,0,1,0,0,0,0,0,0), + (15177,51,34502,0,2052,0,0,1,0,0,0,0,0,0), + (15178,51,34503,0,2052,0,0,1,0,0,0,0,0,0), + (15179,51,34501,0,2052,0,0,1,0,0,0,0,0,0), + (15180,51,34497,0,2052,0,0,1,0,0,0,0,0,0), + (15181,51,34498,0,2052,0,0,1,0,0,0,0,0,0), + (15182,51,34499,0,2052,0,0,1,0,0,0,0,0,0), + (15183,51,34494,0,2052,0,0,1,0,0,0,0,0,0), + (15184,51,34496,0,2052,0,0,1,0,0,0,0,0,0), + (15185,51,34491,0,2052,0,0,1,0,0,0,0,0,0), + (15186,51,34492,0,2052,0,0,1,0,0,0,0,0,0), + (15187,51,34493,0,2052,0,0,1,0,0,0,0,0,0), + (15243,51,34600,0,2052,0,0,1,0,0,0,0,0,0), + (15254,51,34838,0,2052,0,0,1,0,0,0,0,0,0), + (15255,51,34839,0,2052,0,0,1,0,0,0,0,0,0), + (15256,51,34833,0,2052,0,0,1,0,0,0,0,0,0), + (15257,51,34834,0,2052,0,0,1,0,0,0,0,0,0), + (15258,51,34835,0,2052,0,0,1,0,0,0,0,0,0), + (15259,51,34836,0,2052,0,0,1,0,0,0,0,0,0), + (15260,51,34837,0,2052,0,0,1,0,0,0,0,0,0), + (15319,51,19498,0,2052,0,0,1,0,0,0,0,0,0), + (15320,51,19499,0,2052,0,0,1,0,0,0,0,0,0), + (15321,51,19500,0,2052,0,0,1,0,0,0,0,0,0), + (15356,51,34477,0,2052,0,0,1,0,0,0,0,0,0), + (15698,51,36916,0,2052,0,0,1,0,0,0,0,0,0), + (16789,51,48995,0,2052,0,0,1,0,0,0,0,0,0), + (16790,51,48996,0,2052,0,0,1,0,0,0,0,0,0), + (16791,51,48998,0,2052,0,0,1,0,0,0,0,0,0), + (16792,51,48999,0,2052,0,0,1,0,0,0,0,0,0), + (16804,51,49011,0,2052,0,0,1,0,0,0,0,0,0), + (16805,51,49009,0,2052,0,0,1,0,0,0,0,0,0), + (16806,51,49012,0,2052,0,0,1,0,0,0,0,0,0), + (16807,51,49010,0,2052,0,0,1,0,0,0,0,0,0), + (16834,51,49055,0,2052,0,0,1,0,0,0,0,0,0), + (16835,51,49056,0,2052,0,0,1,0,0,0,0,0,0), + (16836,51,49053,0,2052,0,0,1,0,0,0,0,0,0), + (16837,51,49054,0,2052,0,0,1,0,0,0,0,0,0), + (16838,51,49066,0,2052,0,0,1,0,0,0,0,0,0), + (16839,51,49067,0,2052,0,0,1,0,0,0,0,0,0), + (16840,51,27026,0,2052,0,0,1,0,0,0,0,0,0), + (16841,51,49064,0,2052,0,0,1,0,0,0,0,0,0), + (16842,51,49065,0,2052,0,0,1,0,0,0,0,0,0), + (18029,51,53339,0,2052,0,0,1,0,0,0,0,0,0), + (20264,51,60192,0,2052,0,0,1,0,0,0,0,0,0), + (20668,51,19503,0,2052,0,0,1,0,0,0,0,0,0), + (20856,51,63672,0,2052,0,0,1,0,0,0,0,0,0), + (20857,51,63671,0,2052,0,0,1,0,0,0,0,0,0), + (20858,51,63670,0,2052,0,0,1,0,0,0,0,0,0), + (20859,51,63669,0,2052,0,0,1,0,0,0,0,0,0), + (20860,51,63668,0,2052,0,0,1,0,0,0,0,0,0), + (20861,51,3674,0,2052,0,0,1,0,0,0,0,0,0), + (254,54,198,0,3195,0,0,1,0,2,0,0,0,0), + (256,55,202,0,2087,0,0,1,0,2,0,0,0,0), + (2313,56,2050,0,2064,0,0,1,0,2,0,0,0,0), + (2314,56,2052,0,2064,0,0,1,0,0,0,0,0,0), + (2315,56,2053,0,2064,0,0,1,0,0,0,0,0,0), + (2316,56,2054,0,2064,0,0,1,0,0,0,0,0,0), + (2317,56,2055,0,2064,0,0,1,0,0,0,0,0,0), + (2319,56,585,0,2064,0,0,1,0,2,0,0,0,0), + (2320,56,591,0,2064,0,0,1,0,0,0,0,0,0), + (2321,56,598,0,2064,0,0,1,0,0,0,0,0,0), + (2322,56,984,0,2064,0,0,1,0,0,0,0,0,0), + (2323,56,1004,0,2064,0,0,1,0,0,0,0,0,0), + (2325,56,596,0,2064,0,0,1,0,0,0,0,0,0), + (2326,56,528,0,2064,0,0,1,0,0,0,0,0,0), + (2327,56,552,0,2064,0,0,1,0,0,0,0,0,0), + (2331,56,2006,0,2064,0,0,1,0,0,0,0,0,0), + (2332,56,2010,0,2064,0,0,1,0,0,0,0,0,0), + (3776,56,6060,0,2064,0,0,1,0,0,0,0,0,0), + (3777,56,2060,0,2064,0,0,1,0,0,0,0,0,0), + (3778,56,6063,0,2064,0,0,1,0,0,0,0,0,0), + (3779,56,6064,0,2064,0,0,1,0,0,0,0,0,0), + (3787,56,996,0,2064,0,0,1,0,0,0,0,0,0), + (3790,56,139,0,2064,0,0,1,0,0,0,0,0,0), + (3791,56,6074,0,2064,0,0,1,0,0,0,0,0,0), + (3792,56,6075,0,2064,0,0,1,0,0,0,0,0,0), + (3793,56,6076,0,2064,0,0,1,0,0,0,0,0,0), + (3794,56,6077,0,2064,0,0,1,0,0,0,0,0,0), + (3795,56,6078,0,2064,0,0,1,0,0,0,0,0,0), + (5107,56,2061,0,2064,0,0,1,0,0,0,0,0,0), + (5108,56,9472,0,2064,0,0,1,0,0,0,0,0,0), + (5109,56,9473,0,2064,0,0,1,0,0,0,0,0,0), + (5110,56,9474,0,2064,0,0,1,0,0,0,0,0,0), + (5842,56,10915,0,2064,0,0,1,0,0,0,0,0,0), + (5843,56,10916,0,2064,0,0,1,0,0,0,0,0,0), + (5844,56,10917,0,2064,0,0,1,0,0,0,0,0,0), + (5845,56,10927,0,2064,0,0,1,0,0,0,0,0,0), + (5846,56,10928,0,2064,0,0,1,0,0,0,0,0,0), + (5847,56,10929,0,2064,0,0,1,0,0,0,0,0,0), + (5848,56,10963,0,2064,0,0,1,0,0,0,0,0,0), + (5849,56,10964,0,2064,0,0,1,0,0,0,0,0,0), + (5850,56,10965,0,2064,0,0,1,0,0,0,0,0,0), + (5851,56,10933,0,2064,0,0,1,0,0,0,0,0,0), + (5852,56,10934,0,2064,0,0,1,0,0,0,0,0,0), + (5855,56,10960,0,2064,0,0,1,0,0,0,0,0,0), + (5856,56,10961,0,2064,0,0,1,0,0,0,0,0,0), + (5869,56,10880,0,2064,0,0,1,0,0,0,0,0,0), + (5870,56,10881,0,2064,0,0,1,0,0,0,0,0,0), + (8178,56,15237,0,2064,0,0,1,0,0,0,0,0,0), + (8275,56,14914,0,2064,0,0,1,0,0,0,0,0,0), + (8277,56,15262,0,2064,0,0,1,0,0,0,0,0,0), + (8278,56,15263,0,2064,0,0,1,0,0,0,0,0,0), + (8279,56,15264,0,2064,0,0,1,0,0,0,0,0,0), + (8280,56,15265,0,2064,0,0,1,0,0,0,0,0,0), + (8281,56,15266,0,2064,0,0,1,0,0,0,0,0,0), + (8282,56,15267,0,2064,0,0,1,0,0,0,0,0,0), + (8356,56,15430,0,2064,0,0,1,0,0,0,0,0,0), + (8357,56,15431,0,2064,0,0,1,0,0,0,0,0,0), + (10616,56,15261,0,2064,0,0,1,0,0,0,0,0,0), + (10839,56,19236,0,2064,0,0,1,0,0,0,0,0,0), + (10840,56,19238,0,2064,0,0,1,0,0,0,0,0,0), + (10841,56,19240,0,2064,0,0,1,0,0,0,0,0,0), + (10842,56,19241,0,2064,0,0,1,0,0,0,0,0,0), + (10843,56,19242,0,2064,0,0,1,0,0,0,0,0,0), + (10844,56,19243,0,2064,0,0,1,0,0,0,0,0,0), + (11793,56,20770,0,2064,0,0,1,0,0,0,0,0,0), + (12601,56,23455,0,2064,0,0,1,0,0,0,0,0,0), + (12602,56,23458,0,2064,0,0,1,0,0,0,0,0,0), + (12603,56,23459,0,2064,0,0,1,0,0,0,0,0,0), + (13185,56,25210,0,2064,0,0,1,0,0,0,0,0,0), + (13186,56,25213,0,2064,0,0,1,0,0,0,0,0,0), + (13189,56,25221,0,2064,0,0,1,0,0,0,0,0,0), + (13190,56,25222,0,2064,0,0,1,0,0,0,0,0,0), + (13191,56,25233,0,2064,0,0,1,0,0,0,0,0,0), + (13192,56,25235,0,2064,0,0,1,0,0,0,0,0,0), + (13194,56,25308,0,2064,0,0,1,0,0,0,0,0,0), + (13213,56,25314,0,2064,0,0,1,0,0,0,0,0,0), + (13214,56,25314,0,2064,0,0,1,0,0,0,0,0,0), + (13215,56,25315,0,2064,0,0,1,0,0,0,0,0,0), + (13216,56,25316,0,2064,0,0,1,0,0,0,0,0,0), + (13220,56,25331,0,2064,0,0,1,0,0,0,0,0,0), + (13221,56,25329,0,2064,0,0,1,0,0,0,0,0,0), + (13222,56,25363,0,2064,0,0,1,0,0,0,0,0,0), + (13223,56,25364,0,2064,0,0,1,0,0,0,0,0,0), + (13252,56,25384,0,2064,0,0,1,0,0,0,0,0,0), + (13267,56,25435,0,2064,0,0,1,0,0,0,0,0,0), + (13268,56,25437,0,2064,0,0,1,0,0,0,0,0,0), + (13823,56,27789,0,2064,0,0,1,0,0,0,0,0,0), + (13824,56,27790,0,2064,0,0,1,0,0,0,0,0,0), + (13825,56,27799,0,2064,0,0,1,0,0,0,0,0,0), + (13826,56,27803,0,2064,0,0,1,0,0,0,0,0,0), + (13827,56,27800,0,2064,0,0,1,0,0,0,0,0,0), + (13828,56,27804,0,2064,0,0,1,0,0,0,0,0,0), + (13829,56,27801,0,2064,0,0,1,0,0,0,0,0,0), + (13830,56,27805,0,2064,0,0,1,0,0,0,0,0,0), + (13832,56,27811,0,2064,0,0,1,0,0,0,0,0,0), + (13833,56,27813,0,2064,0,0,1,0,0,0,0,0,0), + (13834,56,27815,0,2064,0,0,1,0,0,0,0,0,0), + (13835,56,27817,0,2064,0,0,1,0,0,0,0,0,0), + (13836,56,27816,0,2064,0,0,1,0,0,0,0,0,0), + (13837,56,27818,0,2064,0,0,1,0,0,0,0,0,0), + (13838,56,724,0,2064,0,0,1,0,0,0,0,0,0), + (13839,56,7001,0,2064,0,0,1,0,0,0,0,0,0), + (13850,56,27870,0,2064,0,0,1,0,0,0,0,0,0), + (13851,56,27871,0,2064,0,0,1,0,0,0,0,0,0), + (13852,56,27873,0,2064,0,0,1,0,0,0,0,0,0), + (13853,56,27874,0,2064,0,0,1,0,0,0,0,0,0), + (13854,56,27900,0,2064,0,0,1,0,0,0,0,0,0), + (13855,56,27901,0,2064,0,0,1,0,0,0,0,0,0), + (13856,56,27902,0,2064,0,0,1,0,0,0,0,0,0), + (13857,56,27903,0,2064,0,0,1,0,0,0,0,0,0), + (13858,56,27904,0,2064,0,0,1,0,0,0,0,0,0), + (14944,56,33158,0,2064,0,0,1,0,0,0,0,0,0), + (14945,56,33159,0,2064,0,0,1,0,0,0,0,0,0), + (14946,56,33160,0,2064,0,0,1,0,0,0,0,0,0), + (14947,56,33161,0,2064,0,0,1,0,0,0,0,0,0), + (14948,56,33162,0,2064,0,0,1,0,0,0,0,0,0), + (14949,56,33150,0,2064,0,0,1,0,0,0,0,0,0), + (14950,56,33154,0,2064,0,0,1,0,0,0,0,0,0), + (14954,56,33151,0,2064,0,0,1,0,0,0,0,0,0), + (14955,56,33142,0,2064,0,0,1,0,0,0,0,0,0), + (14956,56,33145,0,2064,0,0,1,0,0,0,0,0,0), + (14957,56,33146,0,2064,0,0,1,0,0,0,0,0,0), + (14958,56,33143,0,2064,0,0,1,0,0,0,0,0,0), + (15018,56,33076,0,2064,0,0,1,0,0,0,0,0,0), + (15019,56,32546,0,2064,0,0,1,0,0,0,0,0,0), + (15050,56,28275,0,2064,0,0,1,0,0,0,0,0,0), + (15051,56,28276,0,2064,0,0,1,0,0,0,0,0,0), + (15250,56,34753,0,2064,0,0,1,0,0,0,0,0,0), + (15251,56,34754,0,2064,0,0,1,0,0,0,0,0,0), + (15261,56,34859,0,2064,0,0,1,0,0,0,0,0,0), + (15262,56,34860,0,2064,0,0,1,0,0,0,0,0,0), + (15263,56,34861,0,2064,0,0,1,0,0,0,0,0,0), + (15264,56,34863,0,2064,0,0,1,0,0,0,0,0,0), + (15265,56,34864,0,2064,0,0,1,0,0,0,0,0,0), + (15266,56,34865,0,2064,0,0,1,0,0,0,0,0,0), + (15267,56,34866,0,2064,0,0,1,0,0,0,0,0,0), + (16519,56,48062,0,2064,0,0,1,0,0,0,0,0,0), + (16520,56,48063,0,2064,0,0,1,0,0,0,0,0,0), + (16523,56,48067,0,2064,0,0,1,0,0,0,0,0,0), + (16524,56,48068,0,2064,0,0,1,0,0,0,0,0,0), + (16525,56,48070,0,2064,0,0,1,0,0,0,0,0,0), + (16526,56,48071,0,2064,0,0,1,0,0,0,0,0,0), + (16527,56,48072,0,2064,0,0,1,0,0,0,0,0,0), + (16530,56,48077,0,2064,0,0,1,0,0,0,0,0,0), + (16531,56,48075,0,2064,0,0,1,0,0,0,0,0,0), + (16532,56,48078,0,2064,0,0,1,0,0,0,0,0,0), + (16533,56,48076,0,2064,0,0,1,0,0,0,0,0,0), + (16534,56,48086,0,2064,0,0,1,0,0,0,0,0,0), + (16535,56,48087,0,2064,0,0,1,0,0,0,0,0,0), + (16536,56,48084,0,2064,0,0,1,0,0,0,0,0,0), + (16537,56,48085,0,2064,0,0,1,0,0,0,0,0,0), + (16538,56,48088,0,2064,0,0,1,0,0,0,0,0,0), + (16539,56,48089,0,2064,0,0,1,0,0,0,0,0,0), + (16540,56,48112,0,2064,0,0,1,0,0,0,0,0,0), + (16541,56,48113,0,2064,0,0,1,0,0,0,0,0,0), + (16544,56,48119,0,2064,0,0,1,0,0,0,0,0,0), + (16545,56,48120,0,2064,0,0,1,0,0,0,0,0,0), + (16547,56,48122,0,2064,0,0,1,0,0,0,0,0,0), + (16548,56,48123,0,2064,0,0,1,0,0,0,0,0,0), + (16555,56,48134,0,2064,0,0,1,0,0,0,0,0,0), + (16556,56,48135,0,2064,0,0,1,0,0,0,0,0,0), + (16584,56,48171,0,2064,0,0,1,0,0,0,0,0,0), + (16585,56,48172,0,2064,0,0,1,0,0,0,0,0,0), + (16586,56,48173,0,2064,0,0,1,0,0,0,0,0,0), + (21025,56,64843,0,2064,0,0,1,0,0,0,0,0,0), + (21285,56,64844,0,2064,0,0,1,0,0,0,0,0,0), + (2337,78,976,0,2064,0,0,1,0,0,0,0,0,0), + (2340,78,605,0,2064,0,0,1,0,0,0,0,0,0), + (2346,78,589,0,2064,0,0,1,0,0,0,0,0,0), + (2347,78,594,0,2064,0,0,1,0,0,0,0,0,0), + (2348,78,970,0,2064,0,0,1,0,0,0,0,0,0), + (2349,78,992,0,2064,0,0,1,0,0,0,0,0,0), + (2350,78,2767,0,2064,0,0,1,0,0,0,0,0,0), + (4025,78,2096,0,2064,0,0,1,0,0,0,0,0,0), + (4522,78,8092,0,2064,0,0,1,0,0,0,0,0,0), + (4523,78,8102,0,2064,0,0,1,0,0,0,0,0,0), + (4524,78,8103,0,2064,0,0,1,0,0,0,0,0,0), + (4525,78,8104,0,2064,0,0,1,0,0,0,0,0,0), + (4526,78,8105,0,2064,0,0,1,0,0,0,0,0,0), + (4527,78,8106,0,2064,0,0,1,0,0,0,0,0,0), + (4528,78,8122,0,2064,0,0,1,0,0,0,0,0,0), + (4529,78,8124,0,2064,0,0,1,0,0,0,0,0,0), + (4545,78,453,0,2064,0,0,1,0,0,0,0,0,0), + (5166,78,586,0,2064,0,0,1,0,0,0,0,0,0), + (5831,78,10957,0,2064,0,0,1,0,0,0,0,0,0), + (5832,78,10958,0,2064,0,0,1,0,0,0,0,0,0), + (5833,78,10888,0,2064,0,0,1,0,0,0,0,0,0), + (5834,78,10890,0,2064,0,0,1,0,0,0,0,0,0), + (5835,78,10892,0,2064,0,0,1,0,0,0,0,0,0), + (5836,78,10893,0,2064,0,0,1,0,0,0,0,0,0), + (5837,78,10894,0,2064,0,0,1,0,0,0,0,0,0), + (5859,78,10909,0,2064,0,0,1,0,0,0,0,0,0), + (5862,78,10945,0,2064,0,0,1,0,0,0,0,0,0), + (5863,78,10946,0,2064,0,0,1,0,0,0,0,0,0), + (5864,78,10947,0,2064,0,0,1,0,0,0,0,0,0), + (8236,78,15259,0,2064,0,0,1,0,0,0,0,0,0), + (8237,78,15307,0,2064,0,0,1,0,0,0,0,0,0), + (8238,78,15308,0,2064,0,0,1,0,0,0,0,0,0), + (8239,78,15309,0,2064,0,0,1,0,0,0,0,0,0), + (8240,78,15310,0,2064,0,0,1,0,0,0,0,0,0), + (8241,78,15274,0,2064,0,0,1,0,0,0,0,0,0), + (8242,78,15311,0,2064,0,0,1,0,0,0,0,0,0), + (8243,78,15273,0,2064,0,0,1,0,0,0,0,0,0), + (8244,78,15312,0,2064,0,0,1,0,0,0,0,0,0), + (8245,78,15313,0,2064,0,0,1,0,0,0,0,0,0), + (8246,78,15314,0,2064,0,0,1,0,0,0,0,0,0), + (8247,78,15316,0,2064,0,0,1,0,0,0,0,0,0), + (8248,78,15275,0,2064,0,0,1,0,0,0,0,0,0), + (8249,78,15317,0,2064,0,0,1,0,0,0,0,0,0), + (8250,78,15318,0,2064,0,0,1,0,0,0,0,0,0), + (8251,78,15272,0,2064,0,0,1,0,0,0,0,0,0), + (8252,78,15320,0,2064,0,0,1,0,0,0,0,0,0), + (8262,78,15327,0,2064,0,0,1,0,0,0,0,0,0), + (8263,78,15260,0,2064,0,0,1,0,0,0,0,0,0), + (8264,78,15328,0,2064,0,0,1,0,0,0,0,0,0), + (8266,78,15257,0,2064,0,0,1,0,0,0,0,0,0), + (8267,78,15331,0,2064,0,0,1,0,0,0,0,0,0), + (8268,78,15332,0,2064,0,0,1,0,0,0,0,0,0), + (8270,78,15270,0,2064,0,0,1,0,0,0,0,0,0), + (8271,78,15335,0,2064,0,0,1,0,0,0,0,0,0), + (8272,78,15336,0,2064,0,0,1,0,0,0,0,0,0), + (8273,78,15337,0,2064,0,0,1,0,0,0,0,0,0), + (8274,78,15338,0,2064,0,0,1,0,0,0,0,0,0), + (8328,78,15286,0,2064,0,0,1,0,0,0,0,0,0), + (8336,78,15407,0,2064,0,0,1,0,0,0,0,0,0), + (8376,78,15487,0,2064,0,0,1,0,0,0,0,0,0), + (8377,78,15392,0,2064,0,0,1,0,0,0,0,0,0), + (8378,78,15448,0,2064,0,0,1,0,0,0,0,0,0), + (9836,78,17311,0,2064,0,0,1,0,0,0,0,0,0), + (9837,78,17312,0,2064,0,0,1,0,0,0,0,0,0), + (9838,78,17313,0,2064,0,0,1,0,0,0,0,0,0), + (9839,78,17314,0,2064,0,0,1,0,0,0,0,0,0), + (9841,78,17322,0,2064,0,0,1,0,0,0,0,0,0), + (9842,78,17323,0,2064,0,0,1,0,0,0,0,0,0), + (10180,78,2944,0,2064,0,0,1,0,0,0,0,0,0), + (10617,78,18807,0,2064,0,0,1,0,0,0,0,0,0), + (10876,78,19276,0,2064,0,0,1,0,0,0,0,0,0), + (10877,78,19277,0,2064,0,0,1,0,0,0,0,0,0), + (10878,78,19278,0,2064,0,0,1,0,0,0,0,0,0), + (10879,78,19279,0,2064,0,0,1,0,0,0,0,0,0), + (10880,78,19280,0,2064,0,0,1,0,0,0,0,0,0), + (13224,78,25367,0,2064,0,0,1,0,0,0,0,0,0), + (13225,78,25368,0,2064,0,0,1,0,0,0,0,0,0), + (13241,78,25372,0,2064,0,0,1,0,0,0,0,0,0), + (13242,78,25375,0,2064,0,0,1,0,0,0,0,0,0), + (13253,78,25387,0,2064,0,0,1,0,0,0,0,0,0), + (13265,78,25433,0,2064,0,0,1,0,0,0,0,0,0), + (13282,78,25467,0,2064,0,0,1,0,0,0,0,0,0), + (13810,78,27683,0,2064,0,0,1,0,0,0,0,0,0), + (13846,78,27839,0,2064,0,0,1,0,0,0,0,0,0), + (13847,78,27840,0,2064,0,0,1,0,0,0,0,0,0), + (14839,78,32379,0,2064,0,0,1,0,0,0,0,0,0), + (14938,78,32996,0,2064,0,0,1,0,0,0,0,0,0), + (14982,78,33221,0,2064,0,0,1,0,0,0,0,0,0), + (14983,78,33222,0,2064,0,0,1,0,0,0,0,0,0), + (14984,78,33223,0,2064,0,0,1,0,0,0,0,0,0), + (14985,78,33224,0,2064,0,0,1,0,0,0,0,0,0), + (14986,78,33225,0,2064,0,0,1,0,0,0,0,0,0), + (14987,78,33213,0,2064,0,0,1,0,0,0,0,0,0), + (14988,78,33214,0,2064,0,0,1,0,0,0,0,0,0), + (14989,78,33215,0,2064,0,0,1,0,0,0,0,0,0), + (15024,78,14910,0,2064,0,0,1,0,0,0,0,0,0), + (15025,78,33371,0,2064,0,0,1,0,0,0,0,0,0), + (15249,78,34433,0,2064,0,0,1,0,0,0,0,0,0), + (15294,78,33191,0,2064,0,0,1,0,0,0,0,0,0), + (15295,78,33192,0,2064,0,0,1,0,0,0,0,0,0), + (15296,78,33193,0,2064,0,0,1,0,0,0,0,0,0), + (15299,78,33196,0,2064,0,0,1,0,0,0,0,0,0), + (15300,78,33197,0,2064,0,0,1,0,0,0,0,0,0), + (15301,78,33198,0,2064,0,0,1,0,0,0,0,0,0), + (15306,78,34914,0,2064,0,0,1,0,0,0,0,0,0), + (15307,78,34916,0,2064,0,0,1,0,0,0,0,0,0), + (15308,78,34917,0,2064,0,0,1,0,0,0,0,0,0), + (15310,78,34919,0,2064,0,0,1,0,0,0,0,0,0), + (15754,78,39374,0,2064,0,0,1,0,0,0,0,0,0), + (16550,78,48124,0,2064,0,0,1,0,0,0,0,0,0), + (16551,78,48125,0,2064,0,0,1,0,0,0,0,0,0), + (16552,78,48126,0,2064,0,0,1,0,0,0,0,0,0), + (16553,78,48127,0,2064,0,0,1,0,0,0,0,0,0), + (16571,78,48155,0,2064,0,0,1,0,0,0,0,0,0), + (16572,78,48156,0,2064,0,0,1,0,0,0,0,0,0), + (16573,78,48157,0,2064,0,0,1,0,0,0,0,0,0), + (16574,78,48158,0,2064,0,0,1,0,0,0,0,0,0), + (16575,78,48159,0,2064,0,0,1,0,0,0,0,0,0), + (16576,78,48160,0,2064,0,0,1,0,0,0,0,0,0), + (16582,78,48169,0,2064,0,0,1,0,0,0,0,0,0), + (16583,78,48170,0,2064,0,0,1,0,0,0,0,0,0), + (16605,78,48299,0,2064,0,0,1,0,0,0,0,0,0), + (16606,78,48300,0,2064,0,0,1,0,0,0,0,0,0), + (17182,78,48045,0,2064,0,0,1,0,0,0,0,0,0), + (2200,95,107,0,2115,0,0,1,0,2,0,0,0,0), + (2201,95,3127,0,2063,0,0,1,0,0,0,0,0,0), + (3370,95,5301,0,2049,0,0,1,0,2,0,0,0,0), + (7336,95,13358,0,2052,0,0,1,0,2,0,0,0,0), + (10636,95,18848,0,2112,0,0,1,0,0,0,0,0,0), + (13068,95,16092,0,2056,0,0,1,0,2,0,0,0,0), + (13093,95,24949,0,2052,0,0,1,0,2,0,0,0,0), + (15058,95,32215,0,2049,0,0,1,0,2,0,0,0,0), + (16245,95,45903,0,2080,0,0,1,0,2,0,0,0,0), + (17542,95,3127,0,2080,0,0,1,0,1,0,0,0,0), + (610,118,674,0,2157,0,0,1,0,2,0,0,0,0), + (11708,125,20572,2,2093,0,0,1,0,2,0,0,0,0), + (11711,125,20575,2,2304,0,0,1,0,2,0,0,0,0), + (11712,125,20576,2,2052,0,0,1,0,2,0,0,0,0), + (12041,125,21563,2,3227,0,0,1,0,2,0,0,0,0), + (15034,125,33702,2,2304,0,0,1,0,2,0,0,0,0), + (15035,125,33697,2,2112,0,0,1,0,2,0,0,0,0), + (18904,125,54562,2,2080,0,0,1,0,2,0,0,0,0), + (21040,125,65222,2,2112,0,0,1,0,2,0,0,0,0), + (20665,126,21009,8,3133,0,0,1,0,2,0,0,0,0), + (1839,129,3276,0,3551,0,0,1,0,0,100,50,0,0), + (1840,129,3277,0,3551,0,0,1,0,0,150,80,0,0), + (1841,129,3278,0,3551,0,0,1,0,0,185,115,0,0), + (4414,129,7928,0,3551,0,0,1,0,0,210,150,0,0), + (4415,129,7929,0,3551,0,0,1,0,0,240,180,0,0), + (4417,129,7934,0,3551,0,0,1,0,0,150,80,0,0), + (5766,129,10846,0,3551,0,0,1,27028,0,0,0,0,0), + (5767,129,10840,0,3551,0,0,1,0,0,270,210,0,0), + (5768,129,10841,0,3551,0,0,1,0,0,300,240,0,0), + (10488,129,18629,0,3551,0,0,1,0,0,320,260,0,0), + (10489,129,18630,0,3551,0,0,1,0,0,350,290,0,0), + (17878,129,10841,0,2080,0,0,1,0,1,300,240,0,0), + (17879,129,18629,0,2080,0,0,1,0,1,320,260,0,0), + (19181,129,10846,0,2080,0,0,1,27028,2,0,0,0,0), + (20720,129,18630,0,2080,0,0,1,0,1,350,290,0,0), + (17871,129,3276,0,2080,0,0,40,0,1,100,50,0,0), + (17872,129,7934,0,2080,0,0,80,0,1,150,80,0,0), + (17873,129,3277,0,2080,0,0,80,0,1,150,80,0,0), + (17874,129,3278,0,2080,0,0,115,0,1,185,115,0,0), + (17875,129,7928,0,2080,0,0,150,0,1,210,150,0,0), + (17876,129,7929,0,2080,0,0,180,0,1,240,180,0,0), + (17877,129,10840,0,2080,0,0,210,0,1,270,210,0,0), + (716,134,768,0,3072,0,0,1,0,0,0,0,0,0), + (717,134,779,0,3072,0,0,1,780,0,0,0,0,0), + (719,134,780,0,3072,0,0,1,769,0,0,0,0,0), + (862,134,1082,0,3072,0,0,1,3029,0,0,0,0,0), + (2075,134,1066,0,3072,0,0,1,0,0,0,0,0,0), + (2077,134,3029,0,3072,0,0,1,5201,0,0,0,0,0), + (3304,134,99,0,3072,0,0,1,1735,0,0,0,0,0), + (3305,134,1735,0,3072,0,0,1,9490,0,0,0,0,0), + (3306,134,5209,0,3072,0,0,1,0,0,0,0,0,0), + (3307,134,5211,0,3072,0,0,1,6798,0,0,0,0,0), + (3310,134,5217,0,3072,0,0,1,6793,0,0,0,0,0), + (3311,134,5221,0,3072,0,0,1,6800,0,0,0,0,0), + (3313,134,1822,0,3072,0,0,1,1823,0,0,0,0,0), + (3314,134,1823,0,3072,0,0,1,1824,0,0,0,0,0), + (3315,134,1824,0,3072,0,0,1,9904,0,0,0,0,0), + (3318,134,5225,0,3072,0,0,1,0,0,0,0,0,0), + (3470,134,5487,0,3072,0,0,1,9634,0,0,0,0,0), + (4060,134,5201,0,3072,0,0,1,9849,0,0,0,0,0), + (4063,134,6785,0,3072,0,0,1,6787,0,0,0,0,0), + (4064,134,6787,0,3072,0,0,1,9866,0,0,0,0,0), + (4067,134,6793,0,3072,0,0,1,9845,0,0,0,0,0), + (4069,134,3025,0,3072,0,0,1,0,0,0,0,0,0), + (4071,134,6800,0,3072,0,0,1,8992,0,0,0,0,0), + (4072,134,5421,0,3072,0,0,1,0,0,0,0,0,0), + (4073,134,6807,0,3072,0,0,1,6808,0,0,0,0,0), + (4074,134,6808,0,3072,0,0,1,6809,0,0,0,0,0), + (4075,134,6809,0,3072,0,0,1,8972,0,0,0,0,0), + (4140,134,1178,0,3072,0,0,1,0,0,0,0,0,0), + (4962,134,8972,0,3072,0,0,1,9745,0,0,0,0,0), + (4966,134,6798,0,3072,0,0,1,8983,0,0,0,0,0), + (4967,134,8983,0,3072,0,0,1,0,0,0,0,0,0), + (4968,134,769,0,3072,0,0,1,9754,0,0,0,0,0), + (4969,134,5229,0,3072,0,0,1,0,0,0,0,0,0), + (4970,134,8992,0,3072,0,0,1,9829,0,0,0,0,0), + (4971,134,1850,0,3072,0,0,1,9821,0,0,0,0,0), + (4972,134,8998,0,3072,0,0,1,9000,0,0,0,0,0), + (4973,134,9000,0,3072,0,0,1,9892,0,0,0,0,0), + (4974,134,9005,0,3072,0,0,1,9823,0,0,0,0,0), + (4975,134,9007,0,3072,0,0,1,9824,0,0,0,0,0), + (5128,134,9490,0,3072,0,0,1,9747,0,0,0,0,0), + (5129,134,1079,0,3072,0,0,1,9492,0,0,0,0,0), + (5130,134,9492,0,3072,0,0,1,9493,0,0,0,0,0), + (5131,134,9493,0,3072,0,0,1,9752,0,0,0,0,0), + (5150,134,783,0,3072,0,0,1,0,0,0,0,0,0), + (5206,134,9745,0,3072,0,0,1,9880,0,0,0,0,0), + (5207,134,9747,0,3072,0,0,1,9898,0,0,0,0,0), + (5210,134,9752,0,3072,0,0,1,9894,0,0,0,0,0), + (5211,134,9754,0,3072,0,0,1,9908,0,0,0,0,0), + (5246,134,9821,0,3072,0,0,1,33357,0,0,0,0,0), + (5247,134,9823,0,3072,0,0,1,9827,0,0,0,0,0), + (5248,134,9827,0,3072,0,0,1,27006,0,0,0,0,0), + (5249,134,9824,0,3072,0,0,1,9826,0,0,0,0,0), + (5250,134,9826,0,3072,0,0,1,27007,0,0,0,0,0), + (5251,134,9829,0,3072,0,0,1,9830,0,0,0,0,0), + (5252,134,9830,0,3072,0,0,1,27001,0,0,0,0,0), + (5259,134,9845,0,3072,0,0,1,9846,0,0,0,0,0), + (5260,134,9846,0,3072,0,0,1,50212,0,0,0,0,0), + (5261,134,9849,0,3072,0,0,1,9850,0,0,0,0,0), + (5262,134,9850,0,3072,0,0,1,27000,0,0,0,0,0), + (5270,134,9866,0,3072,0,0,1,9867,0,0,0,0,0), + (5271,134,9867,0,3072,0,0,1,27005,0,0,0,0,0), + (5276,134,9880,0,3072,0,0,1,9881,0,0,0,0,0), + (5277,134,9881,0,3072,0,0,1,26996,0,0,0,0,0), + (5280,134,9892,0,3072,0,0,1,31709,0,0,0,0,0), + (5281,134,9894,0,3072,0,0,1,9896,0,0,0,0,0), + (5282,134,9896,0,3072,0,0,1,27008,0,0,0,0,0), + (5283,134,9898,0,3072,0,0,1,26998,0,0,0,0,0), + (5285,134,9904,0,3072,0,0,1,27003,0,0,0,0,0), + (5287,134,9908,0,3072,0,0,1,26997,0,0,0,0,0), + (6036,134,9634,0,3072,0,0,1,0,0,0,0,0,0), + (6037,134,9635,0,3072,0,0,1,0,0,0,0,0,0), + (6252,134,5215,0,3072,0,0,1,6783,0,0,0,0,0), + (6255,134,6795,0,3072,0,0,1,8974,0,0,0,0,0), + (9493,134,16958,0,3072,0,0,1,16961,0,0,0,0,0), + (9494,134,16961,0,3072,0,0,1,0,0,0,0,0,0), + (10460,134,16857,0,3072,0,0,1,0,0,0,0,0,0), + (11780,134,20719,0,3072,0,0,1,0,0,0,0,0,0), + (12016,134,21178,0,3072,0,0,1,0,0,0,0,0,0), + (12256,134,22568,0,3072,0,0,1,22827,0,0,0,0,0), + (12257,134,22570,0,3072,0,0,1,49802,0,0,0,0,0), + (12327,134,22827,0,3072,0,0,1,22828,0,0,0,0,0), + (12328,134,22828,0,3072,0,0,1,22829,0,0,0,0,0), + (12329,134,22829,0,3072,0,0,1,31018,0,0,0,0,0), + (12345,134,22842,0,3072,0,0,1,22895,0,0,0,0,0), + (12348,134,22845,0,3072,0,0,1,0,0,0,0,0,0), + (13085,134,17007,0,3072,0,0,1,0,0,0,0,0,0), + (13581,134,26996,0,3072,0,0,1,48479,0,0,0,0,0), + (13582,134,26998,0,3072,0,0,1,48559,0,0,0,0,0), + (13583,134,26997,0,3072,0,0,1,48561,0,0,0,0,0), + (13585,134,27000,0,3072,0,0,1,48569,0,0,0,0,0), + (13586,134,27008,0,3072,0,0,1,49799,0,0,0,0,0), + (13587,134,27002,0,3072,0,0,1,48571,0,0,0,0,0), + (13588,134,27001,0,3072,0,0,1,27002,0,0,0,0,0), + (13589,134,27003,0,3072,0,0,1,48573,0,0,0,0,0), + (13590,134,27004,0,3072,0,0,1,48575,0,0,0,0,0), + (13591,134,24248,0,3072,0,0,1,48576,0,0,0,0,0), + (13592,134,27005,0,3072,0,0,1,48578,0,0,0,0,0), + (13593,134,27006,0,3072,0,0,1,49803,0,0,0,0,0), + (13594,134,27007,0,3072,0,0,1,49804,0,0,0,0,0), + (14491,134,31018,0,3072,0,0,1,24248,0,0,0,0,0), + (14708,134,31709,0,3072,0,0,1,27004,0,0,0,0,0), + (15020,134,33357,0,3072,0,0,1,0,0,0,0,0,0), + (15048,134,33745,0,3072,0,0,1,48567,0,0,0,0,0), + (15090,134,33872,0,3072,0,0,1,0,0,0,0,0,0), + (15091,134,33873,0,3072,0,0,1,0,0,0,0,0,0), + (15094,134,33851,0,3072,0,0,1,0,0,0,0,0,0), + (15095,134,33852,0,3072,0,0,1,0,0,0,0,0,0), + (15096,134,33853,0,3072,0,0,1,0,0,0,0,0,0), + (15097,134,33855,0,3072,0,0,1,0,0,0,0,0,0), + (15098,134,33856,0,3072,0,0,1,0,0,0,0,0,0), + (15101,134,33859,0,3072,0,0,1,0,0,0,0,0,0), + (15102,134,33866,0,3072,0,0,1,0,0,0,0,0,0), + (15103,134,33867,0,3072,0,0,1,0,0,0,0,0,0), + (15106,134,33917,0,3072,0,0,1,0,0,0,0,0,0), + (15107,134,33878,0,3072,0,0,1,33986,0,0,0,0,0), + (15108,134,33876,0,3072,0,0,1,33982,0,0,0,0,0), + (15119,134,33943,0,3072,0,0,1,40120,0,0,0,0,0), + (15121,134,33957,0,3072,0,0,1,0,0,0,0,0,0), + (15142,134,33986,0,3072,0,0,1,33987,0,0,0,0,0), + (15143,134,33982,0,3072,0,0,1,33983,0,0,0,0,0), + (15144,134,33987,0,3072,0,0,1,48563,0,0,0,0,0), + (15145,134,33983,0,3072,0,0,1,48565,0,0,0,0,0), + (15164,134,34297,0,3072,0,0,1,0,0,0,0,0,0), + (15165,134,34300,0,3072,0,0,1,0,0,0,0,0,0), + (15167,134,34299,0,3072,0,0,1,0,0,0,0,0,0), + (15703,134,37116,0,3072,0,0,1,0,0,0,0,0,0), + (15704,134,37117,0,3072,0,0,1,0,0,0,0,0,0), + (15832,134,40120,0,3072,0,0,1,0,0,0,0,0,0), + (16646,134,48479,0,3072,0,0,1,48480,0,0,0,0,0), + (16647,134,48480,0,3072,0,0,1,0,0,0,0,0,0), + (16649,134,48559,0,3072,0,0,1,48560,0,0,0,0,0), + (16650,134,48560,0,3072,0,0,1,0,0,0,0,0,0), + (16651,134,48561,0,3072,0,0,1,48562,0,0,0,0,0), + (16652,134,48562,0,3072,0,0,1,0,0,0,0,0,0), + (16653,134,48563,0,3072,0,0,1,48564,0,0,0,0,0), + (16654,134,48565,0,3072,0,0,1,48566,0,0,0,0,0), + (16655,134,48564,0,3072,0,0,1,0,0,0,0,0,0), + (16656,134,48566,0,3072,0,0,1,0,0,0,0,0,0), + (16657,134,48567,0,3072,0,0,1,48568,0,0,0,0,0), + (16658,134,48568,0,3072,0,0,1,0,0,0,0,0,0), + (16659,134,48569,0,3072,0,0,1,48570,0,0,0,0,0), + (16660,134,48570,0,3072,0,0,1,0,0,0,0,0,0), + (16661,134,48571,0,3072,0,0,1,48572,0,0,0,0,0), + (16662,134,48572,0,3072,0,0,1,0,0,0,0,0,0), + (16663,134,48573,0,3072,0,0,1,48574,0,0,0,0,0), + (16665,134,48575,0,3072,0,0,1,0,0,0,0,0,0), + (16666,134,48576,0,3072,0,0,1,48577,0,0,0,0,0), + (16667,134,48577,0,3072,0,0,1,0,0,0,0,0,0), + (16668,134,48578,0,3072,0,0,1,48579,0,0,0,0,0), + (16669,134,48579,0,3072,0,0,1,0,0,0,0,0,0), + (17177,134,49799,0,3072,0,0,1,49800,0,0,0,0,0), + (17178,134,49800,0,3072,0,0,1,0,0,0,0,0,0), + (17179,134,49803,0,3072,0,0,1,0,0,0,0,0,0), + (17180,134,49804,0,3072,0,0,1,0,0,0,0,0,0), + (17181,134,49802,0,3072,0,0,1,0,0,0,0,0,0), + (17449,134,50334,0,3072,0,0,1,0,0,0,0,0,0), + (17890,134,52610,0,3072,0,0,1,0,0,0,0,0,0), + (20633,134,61336,0,3072,0,0,1,0,0,0,0,0,0), + (20741,134,62078,0,3072,0,0,1,0,0,0,0,0,0), + (20794,134,62600,0,3072,0,0,1,0,0,0,0,0,0), + (20888,134,63503,0,3072,0,0,1,0,0,0,0,0,0), + (21284,134,68484,0,3072,0,0,1,0,0,0,0,0,0), + (700,136,227,0,3541,0,0,1,0,2,0,0,0,0), + (3214,160,199,0,3171,0,0,1,0,2,0,0,0,0), + (7276,163,75,0,2052,0,0,1,0,2,0,0,0,0), + (7277,163,1130,0,2052,0,0,1,0,0,0,0,0,0), + (7278,163,2643,0,2052,0,0,1,0,0,0,0,0,0), + (7279,163,5116,0,2052,0,0,1,0,0,0,0,0,0), + (7280,163,3043,0,2052,0,0,1,0,0,0,0,0,0), + (7281,163,1978,0,2052,0,0,1,0,0,0,0,0,0), + (7282,163,3034,0,2052,0,0,1,0,0,0,0,0,0), + (7283,163,1510,0,2052,0,0,1,0,0,0,0,0,0), + (7284,163,3044,0,2052,0,0,1,0,0,0,0,0,0), + (7285,163,3045,0,2052,0,0,1,0,0,0,0,0,0), + (7286,163,1543,0,2052,0,0,1,0,0,0,0,0,0), + (7885,163,13549,0,2052,0,0,1,0,0,0,0,0,0), + (7886,163,13550,0,2052,0,0,1,0,0,0,0,0,0), + (7887,163,13551,0,2052,0,0,1,0,0,0,0,0,0), + (7888,163,13552,0,2052,0,0,1,0,0,0,0,0,0), + (7889,163,13553,0,2052,0,0,1,0,0,0,0,0,0), + (7890,163,13554,0,2052,0,0,1,0,0,0,0,0,0), + (7891,163,13555,0,2052,0,0,1,0,0,0,0,0,0), + (7898,163,14281,0,2052,0,0,1,0,0,0,0,0,0), + (7899,163,14282,0,2052,0,0,1,0,0,0,0,0,0), + (7900,163,14283,0,2052,0,0,1,0,0,0,0,0,0), + (7901,163,14284,0,2052,0,0,1,0,0,0,0,0,0), + (7902,163,14285,0,2052,0,0,1,0,0,0,0,0,0), + (7903,163,14286,0,2052,0,0,1,0,0,0,0,0,0), + (7904,163,14287,0,2052,0,0,1,0,0,0,0,0,0), + (7905,163,14288,0,2052,0,0,1,0,0,0,0,0,0), + (7906,163,14289,0,2052,0,0,1,0,0,0,0,0,0), + (7907,163,14290,0,2052,0,0,1,0,0,0,0,0,0), + (7908,163,14294,0,2052,0,0,1,0,0,0,0,0,0), + (7909,163,14295,0,2052,0,0,1,0,0,0,0,0,0), + (7910,163,14296,0,2052,0,0,1,0,0,0,0,0,0), + (7911,163,14323,0,2052,0,0,1,0,0,0,0,0,0), + (7912,163,14324,0,2052,0,0,1,0,0,0,0,0,0), + (7913,163,14325,0,2052,0,0,1,0,0,0,0,0,0), + (11784,163,20736,0,2052,0,0,1,0,0,0,0,0,0), + (13233,163,25294,0,2052,0,0,1,0,0,0,0,0,0), + (13234,163,25295,0,2052,0,0,1,0,0,0,0,0,0), + (13599,163,27016,0,2052,0,0,1,0,0,0,0,0,0), + (13604,163,27019,0,2052,0,0,1,0,0,0,0,0,0), + (13606,163,27021,0,2052,0,0,1,0,0,0,0,0,0), + (13607,163,27022,0,2052,0,0,1,0,0,0,0,0,0), + (13608,163,27065,0,2052,0,0,1,0,0,0,0,0,0), + (15191,163,34475,0,2052,0,0,1,0,0,0,0,0,0), + (15192,163,34476,0,2052,0,0,1,0,0,0,0,0,0), + (15196,163,34482,0,2052,0,0,1,0,0,0,0,0,0), + (15197,163,34483,0,2052,0,0,1,0,0,0,0,0,0), + (15198,163,34484,0,2052,0,0,1,0,0,0,0,0,0), + (15199,163,34485,0,2052,0,0,1,0,0,0,0,0,0), + (15200,163,34486,0,2052,0,0,1,0,0,0,0,0,0), + (15201,163,34487,0,2052,0,0,1,0,0,0,0,0,0), + (15202,163,34488,0,2052,0,0,1,0,0,0,0,0,0), + (15203,163,34489,0,2052,0,0,1,0,0,0,0,0,0), + (15204,163,34490,0,2052,0,0,1,0,0,0,0,0,0), + (15315,163,34948,0,2052,0,0,1,0,0,0,0,0,0), + (15316,163,34949,0,2052,0,0,1,0,0,0,0,0,0), + (15317,163,34950,0,2052,0,0,1,0,0,0,0,0,0), + (15318,163,34954,0,2052,0,0,1,0,0,0,0,0,0), + (15357,163,35098,0,2052,0,0,1,0,0,0,0,0,0), + (15358,163,35099,0,2052,0,0,1,0,0,0,0,0,0), + (15359,163,35100,0,2052,0,0,1,0,0,0,0,0,0), + (15360,163,35102,0,2052,0,0,1,0,0,0,0,0,0), + (15361,163,35103,0,2052,0,0,1,0,0,0,0,0,0), + (15362,163,35101,0,2052,0,0,1,0,0,0,0,0,0), + (15363,163,35104,0,2052,0,0,1,0,0,0,0,0,0), + (15364,163,35110,0,2052,0,0,1,0,0,0,0,0,0), + (15365,163,35111,0,2052,0,0,1,0,0,0,0,0,0), + (15649,163,19801,0,2052,0,0,1,0,0,0,0,0,0), + (15981,163,42243,0,2052,0,0,1,0,0,0,0,0,0), + (15982,163,42244,0,2052,0,0,1,0,0,0,0,0,0), + (15983,163,42245,0,2052,0,0,1,0,0,0,0,0,0), + (15984,163,42234,0,2052,0,0,1,0,0,0,0,0,0), + (16793,163,49000,0,2052,0,0,1,0,0,0,0,0,0), + (16794,163,49001,0,2052,0,0,1,0,0,0,0,0,0), + (16825,163,49044,0,2052,0,0,1,0,0,0,0,0,0), + (16826,163,49045,0,2052,0,0,1,0,0,0,0,0,0), + (16828,163,49047,0,2052,0,0,1,0,0,0,0,0,0), + (16829,163,49048,0,2052,0,0,1,0,0,0,0,0,0), + (16830,163,49049,0,2052,0,0,1,0,0,0,0,0,0), + (16831,163,49050,0,2052,0,0,1,0,0,0,0,0,0), + (16832,163,49051,0,2052,0,0,1,0,0,0,0,0,0), + (16833,163,49052,0,2052,0,0,1,0,0,0,0,0,0), + (18032,163,53338,0,2052,0,0,1,0,0,0,0,0,0), + (19639,163,56641,0,2052,0,0,1,0,0,0,0,0,0), + (20406,163,61005,0,2052,0,0,1,0,0,0,0,0,0), + (20407,163,61006,0,2052,0,0,1,0,0,0,0,0,0), + (3213,172,197,0,2151,0,0,1,0,2,0,0,0,0), + (1387,173,1180,0,3549,0,0,1,0,2,0,0,0,0), + (13820,183,27764,0,3072,0,0,1,0,2,0,0,0,0), + (13821,183,27762,0,2050,0,0,1,0,2,0,0,0,0), + (13822,183,27763,0,2112,0,0,1,0,2,0,0,0,0), + (15148,183,34082,0,2052,0,0,1,0,2,0,0,0,0), + (17893,183,52665,0,2080,0,0,1,0,2,0,0,0,0), + (20867,183,63645,4095,3583,0,0,1,0,2,0,0,0,0), + (20868,183,63644,4095,3583,0,0,1,0,2,0,0,0,0), + (6496,184,7294,0,2050,0,0,1,10298,0,0,0,0,0), + (6497,184,10298,0,2050,0,0,1,10299,0,0,0,0,0), + (6498,184,10299,0,2050,0,0,1,10300,0,0,0,0,0), + (6499,184,10300,0,2050,0,0,1,10301,0,0,0,0,0), + (6500,184,10301,0,2050,0,0,1,27150,0,0,0,0,0), + (11216,184,19740,0,2050,0,0,1,0,0,0,0,0,0), + (11217,184,19834,0,2050,0,0,1,0,0,0,0,0,0), + (11218,184,19835,0,2050,0,0,1,0,0,0,0,0,0), + (11219,184,19836,0,2050,0,0,1,0,0,0,0,0,0), + (11220,184,19837,0,2050,0,0,1,0,0,0,0,0,0), + (11221,184,19838,0,2050,0,0,1,0,0,0,0,0,0), + (11549,184,20271,0,2050,0,0,1,0,0,0,0,0,0), + (13231,184,25291,0,2050,0,0,1,0,0,0,0,0,0), + (13369,184,25782,0,2050,0,0,1,0,0,0,0,0,0), + (13372,184,25916,0,2050,0,0,1,0,0,0,0,0,0), + (13376,184,25956,0,2050,0,0,1,0,0,0,0,0,0), + (13377,184,25957,0,2050,0,0,1,0,0,0,0,0,0), + (13378,184,25997,0,2050,0,0,1,0,0,0,0,0,0), + (13379,184,9799,0,2050,0,0,1,0,0,0,0,0,0), + (13380,184,25988,0,2050,0,0,1,0,0,0,0,0,0), + (13382,184,9452,0,2050,0,0,1,0,0,0,0,0,0), + (13383,184,26016,0,2050,0,0,1,0,0,0,0,0,0), + (13385,184,26022,0,2050,0,0,1,0,0,0,0,0,0), + (13386,184,26023,0,2050,0,0,1,0,0,0,0,0,0), + (13387,184,67,0,2050,0,0,1,0,0,0,0,0,0), + (13388,184,26017,0,2050,0,0,1,0,0,0,0,0,0), + (13454,184,20066,0,2050,0,0,1,0,0,0,0,0,0), + (13691,184,27140,0,2050,0,0,1,0,0,0,0,0,0), + (13692,184,27141,0,2050,0,0,1,0,0,0,0,0,0), + (13702,184,27150,0,2050,0,0,1,54043,0,0,0,0,0), + (14760,184,31884,0,2050,0,0,1,0,0,0,0,0,0), + (14761,184,31879,0,2050,0,0,1,0,0,0,0,0,0), + (14762,184,31880,0,2050,0,0,1,0,0,0,0,0,0), + (14763,184,31881,0,2050,0,0,1,0,0,0,0,0,0), + (14766,184,31876,0,2050,0,0,1,0,0,0,0,0,0), + (14767,184,31877,0,2050,0,0,1,0,0,0,0,0,0), + (14768,184,31878,0,2050,0,0,1,0,0,0,0,0,0), + (14769,184,31871,0,2050,0,0,1,0,0,0,0,0,0), + (14770,184,31872,0,2050,0,0,1,0,0,0,0,0,0), + (14774,184,31869,0,2050,0,0,1,0,0,0,0,0,0), + (14776,184,31866,0,2050,0,0,1,0,0,0,0,0,0), + (14777,184,31867,0,2050,0,0,1,0,0,0,0,0,0), + (14778,184,31868,0,2050,0,0,1,0,0,0,0,0,0), + (14779,184,31801,1029,2050,0,0,1,0,0,0,0,0,0), + (14783,184,32043,0,2050,0,0,1,0,0,0,0,0,0), + (14784,184,31898,512,2050,0,0,1,0,0,0,0,0,0), + (14787,184,31803,1029,2050,0,0,1,0,0,0,0,0,0), + (14788,184,31804,1029,2050,0,0,1,0,0,0,0,0,0), + (14808,184,32223,0,2050,0,0,1,0,0,0,0,0,0), + (15493,184,35395,0,2050,0,0,1,0,0,0,0,0,0), + (15494,184,35396,0,2050,0,0,1,0,0,0,0,0,0), + (15495,184,35397,0,2050,0,0,1,0,0,0,0,0,0), + (16628,184,24275,0,2050,0,0,1,0,0,0,0,0,0), + (16629,184,24274,0,2050,0,0,1,0,0,0,0,0,0), + (16630,184,24239,0,2050,0,0,1,0,0,0,0,0,0), + (16631,184,27180,0,2050,0,0,1,0,0,0,0,0,0), + (16708,184,48805,0,2050,0,0,1,0,0,0,0,0,0), + (16709,184,48806,0,2050,0,0,1,0,0,0,0,0,0), + (16753,184,48931,0,2050,0,0,1,0,0,0,0,0,0), + (16754,184,48932,0,2050,0,0,1,0,0,0,0,0,0), + (16755,184,48933,0,2050,0,0,1,0,0,0,0,0,0), + (16756,184,48934,0,2050,0,0,1,0,0,0,0,0,0), + (18097,184,53375,0,2050,0,0,1,0,0,0,0,0,0), + (18098,184,53376,0,2050,0,0,1,0,0,0,0,0,0), + (18101,184,53379,0,2050,0,0,1,0,0,0,0,0,0), + (18103,184,53380,0,2050,0,0,1,0,0,0,0,0,0), + (18104,184,53381,0,2050,0,0,1,0,0,0,0,0,0), + (18105,184,53382,0,2050,0,0,1,0,0,0,0,0,0), + (18109,184,53385,0,2050,0,0,1,0,0,0,0,0,0), + (18112,184,53407,0,2050,0,0,1,0,0,0,0,0,0), + (18113,184,53408,0,2050,0,0,1,0,0,0,0,0,0), + (18145,184,53484,0,2050,0,0,1,0,0,0,0,0,0), + (18149,184,53486,0,2050,0,0,1,0,0,0,0,0,0), + (18150,184,53488,0,2050,0,0,1,0,0,0,0,0,0), + (18151,184,53489,0,2050,0,0,1,0,0,0,0,0,0), + (18157,184,53375,0,2050,0,0,1,0,0,0,0,0,0), + (18158,184,53376,0,2050,0,0,1,0,0,0,0,0,0), + (18159,184,53501,0,2050,0,0,1,0,0,0,0,0,0), + (18160,184,53502,0,2050,0,0,1,0,0,0,0,0,0), + (18161,184,53503,0,2050,0,0,1,0,0,0,0,0,0), + (18264,184,53648,0,2050,0,0,1,0,0,0,0,0,0), + (18299,184,53726,1029,2050,0,0,1,0,0,0,0,0,0), + (18308,184,53733,512,2050,0,0,1,0,0,0,0,0,0), + (18311,184,53736,512,2050,0,0,1,0,0,0,0,0,0), + (18314,184,53742,512,2050,0,0,1,0,0,0,0,0,0), + (18510,184,54043,0,2050,0,0,1,0,0,0,0,0,0), + (20154,184,20050,0,2050,0,0,1,0,0,0,0,0,0), + (20155,184,20052,0,2050,0,0,1,0,0,0,0,0,0), + (20156,184,20053,0,2050,0,0,1,0,0,0,0,0,0), + (20191,184,59578,0,2050,0,0,1,0,0,0,0,0,0), + (20243,184,60091,0,2050,0,0,1,0,2,0,0,0,0), + (15833,202,40274,0,2083,0,0,1,0,0,390,370,0,0), + (15850,202,41311,0,2050,0,0,1,0,0,390,370,0,0), + (15851,202,41312,0,2083,0,0,1,0,0,390,370,0,0), + (15852,202,41314,0,2116,0,0,1,0,0,390,370,0,0), + (15853,202,41315,0,2112,0,0,1,0,0,390,370,0,0), + (15854,202,41316,0,2112,0,0,1,0,0,390,370,0,0), + (15855,202,41317,0,3080,0,0,1,0,0,390,370,0,0), + (15856,202,41318,0,3072,0,0,1,0,0,390,370,0,0), + (15857,202,41319,0,3072,0,0,1,0,0,390,370,0,0), + (15858,202,41320,0,2448,0,0,1,0,0,390,370,0,0), + (15859,202,41321,0,2064,0,0,1,0,0,390,370,0,0), + (16248,202,46111,0,2448,0,0,1,0,0,430,390,0,0), + (16249,202,46115,0,2083,0,0,1,0,0,430,390,0,0), + (16250,202,46109,0,3072,0,0,1,0,0,430,390,0,0), + (16251,202,46107,0,2050,0,0,1,0,0,430,390,0,0), + (16252,202,46112,0,2112,0,0,1,0,0,430,390,0,0), + (16253,202,46114,0,2083,0,0,1,0,0,430,390,0,0), + (16254,202,46108,0,2064,0,0,1,0,0,430,390,0,0), + (16255,202,46110,0,2112,0,0,1,0,0,430,390,0,0), + (16256,202,46116,0,3080,0,0,1,0,0,430,390,0,0), + (16257,202,46113,0,2116,0,0,1,0,0,430,390,0,0), + (16258,202,46106,0,3072,0,0,1,0,0,430,390,0,0), + (19559,202,56465,0,2448,0,0,1,0,0,440,425,0,0), + (19576,202,56480,0,2083,0,0,1,0,0,460,450,0,0), + (19588,202,56481,0,3080,0,0,1,0,0,460,450,0,0), + (19589,202,56574,0,2116,0,0,1,0,0,460,450,0,0), + (19590,202,56483,0,2083,0,0,1,0,0,460,450,0,0), + (19591,202,56484,0,2448,0,0,1,0,0,460,450,0,0), + (19592,202,56486,0,3072,0,0,1,0,0,460,450,0,0), + (19593,202,56487,0,2112,0,0,1,0,0,460,450,0,0), + (20653,202,61481,0,3080,0,0,1,0,0,440,425,0,0), + (20654,202,61482,0,2116,0,0,1,0,0,440,425,0,0), + (20655,202,61483,0,2083,0,0,1,0,0,440,425,0,0), + (20759,202,62271,0,2050,0,0,1,0,0,460,450,0,0), + (2929,226,5011,0,2061,0,0,1,0,2,0,0,0,0), + (15697,226,3018,0,2057,0,0,1,0,1,0,0,0,0), + (2927,228,5009,0,2448,0,0,1,0,2,0,0,0,0), + (2935,228,5019,0,2448,0,0,1,0,2,0,0,0,0), + (2928,229,200,0,3111,0,0,1,0,2,0,0,0,0), + (3248,237,5143,0,2176,0,0,1,0,0,0,0,0,0), + (3249,237,5144,0,2176,0,0,1,0,0,0,0,0,0), + (3250,237,5145,0,2176,0,0,1,0,0,0,0,0,0), + (3255,237,1459,0,2176,0,0,1,0,0,0,0,0,0), + (3256,237,1460,0,2176,0,0,1,0,0,0,0,0,0), + (3257,237,1461,0,2176,0,0,1,0,0,0,0,0,0), + (3258,237,2139,0,2176,0,0,1,0,0,0,0,0,0), + (3267,237,475,0,2176,0,0,1,0,0,0,0,0,0), + (3269,237,3565,1101,2176,0,0,1,0,0,0,0,0,0), + (3270,237,3562,1101,2176,0,0,1,0,0,0,0,0,0), + (3271,237,3567,690,2176,0,0,1,0,0,0,0,0,0), + (3272,237,3561,1101,2176,0,0,1,0,0,0,0,0,0), + (3273,237,3566,690,2176,0,0,1,0,0,0,0,0,0), + (3274,237,3563,690,2176,0,0,1,0,0,0,0,0,0), + (4674,237,8416,0,2176,0,0,1,0,0,0,0,0,0), + (4675,237,8417,0,2176,0,0,1,0,0,0,0,0,0), + (4686,237,1449,0,2176,0,0,1,0,0,0,0,0,0), + (4687,237,8437,0,2176,0,0,1,0,0,0,0,0,0), + (4688,237,8438,0,2176,0,0,1,0,0,0,0,0,0), + (4689,237,8439,0,2176,0,0,1,0,0,0,0,0,0), + (4696,237,604,0,2176,0,0,1,0,0,0,0,0,0), + (4697,237,8450,0,2176,0,0,1,0,0,0,0,0,0), + (4698,237,8451,0,2176,0,0,1,0,0,0,0,0,0), + (4699,237,1008,0,2176,0,0,1,0,0,0,0,0,0), + (4700,237,8455,0,2176,0,0,1,0,0,0,0,0,0), + (4702,237,1463,0,2176,0,0,1,0,0,0,0,0,0), + (4717,237,8494,0,2176,0,0,1,0,0,0,0,0,0), + (4719,237,8495,0,2176,0,0,1,0,0,0,0,0,0), + (5437,237,10156,0,2176,0,0,1,0,0,0,0,0,0), + (5438,237,10157,0,2176,0,0,1,0,0,0,0,0,0), + (5444,237,10169,0,2176,0,0,1,0,0,0,0,0,0), + (5445,237,10170,0,2176,0,0,1,0,0,0,0,0,0), + (5446,237,10173,0,2176,0,0,1,0,0,0,0,0,0), + (5447,237,10174,0,2176,0,0,1,0,0,0,0,0,0), + (5457,237,10191,0,2176,0,0,1,0,0,0,0,0,0), + (5458,237,10192,0,2176,0,0,1,0,0,0,0,0,0), + (5459,237,10193,0,2176,0,0,1,0,0,0,0,0,0), + (5462,237,10201,0,2176,0,0,1,0,0,0,0,0,0), + (5463,237,10202,0,2176,0,0,1,0,0,0,0,0,0), + (5467,237,10211,0,2176,0,0,1,0,0,0,0,0,0), + (5468,237,10212,0,2176,0,0,1,0,0,0,0,0,0), + (5726,237,130,0,2176,0,0,1,0,0,0,0,0,0), + (5989,237,11419,1101,2176,0,0,1,0,0,0,0,0,0), + (5990,237,11416,1101,2176,0,0,1,0,0,0,0,0,0), + (5991,237,11417,690,2176,0,0,1,0,0,0,0,0,0), + (5992,237,10059,1101,2176,0,0,1,0,0,0,0,0,0), + (5993,237,11420,690,2176,0,0,1,0,0,0,0,0,0), + (5994,237,11418,690,2176,0,0,1,0,0,0,0,0,0), + (6236,237,587,0,2176,0,0,1,0,0,0,0,0,0), + (6237,237,597,0,2176,0,0,1,0,0,0,0,0,0), + (6238,237,990,0,2176,0,0,1,0,0,0,0,0,0), + (6239,237,6129,0,2176,0,0,1,0,0,0,0,0,0), + (6240,237,10144,0,2176,0,0,1,0,0,0,0,0,0), + (6241,237,10145,0,2176,0,0,1,0,0,0,0,0,0), + (6242,237,759,0,2176,0,0,1,0,0,0,0,0,0), + (6243,237,3552,0,2176,0,0,1,0,0,0,0,0,0), + (6244,237,10053,0,2176,0,0,1,0,0,0,0,0,0), + (6245,237,10054,0,2176,0,0,1,0,0,0,0,0,0), + (6246,237,5504,0,2176,0,0,1,0,0,0,0,0,0), + (6247,237,5505,0,2176,0,0,1,0,0,0,0,0,0), + (6248,237,5506,0,2176,0,0,1,0,0,0,0,0,0), + (6249,237,6127,0,2176,0,0,1,0,0,0,0,0,0), + (6250,237,10138,0,2176,0,0,1,0,0,0,0,0,0), + (6251,237,10139,0,2176,0,0,1,0,0,0,0,0,0), + (6833,237,11210,0,2176,0,0,1,0,0,0,0,0,0), + (6834,237,12592,0,2176,0,0,1,0,0,0,0,0,0), + (6990,237,12824,0,2176,0,0,1,0,0,0,0,0,0), + (6992,237,12826,0,2176,0,0,1,0,0,0,0,0,0), + (7031,237,1953,0,2176,0,0,1,0,0,0,0,0,0), + (7182,237,118,0,2176,0,0,1,0,0,0,0,0,0), + (7184,237,12825,0,2176,0,0,1,0,0,0,0,0,0), + (12316,237,6117,0,2176,0,0,1,0,0,0,0,0,0), + (12317,237,22782,0,2176,0,0,1,0,0,0,0,0,0), + (12318,237,22783,0,2176,0,0,1,0,0,0,0,0,0), + (12330,237,10140,0,2176,0,0,1,0,0,0,0,0,0), + (12397,237,23028,0,2176,0,0,1,0,0,0,0,0,0), + (13246,237,25345,0,2176,0,0,1,0,0,0,0,0,0), + (13652,237,27075,0,2176,0,0,1,0,0,0,0,0,0), + (13653,237,27082,0,2176,0,0,1,0,0,0,0,0,0), + (13654,237,27080,0,2176,0,0,1,0,0,0,0,0,0), + (13655,237,27090,0,2176,0,0,1,0,0,0,0,0,0), + (13657,237,27101,0,2176,0,0,1,0,0,0,0,0,0), + (13658,237,27126,0,2176,0,0,1,0,0,0,0,0,0), + (13659,237,27127,0,2176,0,0,1,0,0,0,0,0,0), + (13661,237,27130,0,2176,0,0,1,0,0,0,0,0,0), + (13662,237,27131,0,2176,0,0,1,0,0,0,0,0,0), + (13663,237,27125,0,2176,0,0,1,0,0,0,0,0,0), + (13926,237,28271,0,2176,0,0,1,0,0,0,0,0,0), + (13927,237,28272,0,2176,0,0,1,0,0,0,0,0,0), + (13953,237,28574,0,2176,0,0,1,0,0,0,0,0,0), + (14006,237,28612,0,2176,0,0,1,0,0,0,0,0,0), + (14130,237,29441,0,2176,0,0,1,0,0,0,0,0,0), + (14131,237,29444,0,2176,0,0,1,0,0,0,0,0,0), + (14135,237,29442,0,2176,0,0,1,0,0,0,0,0,0), + (14386,237,30451,0,2176,0,0,1,0,0,0,0,0,0), + (14646,237,31589,0,2176,0,0,1,0,0,0,0,0,0), + (14647,237,31584,0,2176,0,0,1,0,0,0,0,0,0), + (14648,237,31585,0,2176,0,0,1,0,0,0,0,0,0), + (14649,237,31586,0,2176,0,0,1,0,0,0,0,0,0), + (14650,237,31587,0,2176,0,0,1,0,0,0,0,0,0), + (14651,237,31588,0,2176,0,0,1,0,0,0,0,0,0), + (14652,237,31579,0,2176,0,0,1,0,0,0,0,0,0), + (14653,237,31582,0,2176,0,0,1,0,0,0,0,0,0), + (14654,237,31583,0,2176,0,0,1,0,0,0,0,0,0), + (14655,237,31574,0,2176,0,0,1,0,0,0,0,0,0), + (14656,237,31575,0,2176,0,0,1,0,0,0,0,0,0), + (14660,237,31571,0,2176,0,0,1,0,0,0,0,0,0), + (14661,237,31572,0,2176,0,0,1,0,0,0,0,0,0), + (14664,237,31569,0,2176,0,0,1,0,0,0,0,0,0), + (14665,237,31570,0,2176,0,0,1,0,0,0,0,0,0), + (14815,237,32271,1101,2176,0,0,1,0,0,0,0,0,0), + (14816,237,32272,690,2176,0,0,1,0,0,0,0,0,0), + (14817,237,32266,1101,2176,0,0,1,0,0,0,0,0,0), + (14818,237,32267,690,2176,0,0,1,0,0,0,0,0,0), + (15039,237,33717,0,2176,0,0,1,0,0,0,0,0,0), + (15040,237,33690,1101,2176,0,0,1,0,0,0,0,0,0), + (15041,237,33691,1101,2176,0,0,1,0,0,0,0,0,0), + (15117,237,33944,0,2176,0,0,1,0,0,0,0,0,0), + (15118,237,33946,0,2176,0,0,1,0,0,0,0,0,0), + (15521,237,35578,0,2176,0,0,1,0,0,0,0,0,0), + (15522,237,35581,0,2176,0,0,1,0,0,0,0,0,0), + (15606,237,35715,690,2176,0,0,1,0,0,0,0,0,0), + (15607,237,35717,690,2176,0,0,1,0,0,0,0,0,0), + (15705,237,37420,0,2176,0,0,1,0,0,0,0,0,0), + (15729,237,38699,0,2176,0,0,1,0,0,0,0,0,0), + (15730,237,38704,0,2176,0,0,1,0,0,0,0,0,0), + (15905,237,42843,0,2176,0,0,1,0,0,0,0,0,0), + (15906,237,42846,0,2176,0,0,1,0,0,0,0,0,0), + (15919,237,42894,0,2176,0,0,1,0,0,0,0,0,0), + (15920,237,42896,0,2176,0,0,1,0,0,0,0,0,0), + (15921,237,42897,0,2176,0,0,1,0,0,0,0,0,0), + (15925,237,42920,0,2176,0,0,1,0,0,0,0,0,0), + (15926,237,42921,0,2176,0,0,1,0,0,0,0,0,0), + (15946,237,42955,0,2176,0,0,1,0,0,0,0,0,0), + (15947,237,42956,0,2176,0,0,1,0,0,0,0,0,0), + (15953,237,42985,0,2176,0,0,1,0,0,0,0,0,0), + (15954,237,42995,0,2176,0,0,1,0,0,0,0,0,0), + (15955,237,43002,0,2176,0,0,1,0,0,0,0,0,0), + (15959,237,43015,0,2176,0,0,1,0,0,0,0,0,0), + (15960,237,43017,0,2176,0,0,1,0,0,0,0,0,0), + (15961,237,43023,0,2176,0,0,1,0,0,0,0,0,0), + (15962,237,43024,0,2176,0,0,1,0,0,0,0,0,0), + (15963,237,43019,0,2176,0,0,1,0,0,0,0,0,0), + (15964,237,43020,0,2176,0,0,1,0,0,0,0,0,0), + (16019,237,43987,0,2176,0,0,1,0,0,0,0,0,0), + (16030,237,44378,0,2176,0,0,1,0,0,0,0,0,0), + (16031,237,44379,0,2176,0,0,1,0,0,0,0,0,0), + (16035,237,44394,0,2176,0,0,1,0,0,0,0,0,0), + (16036,237,44395,0,2176,0,0,1,0,0,0,0,0,0), + (16037,237,44396,0,2176,0,0,1,0,0,0,0,0,0), + (16038,237,44397,0,2176,0,0,1,0,0,0,0,0,0), + (16039,237,44398,0,2176,0,0,1,0,0,0,0,0,0), + (16040,237,44399,0,2176,0,0,1,0,0,0,0,0,0), + (16041,237,44400,0,2176,0,0,1,0,0,0,0,0,0), + (16042,237,44402,0,2176,0,0,1,0,0,0,0,0,0), + (16043,237,44403,0,2176,0,0,1,0,0,0,0,0,0), + (16047,237,44413,0,2176,0,0,1,0,0,0,0,0,0), + (16051,237,44425,0,2176,0,0,1,0,0,0,0,0,0), + (16146,237,44780,0,2176,0,0,1,0,0,0,0,0,0), + (16147,237,44781,0,2176,0,0,1,0,0,0,0,0,0), + (16999,237,49359,1101,2176,0,0,1,0,0,0,0,0,0), + (17000,237,49358,690,2176,0,0,1,0,0,0,0,0,0), + (17003,237,49361,690,2176,0,0,1,0,0,0,0,0,0), + (17004,237,49360,1101,2176,0,0,1,0,0,0,0,0,0), + (18007,237,53140,0,2176,0,0,1,0,0,0,0,0,0), + (18008,237,53142,0,2176,0,0,1,0,0,0,0,0,0), + (18538,237,54354,0,2176,0,0,1,0,0,0,0,0,0), + (18890,237,44404,0,2176,0,0,1,0,0,0,0,0,0), + (18891,237,44401,0,2176,0,0,1,0,0,0,0,0,0), + (18892,237,54486,0,2176,0,0,1,0,0,0,0,0,0), + (18893,237,54488,0,2176,0,0,1,0,0,0,0,0,0), + (18894,237,54489,0,2176,0,0,1,0,0,0,0,0,0), + (18895,237,54490,0,2176,0,0,1,0,0,0,0,0,0), + (19095,237,54646,0,2176,0,0,1,0,0,0,0,0,0), + (19097,237,54648,0,2176,0,0,1,0,0,0,0,0,0), + (19114,237,54658,0,2176,0,0,1,0,0,0,0,0,0), + (19115,237,54659,0,2176,0,0,1,0,0,0,0,0,0), + (19287,237,29447,0,2176,0,0,1,0,0,0,0,0,0), + (19288,237,55339,0,2176,0,0,1,0,0,0,0,0,0), + (19289,237,55340,0,2176,0,0,1,0,0,0,0,0,0), + (20054,237,58659,0,2176,0,0,1,0,0,0,0,0,0), + (20095,237,55342,0,2176,0,0,1,0,0,0,0,0,0), + (20715,237,61721,0,2176,0,0,1,0,0,0,0,0,0), + (4033,253,2098,0,2056,0,0,1,6760,2,0,0,0,0), + (4037,253,1943,0,2056,0,0,1,8639,0,0,0,0,0), + (4038,253,703,0,2056,0,0,1,8631,0,0,0,0,0), + (4050,253,6760,0,2056,0,0,1,6761,0,0,0,0,0), + (4051,253,6761,0,2056,0,0,1,6762,0,0,0,0,0), + (4052,253,6762,0,2056,0,0,1,8623,0,0,0,0,0), + (4770,253,8623,0,2056,0,0,1,8624,0,0,0,0,0), + (4771,253,8624,0,2056,0,0,1,11299,0,0,0,0,0), + (4772,253,8631,0,2056,0,0,1,8632,0,0,0,0,0), + (4773,253,8632,0,2056,0,0,1,8633,0,0,0,0,0), + (4774,253,8633,0,2056,0,0,1,11289,0,0,0,0,0), + (4778,253,8639,0,2056,0,0,1,8640,0,0,0,0,0), + (4779,253,8640,0,2056,0,0,1,11273,0,0,0,0,0), + (4827,253,8676,0,2056,0,0,1,8724,0,0,0,0,0), + (4828,253,8724,0,2056,0,0,1,8725,0,0,0,0,0), + (4829,253,8725,0,2056,0,0,1,11267,0,0,0,0,0), + (5939,253,11267,0,2056,0,0,1,11268,0,0,0,0,0), + (5940,253,11268,0,2056,0,0,1,11269,0,0,0,0,0), + (5941,253,11269,0,2056,0,0,1,27441,0,0,0,0,0), + (5945,253,11299,0,2056,0,0,1,11300,0,0,0,0,0), + (5946,253,11300,0,2056,0,0,1,31016,0,0,0,0,0), + (5947,253,11289,0,2056,0,0,1,11290,0,0,0,0,0), + (5948,253,11290,0,2056,0,0,1,26839,0,0,0,0,0), + (5949,253,11273,0,2056,0,0,1,11274,0,0,0,0,0), + (5950,253,11274,0,2056,0,0,1,11275,0,0,0,0,0), + (5951,253,11275,0,2056,0,0,1,26867,0,0,0,0,0), + (6386,253,5171,0,2056,0,0,1,6774,0,0,0,0,0), + (6387,253,6774,0,2056,0,0,1,0,0,0,0,0,0), + (6388,253,408,0,2056,0,0,1,8643,0,0,0,0,0), + (6389,253,8643,0,2056,0,0,1,0,0,0,0,0,0), + (6390,253,1833,0,2056,0,0,1,0,0,0,0,0,0), + (13547,253,26679,0,2056,0,0,1,48673,0,0,0,0,0), + (13711,253,26865,0,2056,0,0,1,48667,0,0,0,0,0), + (13713,253,26867,0,2056,0,0,1,48671,0,0,0,0,0), + (13714,253,26839,0,2056,0,0,1,26884,0,0,0,0,0), + (13715,253,26884,0,2056,0,0,1,48675,0,0,0,0,0), + (13716,253,27441,0,2056,0,0,1,48689,0,0,0,0,0), + (14489,253,31016,0,2056,0,0,1,26865,0,0,0,0,0), + (14589,253,31226,0,2056,0,0,1,0,0,0,0,0,0), + (14590,253,31227,0,2056,0,0,1,0,0,0,0,0,0), + (14597,253,31234,0,2056,0,0,1,0,0,0,0,0,0), + (14598,253,31235,0,2056,0,0,1,0,0,0,0,0,0), + (14599,253,31236,0,2056,0,0,1,0,0,0,0,0,0), + (14607,253,31208,0,2056,0,0,1,0,0,0,0,0,0), + (14608,253,31209,0,2056,0,0,1,0,0,0,0,0,0), + (14614,253,31380,0,2056,0,0,1,0,0,0,0,0,0), + (14615,253,31382,0,2056,0,0,1,0,0,0,0,0,0), + (14616,253,31383,0,2056,0,0,1,0,0,0,0,0,0), + (14734,253,8647,0,2056,0,0,1,8649,0,0,0,0,0), + (14798,253,31244,0,2056,0,0,1,0,0,0,0,0,0), + (14799,253,31245,0,2056,0,0,1,0,0,0,0,0,0), + (14895,253,1329,0,2056,0,0,1,34411,0,0,0,0,0), + (14908,253,32645,0,2056,0,0,1,32684,0,0,0,0,0), + (14909,253,32684,0,2056,0,0,1,57992,0,0,0,0,0), + (15168,253,34411,0,2056,0,0,1,34412,0,0,0,0,0), + (15169,253,34412,0,2056,0,0,1,34413,0,0,0,0,0), + (15170,253,34413,0,2056,0,0,1,48663,0,0,0,0,0), + (16680,253,48663,0,2056,0,0,1,48666,0,0,0,0,0), + (16681,253,48666,0,2056,0,0,1,0,0,0,0,0,0), + (16682,253,48667,0,2056,0,0,1,48668,0,0,0,0,0), + (16683,253,48668,0,2056,0,0,1,0,0,0,0,0,0), + (16685,253,48671,0,2056,0,0,1,48672,0,0,0,0,0), + (16686,253,48672,0,2056,0,0,1,0,0,0,0,0,0), + (16687,253,48673,0,2056,0,0,1,48674,0,0,0,0,0), + (16688,253,48674,0,2056,0,0,1,0,0,0,0,0,0), + (16689,253,48675,0,2056,0,0,1,48676,0,0,0,0,0), + (16690,253,48676,0,2056,0,0,1,0,0,0,0,0,0), + (16691,253,48689,0,2056,0,0,1,48690,0,0,0,0,0), + (16692,253,48690,0,2056,0,0,1,48691,0,0,0,0,0), + (16693,253,48691,0,2056,0,0,1,0,0,0,0,0,0), + (17694,253,51625,0,2056,0,0,1,0,0,0,0,0,0), + (17695,253,51626,0,2056,0,0,1,0,0,0,0,0,0), + (17696,253,51627,0,2056,0,0,1,0,0,0,0,0,0), + (17697,253,51628,0,2056,0,0,1,0,0,0,0,0,0), + (17698,253,51629,0,2056,0,0,1,0,0,0,0,0,0), + (17701,253,51632,0,2056,0,0,1,0,0,0,0,0,0), + (17702,253,51633,0,2056,0,0,1,0,0,0,0,0,0), + (17703,253,51634,0,2056,0,0,1,0,0,0,0,0,0), + (17704,253,51635,0,2056,0,0,1,0,0,0,0,0,0), + (17705,253,51636,0,2056,0,0,1,0,0,0,0,0,0), + (17706,253,51634,0,2056,0,0,1,0,0,0,0,0,0), + (17707,253,51635,0,2056,0,0,1,0,0,0,0,0,0), + (17708,253,51636,0,2056,0,0,1,0,0,0,0,0,0), + (17709,253,51637,0,2056,0,0,1,0,0,0,0,0,0), + (17710,253,51662,0,2056,0,0,1,0,0,0,0,0,0), + (17711,253,51664,0,2056,0,0,1,0,0,0,0,0,0), + (17712,253,51665,0,2056,0,0,1,0,0,0,0,0,0), + (17713,253,51667,0,2056,0,0,1,0,0,0,0,0,0), + (17714,253,51668,0,2056,0,0,1,0,0,0,0,0,0), + (17715,253,51669,0,2056,0,0,1,0,0,0,0,0,0), + (17749,253,51722,0,2056,0,0,1,0,0,0,0,0,0), + (19966,253,57992,0,2056,0,0,1,57993,0,0,0,0,0), + (19967,253,57993,0,2056,0,0,1,0,0,0,0,0,0), + (19985,253,58410,0,2056,0,0,1,0,0,0,0,0,0), + (19995,253,58426,0,2056,0,0,1,0,0,0,0,0,0), + (19996,253,58427,0,2056,0,0,1,0,0,0,0,0,0), + (19997,253,58428,0,2056,0,0,1,0,0,0,0,0,0), + (21723,253,75460,1791,2056,0,0,1,0,2,0,0,0,0), + (4724,256,1464,0,2049,0,0,1,8820,0,0,0,0,0), + (4886,256,8820,0,2049,0,0,1,11604,0,0,0,0,0), + (4888,256,1680,0,2049,0,0,1,0,0,0,0,0,0), + (6079,256,2458,0,2049,0,0,1,0,0,0,0,0,0), + (6080,256,7381,0,2049,0,0,1,0,0,0,0,0,0), + (6081,256,845,0,2049,0,0,1,7369,0,0,0,0,0), + (6082,256,7369,0,2049,0,0,1,11608,0,0,0,0,0), + (6083,256,11608,0,2049,0,0,1,11609,0,0,0,0,0), + (6084,256,11609,0,2049,0,0,1,20569,0,0,0,0,0), + (6085,256,11604,0,2049,0,0,1,11605,0,0,0,0,0), + (6086,256,11605,0,2049,0,0,1,25241,0,0,0,0,0), + (6087,256,6673,0,2049,0,0,1,5242,0,0,0,0,0), + (6088,256,5242,0,2049,0,0,1,6192,0,0,0,0,0), + (6089,256,6192,0,2049,0,0,1,11549,0,0,0,0,0), + (6090,256,11549,0,2049,0,0,1,11550,0,0,0,0,0), + (6091,256,11550,0,2049,0,0,1,11551,0,0,0,0,0), + (6093,256,1161,0,2049,0,0,1,0,0,0,0,0,0), + (6094,256,1160,0,2049,0,0,1,6190,0,0,0,0,0), + (6095,256,6190,0,2049,0,0,1,11554,0,0,0,0,0), + (6096,256,11554,0,2049,0,0,1,11555,0,0,0,0,0), + (6097,256,11555,0,2049,0,0,1,11556,0,0,0,0,0), + (6098,256,11556,0,2049,0,0,1,25202,0,0,0,0,0), + (6099,256,5246,0,2049,0,0,1,0,0,0,0,0,0), + (10484,256,18499,0,2049,0,0,1,0,0,0,0,0,0), + (11657,256,1719,0,2049,0,0,1,0,0,0,0,0,0), + (11705,256,20569,0,2049,0,0,1,25231,0,0,0,0,0), + (11736,256,20252,0,2049,0,0,1,20616,0,0,0,0,0), + (11759,256,5308,0,2049,0,0,1,20658,0,0,0,0,0), + (11760,256,20647,0,2049,0,0,1,0,0,0,0,0,0), + (11776,256,20658,0,2049,0,0,1,20660,0,0,0,0,0), + (11777,256,20660,0,2049,0,0,1,20661,0,0,0,0,0), + (11778,256,20661,0,2049,0,0,1,20662,0,0,0,0,0), + (11779,256,20662,0,2049,0,0,1,25234,0,0,0,0,0), + (12116,256,6552,0,2049,0,0,1,6554,0,0,0,0,0), + (12656,256,23584,0,2049,0,0,1,0,0,0,0,0,0), + (12657,256,23585,0,2049,0,0,1,0,0,0,0,0,0), + (12658,256,23586,0,2049,0,0,1,0,0,0,0,0,0), + (12659,256,23587,0,2049,0,0,1,0,0,0,0,0,0), + (12660,256,23588,0,2049,0,0,1,0,0,0,0,0,0), + (12776,256,23881,0,2049,0,0,1,23892,0,0,0,0,0), + (12777,256,23885,0,2049,0,0,1,0,0,0,0,0,0), + (12778,256,23880,0,2049,0,0,1,0,0,0,0,0,0), + (13149,256,469,0,2049,0,0,1,47439,0,0,0,0,0), + (13161,256,25202,0,2049,0,0,1,25203,0,0,0,0,0), + (13162,256,25203,0,2049,0,0,1,47437,0,0,0,0,0), + (13168,256,25231,0,2049,0,0,1,47519,0,0,0,0,0), + (13169,256,25234,0,2049,0,0,1,25236,0,0,0,0,0), + (13170,256,25236,0,2049,0,0,1,47470,0,0,0,0,0), + (13171,256,25241,0,2049,0,0,1,25242,0,0,0,0,0), + (13172,256,25242,0,2049,0,0,1,47474,0,0,0,0,0), + (14161,256,29590,0,2049,0,0,1,0,0,0,0,0,0), + (14162,256,29591,0,2049,0,0,1,0,0,0,0,0,0), + (14163,256,29592,0,2049,0,0,1,0,0,0,0,0,0), + (14164,256,29721,0,2049,0,0,1,0,0,0,0,0,0), + (14165,256,29776,0,2049,0,0,1,0,0,0,0,0,0), + (14168,256,29759,0,2049,0,0,1,0,0,0,0,0,0), + (14169,256,29760,0,2049,0,0,1,0,0,0,0,0,0), + (14171,256,29761,0,2049,0,0,1,0,0,0,0,0,0), + (14177,256,29801,0,2049,0,0,1,30030,0,0,0,0,0), + (14291,256,30029,0,2049,0,0,1,0,0,0,0,0,0), + (14801,256,11551,0,2049,0,0,1,25289,0,0,0,0,0), + (14802,256,25289,0,2049,0,0,1,2048,0,0,0,0,0), + (14803,256,2048,0,2049,0,0,1,47436,0,0,0,0,0), + (15171,256,34428,0,2049,0,0,1,0,0,0,0,0,0), + (15503,256,29762,0,2049,0,0,1,0,0,0,0,0,0), + (15504,256,29763,0,2049,0,0,1,0,0,0,0,0,0), + (16325,256,46908,0,2049,0,0,1,0,0,0,0,0,0), + (16326,256,46909,0,2049,0,0,1,0,0,0,0,0,0), + (16327,256,46910,0,2049,0,0,1,0,0,0,0,0,0), + (16328,256,46911,0,2049,0,0,1,0,0,0,0,0,0), + (16330,256,46913,0,2049,0,0,1,0,0,0,0,0,0), + (16331,256,46914,0,2049,0,0,1,0,0,0,0,0,0), + (16333,256,46915,0,2049,0,0,1,0,0,0,0,0,0), + (16334,256,46916,0,2049,0,0,1,0,0,0,0,0,0), + (16335,256,46917,0,2049,0,0,1,0,0,0,0,0,0), + (16396,256,47436,0,2049,0,0,1,0,0,0,0,0,0), + (16397,256,47437,0,2049,0,0,1,0,0,0,0,0,0), + (16398,256,47439,0,2049,0,0,1,47440,0,0,0,0,0), + (16399,256,47440,0,2049,0,0,1,0,0,0,0,0,0), + (16404,256,47470,0,2049,0,0,1,47471,0,0,0,0,0), + (16405,256,47471,0,2049,0,0,1,0,0,0,0,0,0), + (16406,256,47474,0,2049,0,0,1,47475,0,0,0,0,0), + (16407,256,47475,0,2049,0,0,1,0,0,0,0,0,0), + (16425,256,47519,0,2049,0,0,1,47520,0,0,0,0,0), + (16426,256,47520,0,2049,0,0,1,0,0,0,0,0,0), + (16427,256,12292,0,2049,0,0,1,0,0,0,0,0,0), + (19386,256,55694,0,2049,0,0,1,0,0,0,0,0,0), + (19514,256,56112,0,2049,0,0,1,0,0,0,0,0,0), + (19645,256,56924,0,2049,0,0,1,0,0,0,0,0,0), + (19649,256,56927,0,2049,0,0,1,0,0,0,0,0,0), + (19650,256,56929,0,2049,0,0,1,0,0,0,0,0,0), + (19651,256,56930,0,2049,0,0,1,0,0,0,0,0,0), + (19652,256,56931,0,2049,0,0,1,0,0,0,0,0,0), + (19653,256,56932,0,2049,0,0,1,0,0,0,0,0,0), + (20390,256,60970,0,2049,0,0,1,0,0,0,0,0,0), + (20490,256,61216,0,2049,0,0,1,0,0,0,0,0,0), + (20491,256,61221,0,2049,0,0,1,0,0,0,0,0,0), + (20492,256,61222,0,2049,0,0,1,0,0,0,0,0,0), + (21021,256,29888,0,2049,0,0,1,0,0,0,0,0,0), + (21022,256,29889,0,2049,0,0,1,0,0,0,0,0,0), + (3424,257,72,0,2049,0,0,1,1671,0,0,0,0,0), + (3427,257,871,0,2049,0,0,1,6184,0,0,0,0,0), + (4278,257,2565,0,2049,0,0,1,0,0,0,0,0,0), + (6100,257,2687,0,2049,0,0,1,0,0,0,0,0,0), + (6101,257,71,0,2049,0,0,1,0,0,0,0,0,0), + (6102,257,7376,0,2049,0,0,1,0,0,0,0,0,0), + (6103,257,676,0,2049,0,0,1,0,0,0,0,0,0), + (6104,257,6572,0,2049,0,0,1,6574,0,0,0,0,0), + (6105,257,6574,0,2049,0,0,1,7379,0,0,0,0,0), + (6106,257,7379,0,2049,0,0,1,11600,0,0,0,0,0), + (6107,257,11600,0,2049,0,0,1,11601,0,0,0,0,0), + (6108,257,11601,0,2049,0,0,1,25288,0,0,0,0,0), + (6109,257,7386,0,2049,0,0,1,7405,0,0,0,0,0), + (6114,257,355,0,2049,0,0,1,7390,0,0,0,0,0), + (6974,257,12308,0,2049,0,0,1,0,0,0,0,0,0), + (6975,257,12810,0,2049,0,0,1,0,0,0,0,0,0), + (12796,257,23922,0,2049,0,0,1,23923,0,0,0,0,0), + (12797,257,23923,0,2049,0,0,1,23924,0,0,0,0,0), + (12798,257,23924,0,2049,0,0,1,23925,0,0,0,0,0), + (12799,257,23925,0,2049,0,0,1,25258,0,0,0,0,0), + (13158,257,23920,0,2049,0,0,1,0,0,0,0,0,0), + (13160,257,3411,0,2049,0,0,1,0,0,0,0,0,0), + (13177,257,25258,0,2049,0,0,1,30356,0,0,0,0,0), + (13181,257,25269,0,2049,0,0,1,30357,0,0,0,0,0), + (13184,257,25288,0,2049,0,0,1,25269,0,0,0,0,0), + (14142,257,29593,0,2049,0,0,1,0,0,0,0,0,0), + (14143,257,29594,0,2049,0,0,1,0,0,0,0,0,0), + (14147,257,29598,0,2049,0,0,1,0,0,0,0,0,0), + (14148,257,29599,0,2049,0,0,1,0,0,0,0,0,0), + (14151,257,29140,0,2049,0,0,1,0,0,0,0,0,0), + (14152,257,29143,0,2049,0,0,1,0,0,0,0,0,0), + (14153,257,29144,0,2049,0,0,1,0,0,0,0,0,0), + (14173,257,29787,0,2049,0,0,1,0,0,0,0,0,0), + (14174,257,29790,0,2049,0,0,1,0,0,0,0,0,0), + (14175,257,29792,0,2049,0,0,1,0,0,0,0,0,0), + (14271,257,20243,0,2049,0,0,1,30016,0,0,0,0,0), + (14272,257,30016,0,2049,0,0,1,30022,0,0,0,0,0), + (14273,257,30022,0,2049,0,0,1,47497,0,0,0,0,0), + (14382,257,30357,0,2049,0,0,1,57823,0,0,0,0,0), + (14383,257,30356,0,2049,0,0,1,47487,0,0,0,0,0), + (15513,257,12678,0,2049,0,0,1,0,0,0,0,0,0), + (16199,257,45471,0,2049,0,0,1,0,2,0,0,0,0), + (16346,257,46945,0,2049,0,0,1,0,0,0,0,0,0), + (16347,257,46949,0,2049,0,0,1,0,0,0,0,0,0), + (16349,257,46946,0,2049,0,0,1,0,0,0,0,0,0), + (16350,257,46947,0,2049,0,0,1,0,0,0,0,0,0), + (16352,257,46951,0,2049,0,0,1,0,0,0,0,0,0), + (16353,257,46952,0,2049,0,0,1,0,0,0,0,0,0), + (16354,257,46953,0,2049,0,0,1,0,0,0,0,0,0), + (16357,257,46968,0,2049,0,0,1,0,0,0,0,0,0), + (16392,257,47294,0,2049,0,0,1,0,0,0,0,0,0), + (16393,257,47295,0,2049,0,0,1,0,0,0,0,0,0), + (16394,257,47296,0,2049,0,0,1,0,0,0,0,0,0), + (16410,257,47487,0,2049,0,0,1,47488,0,0,0,0,0), + (16411,257,47488,0,2049,0,0,1,0,0,0,0,0,0), + (16418,257,47497,0,2049,0,0,1,47498,0,0,0,0,0), + (16419,257,47498,0,2049,0,0,1,0,0,0,0,0,0), + (17525,257,50685,0,2049,0,0,1,0,0,0,0,0,0), + (17526,257,50686,0,2049,0,0,1,0,0,0,0,0,0), + (17527,257,50687,0,2049,0,0,1,0,0,0,0,0,0), + (17536,257,50720,0,2049,0,0,1,0,0,0,0,0,0), + (19750,257,57499,0,2049,0,0,1,0,0,0,0,0,0), + (19959,257,57823,0,2049,0,0,1,0,0,0,0,0,0), + (20101,257,58872,0,2049,0,0,1,0,0,0,0,0,0), + (20102,257,58874,0,2049,0,0,1,0,0,0,0,0,0), + (20103,257,12811,0,2049,0,0,1,0,0,0,0,0,0), + (20130,257,59088,0,2049,0,0,1,0,0,0,0,0,0), + (20131,257,59089,0,2049,0,0,1,0,0,0,0,0,0), + (20261,257,12287,0,2049,0,0,1,0,0,0,0,0,0), + (20262,257,12665,0,2049,0,0,1,0,0,0,0,0,0), + (20263,257,12666,0,2049,0,0,1,0,0,0,0,0,0), + (3530,267,465,0,2050,0,0,1,10290,0,0,0,0,0), + (3531,267,643,0,2050,0,0,1,10291,0,0,0,0,0), + (3532,267,1032,0,2050,0,0,1,10292,0,0,0,0,0), + (5522,267,10290,0,2050,0,0,1,643,0,0,0,0,0), + (5523,267,10291,0,2050,0,0,1,1032,0,0,0,0,0), + (5524,267,10292,0,2050,0,0,1,10293,0,0,0,0,0), + (5525,267,10293,0,2050,0,0,1,27149,0,0,0,0,0), + (6530,267,1022,0,2050,0,0,1,0,0,0,0,0,0), + (6531,267,5599,0,2050,0,0,1,0,0,0,0,0,0), + (6532,267,10278,0,2050,0,0,1,0,0,0,0,0,0), + (6533,267,642,0,2050,0,0,1,0,0,0,0,0,0), + (6535,267,1038,0,2050,0,0,1,0,0,0,0,0,0), + (6536,267,6940,0,2050,0,0,1,0,0,0,0,0,0), + (6537,267,498,0,2050,0,0,1,0,0,0,0,0,0), + (10464,267,1044,0,2050,0,0,1,0,0,0,0,0,0), + (11256,267,19876,0,2050,0,0,1,19895,0,0,0,0,0), + (11257,267,19895,0,2050,0,0,1,19896,0,0,0,0,0), + (11258,267,19896,0,2050,0,0,1,27151,0,0,0,0,0), + (11259,267,19891,0,2050,0,0,1,19899,0,0,0,0,0), + (11260,267,19899,0,2050,0,0,1,19900,0,0,0,0,0), + (11261,267,19900,0,2050,0,0,1,27153,0,0,0,0,0), + (11262,267,19888,0,2050,0,0,1,19897,0,0,0,0,0), + (11263,267,19897,0,2050,0,0,1,19898,0,0,0,0,0), + (11264,267,19898,0,2050,0,0,1,27152,0,0,0,0,0), + (11545,267,20164,0,2050,0,0,1,0,0,0,0,0,0), + (11546,267,20184,0,2050,0,0,1,0,0,0,0,0,0), + (11882,267,20911,0,2050,0,0,1,0,0,0,0,0,0), + (11916,267,19752,0,2050,0,0,1,0,0,0,0,0,0), + (13345,267,25780,0,2050,0,0,1,0,0,0,0,0,0), + (13356,267,20096,0,2050,0,0,1,0,0,0,0,0,0), + (13357,267,20097,0,2050,0,0,1,0,0,0,0,0,0), + (13358,267,20098,0,2050,0,0,1,0,0,0,0,0,0), + (13359,267,20099,0,2050,0,0,1,0,0,0,0,0,0), + (13360,267,20100,0,2050,0,0,1,0,0,0,0,0,0), + (13364,267,25781,0,2050,0,0,1,0,0,0,0,0,0), + (13368,267,25899,0,2050,0,0,1,0,0,0,0,0,0), + (13448,267,853,0,2050,0,0,1,0,0,0,0,0,0), + (13449,267,5588,0,2050,0,0,1,0,0,0,0,0,0), + (13450,267,5589,0,2050,0,0,1,0,0,0,0,0,0), + (13452,267,10308,0,2050,0,0,1,0,0,0,0,0,0), + (13455,267,20217,0,2050,0,0,1,0,0,0,0,0,0), + (13456,267,25898,0,2050,0,0,1,0,0,0,0,0,0), + (13701,267,27149,0,2050,0,0,1,48941,0,0,0,0,0), + (13703,267,27151,0,2050,0,0,1,48943,0,0,0,0,0), + (13704,267,27152,0,2050,0,0,1,48945,0,0,0,0,0), + (13705,267,27153,0,2050,0,0,1,48947,0,0,0,0,0), + (13706,267,27179,0,2050,0,0,1,0,0,0,0,0,0), + (14710,267,31785,0,2050,0,0,1,33776,0,0,0,0,0), + (14711,267,31789,0,2050,0,0,1,0,0,0,0,0,0), + (14741,267,31858,0,2050,0,0,1,0,0,0,0,0,0), + (14742,267,31859,0,2050,0,0,1,0,0,0,0,0,0), + (14743,267,31860,0,2050,0,0,1,0,0,0,0,0,0), + (14749,267,31850,0,2050,0,0,1,0,0,0,0,0,0), + (14750,267,31851,0,2050,0,0,1,0,0,0,0,0,0), + (14751,267,31852,0,2050,0,0,1,0,0,0,0,0,0), + (14754,267,31848,0,2050,0,0,1,0,0,0,0,0,0), + (14755,267,31849,0,2050,0,0,1,0,0,0,0,0,0), + (14758,267,31844,0,2050,0,0,1,0,0,0,0,0,0), + (14759,267,31845,0,2050,0,0,1,0,0,0,0,0,0), + (14780,267,31935,0,2050,0,0,1,0,0,0,0,0,0), + (14910,267,32699,0,2050,0,0,1,0,0,0,0,0,0), + (14911,267,32700,0,2050,0,0,1,0,0,0,0,0,0), + (15052,267,33776,0,2050,0,0,1,0,0,0,0,0,0), + (16763,267,48941,0,2050,0,0,1,48942,0,0,0,0,0), + (16764,267,48942,0,2050,0,0,1,0,0,0,0,0,0), + (16765,267,48943,0,2050,0,0,1,48944,0,0,0,0,0), + (16767,267,48945,0,2050,0,0,1,48946,0,0,0,0,0), + (16769,267,48947,0,2050,0,0,1,0,0,0,0,0,0), + (16772,267,48951,0,2050,0,0,1,0,0,0,0,0,0), + (16773,267,48952,0,2050,0,0,1,0,0,0,0,0,0), + (17585,267,48826,0,2050,0,0,1,0,0,0,0,0,0), + (17586,267,48827,0,2050,0,0,1,0,0,0,0,0,0), + (18176,267,53519,0,2050,0,0,1,0,0,0,0,0,0), + (18186,267,20262,0,2050,0,0,1,0,0,0,0,0,0), + (18187,267,20263,0,2050,0,0,1,0,0,0,0,0,0), + (18188,267,20264,0,2050,0,0,1,0,0,0,0,0,0), + (18189,267,20265,0,2050,0,0,1,0,0,0,0,0,0), + (18190,267,20266,0,2050,0,0,1,0,0,0,0,0,0), + (18236,267,53583,0,2050,0,0,1,0,0,0,0,0,0), + (18237,267,53585,0,2050,0,0,1,0,0,0,0,0,0), + (18238,267,53590,0,2050,0,0,1,0,0,0,0,0,0), + (18239,267,53591,0,2050,0,0,1,0,0,0,0,0,0), + (18240,267,53592,0,2050,0,0,1,0,0,0,0,0,0), + (18251,267,53595,0,2050,0,0,1,0,0,0,0,0,0), + (18252,267,53600,0,2050,0,0,1,0,0,0,0,0,0), + (18294,267,53695,0,2050,0,0,1,0,0,0,0,0,0), + (18295,267,53696,0,2050,0,0,1,0,0,0,0,0,0), + (18296,267,53709,0,2050,0,0,1,0,0,0,0,0,0), + (18297,267,53710,0,2050,0,0,1,0,0,0,0,0,0), + (18298,267,53711,0,2050,0,0,1,0,0,0,0,0,0), + (20721,267,61411,0,2050,0,0,1,0,0,0,0,0,0), + (20743,267,62124,0,2050,0,0,1,0,0,0,0,0,0), + (20851,267,63646,0,2050,0,0,1,0,0,0,0,0,0), + (20852,267,63647,0,2050,0,0,1,0,0,0,0,0,0), + (20853,267,63648,0,2050,0,0,1,0,0,0,0,0,0), + (20854,267,63649,0,2050,0,0,1,0,0,0,0,0,0), + (20855,267,63650,0,2050,0,0,1,0,0,0,0,0,0), + (20923,267,64205,0,2050,0,0,1,0,0,0,0,0,0), + (21002,267,53527,0,2050,0,0,1,0,0,0,0,0,0), + (21003,267,53530,0,2050,0,0,1,0,0,0,0,0,0), + (4141,293,750,0,2083,0,0,1,0,2,0,0,0,0), + (4326,354,1098,0,2304,0,0,1,0,0,0,0,0,0), + (4327,354,706,0,2304,0,0,1,0,0,0,0,0,0), + (4328,354,1086,0,2304,0,0,1,0,0,0,0,0,0), + (4329,354,5697,0,2304,0,0,1,0,0,0,0,0,0), + (4330,354,687,0,2304,0,0,1,0,2,0,0,0,0), + (4331,354,696,0,2304,0,0,1,0,0,0,0,0,0), + (4332,354,5500,0,2304,0,0,1,0,0,0,0,0,0), + (6165,354,11733,0,2304,0,0,1,0,0,0,0,0,0), + (6166,354,11734,0,2304,0,0,1,0,0,0,0,0,0), + (6167,354,11735,0,2304,0,0,1,0,0,0,0,0,0), + (6168,354,11725,0,2304,0,0,1,0,0,0,0,0,0), + (6169,354,11726,0,2304,0,0,1,0,0,0,0,0,0), + (6391,354,688,0,2304,0,0,1,0,0,0,0,0,0), + (6392,354,5784,0,2304,0,0,1,0,0,0,0,0,0), + (6393,354,712,0,2304,0,0,1,0,0,0,0,0,0), + (6394,354,697,0,2304,0,0,1,0,0,0,0,0,0), + (6395,354,693,0,2304,0,0,1,0,0,0,0,0,0), + (6396,354,6201,0,2304,0,0,1,0,0,0,0,0,0), + (6397,354,6202,0,2304,0,0,1,0,0,0,0,0,0), + (6398,354,5699,0,2304,0,0,1,0,0,0,0,0,0), + (6399,354,11729,0,2304,0,0,1,0,0,0,0,0,0), + (6400,354,11730,0,2304,0,0,1,0,0,0,0,0,0), + (6401,354,755,0,2304,0,0,1,0,0,0,0,0,0), + (6402,354,3698,0,2304,0,0,1,0,0,0,0,0,0), + (6403,354,3699,0,2304,0,0,1,0,0,0,0,0,0), + (6404,354,3700,0,2304,0,0,1,0,0,0,0,0,0), + (6405,354,11693,0,2304,0,0,1,0,0,0,0,0,0), + (6406,354,11694,0,2304,0,0,1,0,0,0,0,0,0), + (6407,354,11695,0,2304,0,0,1,0,0,0,0,0,0), + (6460,354,6229,0,2304,0,0,1,0,0,0,0,0,0), + (6461,354,11739,0,2304,0,0,1,0,0,0,0,0,0), + (6462,354,11740,0,2304,0,0,1,0,0,0,0,0,0), + (6464,354,132,0,2304,0,0,1,0,0,0,0,0,0), + (6467,354,698,0,2304,0,0,1,0,0,0,0,0,0), + (6468,354,126,0,2304,0,0,1,0,0,0,0,0,0), + (9996,354,2362,0,2304,0,0,1,0,0,0,0,0,0), + (10018,354,17727,0,2304,0,0,1,0,0,0,0,0,0), + (10019,354,17728,0,2304,0,0,1,0,0,0,0,0,0), + (10077,354,6366,0,2304,0,0,1,0,0,0,0,0,0), + (10107,354,17951,0,2304,0,0,1,0,0,0,0,0,0), + (10108,354,17952,0,2304,0,0,1,0,0,0,0,0,0), + (10109,354,17953,0,2304,0,0,1,0,0,0,0,0,0), + (10336,354,1122,0,2304,0,0,1,0,0,0,0,0,0), + (10477,354,18540,0,2304,0,0,1,0,0,0,0,0,0), + (10478,354,18541,0,2304,0,0,1,0,0,0,0,0,0), + (10497,354,710,0,2304,0,0,1,0,0,0,0,0,0), + (10498,354,18647,0,2304,0,0,1,0,0,0,0,0,0), + (10622,354,18822,0,2304,0,0,1,0,2,0,0,0,0), + (11032,354,691,0,2304,0,0,1,0,0,0,0,0,0), + (11789,354,20752,0,2304,0,0,1,0,0,0,0,0,0), + (11790,354,20755,0,2304,0,0,1,0,0,0,0,0,0), + (11791,354,20756,0,2304,0,0,1,0,0,0,0,0,0), + (11792,354,20757,0,2304,0,0,1,0,0,0,0,0,0), + (12517,354,23161,0,2304,0,0,1,0,0,0,0,0,0), + (12736,354,23762,0,2304,0,0,1,0,0,0,0,0,0), + (12737,354,23837,0,2304,0,0,1,0,0,0,0,0,0), + (12738,354,23838,0,2304,0,0,1,0,0,0,0,0,0), + (12739,354,23839,0,2304,0,0,1,0,0,0,0,0,0), + (12740,354,23840,0,2304,0,0,1,0,0,0,0,0,0), + (12741,354,23759,0,2304,0,0,1,0,0,0,0,0,0), + (12742,354,23826,0,2304,0,0,1,0,0,0,0,0,0), + (12743,354,23827,0,2304,0,0,1,0,0,0,0,0,0), + (12744,354,23828,0,2304,0,0,1,0,0,0,0,0,0), + (12745,354,23829,0,2304,0,0,1,0,0,0,0,0,0), + (12746,354,23761,0,2304,0,0,1,0,0,0,0,0,0), + (12747,354,23833,0,2304,0,0,1,0,0,0,0,0,0), + (12748,354,23834,0,2304,0,0,1,0,0,0,0,0,0), + (12749,354,23835,0,2304,0,0,1,0,0,0,0,0,0), + (12750,354,23836,0,2304,0,0,1,0,0,0,0,0,0), + (12751,354,23760,0,2304,0,0,1,0,0,0,0,0,0), + (12752,354,23841,0,2304,0,0,1,0,0,0,0,0,0), + (12753,354,23842,0,2304,0,0,1,0,0,0,0,0,0), + (12754,354,23843,0,2304,0,0,1,0,0,0,0,0,0), + (12755,354,23844,0,2304,0,0,1,0,0,0,0,0,0), + (12756,354,23785,0,2304,0,0,1,0,0,0,0,0,0), + (12757,354,23822,0,2304,0,0,1,0,0,0,0,0,0), + (12758,354,23823,0,2304,0,0,1,0,0,0,0,0,0), + (12759,354,23824,0,2304,0,0,1,0,0,0,0,0,0), + (12760,354,23825,0,2304,0,0,1,0,0,0,0,0,0), + (13735,354,27259,0,2304,0,0,1,0,0,0,0,0,0), + (13746,354,27230,0,2304,0,0,1,0,0,0,0,0,0), + (13747,354,27238,0,2304,0,0,1,0,0,0,0,0,0), + (13749,354,27250,0,2304,0,0,1,0,0,0,0,0,0), + (13750,354,27260,0,2304,0,0,1,0,0,0,0,0,0), + (13906,354,28172,0,2304,0,0,1,0,0,0,0,0,0), + (13907,354,28176,0,2304,0,0,1,0,0,0,0,0,0), + (13908,354,28189,0,2304,0,0,1,0,0,0,0,0,0), + (14005,354,28610,0,2304,0,0,1,0,0,0,0,0,0), + (14249,354,29858,0,2304,0,0,1,0,0,0,0,0,0), + (14297,354,30143,0,2304,0,0,1,0,0,0,0,0,0), + (14298,354,30144,0,2304,0,0,1,0,0,0,0,0,0), + (14299,354,30145,0,2304,0,0,1,0,0,0,0,0,0), + (14306,354,30146,0,2304,0,0,1,0,0,0,0,0,0), + (14317,354,30242,0,2304,0,0,1,0,0,0,0,0,0), + (14318,354,30245,0,2304,0,0,1,0,0,0,0,0,0), + (14319,354,30246,0,2304,0,0,1,0,0,0,0,0,0), + (14320,354,30247,0,2304,0,0,1,0,0,0,0,0,0), + (14321,354,30248,0,2304,0,0,1,0,0,0,0,0,0), + (14339,354,30319,0,2304,0,0,1,0,0,0,0,0,0), + (14340,354,30320,0,2304,0,0,1,0,0,0,0,0,0), + (14341,354,30321,0,2304,0,0,1,0,0,0,0,0,0), + (14344,354,30326,0,2304,0,0,1,0,0,0,0,0,0), + (14812,354,29893,0,2304,0,0,1,0,0,0,0,0,0), + (14813,354,29886,0,2304,0,0,1,0,0,0,0,0,0), + (15575,354,35691,0,2304,0,0,1,0,0,0,0,0,0), + (15576,354,35692,0,2304,0,0,1,0,0,0,0,0,0), + (15577,354,35693,0,2304,0,0,1,0,0,0,0,0,0), + (15601,354,35702,0,2304,0,0,1,0,0,0,0,0,0), + (15602,354,35703,0,2304,0,0,1,0,0,0,0,0,0), + (15603,354,35704,0,2304,0,0,1,0,0,0,0,0,0), + (15604,354,35705,0,2304,0,0,1,0,0,0,0,0,0), + (15605,354,35706,0,2304,0,0,1,0,0,0,0,0,0), + (16467,354,47856,0,2304,0,0,1,0,0,0,0,0,0), + (16479,354,47871,0,2304,0,0,1,0,0,0,0,0,0), + (16480,354,47878,0,2304,0,0,1,0,0,0,0,0,0), + (16481,354,47884,0,2304,0,0,1,0,0,0,0,0,0), + (16482,354,47886,0,2304,0,0,1,0,0,0,0,0,0), + (16483,354,47888,0,2304,0,0,1,0,0,0,0,0,0), + (16484,354,47793,0,2304,0,0,1,0,0,0,0,0,0), + (16485,354,47889,0,2304,0,0,1,0,0,0,0,0,0), + (16486,354,47890,0,2304,0,0,1,0,0,0,0,0,0), + (16487,354,47891,0,2304,0,0,1,0,0,0,0,0,0), + (16488,354,47892,0,2304,0,0,1,0,0,0,0,0,0), + (16489,354,47893,0,2304,0,0,1,0,0,0,0,0,0), + (16514,354,48018,0,2304,0,0,1,0,0,0,0,0,0), + (16515,354,48020,0,2304,0,0,1,0,0,0,0,0,0), + (20108,354,58889,0,2304,0,0,1,0,0,0,0,0,0), + (20109,354,58887,0,2304,0,0,1,0,0,0,0,0,0), + (20464,354,61191,0,2304,0,0,1,0,0,0,0,0,0), + (20658,354,61610,0,2304,0,0,1,0,0,0,0,0,0), + (20813,354,63156,0,2304,0,0,1,0,0,0,0,0,0), + (20814,354,63158,0,2304,0,0,1,0,0,0,0,0,0), + (4333,355,1490,0,2304,0,0,1,0,0,0,0,0,0), + (4334,355,980,0,2304,0,0,1,0,0,0,0,0,0), + (4336,355,6217,0,2304,0,0,1,0,0,0,0,0,0), + (4340,355,702,0,2304,0,0,1,0,0,0,0,0,0), + (4341,355,1108,0,2304,0,0,1,0,0,0,0,0,0), + (4342,355,6205,0,2304,0,0,1,0,0,0,0,0,0), + (4343,355,7646,0,2304,0,0,1,0,0,0,0,0,0), + (4410,355,1714,0,2304,0,0,1,0,0,0,0,0,0), + (6156,355,11707,0,2304,0,0,1,0,0,0,0,0,0), + (6157,355,11708,0,2304,0,0,1,0,0,0,0,0,0), + (6159,355,11711,0,2304,0,0,1,0,0,0,0,0,0), + (6160,355,11712,0,2304,0,0,1,0,0,0,0,0,0), + (6161,355,11713,0,2304,0,0,1,0,0,0,0,0,0), + (6162,355,11721,0,2304,0,0,1,0,0,0,0,0,0), + (6163,355,11722,0,2304,0,0,1,0,0,0,0,0,0), + (6164,355,11719,0,2304,0,0,1,0,0,0,0,0,0), + (6451,355,5782,0,2304,0,0,1,0,0,0,0,0,0), + (6452,355,6213,0,2304,0,0,1,0,0,0,0,0,0), + (6453,355,6215,0,2304,0,0,1,0,0,0,0,0,0), + (6454,355,1454,0,2304,0,0,1,0,0,0,0,0,0), + (10057,355,6789,0,2304,0,0,1,0,0,0,0,0,0), + (10076,355,5484,0,2304,0,0,1,0,0,0,0,0,0), + (10100,355,17928,0,2304,0,0,1,0,0,0,0,0,0), + (10116,355,1010,0,2304,0,0,1,0,0,0,0,0,0), + (10144,355,172,0,2304,0,0,1,0,0,0,0,0,0), + (10145,355,6222,0,2304,0,0,1,0,0,0,0,0,0), + (10146,355,6223,0,2304,0,0,1,0,0,0,0,0,0), + (10147,355,7648,0,2304,0,0,1,0,0,0,0,0,0), + (10148,355,11671,0,2304,0,0,1,0,0,0,0,0,0), + (10149,355,11672,0,2304,0,0,1,0,0,0,0,0,0), + (10150,355,689,0,2304,0,0,1,0,0,0,0,0,0), + (10151,355,699,0,2304,0,0,1,0,0,0,0,0,0), + (10152,355,709,0,2304,0,0,1,0,0,0,0,0,0), + (10153,355,7651,0,2304,0,0,1,0,0,0,0,0,0), + (10154,355,11699,0,2304,0,0,1,0,0,0,0,0,0), + (10155,355,11700,0,2304,0,0,1,0,0,0,0,0,0), + (10156,355,5138,0,2304,0,0,1,0,0,0,0,0,0), + (10160,355,1120,0,2304,0,0,1,0,0,0,0,0,0), + (10161,355,8288,0,2304,0,0,1,0,0,0,0,0,0), + (10162,355,8289,0,2304,0,0,1,0,0,0,0,0,0), + (10163,355,11675,0,2304,0,0,1,0,0,0,0,0,0), + (10203,355,17925,0,2304,0,0,1,0,0,0,0,0,0), + (10204,355,17926,0,2304,0,0,1,0,0,0,0,0,0), + (10205,355,603,0,2304,0,0,1,0,0,0,0,0,0), + (10238,355,18220,0,2304,0,0,1,0,0,0,0,0,0), + (10679,355,18662,0,2304,0,0,1,0,0,0,0,0,0), + (10683,355,18937,0,2304,0,0,1,0,0,0,0,0,0), + (10684,355,18938,0,2304,0,0,1,0,0,0,0,0,0), + (13249,355,25311,0,2304,0,0,1,0,0,0,0,0,0), + (13557,355,27243,0,2304,0,0,1,0,0,0,0,0,0), + (13725,355,27216,0,2304,0,0,1,0,0,0,0,0,0), + (13734,355,27217,0,2304,0,0,1,0,0,0,0,0,0), + (13736,355,27219,0,2304,0,0,1,0,0,0,0,0,0), + (13737,355,27220,0,2304,0,0,1,0,0,0,0,0,0), + (13739,355,27223,0,2304,0,0,1,0,0,0,0,0,0), + (13741,355,27224,0,2304,0,0,1,0,0,0,0,0,0), + (13742,355,27218,0,2304,0,0,1,0,0,0,0,0,0), + (13744,355,27228,0,2304,0,0,1,0,0,0,0,0,0), + (13752,355,27265,0,2304,0,0,1,0,0,0,0,0,0), + (14284,355,30054,0,2304,0,0,1,0,0,0,0,0,0), + (14285,355,30057,0,2304,0,0,1,0,0,0,0,0,0), + (14286,355,30060,0,2304,0,0,1,0,0,0,0,0,0), + (14287,355,30061,0,2304,0,0,1,0,0,0,0,0,0), + (14288,355,30062,0,2304,0,0,1,0,0,0,0,0,0), + (14289,355,30063,0,2304,0,0,1,0,0,0,0,0,0), + (14290,355,30064,0,2304,0,0,1,0,0,0,0,0,0), + (14296,355,30108,0,2304,0,0,1,0,0,0,0,0,0), + (14809,355,27285,0,2304,0,0,1,0,0,0,0,0,0), + (14825,355,32385,0,2304,0,0,1,0,0,0,0,0,0), + (14826,355,32387,0,2304,0,0,1,0,0,0,0,0,0), + (14827,355,32392,0,2304,0,0,1,0,0,0,0,0,0), + (14829,355,32393,0,2304,0,0,1,0,0,0,0,0,0), + (14830,355,32394,0,2304,0,0,1,0,0,0,0,0,0), + (14831,355,32386,0,2304,0,0,1,0,0,0,0,0,0), + (14832,355,32388,0,2304,0,0,1,0,0,0,0,0,0), + (14833,355,32389,0,2304,0,0,1,0,0,0,0,0,0), + (14834,355,32390,0,2304,0,0,1,0,0,0,0,0,0), + (14835,355,32391,0,2304,0,0,1,0,0,0,0,0,0), + (14836,355,32381,0,2304,0,0,1,0,0,0,0,0,0), + (14837,355,32382,0,2304,0,0,1,0,0,0,0,0,0), + (14838,355,32383,0,2304,0,0,1,0,0,0,0,0,0), + (14840,355,30404,0,2304,0,0,1,0,0,0,0,0,0), + (14841,355,30405,0,2304,0,0,1,0,0,0,0,0,0), + (14842,355,31117,0,2304,0,0,1,0,0,0,0,0,0), + (14846,355,32477,0,2304,0,0,1,0,0,0,0,0,0), + (14847,355,32483,0,2304,0,0,1,0,0,0,0,0,0), + (14848,355,32484,0,2304,0,0,1,0,0,0,0,0,0), + (15520,355,30909,0,2304,0,0,1,0,0,0,0,0,0), + (15648,355,30910,0,2304,0,0,1,0,0,0,0,0,0), + (16367,355,1455,0,2304,0,0,1,0,0,0,0,0,0), + (16368,355,1456,0,2304,0,0,1,0,0,0,0,0,0), + (16388,355,11687,0,2304,0,0,1,0,0,0,0,0,0), + (16389,355,11688,0,2304,0,0,1,0,0,0,0,0,0), + (16390,355,11689,0,2304,0,0,1,0,0,0,0,0,0), + (16391,355,27222,0,2304,0,0,1,0,0,0,0,0,0), + (16440,355,47812,0,2304,0,0,1,0,0,0,0,0,0), + (16441,355,47813,0,2304,0,0,1,0,0,0,0,0,0), + (16456,355,47835,0,2304,0,0,1,0,0,0,0,0,0), + (16457,355,47836,0,2304,0,0,1,0,0,0,0,0,0), + (16458,355,47833,0,2304,0,0,1,0,0,0,0,0,0), + (16459,355,47834,0,2304,0,0,1,0,0,0,0,0,0), + (16462,355,47841,0,2304,0,0,1,0,0,0,0,0,0), + (16463,355,47843,0,2304,0,0,1,0,0,0,0,0,0), + (16466,355,47855,0,2304,0,0,1,0,0,0,0,0,0), + (16468,355,47857,0,2304,0,0,1,0,0,0,0,0,0), + (16470,355,47859,0,2304,0,0,1,0,0,0,0,0,0), + (16471,355,47860,0,2304,0,0,1,0,0,0,0,0,0), + (16474,355,47863,0,2304,0,0,1,0,0,0,0,0,0), + (16475,355,47864,0,2304,0,0,1,0,0,0,0,0,0), + (16476,355,47865,0,2304,0,0,1,0,0,0,0,0,0), + (16478,355,47867,0,2304,0,0,1,0,0,0,0,0,0), + (16604,355,48181,0,2304,0,0,1,0,0,0,0,0,0), + (16613,355,47206,0,2304,0,0,1,0,0,0,0,0,0), + (18320,355,50511,0,2304,0,0,1,0,0,0,0,0,0), + (19964,355,57946,0,2304,0,0,1,0,0,0,0,0,0), + (20002,355,58435,0,2304,0,0,1,0,0,0,0,0,0), + (20135,355,59161,0,2304,0,0,1,0,0,0,0,0,0), + (20136,355,59163,0,2304,0,0,1,0,0,0,0,0,0), + (20137,355,59164,0,2304,0,0,1,0,0,0,0,0,0), + (20138,355,59092,0,2304,0,0,1,0,0,0,0,0,0), + (20809,355,63108,0,2304,0,0,1,0,0,0,0,0,0), + (4480,373,6495,0,2112,0,0,1,0,0,0,0,0,0), + (4499,373,324,0,2112,0,0,1,0,0,0,0,0,0), + (4500,373,325,0,2112,0,0,1,0,0,0,0,0,0), + (4501,373,905,0,2112,0,0,1,0,0,0,0,0,0), + (4502,373,945,0,2112,0,0,1,0,0,0,0,0,0), + (4532,373,8134,0,2112,0,0,1,0,0,0,0,0,0), + (4572,373,8232,0,2112,0,0,1,0,0,0,0,0,0), + (4573,373,8235,0,2112,0,0,1,0,0,0,0,0,0), + (4725,373,8512,0,2112,0,0,1,0,0,0,0,0,0), + (5588,373,10431,0,2112,0,0,1,0,0,0,0,0,0), + (5589,373,10432,0,2112,0,0,1,0,0,0,0,0,0), + (5636,373,8177,0,2112,0,0,1,0,0,0,0,0,0), + (5639,373,10595,0,2112,0,0,1,0,0,0,0,0,0), + (5640,373,10600,0,2112,0,0,1,0,0,0,0,0,0), + (5641,373,10601,0,2112,0,0,1,0,0,0,0,0,0), + (8700,373,2645,0,2112,0,0,1,0,0,0,0,0,0), + (8701,373,6196,0,2112,0,0,1,0,0,0,0,0,0), + (8702,373,556,0,2112,0,0,1,0,0,0,0,0,0), + (8747,373,8017,0,2112,0,0,1,0,0,0,0,0,0), + (8748,373,8018,0,2112,0,0,1,0,0,0,0,0,0), + (8749,373,8019,0,2112,0,0,1,0,0,0,0,0,0), + (8750,373,10399,0,2112,0,0,1,0,0,0,0,0,0), + (8756,373,8181,0,2112,0,0,1,0,0,0,0,0,0), + (8757,373,10478,0,2112,0,0,1,0,0,0,0,0,0), + (8758,373,10479,0,2112,0,0,1,0,0,0,0,0,0), + (8759,373,8227,0,2112,0,0,1,0,0,0,0,0,0), + (8760,373,8249,0,2112,0,0,1,0,0,0,0,0,0), + (8761,373,8024,0,2112,0,0,1,0,0,0,0,0,0), + (8762,373,8027,0,2112,0,0,1,0,0,0,0,0,0), + (8763,373,8030,0,2112,0,0,1,0,0,0,0,0,0), + (8764,373,8071,0,2112,0,0,1,0,0,0,0,0,0), + (8765,373,8154,0,2112,0,0,1,0,0,0,0,0,0), + (8766,373,8155,0,2112,0,0,1,0,0,0,0,0,0), + (8767,373,10406,0,2112,0,0,1,0,0,0,0,0,0), + (8769,373,10407,0,2112,0,0,1,0,0,0,0,0,0), + (8770,373,10408,0,2112,0,0,1,0,0,0,0,0,0), + (8771,373,8075,0,2112,0,0,1,0,0,0,0,0,0), + (8772,373,8160,0,2112,0,0,1,0,0,0,0,0,0), + (8773,373,8161,0,2112,0,0,1,0,0,0,0,0,0), + (8774,373,10442,0,2112,0,0,1,0,0,0,0,0,0), + (8775,373,8033,0,2112,0,0,1,0,0,0,0,0,0), + (8776,373,8038,0,2112,0,0,1,0,0,0,0,0,0), + (8777,373,10456,0,2112,0,0,1,0,0,0,0,0,0), + (8778,373,8184,0,2112,0,0,1,0,0,0,0,0,0), + (8779,373,10537,0,2112,0,0,1,0,0,0,0,0,0), + (8780,373,10538,0,2112,0,0,1,0,0,0,0,0,0), + (8781,373,131,0,2112,0,0,1,0,0,0,0,0,0), + (8967,373,16266,0,2112,0,0,1,0,0,0,0,0,0), + (8975,373,16268,0,2112,0,0,1,0,0,0,0,0,0), + (8990,373,16339,0,2112,0,0,1,0,0,0,0,0,0), + (8991,373,16341,0,2112,0,0,1,0,0,0,0,0,0), + (8992,373,16342,0,2112,0,0,1,0,0,0,0,0,0), + (8993,373,16355,0,2112,0,0,1,0,0,0,0,0,0), + (8994,373,16356,0,2112,0,0,1,0,0,0,0,0,0), + (8995,373,10486,0,2112,0,0,1,0,0,0,0,0,0), + (8996,373,16362,0,2112,0,0,1,0,0,0,0,0,0), + (9016,373,10526,0,2112,0,0,1,0,0,0,0,0,0), + (9017,373,16387,0,2112,0,0,1,0,0,0,0,0,0), + (9565,373,546,0,2112,0,0,1,0,0,0,0,0,0), + (9860,373,17364,0,2112,0,0,1,0,0,0,0,0,0), + (13151,373,2825,162,2112,0,0,1,0,0,0,0,0,0), + (13193,373,3738,0,2112,0,0,1,0,0,0,0,0,0), + (13227,373,25361,0,2112,0,0,1,0,0,0,0,0,0), + (13284,373,25469,0,2112,0,0,1,0,0,0,0,0,0), + (13285,373,25472,0,2112,0,0,1,0,0,0,0,0,0), + (13289,373,25489,0,2112,0,0,1,0,0,0,0,0,0), + (13294,373,25500,0,2112,0,0,1,0,0,0,0,0,0), + (13295,373,25508,0,2112,0,0,1,0,0,0,0,0,0), + (13297,373,25509,0,2112,0,0,1,0,0,0,0,0,0), + (13299,373,25528,0,2112,0,0,1,0,0,0,0,0,0), + (13309,373,25557,0,2112,0,0,1,0,0,0,0,0,0), + (13311,373,25560,0,2112,0,0,1,0,0,0,0,0,0), + (13312,373,25563,0,2112,0,0,1,0,0,0,0,0,0), + (13315,373,25574,0,2112,0,0,1,0,0,0,0,0,0), + (14078,373,29079,0,2112,0,0,1,0,0,0,0,0,0), + (14079,373,29080,0,2112,0,0,1,0,0,0,0,0,0), + (14080,373,29082,0,2112,0,0,1,0,0,0,0,0,0), + (14081,373,29084,0,2112,0,0,1,0,0,0,0,0,0), + (14082,373,29086,0,2112,0,0,1,0,0,0,0,0,0), + (14104,373,29192,0,2112,0,0,1,0,0,0,0,0,0), + (14105,373,29193,0,2112,0,0,1,0,0,0,0,0,0), + (14126,373,26372,0,2112,0,0,1,0,0,0,0,0,0), + (14436,373,30802,0,2112,0,0,1,0,0,0,0,0,0), + (14437,373,30808,0,2112,0,0,1,0,0,0,0,0,0), + (14438,373,30809,0,2112,0,0,1,0,0,0,0,0,0), + (14439,373,30810,0,2112,0,0,1,0,0,0,0,0,0), + (14440,373,30811,0,2112,0,0,1,0,0,0,0,0,0), + (14441,373,30803,0,2112,0,0,1,0,0,0,0,0,0), + (14442,373,30804,0,2112,0,0,1,0,0,0,0,0,0), + (14443,373,30805,0,2112,0,0,1,0,0,0,0,0,0), + (14444,373,30806,0,2112,0,0,1,0,0,0,0,0,0), + (14445,373,30807,0,2112,0,0,1,0,0,0,0,0,0), + (14446,373,30798,0,2112,0,0,1,0,0,0,0,0,0), + (14447,373,30812,0,2112,0,0,1,0,0,0,0,0,0), + (14448,373,30813,0,2112,0,0,1,0,0,0,0,0,0), + (14449,373,30814,0,2112,0,0,1,0,0,0,0,0,0), + (14450,373,30816,0,2112,0,0,1,0,0,0,0,0,0), + (14451,373,30818,0,2112,0,0,1,0,0,0,0,0,0), + (14452,373,30819,0,2112,0,0,1,0,0,0,0,0,0), + (14455,373,30823,0,2112,0,0,1,0,0,0,0,0,0), + (14456,373,30824,0,2112,0,0,1,0,0,0,0,0,0), + (14793,373,32175,0,2112,0,0,1,0,0,0,0,0,0), + (14794,373,32176,0,2112,0,0,1,0,0,0,0,0,0), + (14795,373,32182,1024,2112,0,0,1,0,0,0,0,0,0), + (15347,373,2062,0,2112,0,0,1,0,0,0,0,0,0), + (15639,373,25505,0,2112,0,0,1,0,0,0,0,0,0), + (15700,373,36591,0,2112,0,0,1,0,0,0,0,0,0), + (15972,373,43338,0,2112,0,0,1,0,0,0,0,0,0), + (15973,373,43339,0,2112,0,0,1,0,0,0,0,0,0), + (16988,373,49280,0,2112,0,0,1,0,0,0,0,0,0), + (16989,373,49278,0,2112,0,0,1,0,0,0,0,0,0), + (16990,373,49281,0,2112,0,0,1,0,0,0,0,0,0), + (16991,373,49279,0,2112,0,0,1,0,0,0,0,0,0), + (19765,373,57622,0,2112,0,0,1,0,0,0,0,0,0), + (20063,373,58737,0,2112,0,0,1,0,0,0,0,0,0), + (20064,373,58739,0,2112,0,0,1,0,0,0,0,0,0), + (20065,373,58649,0,2112,0,0,1,0,0,0,0,0,0), + (20066,373,58652,0,2112,0,0,1,0,0,0,0,0,0), + (20067,373,58656,0,2112,0,0,1,0,0,0,0,0,0), + (20068,373,58741,0,2112,0,0,1,0,0,0,0,0,0), + (20069,373,58745,0,2112,0,0,1,0,0,0,0,0,0), + (20070,373,58751,0,2112,0,0,1,0,0,0,0,0,0), + (20072,373,58643,0,2112,0,0,1,0,0,0,0,0,0), + (20079,373,58801,0,2112,0,0,1,0,0,0,0,0,0), + (20080,373,58803,0,2112,0,0,1,0,0,0,0,0,0), + (20081,373,58804,0,2112,0,0,1,0,0,0,0,0,0), + (20082,373,58785,0,2112,0,0,1,0,0,0,0,0,0), + (20084,373,58790,0,2112,0,0,1,0,0,0,0,0,0), + (20085,373,58794,0,2112,0,0,1,0,0,0,0,0,0), + (20086,373,58795,0,2112,0,0,1,0,0,0,0,0,0), + (20087,373,58796,0,2112,0,0,1,0,0,0,0,0,0), + (20248,373,60103,0,2112,0,0,1,0,0,0,0,0,0), + (20288,373,60348,0,2112,0,0,1,0,2,0,0,0,0), + (4486,374,939,0,2112,0,0,1,0,0,0,0,0,0), + (4487,374,959,0,2112,0,0,1,0,0,0,0,0,0), + (4488,374,8005,0,2112,0,0,1,0,0,0,0,0,0), + (4489,374,8004,0,2112,0,0,1,0,0,0,0,0,0), + (4490,374,8008,0,2112,0,0,1,0,0,0,0,0,0), + (4491,374,8010,0,2112,0,0,1,0,0,0,0,0,0), + (4492,374,331,0,2112,0,0,1,0,2,0,0,0,0), + (4493,374,332,0,2112,0,0,1,0,0,0,0,0,0), + (4494,374,547,0,2112,0,0,1,0,0,0,0,0,0), + (4495,374,913,0,2112,0,0,1,0,0,0,0,0,0), + (4496,374,5394,0,2112,0,0,1,0,0,0,0,0,0), + (4497,374,6375,0,2112,0,0,1,0,0,0,0,0,0), + (4498,374,6377,0,2112,0,0,1,0,0,0,0,0,0), + (4539,374,8170,0,2112,0,0,1,0,0,0,0,0,0), + (4544,374,5675,0,2112,0,0,1,0,0,0,0,0,0), + (5569,374,10395,0,2112,0,0,1,0,0,0,0,0,0), + (5570,374,10396,0,2112,0,0,1,0,0,0,0,0,0), + (5598,374,10462,0,2112,0,0,1,0,0,0,0,0,0), + (5599,374,10463,0,2112,0,0,1,0,0,0,0,0,0), + (5600,374,10466,0,2112,0,0,1,0,0,0,0,0,0), + (5601,374,10467,0,2112,0,0,1,0,0,0,0,0,0), + (5602,374,10468,0,2112,0,0,1,0,0,0,0,0,0), + (5626,374,10495,0,2112,0,0,1,0,0,0,0,0,0), + (5627,374,10496,0,2112,0,0,1,0,0,0,0,0,0), + (5628,374,10497,0,2112,0,0,1,0,0,0,0,0,0), + (5648,374,1064,0,2112,0,0,1,0,0,0,0,0,0), + (5649,374,10622,0,2112,0,0,1,0,0,0,0,0,0), + (5650,374,10623,0,2112,0,0,1,0,0,0,0,0,0), + (8696,374,2008,0,2112,0,0,1,0,0,0,0,0,0), + (8699,374,8143,0,2112,0,0,1,0,0,0,0,0,0), + (8876,374,16176,0,2112,0,0,1,0,0,0,0,0,0), + (8877,374,16235,0,2112,0,0,1,0,0,0,0,0,0), + (8878,374,16240,0,2112,0,0,1,0,0,0,0,0,0), + (8910,374,16190,0,2112,0,0,1,0,0,0,0,0,0), + (11732,374,20608,0,2112,0,0,1,0,0,0,0,0,0), + (11798,374,20609,0,2112,0,0,1,0,0,0,0,0,0), + (11799,374,20610,0,2112,0,0,1,0,0,0,0,0,0), + (11800,374,20776,0,2112,0,0,1,0,0,0,0,0,0), + (11801,374,20777,0,2112,0,0,1,0,0,0,0,0,0), + (11996,374,21169,0,2112,0,0,1,0,0,0,0,0,0), + (13148,374,24398,0,2112,0,0,1,0,0,0,0,0,0), + (13228,374,25357,0,2112,0,0,1,0,0,0,0,0,0), + (13258,374,25391,0,2112,0,0,1,0,0,0,0,0,0), + (13259,374,25396,0,2112,0,0,1,0,0,0,0,0,0), + (13260,374,25420,0,2112,0,0,1,0,0,0,0,0,0), + (13261,374,25422,0,2112,0,0,1,0,0,0,0,0,0), + (13262,374,25423,0,2112,0,0,1,0,0,0,0,0,0), + (13313,374,25567,0,2112,0,0,1,0,0,0,0,0,0), + (13314,374,25570,0,2112,0,0,1,0,0,0,0,0,0), + (14085,374,16177,0,2112,0,0,1,0,0,0,0,0,0), + (14086,374,16236,0,2112,0,0,1,0,0,0,0,0,0), + (14087,374,16237,0,2112,0,0,1,0,0,0,0,0,0), + (14101,374,29187,0,2112,0,0,1,0,0,0,0,0,0), + (14102,374,29189,0,2112,0,0,1,0,0,0,0,0,0), + (14103,374,29191,0,2112,0,0,1,0,0,0,0,0,0), + (14106,374,29206,0,2112,0,0,1,0,0,0,0,0,0), + (14107,374,29205,0,2112,0,0,1,0,0,0,0,0,0), + (14108,374,29202,0,2112,0,0,1,0,0,0,0,0,0), + (14109,374,29203,0,2112,0,0,1,0,0,0,0,0,0), + (14457,374,30874,0,2112,0,0,1,0,0,0,0,0,0), + (14458,374,30872,0,2112,0,0,1,0,0,0,0,0,0), + (14459,374,30873,0,2112,0,0,1,0,0,0,0,0,0), + (14460,374,30867,0,2112,0,0,1,0,0,0,0,0,0), + (14461,374,30868,0,2112,0,0,1,0,0,0,0,0,0), + (14462,374,30869,0,2112,0,0,1,0,0,0,0,0,0), + (14465,374,30864,0,2112,0,0,1,0,0,0,0,0,0), + (14466,374,30865,0,2112,0,0,1,0,0,0,0,0,0), + (14467,374,30866,0,2112,0,0,1,0,0,0,0,0,0), + (14471,374,30881,0,2112,0,0,1,0,0,0,0,0,0), + (14472,374,30883,0,2112,0,0,1,0,0,0,0,0,0), + (14473,374,30884,0,2112,0,0,1,0,0,0,0,0,0), + (14474,374,30885,0,2112,0,0,1,0,0,0,0,0,0), + (14475,374,30886,0,2112,0,0,1,0,0,0,0,0,0), + (14796,374,974,0,2112,0,0,1,0,0,0,0,0,0), + (14797,374,379,0,2112,0,0,1,0,0,0,0,0,0), + (14892,374,32593,0,2112,0,0,1,0,0,0,0,0,0), + (14893,374,32594,0,2112,0,0,1,0,0,0,0,0,0), + (15042,374,33736,0,2112,0,0,1,0,0,0,0,0,0), + (15699,374,36936,0,2112,0,0,1,0,0,0,0,0,0), + (16982,374,49272,0,2112,0,0,1,0,0,0,0,0,0), + (16983,374,49273,0,2112,0,0,1,0,0,0,0,0,0), + (16984,374,49275,0,2112,0,0,1,0,0,0,0,0,0), + (16985,374,49276,0,2112,0,0,1,0,0,0,0,0,0), + (16986,374,49277,0,2112,0,0,1,0,0,0,0,0,0), + (16987,374,25590,0,2112,0,0,1,0,0,0,0,0,0), + (16992,374,49283,0,2112,0,0,1,0,0,0,0,0,0), + (16993,374,49284,0,2112,0,0,1,0,0,0,0,0,0), + (17788,374,51886,0,2112,0,0,1,0,0,0,0,0,0), + (19965,374,57960,0,2112,0,0,1,0,0,0,0,0,0), + (20073,374,58755,0,2112,0,0,1,0,0,0,0,0,0), + (20074,374,58756,0,2112,0,0,1,0,0,0,0,0,0), + (20075,374,58757,0,2112,0,0,1,0,0,0,0,0,0), + (20076,374,58771,0,2112,0,0,1,0,0,0,0,0,0), + (20077,374,58773,0,2112,0,0,1,0,0,0,0,0,0), + (20078,374,58774,0,2112,0,0,1,0,0,0,0,0,0), + (20159,374,55458,0,2112,0,0,1,0,0,0,0,0,0), + (20160,374,55459,0,2112,0,0,1,0,0,0,0,0,0), + (4456,375,5730,0,2112,0,0,1,0,0,0,0,0,0), + (4457,375,6390,0,2112,0,0,1,0,0,0,0,0,0), + (4458,375,6391,0,2112,0,0,1,0,0,0,0,0,0), + (4459,375,6392,0,2112,0,0,1,0,0,0,0,0,0), + (4468,375,8042,0,2112,0,0,1,0,0,0,0,0,0), + (4469,375,8044,0,2112,0,0,1,0,0,0,0,0,0), + (4470,375,8045,0,2112,0,0,1,0,0,0,0,0,0), + (4471,375,8046,0,2112,0,0,1,0,0,0,0,0,0), + (4481,375,2484,0,2112,0,0,1,0,0,0,0,0,0), + (5576,375,10412,0,2112,0,0,1,0,0,0,0,0,0), + (5577,375,10413,0,2112,0,0,1,0,0,0,0,0,0), + (5578,375,10414,0,2112,0,0,1,0,0,0,0,0,0), + (5590,375,10427,0,2112,0,0,1,0,0,0,0,0,0), + (5591,375,10428,0,2112,0,0,1,0,0,0,0,0,0), + (8703,375,370,0,2112,0,0,1,0,0,0,0,0,0), + (8704,375,8012,0,2112,0,0,1,0,0,0,0,0,0), + (8705,375,8050,0,2112,0,0,1,0,0,0,0,0,0), + (8706,375,8052,0,2112,0,0,1,0,0,0,0,0,0), + (8707,375,8053,0,2112,0,0,1,0,0,0,0,0,0), + (8708,375,10447,0,2112,0,0,1,0,0,0,0,0,0), + (8709,375,10448,0,2112,0,0,1,0,0,0,0,0,0), + (8710,375,8056,0,2112,0,0,1,0,0,0,0,0,0), + (8711,375,8058,0,2112,0,0,1,0,0,0,0,0,0), + (8712,375,10472,0,2112,0,0,1,0,0,0,0,0,0), + (8713,375,10473,0,2112,0,0,1,0,0,0,0,0,0), + (8714,375,403,0,2112,0,0,1,0,2,0,0,0,0), + (8715,375,15208,0,2112,0,0,1,0,0,0,0,0,0), + (8716,375,529,0,2112,0,0,1,0,0,0,0,0,0), + (8717,375,548,0,2112,0,0,1,0,0,0,0,0,0), + (8718,375,943,0,2112,0,0,1,0,0,0,0,0,0), + (8719,375,915,0,2112,0,0,1,0,0,0,0,0,0), + (8720,375,6041,0,2112,0,0,1,0,0,0,0,0,0), + (8721,375,10391,0,2112,0,0,1,0,0,0,0,0,0), + (8722,375,10392,0,2112,0,0,1,0,0,0,0,0,0), + (8723,375,15207,0,2112,0,0,1,0,0,0,0,0,0), + (8724,375,421,0,2112,0,0,1,0,0,0,0,0,0), + (8725,375,930,0,2112,0,0,1,0,0,0,0,0,0), + (8726,375,2860,0,2112,0,0,1,0,0,0,0,0,0), + (8727,375,10605,0,2112,0,0,1,0,0,0,0,0,0), + (8728,375,3599,0,2112,0,0,1,0,0,0,0,0,0), + (8729,375,6363,0,2112,0,0,1,0,0,0,0,0,0), + (8730,375,6364,0,2112,0,0,1,0,0,0,0,0,0), + (8731,375,6365,0,2112,0,0,1,0,0,0,0,0,0), + (8732,375,10437,0,2112,0,0,1,0,0,0,0,0,0), + (8733,375,10438,0,2112,0,0,1,0,0,0,0,0,0), + (8734,375,1535,0,2112,0,0,1,0,0,0,0,0,0), + (8735,375,8498,0,2112,0,0,1,0,0,0,0,0,0), + (8736,375,8499,0,2112,0,0,1,0,0,0,0,0,0), + (8737,375,11314,0,2112,0,0,1,0,0,0,0,0,0), + (8738,375,11315,0,2112,0,0,1,0,0,0,0,0,0), + (8743,375,8190,0,2112,0,0,1,0,0,0,0,0,0), + (8744,375,10585,0,2112,0,0,1,0,0,0,0,0,0), + (8745,375,10586,0,2112,0,0,1,0,0,0,0,0,0), + (8746,375,10587,0,2112,0,0,1,0,0,0,0,0,0), + (13270,375,25439,0,2112,0,0,1,0,0,0,0,0,0), + (13271,375,25442,0,2112,0,0,1,0,0,0,0,0,0), + (13273,375,25448,0,2112,0,0,1,0,0,0,0,0,0), + (13274,375,25449,0,2112,0,0,1,0,0,0,0,0,0), + (13276,375,25454,0,2112,0,0,1,0,0,0,0,0,0), + (13278,375,25457,0,2112,0,0,1,0,0,0,0,0,0), + (13281,375,25464,0,2112,0,0,1,0,0,0,0,0,0), + (13298,375,25525,0,2112,0,0,1,0,0,0,0,0,0), + (13302,375,25533,0,2112,0,0,1,0,0,0,0,0,0), + (13304,375,25546,0,2112,0,0,1,0,0,0,0,0,0), + (13305,375,25547,0,2112,0,0,1,0,0,0,0,0,0), + (13306,375,25552,0,2112,0,0,1,0,0,0,0,0,0), + (14050,375,28996,0,2112,0,0,1,0,0,0,0,0,0), + (14051,375,28997,0,2112,0,0,1,0,0,0,0,0,0), + (14052,375,28998,0,2112,0,0,1,0,0,0,0,0,0), + (14053,375,28999,0,2112,0,0,1,0,0,0,0,0,0), + (14054,375,29000,0,2112,0,0,1,0,0,0,0,0,0), + (14055,375,29062,0,2112,0,0,1,0,0,0,0,0,0), + (14056,375,29064,0,2112,0,0,1,0,0,0,0,0,0), + (14057,375,29065,0,2112,0,0,1,0,0,0,0,0,0), + (14096,375,29179,0,2112,0,0,1,0,0,0,0,0,0), + (14097,375,29180,0,2112,0,0,1,0,0,0,0,0,0), + (14099,375,29177,0,2112,0,0,1,0,0,0,0,0,0), + (14100,375,29178,0,2112,0,0,1,0,0,0,0,0,0), + (14110,375,29228,0,2112,0,0,1,0,0,0,0,0,0), + (14307,375,30160,0,2112,0,0,1,0,0,0,0,0,0), + (14410,375,30664,0,2112,0,0,1,0,0,0,0,0,0), + (14411,375,30665,0,2112,0,0,1,0,0,0,0,0,0), + (14412,375,30666,0,2112,0,0,1,0,0,0,0,0,0), + (14415,375,30669,0,2112,0,0,1,0,0,0,0,0,0), + (14416,375,30670,0,2112,0,0,1,0,0,0,0,0,0), + (14417,375,30671,0,2112,0,0,1,0,0,0,0,0,0), + (14423,375,30672,0,2112,0,0,1,0,0,0,0,0,0), + (14424,375,30673,0,2112,0,0,1,0,0,0,0,0,0), + (14425,375,30674,0,2112,0,0,1,0,0,0,0,0,0), + (14426,375,30675,0,2112,0,0,1,0,0,0,0,0,0), + (14427,375,30678,0,2112,0,0,1,0,0,0,0,0,0), + (14428,375,30679,0,2112,0,0,1,0,0,0,0,0,0), + (14431,375,30706,0,2112,0,0,1,0,0,0,0,0,0), + (14432,375,30708,0,2112,0,0,1,0,0,0,0,0,0), + (16962,375,49230,0,2112,0,0,1,0,0,0,0,0,0), + (16963,375,49231,0,2112,0,0,1,0,0,0,0,0,0), + (16964,375,49232,0,2112,0,0,1,0,0,0,0,0,0), + (16965,375,49233,0,2112,0,0,1,0,0,0,0,0,0), + (16966,375,49235,0,2112,0,0,1,0,0,0,0,0,0), + (16967,375,49236,0,2112,0,0,1,0,0,0,0,0,0), + (16968,375,49237,0,2112,0,0,1,0,0,0,0,0,0), + (16969,375,49239,0,2112,0,0,1,0,0,0,0,0,0), + (16970,375,49240,0,2112,0,0,1,0,0,0,0,0,0), + (16971,375,49238,0,2112,0,0,1,0,0,0,0,0,0), + (16978,375,49268,0,2112,0,0,1,0,0,0,0,0,0), + (16979,375,49270,0,2112,0,0,1,0,0,0,0,0,0), + (16980,375,49269,0,2112,0,0,1,0,0,0,0,0,0), + (16981,375,49271,0,2112,0,0,1,0,0,0,0,0,0), + (17644,375,51466,0,2112,0,0,1,0,0,0,0,0,0), + (17645,375,51470,0,2112,0,0,1,0,0,0,0,0,0), + (19790,375,57720,0,2112,0,0,1,0,0,0,0,0,0), + (19791,375,57721,0,2112,0,0,1,0,0,0,0,0,0), + (19792,375,57722,0,2112,0,0,1,0,0,0,0,0,0), + (19968,375,57994,0,2112,0,0,1,0,0,0,0,0,0), + (20055,375,58580,0,2112,0,0,1,0,0,0,0,0,0), + (20056,375,58581,0,2112,0,0,1,0,0,0,0,0,0), + (20057,375,58582,0,2112,0,0,1,0,0,0,0,0,0), + (20058,375,58699,0,2112,0,0,1,0,0,0,0,0,0), + (20059,375,58703,0,2112,0,0,1,0,0,0,0,0,0), + (20060,375,58704,0,2112,0,0,1,0,0,0,0,0,0), + (20061,375,58731,0,2112,0,0,1,0,0,0,0,0,0), + (20062,375,58734,0,2112,0,0,1,0,0,0,0,0,0), + (20132,375,59156,0,2112,0,0,1,0,0,0,0,0,0), + (20133,375,59158,0,2112,0,0,1,0,0,0,0,0,0), + (20134,375,59159,0,2112,0,0,1,0,0,0,0,0,0), + (20235,375,60043,0,2112,0,0,1,0,0,0,0,0,0), + (20663,375,61649,0,2112,0,0,1,0,0,0,0,0,0), + (20664,375,61657,0,2112,0,0,1,0,0,0,0,0,0), + (20837,375,63370,0,2112,0,0,1,0,0,0,0,0,0), + (20838,375,63372,0,2112,0,0,1,0,0,0,0,0,0), + (21724,375,75461,1791,2112,0,0,1,0,2,0,0,0,0), + (4997,413,8737,0,2151,0,0,1,0,2,0,0,0,0), + (4998,414,9077,0,3183,0,0,1,0,2,0,0,0,0), + (4999,415,9078,0,3583,0,0,1,0,2,0,0,0,0), + (5006,433,9116,0,2115,0,0,1,0,2,0,0,0,0), + (8438,473,15590,0,3149,0,0,1,0,2,0,0,0,0), + (6261,573,5185,0,3072,0,0,1,0,2,0,0,0,0), + (6262,573,5186,0,3072,0,0,1,0,0,0,0,0,0), + (6263,573,5187,0,3072,0,0,1,0,0,0,0,0,0), + (6264,573,5188,0,3072,0,0,1,0,0,0,0,0,0), + (6265,573,5189,0,3072,0,0,1,0,0,0,0,0,0), + (6266,573,6778,0,3072,0,0,1,0,0,0,0,0,0), + (6267,573,8903,0,3072,0,0,1,0,0,0,0,0,0), + (6268,573,9758,0,3072,0,0,1,0,0,0,0,0,0), + (6269,573,9888,0,3072,0,0,1,0,0,0,0,0,0), + (6270,573,9889,0,3072,0,0,1,0,0,0,0,0,0), + (6271,573,1126,0,3072,0,0,1,0,0,0,0,0,0), + (6272,573,5232,0,3072,0,0,1,0,0,0,0,0,0), + (6273,573,6756,0,3072,0,0,1,0,0,0,0,0,0), + (6274,573,5234,0,3072,0,0,1,0,0,0,0,0,0), + (6275,573,8907,0,3072,0,0,1,0,0,0,0,0,0), + (6276,573,9884,0,3072,0,0,1,0,0,0,0,0,0), + (6277,573,9885,0,3072,0,0,1,0,0,0,0,0,0), + (6278,573,774,0,3072,0,0,1,0,0,0,0,0,0), + (6279,573,1058,0,3072,0,0,1,0,0,0,0,0,0), + (6280,573,1430,0,3072,0,0,1,0,0,0,0,0,0), + (6281,573,2090,0,3072,0,0,1,0,0,0,0,0,0), + (6282,573,2091,0,3072,0,0,1,0,0,0,0,0,0), + (6283,573,3627,0,3072,0,0,1,0,0,0,0,0,0), + (6284,573,8910,0,3072,0,0,1,0,0,0,0,0,0), + (6285,573,9839,0,3072,0,0,1,0,0,0,0,0,0), + (6286,573,9840,0,3072,0,0,1,0,0,0,0,0,0), + (6287,573,9841,0,3072,0,0,1,0,0,0,0,0,0), + (6296,573,8936,0,3072,0,0,1,0,0,0,0,0,0), + (6297,573,8938,0,3072,0,0,1,0,0,0,0,0,0), + (6298,573,8939,0,3072,0,0,1,0,0,0,0,0,0), + (6299,573,8940,0,3072,0,0,1,0,0,0,0,0,0), + (6300,573,8941,0,3072,0,0,1,0,0,0,0,0,0), + (6301,573,9750,0,3072,0,0,1,0,0,0,0,0,0), + (6302,573,9856,0,3072,0,0,1,0,0,0,0,0,0), + (6303,573,9857,0,3072,0,0,1,0,0,0,0,0,0), + (6304,573,9858,0,3072,0,0,1,0,0,0,0,0,0), + (6305,573,740,0,3072,0,0,1,0,0,0,0,0,0), + (6306,573,8918,0,3072,0,0,1,0,0,0,0,0,0), + (6307,573,9862,0,3072,0,0,1,0,0,0,0,0,0), + (6308,573,9863,0,3072,0,0,1,0,0,0,0,0,0), + (6349,573,2893,0,3072,0,0,1,0,0,0,0,0,0), + (6350,573,3137,0,3072,0,0,1,0,0,0,0,0,0), + (6351,573,8946,0,3072,0,0,1,0,0,0,0,0,0), + (6352,573,2782,0,3072,0,0,1,0,0,0,0,0,0), + (9545,573,17104,0,3072,0,0,1,0,0,0,0,0,0), + (11656,573,20484,0,3072,0,0,1,0,0,0,0,0,0), + (11785,573,20739,0,3072,0,0,1,0,0,0,0,0,0), + (11786,573,20742,0,3072,0,0,1,0,0,0,0,0,0), + (11787,573,20747,0,3072,0,0,1,0,0,0,0,0,0), + (11788,573,20748,0,3072,0,0,1,0,0,0,0,0,0), + (12096,573,21849,0,3072,0,0,1,0,0,0,0,0,0), + (12097,573,21850,0,3072,0,0,1,0,0,0,0,0,0), + (13088,573,24943,0,3072,0,0,1,0,0,0,0,0,0), + (13089,573,24944,0,3072,0,0,1,0,0,0,0,0,0), + (13090,573,24945,0,3072,0,0,1,0,0,0,0,0,0), + (13091,573,24946,0,3072,0,0,1,0,0,0,0,0,0), + (13094,573,24968,0,3072,0,0,1,0,0,0,0,0,0), + (13095,573,24969,0,3072,0,0,1,0,0,0,0,0,0), + (13096,573,24970,0,3072,0,0,1,0,0,0,0,0,0), + (13097,573,24971,0,3072,0,0,1,0,0,0,0,0,0), + (13098,573,24972,0,3072,0,0,1,0,0,0,0,0,0), + (13236,573,25299,0,3072,0,0,1,0,0,0,0,0,0), + (13237,573,25297,0,3072,0,0,1,0,0,0,0,0,0), + (13559,573,26978,0,3072,0,0,1,0,0,0,0,0,0), + (13560,573,26979,0,3072,0,0,1,0,0,0,0,0,0), + (13561,573,26980,0,3072,0,0,1,0,0,0,0,0,0), + (13562,573,26981,0,3072,0,0,1,0,0,0,0,0,0), + (13563,573,26982,0,3072,0,0,1,0,0,0,0,0,0), + (13564,573,26983,0,3072,0,0,1,0,0,0,0,0,0), + (13574,573,26990,0,3072,0,0,1,0,0,0,0,0,0), + (13575,573,26991,0,3072,0,0,1,0,0,0,0,0,0), + (13579,573,26994,0,3072,0,0,1,0,0,0,0,0,0), + (15049,573,33763,0,3072,0,0,1,0,0,0,0,0,0), + (15077,573,33879,0,3072,0,0,1,0,0,0,0,0,0), + (15078,573,33880,0,3072,0,0,1,0,0,0,0,0,0), + (15079,573,33886,0,3072,0,0,1,0,0,0,0,0,0), + (15080,573,33887,0,3072,0,0,1,0,0,0,0,0,0), + (15081,573,33888,0,3072,0,0,1,0,0,0,0,0,0), + (15082,573,33889,0,3072,0,0,1,0,0,0,0,0,0), + (15083,573,33890,0,3072,0,0,1,0,0,0,0,0,0), + (15084,573,33881,0,3072,0,0,1,0,0,0,0,0,0), + (15085,573,33882,0,3072,0,0,1,0,0,0,0,0,0), + (15086,573,33883,0,3072,0,0,1,0,0,0,0,0,0), + (15089,573,33891,0,3072,0,0,1,0,0,0,0,0,0), + (15152,573,34151,0,3072,0,0,1,0,0,0,0,0,0), + (15153,573,34152,0,3072,0,0,1,0,0,0,0,0,0), + (15154,573,34153,0,3072,0,0,1,0,0,0,0,0,0), + (15413,573,16864,0,3072,0,0,1,0,0,0,0,0,0), + (15414,573,16833,0,3072,0,0,1,0,0,0,0,0,0), + (15415,573,16834,0,3072,0,0,1,0,0,0,0,0,0), + (15416,573,16835,0,3072,0,0,1,0,0,0,0,0,0), + (16614,573,48377,0,3072,0,0,1,0,0,0,0,0,0), + (16615,573,48378,0,3072,0,0,1,0,0,0,0,0,0), + (16622,573,48440,0,3072,0,0,1,0,0,0,0,0,0), + (16623,573,48441,0,3072,0,0,1,0,0,0,0,0,0), + (16624,573,48442,0,3072,0,0,1,0,0,0,0,0,0), + (16625,573,48443,0,3072,0,0,1,0,0,0,0,0,0), + (16626,573,48450,0,3072,0,0,1,0,0,0,0,0,0), + (16627,573,48451,0,3072,0,0,1,0,0,0,0,0,0), + (16641,573,48469,0,3072,0,0,1,0,0,0,0,0,0), + (16642,573,48470,0,3072,0,0,1,0,0,0,0,0,0), + (16645,573,48477,0,3072,0,0,1,0,0,0,0,0,0), + (17366,573,48438,0,3072,0,0,1,0,0,0,0,0,0), + (17455,573,50464,0,3072,0,0,1,0,0,0,0,0,0), + (18166,573,53248,0,3072,0,0,1,0,0,0,0,0,0), + (18167,573,53249,0,3072,0,0,1,0,0,0,0,0,0), + (18168,573,53251,0,3072,0,0,1,0,0,0,0,0,0), + (19960,573,48446,0,3072,0,0,1,0,0,0,0,0,0), + (19961,573,48447,0,3072,0,0,1,0,0,0,0,0,0), + (21049,573,65139,0,3072,0,0,1,0,0,0,0,0,0), + (21102,573,66530,0,3072,0,0,1,0,2,0,0,0,0), + (6309,574,467,0,3072,0,0,1,0,0,0,0,0,0), + (6310,574,782,0,3072,0,0,1,0,0,0,0,0,0), + (6311,574,1075,0,3072,0,0,1,0,0,0,0,0,0), + (6312,574,8914,0,3072,0,0,1,0,0,0,0,0,0), + (6313,574,9756,0,3072,0,0,1,0,0,0,0,0,0), + (6314,574,9910,0,3072,0,0,1,0,0,0,0,0,0), + (6315,574,770,0,3072,0,0,1,0,0,0,0,0,0), + (6319,574,5176,0,3072,0,0,1,0,2,0,0,0,0), + (6320,574,5177,0,3072,0,0,1,0,0,0,0,0,0), + (6321,574,5178,0,3072,0,0,1,0,0,0,0,0,0), + (6322,574,5179,0,3072,0,0,1,0,0,0,0,0,0), + (6323,574,5180,0,3072,0,0,1,0,0,0,0,0,0), + (6324,574,6780,0,3072,0,0,1,0,0,0,0,0,0), + (6325,574,8905,0,3072,0,0,1,0,0,0,0,0,0), + (6326,574,9912,0,3072,0,0,1,0,0,0,0,0,0), + (6327,574,2912,0,3072,0,0,1,0,0,0,0,0,0), + (6328,574,8949,0,3072,0,0,1,0,0,0,0,0,0), + (6329,574,8950,0,3072,0,0,1,0,0,0,0,0,0), + (6330,574,8951,0,3072,0,0,1,0,0,0,0,0,0), + (6331,574,9875,0,3072,0,0,1,0,0,0,0,0,0), + (6332,574,9876,0,3072,0,0,1,0,0,0,0,0,0), + (6333,574,8921,0,3072,0,0,1,0,0,0,0,0,0), + (6334,574,8924,0,3072,0,0,1,0,0,0,0,0,0), + (6335,574,8925,0,3072,0,0,1,0,0,0,0,0,0), + (6336,574,8926,0,3072,0,0,1,0,0,0,0,0,0), + (6337,574,8927,0,3072,0,0,1,0,0,0,0,0,0), + (6338,574,8928,0,3072,0,0,1,0,0,0,0,0,0), + (6339,574,8929,0,3072,0,0,1,0,0,0,0,0,0), + (6340,574,9833,0,3072,0,0,1,0,0,0,0,0,0), + (6341,574,9834,0,3072,0,0,1,0,0,0,0,0,0), + (6342,574,9835,0,3072,0,0,1,0,0,0,0,0,0), + (6343,574,339,0,3072,0,0,1,0,0,0,0,0,0), + (6344,574,1062,0,3072,0,0,1,0,0,0,0,0,0), + (6345,574,5195,0,3072,0,0,1,0,0,0,0,0,0), + (6346,574,5196,0,3072,0,0,1,0,0,0,0,0,0), + (6347,574,9852,0,3072,0,0,1,0,0,0,0,0,0), + (6348,574,9853,0,3072,0,0,1,0,0,0,0,0,0), + (6353,574,2908,0,3072,0,0,1,0,0,0,0,0,0), + (6354,574,8955,0,3072,0,0,1,0,0,0,0,0,0), + (6355,574,9901,0,3072,0,0,1,0,0,0,0,0,0), + (9356,574,16914,0,3072,0,0,1,0,0,0,0,0,0), + (9395,574,16689,0,3072,0,0,1,16810,0,0,0,0,0), + (9876,574,16810,0,3072,0,0,1,0,0,0,0,0,0), + (9877,574,16811,0,3072,0,0,1,0,0,0,0,0,0), + (9878,574,16812,0,3072,0,0,1,0,0,0,0,0,0), + (9879,574,16813,0,3072,0,0,1,0,0,0,0,0,0), + (9891,574,17329,0,3072,0,0,1,0,0,0,0,0,0), + (9892,574,17401,0,3072,0,0,1,0,0,0,0,0,0), + (9893,574,17402,0,3072,0,0,1,0,0,0,0,0,0), + (10499,574,2637,0,3072,0,0,1,0,0,0,0,0,0), + (10500,574,18657,0,3072,0,0,1,0,0,0,0,0,0), + (10501,574,18658,0,3072,0,0,1,0,0,0,0,0,0), + (10737,574,18960,0,3072,0,0,1,0,0,0,0,0,0), + (12324,574,22812,0,3072,0,0,1,0,0,0,0,0,0), + (13083,574,24858,0,3072,0,0,1,0,0,0,0,0,0), + (13084,574,24905,0,3072,0,0,1,0,0,0,0,0,0), + (13086,574,24907,0,3072,0,0,1,0,0,0,0,0,0), + (13235,574,25298,0,3072,0,0,1,0,0,0,0,0,0), + (13565,574,26984,0,3072,0,0,1,0,0,0,0,0,0), + (13566,574,26988,0,3072,0,0,1,0,0,0,0,0,0), + (13567,574,26987,0,3072,0,0,1,0,0,0,0,0,0), + (13568,574,26989,0,3072,0,0,1,0,0,0,0,0,0), + (13569,574,27009,0,3072,0,0,1,0,0,0,0,0,0), + (13570,574,26986,0,3072,0,0,1,0,0,0,0,0,0), + (13571,574,27012,0,3072,0,0,1,0,0,0,0,0,0), + (13576,574,26992,0,3072,0,0,1,0,0,0,0,0,0), + (13580,574,26995,0,3072,0,0,1,0,0,0,0,0,0), + (15057,574,33786,0,3072,0,0,1,0,0,0,0,0,0), + (15059,574,33831,0,3072,0,0,1,0,0,0,0,0,0), + (15060,574,33589,0,3072,0,0,1,0,0,0,0,0,0), + (15061,574,33590,0,3072,0,0,1,0,0,0,0,0,0), + (15062,574,33591,0,3072,0,0,1,0,0,0,0,0,0), + (15063,574,33592,0,3072,0,0,1,0,0,0,0,0,0), + (15064,574,33596,0,3072,0,0,1,0,0,0,0,0,0), + (15065,574,33597,0,3072,0,0,1,0,0,0,0,0,0), + (15066,574,33599,0,3072,0,0,1,0,0,0,0,0,0), + (15068,574,33600,0,3072,0,0,1,0,0,0,0,0,0), + (15069,574,33601,0,3072,0,0,1,0,0,0,0,0,0), + (15070,574,33602,0,3072,0,0,1,0,0,0,0,0,0), + (15071,574,33603,0,3072,0,0,1,0,0,0,0,0,0), + (15072,574,33604,0,3072,0,0,1,0,0,0,0,0,0), + (15073,574,33605,0,3072,0,0,1,0,0,0,0,0,0), + (15074,574,33606,0,3072,0,0,1,0,0,0,0,0,0), + (15075,574,33607,0,3072,0,0,1,0,0,0,0,0,0), + (15120,574,33956,0,3072,0,0,1,0,0,0,0,0,0), + (15158,574,29166,0,3072,0,0,1,0,0,0,0,0,0), + (15406,574,5570,0,3072,0,0,1,0,0,0,0,0,0), + (15407,574,24974,0,3072,0,0,1,0,0,0,0,0,0), + (15408,574,24975,0,3072,0,0,1,0,0,0,0,0,0), + (15409,574,24976,0,3072,0,0,1,0,0,0,0,0,0), + (15411,574,24977,0,3072,0,0,1,0,0,0,0,0,0), + (15412,574,27013,0,3072,0,0,1,0,0,0,0,0,0), + (15417,574,35363,0,3072,0,0,1,0,0,0,0,0,0), + (15418,574,35364,0,3072,0,0,1,0,0,0,0,0,0), + (15611,574,26985,0,3072,0,0,1,0,0,0,0,0,0), + (15974,574,42231,0,3072,0,0,1,0,0,0,0,0,0), + (15978,574,42232,0,3072,0,0,1,0,0,0,0,0,0), + (15979,574,42233,0,3072,0,0,1,0,0,0,0,0,0), + (15980,574,42230,0,3072,0,0,1,0,0,0,0,0,0), + (16632,574,48459,0,3072,0,0,1,0,0,0,0,0,0), + (16633,574,48461,0,3072,0,0,1,0,0,0,0,0,0), + (16634,574,48462,0,3072,0,0,1,0,0,0,0,0,0), + (16635,574,48463,0,3072,0,0,1,0,0,0,0,0,0), + (16636,574,48464,0,3072,0,0,1,0,0,0,0,0,0), + (16637,574,48465,0,3072,0,0,1,0,0,0,0,0,0), + (16638,574,48466,0,3072,0,0,1,0,0,0,0,0,0), + (16640,574,48468,0,3072,0,0,1,0,0,0,0,0,0), + (17467,574,50516,0,3072,0,0,1,0,0,0,0,0,0), + (18025,574,53307,0,3072,0,0,1,0,0,0,0,0,0), + (18026,574,53312,0,3072,0,0,1,0,0,0,0,0,0), + (18027,574,53308,0,3072,0,0,1,0,0,0,0,0,0), + (18169,574,53223,0,3072,0,0,1,0,0,0,0,0,0), + (18170,574,53225,0,3072,0,0,1,0,0,0,0,0,0), + (18171,574,53226,0,3072,0,0,1,0,0,0,0,0,0), + (20662,574,61384,0,3072,0,0,1,0,0,0,0,0,0), + (20710,574,61391,0,3072,0,0,1,0,0,0,0,0,0), + (20711,574,61390,0,3072,0,0,1,0,0,0,0,0,0), + (20712,574,61388,0,3072,0,0,1,0,0,0,0,0,0), + (20713,574,61387,0,3072,0,0,1,0,0,0,0,0,0), + (20729,574,53227,0,3072,0,0,1,0,0,0,0,0,0), + (6408,593,686,0,2304,0,0,1,0,2,0,0,0,0), + (6409,593,695,0,2304,0,0,1,0,0,0,0,0,0), + (6410,593,705,0,2304,0,0,1,0,0,0,0,0,0), + (6411,593,1088,0,2304,0,0,1,0,0,0,0,0,0), + (6412,593,1106,0,2304,0,0,1,0,0,0,0,0,0), + (6413,593,7641,0,2304,0,0,1,0,0,0,0,0,0), + (6414,593,11659,0,2304,0,0,1,0,0,0,0,0,0), + (6415,593,11660,0,2304,0,0,1,0,0,0,0,0,0), + (6416,593,11661,0,2304,0,0,1,0,0,0,0,0,0), + (6417,593,348,0,2304,0,0,1,0,0,0,0,0,0), + (6418,593,707,0,2304,0,0,1,0,0,0,0,0,0), + (6419,593,1094,0,2304,0,0,1,0,0,0,0,0,0), + (6420,593,2941,0,2304,0,0,1,0,0,0,0,0,0), + (6421,593,11665,0,2304,0,0,1,0,0,0,0,0,0), + (6422,593,11667,0,2304,0,0,1,0,0,0,0,0,0), + (6423,593,11668,0,2304,0,0,1,0,0,0,0,0,0), + (6430,593,5740,0,2304,0,0,1,0,0,0,0,0,0), + (6431,593,6219,0,2304,0,0,1,0,0,0,0,0,0), + (6432,593,11677,0,2304,0,0,1,0,0,0,0,0,0), + (6433,593,11678,0,2304,0,0,1,0,0,0,0,0,0), + (6434,593,1949,0,2304,0,0,1,0,0,0,0,0,0), + (6435,593,11683,0,2304,0,0,1,0,0,0,0,0,0), + (6436,593,11684,0,2304,0,0,1,0,0,0,0,0,0), + (6437,593,5857,0,2304,0,0,1,0,0,0,0,0,0), + (6438,593,11681,0,2304,0,0,1,0,0,0,0,0,0), + (6439,593,11682,0,2304,0,0,1,0,0,0,0,0,0), + (10039,593,5676,0,2304,0,0,1,0,0,0,0,0,0), + (10040,593,6353,0,2304,0,0,1,0,0,0,0,0,0), + (10091,593,17877,0,2304,0,0,1,0,0,0,0,0,0), + (10094,593,17919,0,2304,0,0,1,0,0,0,0,0,0), + (10095,593,17920,0,2304,0,0,1,0,0,0,0,0,0), + (10096,593,17921,0,2304,0,0,1,0,0,0,0,0,0), + (10097,593,17922,0,2304,0,0,1,0,0,0,0,0,0), + (10098,593,17923,0,2304,0,0,1,0,0,0,0,0,0), + (10099,593,17924,0,2304,0,0,1,0,0,0,0,0,0), + (10117,593,17962,0,2304,0,0,1,0,0,0,0,0,0), + (10656,593,18867,0,2304,0,0,1,0,0,0,0,0,0), + (10657,593,18868,0,2304,0,0,1,0,0,0,0,0,0), + (10658,593,18869,0,2304,0,0,1,0,0,0,0,0,0), + (10659,593,18870,0,2304,0,0,1,0,0,0,0,0,0), + (10660,593,18871,0,2304,0,0,1,0,0,0,0,0,0), + (13247,593,25307,0,2304,0,0,1,0,0,0,0,0,0), + (13248,593,25309,0,2304,0,0,1,0,0,0,0,0,0), + (13723,593,27209,0,2304,0,0,1,0,0,0,0,0,0), + (13724,593,27215,0,2304,0,0,1,0,0,0,0,0,0), + (13726,593,27210,0,2304,0,0,1,0,0,0,0,0,0), + (13727,593,27212,0,2304,0,0,1,0,0,0,0,0,0), + (13728,593,27213,0,2304,0,0,1,0,0,0,0,0,0), + (13729,593,27214,0,2304,0,0,1,0,0,0,0,0,0), + (13730,593,27211,0,2304,0,0,1,0,0,0,0,0,0), + (13731,593,27263,0,2304,0,0,1,0,0,0,0,0,0), + (14160,593,29722,0,2304,0,0,1,0,0,0,0,0,0), + (14326,593,30283,0,2304,0,0,1,0,0,0,0,0,0), + (14327,593,30288,0,2304,0,0,1,0,0,0,0,0,0), + (14328,593,30289,0,2304,0,0,1,0,0,0,0,0,0), + (14329,593,30290,0,2304,0,0,1,0,0,0,0,0,0), + (14330,593,30291,0,2304,0,0,1,0,0,0,0,0,0), + (14331,593,30292,0,2304,0,0,1,0,0,0,0,0,0), + (14332,593,30295,0,2304,0,0,1,0,0,0,0,0,0), + (14333,593,30293,0,2304,0,0,1,0,0,0,0,0,0), + (14334,593,30296,0,2304,0,0,1,0,0,0,0,0,0), + (14335,593,30299,0,2304,0,0,1,0,0,0,0,0,0), + (14336,593,30301,0,2304,0,0,1,0,0,0,0,0,0), + (14337,593,30302,0,2304,0,0,1,0,0,0,0,0,0), + (14810,593,32231,0,2304,0,0,1,0,0,0,0,0,0), + (14844,593,30413,0,2304,0,0,1,0,0,0,0,0,0), + (14845,593,30414,0,2304,0,0,1,0,0,0,0,0,0), + (15311,593,34935,0,2304,0,0,1,0,0,0,0,0,0), + (15312,593,34938,0,2304,0,0,1,0,0,0,0,0,0), + (15313,593,34939,0,2304,0,0,1,0,0,0,0,0,0), + (15314,593,34936,0,2304,0,0,1,0,0,0,0,0,0), + (15352,593,30459,0,2304,0,0,1,0,0,0,0,0,0), + (15608,593,30545,0,2304,0,0,1,0,0,0,0,0,0), + (15650,593,30546,0,2304,0,0,1,0,0,0,0,0,0), + (15992,593,42223,0,2304,0,0,1,0,0,0,0,0,0), + (15993,593,42224,0,2304,0,0,1,0,0,0,0,0,0), + (15994,593,42225,0,2304,0,0,1,0,0,0,0,0,0), + (15995,593,42226,0,2304,0,0,1,0,0,0,0,0,0), + (15996,593,42218,0,2304,0,0,1,0,0,0,0,0,0), + (16436,593,47808,0,2304,0,0,1,0,0,0,0,0,0), + (16437,593,47809,0,2304,0,0,1,0,0,0,0,0,0), + (16438,593,47810,0,2304,0,0,1,0,0,0,0,0,0), + (16439,593,47811,0,2304,0,0,1,0,0,0,0,0,0), + (16442,593,47814,0,2304,0,0,1,0,0,0,0,0,0), + (16443,593,47815,0,2304,0,0,1,0,0,0,0,0,0), + (16444,593,47819,0,2304,0,0,1,0,0,0,0,0,0), + (16445,593,47820,0,2304,0,0,1,0,0,0,0,0,0), + (16446,593,47817,0,2304,0,0,1,0,0,0,0,0,0), + (16447,593,47818,0,2304,0,0,1,0,0,0,0,0,0), + (16448,593,47823,0,2304,0,0,1,0,0,0,0,0,0), + (16449,593,47822,0,2304,0,0,1,0,0,0,0,0,0), + (16450,593,47824,0,2304,0,0,1,0,0,0,0,0,0), + (16451,593,47825,0,2304,0,0,1,0,0,0,0,0,0), + (16452,593,47826,0,2304,0,0,1,0,0,0,0,0,0), + (16453,593,47827,0,2304,0,0,1,0,0,0,0,0,0), + (16460,593,47837,0,2304,0,0,1,0,0,0,0,0,0), + (16461,593,47838,0,2304,0,0,1,0,0,0,0,0,0), + (16464,593,47846,0,2304,0,0,1,0,0,0,0,0,0), + (16465,593,47847,0,2304,0,0,1,0,0,0,0,0,0), + (16513,593,47897,0,2304,0,0,1,0,0,0,0,0,0), + (17537,593,50796,0,2304,0,0,1,0,0,0,0,0,0), + (19982,593,58284,0,2304,0,0,1,0,2,0,0,0,0), + (20139,593,59170,0,2304,0,0,1,0,0,0,0,0,0), + (20140,593,59171,0,2304,0,0,1,0,0,0,0,0,0), + (20141,593,59172,0,2304,0,0,1,0,0,0,0,0,0), + (20507,593,61290,0,2304,0,0,1,0,0,0,0,0,0), + (21722,593,75445,0,2304,0,0,1,0,2,0,0,0,0), + (6501,594,635,0,2050,0,0,1,0,2,0,0,0,0), + (6502,594,639,0,2050,0,0,1,0,0,0,0,0,0), + (6503,594,647,0,2050,0,0,1,0,0,0,0,0,0), + (6504,594,1026,0,2050,0,0,1,0,0,0,0,0,0), + (6506,594,3472,0,2050,0,0,1,0,0,0,0,0,0), + (6507,594,10328,0,2050,0,0,1,0,0,0,0,0,0), + (6508,594,10329,0,2050,0,0,1,0,0,0,0,0,0), + (6509,594,633,0,2050,0,0,1,2800,0,0,0,0,0), + (6510,594,2800,0,2050,0,0,1,10310,0,0,0,0,0), + (6511,594,10310,0,2050,0,0,1,27154,0,0,0,0,0), + (6512,594,879,0,2050,0,0,1,0,0,0,0,0,0), + (6513,594,5614,0,2050,0,0,1,0,0,0,0,0,0), + (6514,594,5615,0,2050,0,0,1,0,0,0,0,0,0), + (6515,594,10312,0,2050,0,0,1,0,0,0,0,0,0), + (6516,594,10313,0,2050,0,0,1,0,0,0,0,0,0), + (6517,594,10314,0,2050,0,0,1,0,0,0,0,0,0), + (6518,594,2812,0,2050,0,0,1,0,0,0,0,0,0), + (6519,594,10318,0,2050,0,0,1,0,0,0,0,0,0), + (6521,594,7328,0,2050,0,0,1,0,0,0,0,0,0), + (6526,594,10326,0,2050,0,0,1,0,0,0,0,0,0), + (6527,594,5502,0,2050,0,0,1,0,0,0,0,0,0), + (6528,594,4987,0,2050,0,0,1,0,0,0,0,0,0), + (6529,594,1152,0,2050,0,0,1,0,0,0,0,0,0), + (7594,594,13819,1029,2050,0,0,1,0,0,0,0,0,0), + (11245,594,19742,0,2050,0,0,1,0,0,0,0,0,0), + (11246,594,19850,0,2050,0,0,1,0,0,0,0,0,0), + (11247,594,19852,0,2050,0,0,1,0,0,0,0,0,0), + (11248,594,19853,0,2050,0,0,1,0,0,0,0,0,0), + (11249,594,19854,0,2050,0,0,1,0,0,0,0,0,0), + (11276,594,19750,0,2050,0,0,1,0,0,0,0,0,0), + (11277,594,19939,0,2050,0,0,1,0,0,0,0,0,0), + (11278,594,19940,0,2050,0,0,1,0,0,0,0,0,0), + (11279,594,19941,0,2050,0,0,1,0,0,0,0,0,0), + (11280,594,19942,0,2050,0,0,1,0,0,0,0,0,0), + (11281,594,19943,0,2050,0,0,1,0,0,0,0,0,0), + (11536,594,20154,0,2050,0,0,1,21084,2,0,0,0,0), + (11537,594,20187,0,2050,0,0,1,0,0,0,0,0,0), + (11538,594,20165,0,2050,0,0,1,0,0,0,0,0,0), + (11539,594,20185,0,2050,0,0,1,0,0,0,0,0,0), + (11540,594,20166,0,2050,0,0,1,0,0,0,0,0,0), + (11541,594,20186,0,2050,0,0,1,0,0,0,0,0,0), + (11605,594,20359,0,2050,0,0,1,0,0,0,0,0,0), + (11606,594,20360,0,2050,0,0,1,0,0,0,0,0,0), + (11607,594,20361,0,2050,0,0,1,0,0,0,0,0,0), + (11641,594,20473,0,2050,0,0,1,0,0,0,0,0,0), + (11794,594,10322,0,2050,0,0,1,0,0,0,0,0,0), + (11795,594,10324,0,2050,0,0,1,0,0,0,0,0,0), + (11796,594,20772,0,2050,0,0,1,0,0,0,0,0,0), + (11797,594,20773,0,2050,0,0,1,0,0,0,0,0,0), + (11896,594,20929,0,2050,0,0,1,0,0,0,0,0,0), + (11897,594,20930,0,2050,0,0,1,0,0,0,0,0,0), + (11957,594,21084,0,2050,0,0,1,0,2,0,0,0,0), + (12518,594,23214,1029,2050,0,0,1,0,0,0,0,0,0), + (13229,594,25292,0,2050,0,0,1,0,0,0,0,0,0), + (13230,594,25290,0,2050,0,0,1,0,0,0,0,0,0), + (13349,594,5923,0,2050,0,0,1,0,0,0,0,0,0), + (13350,594,5924,0,2050,0,0,1,0,0,0,0,0,0), + (13351,594,5925,0,2050,0,0,1,0,0,0,0,0,0), + (13354,594,9453,0,2050,0,0,1,0,0,0,0,0,0), + (13355,594,25836,0,2050,0,0,1,0,0,0,0,0,0), + (13366,594,25894,0,2050,0,0,1,0,0,0,0,0,0), + (13394,594,5926,0,2050,0,0,1,0,0,0,0,0,0), + (13395,594,25829,0,2050,0,0,1,0,0,0,0,0,0), + (13421,594,25918,0,2050,0,0,1,0,0,0,0,0,0), + (13444,594,20116,0,2050,0,0,1,0,0,0,0,0,0), + (13445,594,20922,0,2050,0,0,1,0,0,0,0,0,0), + (13446,594,20923,0,2050,0,0,1,0,0,0,0,0,0), + (13447,594,20924,0,2050,0,0,1,0,0,0,0,0,0), + (13453,594,26573,0,2050,0,0,1,0,0,0,0,0,0), + (13664,594,27135,0,2050,0,0,1,0,0,0,0,0,0), + (13665,594,27136,0,2050,0,0,1,0,0,0,0,0,0), + (13666,594,27137,0,2050,0,0,1,0,0,0,0,0,0), + (13667,594,27154,0,2050,0,0,1,48788,0,0,0,0,0), + (13668,594,27138,0,2050,0,0,1,0,0,0,0,0,0), + (13670,594,27139,0,2050,0,0,1,0,0,0,0,0,0), + (13671,594,27173,0,2050,0,0,1,0,0,0,0,0,0), + (13672,594,27174,0,2050,0,0,1,0,0,0,0,0,0), + (13676,594,27176,0,2050,0,0,1,0,0,0,0,0,0), + (13680,594,27175,0,2050,0,0,1,0,0,0,0,0,0), + (13693,594,27142,0,2050,0,0,1,0,0,0,0,0,0), + (13694,594,27143,0,2050,0,0,1,0,0,0,0,0,0), + (13935,594,25912,0,2050,0,0,1,0,0,0,0,0,0), + (13936,594,25911,0,2050,0,0,1,0,0,0,0,0,0), + (13937,594,25902,0,2050,0,0,1,0,0,0,0,0,0), + (13938,594,25914,0,2050,0,0,1,0,0,0,0,0,0), + (13939,594,25913,0,2050,0,0,1,0,0,0,0,0,0), + (13940,594,25903,0,2050,0,0,1,0,0,0,0,0,0), + (14713,594,31842,0,2050,0,0,1,0,0,0,0,0,0), + (14714,594,31837,0,2050,0,0,1,0,0,0,0,0,0), + (14715,594,31838,0,2050,0,0,1,0,0,0,0,0,0), + (14716,594,31839,0,2050,0,0,1,0,0,0,0,0,0), + (14717,594,31840,0,2050,0,0,1,0,0,0,0,0,0), + (14718,594,31841,0,2050,0,0,1,0,0,0,0,0,0), + (14719,594,31833,0,2050,0,0,1,0,0,0,0,0,0), + (14720,594,31835,0,2050,0,0,1,0,0,0,0,0,0), + (14721,594,31836,0,2050,0,0,1,0,0,0,0,0,0), + (14722,594,31834,0,2050,0,0,1,0,0,0,0,0,0), + (14723,594,31828,0,2050,0,0,1,0,0,0,0,0,0), + (14724,594,31829,0,2050,0,0,1,0,0,0,0,0,0), + (14725,594,31830,0,2050,0,0,1,0,0,0,0,0,0), + (14728,594,31825,0,2050,0,0,1,0,0,0,0,0,0), + (14729,594,31826,0,2050,0,0,1,0,0,0,0,0,0), + (14730,594,31822,0,2050,0,0,1,0,0,0,0,0,0), + (14731,594,31823,0,2050,0,0,1,0,0,0,0,0,0), + (14733,594,31821,0,2050,0,0,1,0,0,0,0,0,0), + (14923,594,32841,0,2064,0,0,1,0,0,0,0,0,0), + (14940,594,33072,0,2050,0,0,1,0,0,0,0,0,0), + (14941,594,33073,0,2050,0,0,1,0,0,0,0,0,0), + (14942,594,33074,0,2050,0,0,1,0,0,0,0,0,0), + (15252,594,34767,512,2050,0,0,1,0,0,0,0,0,0), + (15253,594,34769,512,2050,0,0,1,0,0,0,0,0,0), + (16699,594,48781,0,2050,0,0,1,0,0,0,0,0,0), + (16700,594,48782,0,2050,0,0,1,0,0,0,0,0,0), + (16701,594,48784,0,2050,0,0,1,0,0,0,0,0,0), + (16702,594,48785,0,2050,0,0,1,0,0,0,0,0,0), + (16703,594,48788,0,2050,0,0,1,0,0,0,0,0,0), + (16705,594,48800,0,2050,0,0,1,0,0,0,0,0,0), + (16706,594,48801,0,2050,0,0,1,0,0,0,0,0,0), + (16710,594,48816,0,2050,0,0,1,0,0,0,0,0,0), + (16711,594,48817,0,2050,0,0,1,0,0,0,0,0,0), + (16712,594,48818,0,2050,0,0,1,0,0,0,0,0,0), + (16713,594,48819,0,2050,0,0,1,0,0,0,0,0,0), + (16714,594,48824,0,2050,0,0,1,0,0,0,0,0,0), + (16715,594,48825,0,2050,0,0,1,0,0,0,0,0,0), + (16716,594,48822,0,2050,0,0,1,0,0,0,0,0,0), + (16717,594,48823,0,2050,0,0,1,0,0,0,0,0,0), + (16718,594,48820,0,2050,0,0,1,0,0,0,0,0,0), + (16719,594,48821,0,2050,0,0,1,0,0,0,0,0,0), + (16757,594,48935,0,2050,0,0,1,0,0,0,0,0,0), + (16758,594,48936,0,2050,0,0,1,0,0,0,0,0,0), + (16759,594,48937,0,2050,0,0,1,0,0,0,0,0,0), + (16760,594,48938,0,2050,0,0,1,0,0,0,0,0,0), + (16770,594,48949,0,2050,0,0,1,0,0,0,0,0,0), + (16771,594,48950,0,2050,0,0,1,0,0,0,0,0,0), + (18191,594,19746,0,2050,0,0,1,0,0,0,0,0,0), + (18192,594,20254,0,2050,0,0,1,0,0,0,0,0,0), + (18193,594,20255,0,2050,0,0,1,0,0,0,0,0,0), + (18194,594,20256,0,2050,0,0,1,0,0,0,0,0,0), + (18207,594,53551,0,2050,0,0,1,0,0,0,0,0,0), + (18208,594,53552,0,2050,0,0,1,0,0,0,0,0,0), + (18210,594,53556,0,2050,0,0,1,0,0,0,0,0,0), + (18211,594,53557,0,2050,0,0,1,0,0,0,0,0,0), + (18217,594,53563,0,2050,0,0,1,0,0,0,0,0,0), + (18228,594,53569,0,2050,0,0,1,0,0,0,0,0,0), + (18229,594,53576,0,2050,0,0,1,0,0,0,0,0,0), + (18253,594,53601,0,2050,0,0,1,0,0,0,0,0,0), + (18266,594,53651,0,2050,0,0,1,0,0,0,0,0,0), + (18267,594,53652,0,2050,0,0,1,0,0,0,0,0,0), + (18268,594,53653,0,2050,0,0,1,0,0,0,0,0,0), + (18269,594,53654,0,2050,0,0,1,0,0,0,0,0,0), + (18270,594,53655,0,2050,0,0,1,0,0,0,0,0,0), + (18271,594,53656,0,2050,0,0,1,0,0,0,0,0,0), + (18272,594,53657,0,2050,0,0,1,0,0,0,0,0,0), + (18273,594,53659,0,2050,0,0,1,0,0,0,0,0,0), + (18274,594,53553,0,2050,0,0,1,0,0,0,0,0,0), + (18275,594,53660,0,2050,0,0,1,0,0,0,0,0,0), + (18276,594,53661,0,2050,0,0,1,0,0,0,0,0,0), + (18282,594,53671,0,2050,0,0,1,0,0,0,0,0,0), + (18283,594,53673,0,2050,0,0,1,0,0,0,0,0,0), + (18287,594,53672,0,2050,0,0,1,0,0,0,0,0,0), + (18523,594,54149,0,2050,0,0,1,0,0,0,0,0,0), + (18525,594,54151,0,2050,0,0,1,0,0,0,0,0,0), + (18526,594,54154,0,2050,0,0,1,0,0,0,0,0,0), + (18527,594,54155,0,2050,0,0,1,0,0,0,0,0,0), + (18528,594,54152,0,2050,0,0,1,0,0,0,0,0,0), + (18529,594,54153,0,2050,0,0,1,0,0,0,0,0,0), + (18887,594,54428,0,2050,0,0,1,0,0,0,0,0,0), + (7919,613,9484,0,2064,0,0,1,0,0,0,0,0,0), + (7920,613,9485,0,2064,0,0,1,0,0,0,0,0,0), + (7921,613,10955,0,2064,0,0,1,0,0,0,0,0,0), + (7922,613,588,0,2064,0,0,1,0,0,0,0,0,0), + (7923,613,7128,0,2064,0,0,1,0,0,0,0,0,0), + (7924,613,602,0,2064,0,0,1,0,0,0,0,0,0), + (7925,613,1006,0,2064,0,0,1,0,0,0,0,0,0), + (7926,613,10951,0,2064,0,0,1,0,0,0,0,0,0), + (7927,613,10952,0,2064,0,0,1,0,0,0,0,0,0), + (7928,613,17,0,2064,0,0,1,0,0,0,0,0,0), + (7929,613,10901,0,2064,0,0,1,0,0,0,0,0,0), + (7930,613,592,0,2064,0,0,1,0,0,0,0,0,0), + (7931,613,600,0,2064,0,0,1,0,0,0,0,0,0), + (7932,613,3747,0,2064,0,0,1,0,0,0,0,0,0), + (7933,613,6065,0,2064,0,0,1,0,0,0,0,0,0), + (7934,613,6066,0,2064,0,0,1,0,0,0,0,0,0), + (7935,613,10898,0,2064,0,0,1,0,0,0,0,0,0), + (7936,613,10899,0,2064,0,0,1,0,0,0,0,0,0), + (7937,613,10900,0,2064,0,0,1,0,0,0,0,0,0), + (7938,613,1243,0,2064,0,0,1,0,0,0,0,0,0), + (7939,613,1244,0,2064,0,0,1,0,0,0,0,0,0), + (7940,613,1245,0,2064,0,0,1,0,0,0,0,0,0), + (7941,613,2791,0,2064,0,0,1,0,0,0,0,0,0), + (7942,613,10937,0,2064,0,0,1,0,0,0,0,0,0), + (7943,613,10938,0,2064,0,0,1,0,0,0,0,0,0), + (7944,613,8129,0,2064,0,0,1,0,0,0,0,0,0), + (7950,613,527,0,2064,0,0,1,0,0,0,0,0,0), + (7951,613,988,0,2064,0,0,1,0,0,0,0,0,0), + (7956,613,14752,0,2064,0,0,1,0,0,0,0,0,0), + (7972,613,14531,0,2064,0,0,1,0,0,0,0,0,0), + (7973,613,14774,0,2064,0,0,1,0,0,0,0,0,0), + (8003,613,14818,0,2064,0,0,1,0,0,0,0,0,0), + (8004,613,14819,0,2064,0,0,1,0,0,0,0,0,0), + (9580,613,1706,0,2064,0,0,1,0,0,0,0,0,0), + (12042,613,21562,0,2064,0,0,1,0,0,0,0,0,0), + (12043,613,21564,0,2064,0,0,1,0,0,0,0,0,0), + (13187,613,25217,0,2064,0,0,1,0,0,0,0,0,0), + (13188,613,25218,0,2064,0,0,1,0,0,0,0,0,0), + (13195,613,25312,0,2064,0,0,1,0,0,0,0,0,0), + (13255,613,25389,0,2064,0,0,1,0,0,0,0,0,0), + (13256,613,25392,0,2064,0,0,1,0,0,0,0,0,0), + (13264,613,25431,0,2064,0,0,1,0,0,0,0,0,0), + (13809,613,27681,0,2064,0,0,1,0,0,0,0,0,0), + (13831,613,10060,0,2064,0,0,1,0,0,0,0,0,0), + (13840,613,14743,0,2064,0,0,1,0,0,0,0,0,0), + (13841,613,27828,0,2064,0,0,1,0,0,0,0,0,0), + (13848,613,27841,0,2064,0,0,1,0,0,0,0,0,0), + (14823,613,32375,0,2064,0,0,1,0,0,0,0,0,0), + (14939,613,32999,0,2064,0,0,1,0,0,0,0,0,0), + (14959,613,33206,0,2064,0,0,1,0,0,0,0,0,0), + (14975,613,33186,0,2064,0,0,1,0,0,0,0,0,0), + (14976,613,33190,0,2064,0,0,1,0,0,0,0,0,0), + (14979,613,33167,0,2064,0,0,1,0,0,0,0,0,0), + (14980,613,33171,0,2064,0,0,1,0,0,0,0,0,0), + (14981,613,33172,0,2064,0,0,1,0,0,0,0,0,0), + (15289,613,34908,0,2064,0,0,1,0,0,0,0,0,0), + (15290,613,34909,0,2064,0,0,1,0,0,0,0,0,0), + (15291,613,34910,0,2064,0,0,1,0,0,0,0,0,0), + (16049,613,44416,0,2064,0,0,1,0,0,0,0,0,0), + (16161,613,6346,0,2064,0,0,1,0,0,0,0,0,0), + (16163,613,45234,0,2064,0,0,1,0,0,0,0,0,0), + (16164,613,45243,0,2064,0,0,1,0,0,0,0,0,0), + (16165,613,45244,0,2064,0,0,1,0,0,0,0,0,0), + (16166,613,45237,0,2064,0,0,1,0,0,0,0,0,0), + (16167,613,45241,0,2064,0,0,1,0,0,0,0,0,0), + (16168,613,45242,0,2064,0,0,1,0,0,0,0,0,0), + (16521,613,48065,0,2064,0,0,1,0,0,0,0,0,0), + (16522,613,48066,0,2064,0,0,1,0,0,0,0,0,0), + (16528,613,48073,0,2064,0,0,1,0,0,0,0,0,0), + (16529,613,48074,0,2064,0,0,1,0,0,0,0,0,0), + (16563,613,48040,0,2064,0,0,1,0,0,0,0,0,0), + (16577,613,48161,0,2064,0,0,1,0,0,0,0,0,0), + (16578,613,48162,0,2064,0,0,1,0,0,0,0,0,0), + (16581,613,48168,0,2064,0,0,1,0,0,0,0,0,0), + (8439,633,1804,0,2056,0,0,1,0,0,0,0,0,0), + (13338,756,25046,512,2056,0,0,1,0,2,0,0,0,0), + (14013,756,28730,0,2454,0,0,1,0,2,0,0,0,0), + (17510,756,50613,0,2080,0,0,1,0,2,0,0,0,0), + (14022,760,6562,1024,2087,0,0,1,0,2,0,0,0,0), + (14023,760,28878,1024,2256,0,0,1,0,2,0,0,0,0), + (14024,760,28880,1024,2049,0,0,1,0,2,0,0,0,0), + (20142,760,59221,1024,2049,0,0,1,0,2,0,0,0,0), + (20171,760,59539,0,2080,0,0,1,0,2,0,0,0,0), + (20172,760,59536,1024,2052,0,0,1,0,2,0,0,0,0), + (20173,760,59541,1024,2176,0,0,1,0,2,0,0,0,0), + (20174,760,59535,1024,2050,0,0,1,0,2,0,0,0,0), + (20175,760,59538,1024,2064,0,0,1,0,2,0,0,0,0), + (20176,760,59540,1024,2112,0,0,1,0,2,0,0,0,0), + (20177,760,59545,1024,2080,0,0,1,0,2,0,0,0,0), + (20178,760,59543,1024,2052,0,0,1,0,2,0,0,0,0), + (20179,760,59548,1024,2176,0,0,1,0,2,0,0,0,0), + (20180,760,59542,1024,2050,0,0,1,0,2,0,0,0,0), + (20181,760,59544,1024,2064,0,0,1,0,2,0,0,0,0), + (20182,760,59547,1024,2112,0,0,1,0,2,0,0,0,0), + (15030,762,33391,0,3551,0,0,1,34090,0,0,0,0,0), + (19184,762,33391,0,2080,0,0,1,34090,2,0,0,0,0), + (16229,770,45529,0,2080,0,0,1,0,0,0,0,0,0), + (16430,770,47476,0,2080,0,0,1,49913,0,0,0,0,0), + (16616,770,45902,0,2080,0,0,1,49926,2,0,0,0,0), + (16695,770,48721,0,2080,0,0,1,49939,0,0,0,0,0), + (16696,770,48743,0,2080,0,0,1,49934,0,0,0,0,0), + (17016,770,48266,0,2080,0,0,1,0,2,0,0,0,0), + (17282,770,49939,0,2080,0,0,1,49940,0,0,0,0,0), + (17283,770,49940,0,2080,0,0,1,49941,0,0,0,0,0), + (17284,770,49941,0,2080,0,0,1,0,0,0,0,0,0), + (17545,770,50842,0,2080,0,0,1,51426,0,0,0,0,0), + (20151,770,50447,0,2080,0,0,1,0,0,0,0,0,0), + (20152,770,50448,0,2080,0,0,1,0,0,0,0,0,0), + (20153,770,50449,0,2080,0,0,1,0,0,0,0,0,0), + (16230,771,45524,0,2080,0,0,1,0,0,0,0,0,0), + (16231,771,45477,0,2080,0,0,1,49896,2,0,0,0,0), + (16431,771,47568,0,2080,0,0,1,0,0,0,0,0,0), + (16432,771,47528,0,2080,0,0,1,49910,0,0,0,0,0), + (16611,771,48263,0,2080,0,0,1,0,0,0,0,0,0), + (16707,771,48792,0,2080,0,0,1,0,0,0,0,0,0), + (17254,771,49896,0,2080,0,0,1,49903,0,0,0,0,0), + (17255,771,49903,0,2080,0,0,1,49904,0,0,0,0,0), + (17256,771,49904,0,2080,0,0,1,49909,0,0,0,0,0), + (17257,771,49909,0,2080,0,0,1,0,0,0,0,0,0), + (17546,771,49796,0,2080,0,0,1,0,0,0,0,0,0), + (17555,771,49020,0,2080,0,0,1,51423,0,0,0,0,0), + (18034,771,53341,0,2080,0,0,1,0,0,0,0,0,0), + (18108,771,53343,0,2080,0,0,1,0,0,0,0,0,0), + (20226,771,59921,0,2080,0,0,1,0,2,0,0,0,0), + (20646,771,61455,0,2080,0,0,1,0,2,0,0,0,0), + (16232,772,42650,0,2080,0,0,1,0,0,0,0,0,0), + (16233,772,42651,0,2080,0,0,1,0,0,0,0,0,0), + (16237,772,43265,0,2080,0,0,1,49936,0,0,0,0,0), + (16238,772,45462,0,2080,0,0,1,49917,2,0,0,0,0), + (16291,772,46584,0,2080,0,0,1,0,0,0,0,0,0), + (16433,772,47541,0,2080,0,0,1,49892,2,0,0,0,0), + (16434,772,47632,0,2080,0,0,1,0,0,0,0,0,0), + (16435,772,47633,0,2080,0,0,1,0,0,0,0,0,0), + (16612,772,48265,0,2080,0,0,1,0,0,0,0,0,0), + (16694,772,48707,0,2080,0,0,1,0,0,0,0,0,0), + (16698,772,48778,0,2080,0,0,1,0,0,0,0,0,0), + (16939,772,49194,0,2080,0,0,1,51376,0,0,0,0,0), + (17101,772,49576,0,2080,0,0,1,0,2,0,0,0,0), + (17103,772,49575,0,2080,0,0,1,0,0,0,0,0,0), + (17250,772,49892,0,2080,0,0,1,49893,0,0,0,0,0), + (17251,772,49893,0,2080,0,0,1,49894,0,0,0,0,0), + (17252,772,49894,0,2080,0,0,1,49895,0,0,0,0,0), + (17253,772,49895,0,2080,0,0,1,0,0,0,0,0,0), + (17265,772,49917,0,2080,0,0,1,49918,0,0,0,0,0), + (17266,772,49918,0,2080,0,0,1,49919,0,0,0,0,0), + (17267,772,49919,0,2080,0,0,1,49920,0,0,0,0,0), + (17268,772,49920,0,2080,0,0,1,49921,0,0,0,0,0), + (17269,772,49921,0,2080,0,0,1,0,0,0,0,0,0), + (17279,772,49936,0,2080,0,0,1,49937,0,0,0,0,0), + (17280,772,49937,0,2080,0,0,1,49938,0,0,0,0,0), + (17281,772,49938,0,2080,0,0,1,0,0,0,0,0,0), + (17562,772,51052,0,2080,0,0,1,0,0,0,0,0,0), + (17761,772,49998,0,2080,0,0,1,49999,0,0,0,0,0), + (17762,772,49999,0,2080,0,0,1,45463,0,0,0,0,0), + (17763,772,45463,0,2080,0,0,1,49923,0,0,0,0,0), + (17764,772,49923,0,2080,0,0,1,49924,0,0,0,0,0), + (17765,772,49924,0,2080,0,0,1,0,0,0,0,0,0), + (18121,776,53323,0,2080,0,0,1,0,0,510,500,0,0), + (18122,776,53331,0,2080,0,0,1,0,0,510,500,0,0), + (18123,776,53341,0,2080,0,0,1,0,1,510,500,0,0), + (18124,776,53343,0,2080,0,0,1,0,1,510,500,0,0), + (18125,776,53342,0,2080,0,0,1,0,0,510,500,0,0), + (18126,776,53344,0,2080,0,0,1,0,0,510,500,0,0), + (18127,776,53428,0,2080,0,0,1,0,0,0,0,0,0), + (18888,776,54447,0,2080,0,0,1,0,0,510,500,0,0), + (18889,776,54446,0,2080,0,0,1,0,0,510,500,0,0), + (20748,776,62158,0,2080,0,0,1,0,0,510,500,0,0), + (21341,776,70164,0,2080,0,0,1,0,0,510,500,0,0), + (20089,777,23214,1029,2050,0,0,1,0,0,0,0,0,0), + (20090,777,34767,512,2050,0,0,1,0,0,0,0,0,0), + (20091,777,13819,1029,2050,0,0,1,0,0,0,0,0,0), + (20092,777,34769,512,2050,0,0,1,0,0,0,0,0,0);