diff --git a/datavolley/dataAugmentation.py b/datavolley/dataAugmentation.py deleted file mode 100644 index 013ed7a4..00000000 --- a/datavolley/dataAugmentation.py +++ /dev/null @@ -1,61 +0,0 @@ -import pandas as pd -from IPython.display import Markdown -import numpy as np - - - -#Some examples of adding extra columns to our play-by-play data in order to support particular analyses, or to make other data-wrangling tasks easier. - - - - - -# Aim: Identify the player who made the set associated with each attack (noting that some files might not have the setting action coded for all attacks, or even coded at all). - -def setterOfAttackplays(plays): - plays['set_player_name'] = np.where((plays['skill'] == 'Attack') & (plays['skill'].shift(1) == 'Set') & (plays['team'] == plays['team'].shift(1)), plays['player_name'].shift(1), np.nan) - filtered_plays = plays[plays['skill'] == 'Attack'][['team', 'player_name', 'skill', 'evaluation_code', 'set_player_name']].head(5) - - -# Aim: identify the player_id of the setter on court for each data row. - -def setPlayerId(plays): - def assign_setter_id(row): - if row['setter_position'] == 0: - return None - else: - try: - return row['home_p' + str(row['setter_position'])] - except KeyError: - return None - - plays['setter_id'] = plays.apply(assign_setter_id, axis=1) - - - - - -# Aim: add a column that tells us the reception quality associated with each rally. - -def receptionQuality(plays): - - reception_rows = plays[plays['skill'] == 'Reception'] - - - grouped_reception = reception_rows.groupby(['set_number', 'rally_number']) - - - def calculate_reception_quality(group): - if len(group) == 1: - return group['evaluation'].iloc[0] - else: - return None - - - rq = grouped_reception.apply(calculate_reception_quality).reset_index(name='reception_quality') - - plays = pd.merge(plays, rq, on=['set_number', 'rally_number'], how='left') - - return plays - - diff --git a/datavolley/dataaugmentation.py b/datavolley/dataaugmentation.py new file mode 100644 index 00000000..b295acc2 --- /dev/null +++ b/datavolley/dataaugmentation.py @@ -0,0 +1,96 @@ +"""module to enrich data""" +import pandas as pd +import numpy as np + +# Some examples of adding extra columns to our play-by-play data in order +#to support particular analyses, or to make other data-wrangling tasks easier. +# Aim: +# Identify the player who made the set associated with each attack +# (nothing that some files might not have the setting action coded +# for all attacks, or even coded at all). + +def setterofattackplays(plays): + """ + This function identifies the setter + for each attack play in a volleyball match. + + It adds a new column 'set_player_name' to the DataFrame, + which contains the name of the player + who performed the set immediately before the attack, + if the set and attack were made by the + same team. If these conditions are not met, the value is set to NaN. + + Args: + plays (DataFrame): + A pandas DataFrame containing volleyball play data, with at least the columns + 'skill', 'team', and 'player_name'. + + Returns: + DataFrame: + A filtered DataFrame containing only the first 5 rows of attack plays, with columns + 'team', 'player_name', 'skill', 'evaluation_code', and 'set_player_name'. + """ + plays['set_player_name'] = np.where((plays['skill'] == 'Attack') & + (plays['skill'].shift(1) == 'Set') & + (plays['team'] == plays['team'].shift(1)), + plays['player_name'].shift(1), np.nan) + filtered_plays = \ + plays[plays['skill'] == 'Attack']\ + [['team', 'player_name',\ + 'skill', 'evaluation_code', 'set_player_name']].head(5) + return filtered_plays + +def setplayerid(plays): + """ + Identifies the player_id of the setter on court for each data row. + + This function adds a new column 'setter_id' to the DataFrame, which contains the player_id + of the setter based on the 'setter_position' value. If 'setter_position' is 0 or if there's + an issue accessing the player_id, the value is set to None. + + Args: + plays (DataFrame): A pandas DataFrame containing volleyball play data with columns + 'setter_position' and 'home_pX' where X is a position number. + + Returns: + DataFrame: The modified DataFrame with an additional column 'setter_id'. + """ + def assign_setter_id(row): + if row['setter_position'] == 0: + return None + try: + return row['home_p' + str(row['setter_position'])] + except KeyError: + return None + + plays['setter_id'] = plays.apply(assign_setter_id, axis=1) + return plays + + +def receptionquality(plays): + """ + Adds a column that indicates the reception quality associated with each rally. + + This function identifies the reception quality for each rally based on the 'skill' column. + It adds a new column 'reception_quality' to the DataFrame, which contains the evaluation of + the reception if there is exactly one reception per rally. If there are multiple receptions + or no receptions in a rally, the value is set to None. + + Args: + plays (DataFrame): A pandas DataFrame containing volleyball play data with columns 'set_number', + 'rally_number', 'skill', and 'evaluation'. + + Returns: + DataFrame: The modified DataFrame with an additional column 'reception_quality'. + """ + reception_rows = plays[plays['skill'] == 'Reception'] + grouped_reception = reception_rows.groupby(['set_number', 'rally_number']) + + def calculate_reception_quality(group): + if len(group) == 1: + return group['evaluation'].iloc[0] + return None + + rq = grouped_reception.apply(calculate_reception_quality).reset_index(name='reception_quality') + plays = pd.merge(plays, rq, on=['set_number', 'rally_number'], how='left') + return plays diff --git a/datavolley/example_data.dvw b/datavolley/example_data.dvw index 3d52e6ef..4612e333 100644 --- a/datavolley/example_data.dvw +++ b/datavolley/example_data.dvw @@ -1,77 +1,70 @@ [3DATAVOLLEYSCOUT] FILEFORMAT: 2.0 -GENERATOR-DAY: 09/19/2020 08.38.36 +GENERATOR-DAY: 09/19/2020 08.22.33 GENERATOR-IDP: GENERATOR-PRG: GENERATOR-REL: GENERATOR-VER: GENERATOR-NAM: VolleyMetrics Portal -LASTCHANGE-DAY: 09/19/2020 08.38.36 +LASTCHANGE-DAY: 09/19/2020 08.22.33 LASTCHANGE-IDP: LASTCHANGE-PRG: LASTCHANGE-REL: LASTCHANGE-VER: LASTCHANGE-NAM: [3MATCH] -09/01/2019;05.00.00;2015/2016;;;;;106859;;1;;Z; +11/21/2019;01.00.00;2015/2016;;;;;137313;;1;;Z; ;;;;;;;; [3TEAMS] -17;University of Louisville;3;;;; -42;University of Dayton;0;;;; +118;Baylor University;3;;;; +126;University of Texas at Austin;2;;;; [3MORE] ;;;;;VolleyMetrics; ;;; [3COMMENTS] -File downloaded by lukestancilrice on 2020-09-19 at 20.38.36. The data and information in this file is the property of VolleyMetrics™ and licensed to Rice University for use with Data Project™ software as per the terms and conditions found at http://volleymetrics.com/terms-and-conditions;;;; +File downloaded by lukestancilrice on 2020-09-19 at 20.22.33. The data and information in this file is the property of VolleyMetrics™ and licensed to Rice University for use with Data Project™ software as per the terms and conditions found at http://volleymetrics.com/terms-and-conditions;;;; [3SET] -True;8-2;16-9;21-12;25-17;25; -True;7-8;16-9;21-12;25-14;25; -True;7-8;14-16;21-18;25-19;25; -True;;;;;25; -True;;;;;15; +True;7-8;16-15;21-20;25-23;25; +True;6-8;13-16;21-19;25-23;25; +True;2-8;11-16;15-21;21-25;25; +True;4-8;14-16;21-20;23-25;25; +True;8-4;;;15-9;15; [3PLAYERS-H] -0;2;1;;*;4;;;-286868;player2;Player2;player2;;;False;;; -0;3;2;;;;2;;-282717;Mbonu;Nena;Mbonu;;;False;;; -0;4;3;*;*;2;3;;-283356;Hendricks;Alexa;Hendricks;;;False;;; -0;5;4;;;;4;;-11720;Roe;Piper;Roe;;;False;;; -0;7;5;6;1;6;5;;-224837;Scott;Emily;Scott;;;False;;; -0;8;6;*;*;*;6;;-75970;Hamilton;Lexi;Hamilton;L;1;False;;; -0;9;7;2;3;*;1;;-225496;Chaussee;Claire;Chaussee;;;False;;; -0;10;8;5;6;5;;;-75967;McHenry;Mel;McHenry;;;False;;; -0;11;9;3;4;3;;;-278838;Stevenson;Anna;Stevenson;;;False;;; -0;12;10;*;*;*;;;-263069;Dilfer;Tori;Dilfer;;;False;;; -0;13;11;;;;;;-263270;Stivrins;Amber;Stivrins;;;False;;; -0;15;12;4;5;;;;-224838;Jones;Aiko;Jones;;;False;;; -0;16;13;;;;;;-65350;Yuhl;Akela;Yuhl;;;False;;; -0;17;14;;;*;;;-224841;Stander;Mia;Stander;;;False;;; -0;19;15;1;2;1;;;-296094;Shields;Shannon;Shields;;;False;;; -0;22;16;;;;;;-287986;Vasilou;Jamie;Vasilou;;;False;;; -0;25;17;*;*;*;;;-278840;Tillman;Amaya;Tillman;;;False;;; -0;30;18;;;;;;-263276;Vasilou;Jamie;Vasilou;;;False;;; +0;1;1;*;*;*;*;*;-12053;Wulf;Tara;Wulf;L;1;False;;; +0;3;2;;;;;;-283759;Van Slate;Emily;Van Slate;;;False;;; +0;4;3;;;*;;;-283760;Johnson;KJ;Johnson;;;False;;; +0;5;4;3;3;3;2;2;-90;Stafford;Shelly;Stafford;;;False;;; +0;6;5;;;;;;-283761;Williams;Callie;Williams;;;False;;; +0;7;6;;;;;;-12055;Fluegel;Hannah;Fluegel;;;False;;; +0;8;7;;;;;;-283762;Brown;Gabby;Brown;;;False;;; +0;9;8;;;;;;-283763;Kelly;Jena;Kelly;;;False;;; +0;10;9;4;4;4;3;3;-73754;Van Der Mark;Marieke;Van Der Mark;;;False;;; +0;11;10;;;;;;-283764;Bowden;Campbell;Bowden;;;False;;; +0;12;11;;;;;;-12058;Thomas;Nicole;Thomas;;;False;;; +0;14;12;1;1;1;6;6;-73755;Lockin;Hannah;Lockin;;;False;;; +0;16;13;;;;;;-283765;Koele;AJ;Koele;;;False;;; +0;17;14;6;6;6;5;5;-288920;McGhee;Kara;McGhee;;;False;;; +0;18;15;*;*;*;*;*;-12059;Hunt;Braya;Hunt;;;False;;; +0;19;16;*;*;*;*;*;-190908;Coleman;Bri;Coleman;;;False;;; +0;22;17;5;5;5;4;4;-73757;Pressley;Yossi;Pressley;;;False;;; +0;32;18;*;*;*;1;1;-190907;Bramschreiber;Shanel;Bramschreiber;;;False;;; +0;35;19;;;;;;-283767;Jones;Sara;Jones;;;False;;; +0;45;20;;;;;;-79568;Dub;J;Dub;;;False;;; +0;77;21;2;2;2;*;*;-231133;Milana;Gia;Milana;;;False;;; [3PLAYERS-V] -1;0;19;;;;1;;-231520;Yates;Chris;Yates;;;False;;; -1;1;20;1;;*;2;;-231069;Van Lanen;Mikaylah;Van Lanen;;;False;;; -1;2;21;*;*;*;3;;-230138;Collins;Maura;Collins;L;1;False;;; -1;3;22;*;*;*;4;;-230142;House;Elizabeth;House;;;False;;; -1;4;23;;*;;5;;-231070;Vondran;Josie;Vondran;;;False;;; -1;5;24;*;*;*;6;;-230141;Papesh;Alli;Papesh;;;False;;; -1;6;25;5;3;;;;-230139;Moore;Amelia;Moore;;;False;;; -1;7;26;*;*;*;;;-96826;Doherty;Bridget;Doherty;;;False;;; -1;8;27;6;6;6;;;-232525;Westbeld;Brooke;Westbeld;;;False;;; -1;9;28;;*;;;;-11801;Albarran;Jordan;Albarran;;;False;;; -1;10;29;4;4;4;;;-11802;Peterson;Jamie;Peterson;;;False;;; -1;12;30;;*;;;;-233246;Asmus;Molly;Asmus;;;False;;; -1;15;31;*;5;5;;;-273640;Fara;Rachael;Fara;;;False;;; -1;16;32;2;2;2;;;14555;Dubay;Olivia;Dubay;;;False;;; -1;17;33;3;;3;;;-11804;Pla;Sierra;Pla;;;False;;; -1;18;34;;;*;;;-282421;Dynda;Grace;Dynda;;;False;;; -1;20;35;*;1;1;;;-231072;Beyer;Carissa;Beyer;;;False;;; -1;21;36;;;;;;-282423;Alekseeva;Irina;Alekseeva;;;False;;; -1;22;37;;;;;;-282422;Sandt;Livie;Sandt;;;False;;; -1;23;38;;;;;;-2176;Brown;Kendyll;Brown;;;False;;; -1;92;39;;;;;;-231521;Reutelshofer;Ben;Reutelshofer;;;False;;; -1;98;40;;;;;;-278367;Mikesch;Parker;Mikesch;;;False;;; -1;99;41;;;;;;3552;Bruns;Lauren;Bruns;;;False;;; +1;1;22;5;5;6;5;5;4539;White;Micaya;White;;;False;;; +1;2;23;1;1;2;1;1;-226554;Gabriel;Jhenna;Gabriel;;;False;;; +1;3;24;;;;;;14937;Fisbeck;Riley;Fisbeck;;;False;;; +1;4;25;*;*;5;*;*;14938;Hahn;Clarie;Hahn;;;False;;; +1;5;26;4;4;*;4;4;-281691;Fields;Skylar;Fields;;;False;;; +1;7;27;6;6;1;6;;-226556;O'Neal;Asjia;O'Neal;;;False;;; +1;8;28;*;*;*;*;*;-226558;Petersen;Sydney;Petersen;L;1;False;;; +1;9;29;;;;;*;-2817;Shook;Ashley;Shook;;;False;;; +1;10;30;3;3;4;3;3;-78519;Butler;Brionne;Butler;;;False;;; +1;13;31;;;;*;;14939;Rounsaville;Autumn;Rounsaville;;;False;;; +1;15;32;*;*;;*;6;-281692;Phillips;Molly;Phillips;;;False;;; +1;33;33;2;2;3;2;2;-226560;Logan;Eggleston;Logan;;;False;;; +1;34;34;;;;*;*;-12228;Agbaji;Orie;Agbaji;;;False;;; [3ATTACKCOMBINATION] V5;4;R;H;Hut;;255;4912;F;; V6;2;L;H;Red;;255;4988;B;; @@ -116,1490 +109,2704 @@ KS;;Slide;;16711680;3950;3991;4883;;255; =~~~#~~~=~~~~~~~=/~~#~~~=/~~#~~~~~~~~~~~=/~~~~~~=~~~~~~~ [3RESERVE] [3SCOUT] -*P19>LUp;;;;;;;;1;1;6;1;494;;19;9;11;15;10;7;1;16;17;10;6;8; -*z1>LUp;;;;;;;;1;1;6;1;494;;19;9;11;15;10;7;1;16;17;10;6;8; -aP08>LUp;;;;;;;;1;1;6;1;494;;19;9;11;15;10;7;1;16;17;10;6;8; -az6>LUp;;;;;;;;1;1;6;1;494;;19;9;11;15;10;7;1;16;17;10;6;8; -*19SM+~~~78A~~~00;;;;0431;-1-1;7642;;1;1;6;1;494;;19;9;11;15;10;7;1;16;17;10;6;8; -a02RM-~~~58AM~~00B;;;;0431;-1-1;7642;;1;1;6;1;495;;19;9;11;15;10;7;1;16;17;10;6;8; -a08ET#~~~~8C~~~00;;;;3147;-1-1;-1-1;;1;1;6;1;497;;19;9;11;15;10;7;1;16;17;10;6;8; -a10AT-X5~46CH2~00F;;;;4512;5522;8150;;1;1;6;1;499;;19;9;11;15;10;7;1;16;17;10;6;8; -*11BT+~~~~2C~~~00;;;;4578;-1-1;-1-1;;1;1;6;1;499;;19;9;11;15;10;7;1;16;17;10;6;8; -*19DT+~~~42AB~~00B;;;;4512;5522;5912;;1;1;6;1;500;;19;9;11;15;10;7;1;16;17;10;6;8; -*08EH#~~~~8A~~~00;;;;2859;-1-1;-1-1;;1;1;6;1;502;;19;9;11;15;10;7;1;16;17;10;6;8; -*09AH#V5~41BH2~00F;;;;4316;5517;7918;;1;1;6;1;504;;19;9;11;15;10;7;1;16;17;10;6;8; -a17BH=~~~~2B~~~00;;;;4583;-1-1;-1-1;;1;1;6;1;504;;19;9;11;15;10;7;1;16;17;10;6;8; -*p01:00;;;;4493;-1-1;;;1;1;6;1;504;;19;9;11;15;10;7;1;16;17;10;6;8; -*P19;;;;;;;;1;1;6;1;519;;19;9;11;15;10;7;1;16;17;10;6;8; -*z1;;;;;;;;1;1;6;1;519;;19;9;11;15;10;7;1;16;17;10;6;8; -aP08;;;;;;;;1;1;6;1;519;;19;9;11;15;10;7;1;16;17;10;6;8; -az6;;;;;;;;1;1;6;1;519;;19;9;11;15;10;7;1;16;17;10;6;8; -*19SM#~~~71C~~~+1;;;;0529;-1-1;7728;;1;1;6;1;519;;19;9;11;15;10;7;1;16;17;10;6;8; -a01RM=~~~51CM~~-1B;;;;0529;-1-1;7728;;1;1;6;1;521;;19;9;11;15;10;7;1;16;17;10;6;8; -*p02:00;;;;4293;-1-1;;;1;1;6;1;522;;19;9;11;15;10;7;1;16;17;10;6;8; -*P19;;;;;;;;1;1;6;1;547;;19;9;11;15;10;7;1;16;17;10;6;8; -*z1;;;;;;;;1;1;6;1;547;;19;9;11;15;10;7;1;16;17;10;6;8; -aP08;;;;;;;;1;1;6;1;547;;19;9;11;15;10;7;1;16;17;10;6;8; -az6;;;;;;;;1;1;6;1;547;;19;9;11;15;10;7;1;16;17;10;6;8; -*19SM-~~~71C~~~+2;;;;0526;-1-1;7728;;1;1;6;1;547;;19;9;11;15;10;7;1;16;17;10;6;8; -a01RM+~~~51CR~~-2B;;;;0526;-1-1;7728;;1;1;6;1;548;;19;9;11;15;10;7;1;16;17;10;6;8; -a08EQ#K1C~3A~~~-2;;;;4252;-1-1;-1-1;;1;1;6;1;549;;19;9;11;15;10;7;1;16;17;10;6;8; -a16AQ=X1~31AH1~-2F;;;;4444;-1-1;8913;;1;1;6;1;550;;19;9;11;15;10;7;1;16;17;10;6;8; -*p03:00;;;;1187;-1-1;;;1;1;6;1;551;;19;9;11;15;10;7;1;16;17;10;6;8; -*P19;;;;;;;;1;1;6;1;565;;19;9;11;15;10;7;1;16;17;10;6;8; -*z1;;;;;;;;1;1;6;1;565;;19;9;11;15;10;7;1;16;17;10;6;8; -aP08;;;;;;;;1;1;6;1;565;;19;9;11;15;10;7;1;16;17;10;6;8; -az6;;;;;;;;1;1;6;1;565;;19;9;11;15;10;7;1;16;17;10;6;8; -*19SM#~~~71B~~~+3;;;;0527;-1-1;8017;;1;1;6;1;565;;19;9;11;15;10;7;1;16;17;10;6;8; -a01RM=~~~51BL~~-3B;;;;0527;-1-1;8017;;1;1;6;1;566;;19;9;11;15;10;7;1;16;17;10;6;8; -*p04:00;;;;-113;-1-1;;;1;1;6;1;568;;19;9;11;15;10;7;1;16;17;10;6;8; -*P19;;;;;;;;1;1;6;1;583;;19;9;11;15;10;7;1;16;17;10;6;8; -*z1;;;;;;;;1;1;6;1;583;;19;9;11;15;10;7;1;16;17;10;6;8; -aP08;;;;;;;;1;1;6;1;583;;19;9;11;15;10;7;1;16;17;10;6;8; -az6;;;;;;;;1;1;6;1;583;;19;9;11;15;10;7;1;16;17;10;6;8; -*19SM#~~~71C~~~+4;;;;0529;-1-1;7925;;1;1;6;1;583;;19;9;11;15;10;7;1;16;17;10;6;8; -a02RM=~~~51CR~~-4B;;;;0529;-1-1;7925;;1;1;6;1;584;;19;9;11;15;10;7;1;16;17;10;6;8; -*p05:00;;;;2293;-1-1;;;1;1;6;1;586;;19;9;11;15;10;7;1;16;17;10;6;8; -*P19;;;;;;;;1;1;6;1;602;;19;9;11;15;10;7;1;16;17;10;6;8; -*z1;;;;;;;;1;1;6;1;602;;19;9;11;15;10;7;1;16;17;10;6;8; -aP08;;;;;;;;1;1;6;1;602;;19;9;11;15;10;7;1;16;17;10;6;8; -az6;;;;;;;;1;1;6;1;602;;19;9;11;15;10;7;1;16;17;10;6;8; -*19SM-~~~79D~~~+5;;;;0532;-1-1;7631;;1;1;6;1;602;;19;9;11;15;10;7;1;16;17;10;6;8; -a02RM#~~~59DR~~-5B;;;;0532;-1-1;7631;;1;1;6;1;603;;19;9;11;15;10;7;1;16;17;10;6;8; -a08ET#K1F~3C~~~-5;;;;4549;-1-1;-1-1;;1;1;6;1;604;;19;9;11;15;10;7;1;16;17;10;6;8; -a10AT#X5~45BH4~-5F;;;;4513;-1-1;8469;;1;1;6;1;605;;19;9;11;15;10;7;1;16;17;10;6;8; -ap05:01;;;;1631;-1-1;;;1;1;6;1;606;;19;9;11;15;10;7;1;16;17;10;6;8; -aP08;;;;;;;;1;1;5;1;623;;19;9;11;15;10;7;16;17;10;6;8;1; -az5;;;;;;;;1;1;5;1;623;;19;9;11;15;10;7;16;17;10;6;8;1; -*P19;;;;;;;;1;1;5;1;623;;19;9;11;15;10;7;16;17;10;6;8;1; -*z1;;;;;;;;1;1;5;1;623;;19;9;11;15;10;7;16;17;10;6;8;1; -a02SM+~~~54A~~~-4;;;;0122;-1-1;6367;;1;1;5;1;623;;19;9;11;15;10;7;16;17;10;6;8;1; -*11RM-~~~54AR~~+4F;;;;0122;-1-1;6367;;1;1;5;1;625;;19;9;11;15;10;7;16;17;10;6;8;1; -*19ET#~~~~8C~~~+4;;;;3146;-1-1;-1-1;;1;1;5;1;627;;19;9;11;15;10;7;16;17;10;6;8;1; -*09AT+X5~46CH2~+4F;;;;4210;5525;7851;;1;1;5;1;628;;19;9;11;15;10;7;16;17;10;6;8;1; -a06BT/~~~~2C~~~-4;;;;4575;-1-1;-1-1;;1;1;5;1;628;;19;9;11;15;10;7;16;17;10;6;8;1; -*15DT+~~~43CC~~+4F;;;;5890;4575;5650;;1;1;5;1;629;;19;9;11;15;10;7;16;17;10;6;8;1; -*19ET#~~~~8C~~~+4;;;;3240;-1-1;-1-1;;1;1;5;1;630;;19;9;11;15;10;7;16;17;10;6;8;1; -*09AT#X5~49DT2~+4F;;;;4414;-1-1;7024;;1;1;5;1;631;;19;9;11;15;10;7;16;17;10;6;8;1; -a08DT=~~~49DS~~-4B;;;;4414;-1-1;7024;;1;1;5;1;632;;19;9;11;15;10;7;16;17;10;6;8;1; -*p06:01;;;;-155;-1-1;;;1;1;5;1;634;;19;9;11;15;10;7;16;17;10;6;8;1; -*P19;;;;;;;;1;6;5;1;652;;9;11;15;10;7;19;16;17;10;6;8;1; -*z6;;;;;;;;1;6;5;1;652;;9;11;15;10;7;19;16;17;10;6;8;1; -aP08;;;;;;;;1;6;5;1;652;;9;11;15;10;7;19;16;17;10;6;8;1; -az5;;;;;;;;1;6;5;1;652;;9;11;15;10;7;19;16;17;10;6;8;1; -*09SM/~~~97A~~~+5;;;;0463;-1-1;7473;;1;6;5;1;652;;9;11;15;10;7;19;16;17;10;6;8;1; -a10RM/~~~17AL~~-5F;;;;0463;-1-1;7473;;1;6;5;1;652;;9;11;15;10;7;19;16;17;10;6;8;1; -*15AO+~~~27CT0~+5F;;;;4570;-1-1;6987;;1;6;5;1;653;;9;11;15;10;7;19;16;17;10;6;8;1; -a10DO-~~~27CS~~-5F;;;;4570;-1-1;6987;;1;6;5;1;654;;9;11;15;10;7;19;16;17;10;6;8;1; -*15AO+~~~22DT1~+5F;;;;4572;-1-1;6331;;1;6;5;1;656;;9;11;15;10;7;19;16;17;10;6;8;1; -a17DO-~~~22DS~~-5F;;;;4572;-1-1;6331;;1;6;5;1;657;;9;11;15;10;7;19;16;17;10;6;8;1; -*15AO-~~~26CP2~+5F;;;;4572;5469;8060;;1;6;5;1;658;;9;11;15;10;7;19;16;17;10;6;8;1; -a06BO+~~~~4B~~~-5;;;;4631;-1-1;-1-1;;1;6;5;1;658;;9;11;15;10;7;19;16;17;10;6;8;1; -a01DO+~~~28DB~~-5B;;;;4572;5469;7456;;1;6;5;1;659;;9;11;15;10;7;19;16;17;10;6;8;1; -a02EH#~~~~8C~~~-5;;;;3145;-1-1;-1-1;;1;6;5;1;661;;9;11;15;10;7;19;16;17;10;6;8;1; -a10AH=V5~45CP2~-5F;;;;4212;-1-1;7893;;1;6;5;1;662;;9;11;15;10;7;19;16;17;10;6;8;1; -*p07:01;;;;2207;-1-1;;;1;6;5;1;663;;9;11;15;10;7;19;16;17;10;6;8;1; -*P19;;;;;;;;1;6;5;1;761;;9;11;15;10;7;19;16;17;10;6;8;1; -*z6;;;;;;;;1;6;5;1;761;;9;11;15;10;7;19;16;17;10;6;8;1; -aP08;;;;;;;;1;6;5;1;761;;9;11;15;10;7;19;16;17;10;6;8;1; -az5;;;;;;;;1;6;5;1;761;;9;11;15;10;7;19;16;17;10;6;8;1; -*09SM/~~~96C~~~+6;;;;0563;-1-1;7754;;1;6;5;1;761;;9;11;15;10;7;19;16;17;10;6;8;1; -a01RM/~~~16CR~~-6B;;;;0563;-1-1;7754;;1;6;5;1;762;;9;11;15;10;7;19;16;17;10;6;8;1; -*08FH+~~~89C~~~+6B;;;;3056;;6931;;1;6;5;1;768;;9;11;15;10;7;19;16;17;10;6;8;1; -*19ET#K1B~2D~~~+6;;;;4369;-1-1;-1-1;;1;6;5;1;769;;9;11;15;10;7;19;16;17;10;6;8;1; -*15AT=X6~29AH4~+6F;;;;4480;-1-1;7207;;1;6;5;1;770;;9;11;15;10;7;19;16;17;10;6;8;1; -ap07:02;;;;2893;-1-1;;;1;6;5;1;771;;9;11;15;10;7;19;16;17;10;6;8;1; -ac17:03;;;;1010;-1-1;9723;;1;0;0;1;794;; -aP08;;;;;;;;1;6;4;1;794;;9;11;15;10;7;19;3;10;6;8;1;16; -az4;;;;;;;;1;6;4;1;794;;9;11;15;10;7;19;3;10;6;8;1;16; -*P19;;;;;;;;1;6;4;1;794;;9;11;15;10;7;19;3;10;6;8;1;16; -*z6;;;;;;;;1;6;4;1;794;;9;11;15;10;7;19;3;10;6;8;1;16; -a03SM-~~~16B~~~-5;;;;0377;-1-1;8143;;1;6;4;1;794;;9;11;15;10;7;19;3;10;6;8;1;16; -*08RM+~~~16BM~~+5B;;;;0377;-1-1;8143;;1;6;4;1;795;;9;11;15;10;7;19;3;10;6;8;1;16; -*19EQ#K7C~3A~~~+5;;;;4158;-1-1;-1-1;;1;6;4;1;796;;9;11;15;10;7;19;3;10;6;8;1;16; -*11AQ#X1~39DH1~+5F;;;;4246;-1-1;7026;;1;6;4;1;797;;9;11;15;10;7;19;3;10;6;8;1;16; -a03DQ=~~~39DS~~-5B;;;;4246;-1-1;7026;;1;6;4;1;797;;9;11;15;10;7;19;3;10;6;8;1;16; -*p08:02;;;;3293;-1-1;;;1;6;4;1;799;;9;11;15;10;7;19;3;10;6;8;1;16; -*P19;;;;;;;;1;5;4;1;816;;11;15;10;7;19;9;3;10;6;8;1;16; -*z5;;;;;;;;1;5;4;1;816;;11;15;10;7;19;9;3;10;6;8;1;16; -aP08;;;;;;;;1;5;4;1;816;;11;15;10;7;19;9;3;10;6;8;1;16; -az4;;;;;;;;1;5;4;1;816;;11;15;10;7;19;9;3;10;6;8;1;16; -*08SM=~~~53C~~~+6;;;;0520;-1-1;4849;;1;5;4;1;816;;11;15;10;7;19;9;3;10;6;8;1;16; -ap08:03;;;;4849;-1-1;;;1;5;4;1;817;;11;15;10;7;19;9;3;10;6;8;1;16; -ac01:05;;;;1010;-1-1;9721;;1;0;0;1;834;; -aP08;;;;;;;;1;5;3;1;834;;11;15;10;7;19;9;10;6;8;5;16;3; -az3;;;;;;;;1;5;3;1;834;;11;15;10;7;19;9;10;6;8;5;16;3; -*P19;;;;;;;;1;5;3;1;834;;11;15;10;7;19;9;10;6;8;5;16;3; -*z5;;;;;;;;1;5;3;1;834;;11;15;10;7;19;9;10;6;8;5;16;3; -a10SM+~~~16C~~~-5;;;;0379;-1-1;8054;;1;5;3;1;834;;11;15;10;7;19;9;10;6;8;5;16;3; -*09RM-~~~16CL~~+5B;;;;0379;-1-1;8054;;1;5;3;1;835;;11;15;10;7;19;9;10;6;8;5;16;3; -*19EO#~~~~8C~~~+5;;;;3248;-1-1;-1-1;;1;5;3;1;836;;11;15;10;7;19;9;10;6;8;5;16;3; -*10AO-~~~79DP2~+5F;;;;3232;-1-1;7329;;1;5;3;1;838;;11;15;10;7;19;9;10;6;8;5;16;3; -a03DO#~~~79DS~~-5B;;;;3232;-1-1;7329;;1;5;3;1;839;;11;15;10;7;19;9;10;6;8;5;16;3; -a08EM#K1B~3B~~~-5;;;;4458;-1-1;-1-1;;1;5;3;1;841;;11;15;10;7;19;9;10;6;8;5;16;3; -a08AM-X3~39CH1~-5F;;;;4647;-1-1;6934;;1;5;3;1;841;;11;15;10;7;19;9;10;6;8;5;16;3; -*19DM+~~~39CS~~+5B;;;;4647;-1-1;6934;;1;5;3;1;842;;11;15;10;7;19;9;10;6;8;5;16;3; -*08EH#~~~~3D~~~+5;;;;4250;-1-1;-1-1;;1;5;3;1;844;;11;15;10;7;19;9;10;6;8;5;16;3; -*15AH#V6~25BH2~+5F;;;;4484;5482;8078;;1;5;3;1;846;;11;15;10;7;19;9;10;6;8;5;16;3; -a05BH=~~~~4C~~~-5;;;;4618;-1-1;-1-1;;1;5;3;1;846;;11;15;10;7;19;9;10;6;8;5;16;3; -*p09:03;;;;-129;-1-1;;;1;5;3;1;847;;11;15;10;7;19;9;10;6;8;5;16;3; -*c15:12;;;;1010;-1-1;9090;;1;0;0;1;876;; -*c19:25;;;;1010;-1-1;9580;;1;0;0;1;876;; -*P25;;;;;;;;1;4;3;1;876;;12;10;7;25;9;11;10;6;8;5;16;3; -*z4;;;;;;;;1;4;3;1;876;;12;10;7;25;9;11;10;6;8;5;16;3; -aP08;;;;;;;;1;4;3;1;876;;12;10;7;25;9;11;10;6;8;5;16;3; -az3;;;;;;;;1;4;3;1;876;;12;10;7;25;9;11;10;6;8;5;16;3; -*12SM-~~~55B~~~+6;;;;0520;-1-1;7963;;1;4;3;1;876;;12;10;7;25;9;11;10;6;8;5;16;3; -a02RM#~~~55BW~~-6B;;;;0520;-1-1;7963;;1;4;3;1;877;;12;10;7;25;9;11;10;6;8;5;16;3; -a08EO#KBS~3B~~~-6;;;;4554;-1-1;-1-1;;1;4;3;1;878;;12;10;7;25;9;11;10;6;8;5;16;3; -a08AO#PP~31B~~~-6F;;;;4554;-1-1;8114;;1;4;3;1;878;;12;10;7;25;9;11;10;6;8;5;16;3; -ap09:04;;;;1986;-1-1;;;1;4;3;1;879;;12;10;7;25;9;11;10;6;8;5;16;3; -aP08;;;;;;;;1;4;2;1;900;;12;10;7;25;9;11;6;8;5;16;3;10; -az2;;;;;;;;1;4;2;1;900;;12;10;7;25;9;11;6;8;5;16;3;10; -*P25;;;;;;;;1;4;2;1;900;;12;10;7;25;9;11;6;8;5;16;3;10; -*z4;;;;;;;;1;4;2;1;900;;12;10;7;25;9;11;6;8;5;16;3;10; -a06ST#~~~58D~~~-5;;;;0424;-1-1;7654;;1;4;2;1;900;;12;10;7;25;9;11;6;8;5;16;3;10; -*09RT=~~~58DM~~+5B;;;;0424;-1-1;7654;;1;4;2;1;901;;12;10;7;25;9;11;6;8;5;16;3;10; -ap09:05;;;;4413;-1-1;;;1;4;2;1;903;;12;10;7;25;9;11;6;8;5;16;3;10; -aP08;;;;;;;;1;4;2;1;923;;12;10;7;25;9;11;6;8;5;16;3;10; -az2;;;;;;;;1;4;2;1;923;;12;10;7;25;9;11;6;8;5;16;3;10; -*P25;;;;;;;;1;4;2;1;923;;12;10;7;25;9;11;6;8;5;16;3;10; -*z4;;;;;;;;1;4;2;1;923;;12;10;7;25;9;11;6;8;5;16;3;10; -a06ST!~~~56C~~~-4;;;;0525;-1-1;8252;;1;4;2;1;923;;12;10;7;25;9;11;6;8;5;16;3;10; -*09RT!~~~56CR~~+4B;;;;0525;-1-1;8252;;1;4;2;1;924;;12;10;7;25;9;11;6;8;5;16;3;10; -*12EN#KSC~2C~~~+4;;;;4470;-1-1;-1-1;;1;4;2;1;926;;12;10;7;25;9;11;6;8;5;16;3;10; -*07AN#CB~27BH1~+4F;;;;4490;5580;6670;;1;4;2;1;926;;12;10;7;25;9;11;6;8;5;16;3;10; -a05BN=~~~~4B~~~-4;;;;4520;-1-1;-1-1;;1;4;2;1;926;;12;10;7;25;9;11;6;8;5;16;3;10; -*p10:05;;;;3113;-1-1;;;1;4;2;1;927;;12;10;7;25;9;11;6;8;5;16;3;10; -*P25;;;;;;;;1;3;2;1;944;;10;7;25;9;11;12;6;8;5;16;3;10; -*z3;;;;;;;;1;3;2;1;944;;10;7;25;9;11;12;6;8;5;16;3;10; -aP08;;;;;;;;1;3;2;1;944;;10;7;25;9;11;12;6;8;5;16;3;10; -az2;;;;;;;;1;3;2;1;944;;10;7;25;9;11;12;6;8;5;16;3;10; -*10SM-~~~56C~~~+5;;;;0523;-1-1;7857;;1;3;2;1;944;;10;7;25;9;11;12;6;8;5;16;3;10; -a10RM+~~~56CM~~-5B;;;;0523;-1-1;7857;;1;3;2;1;945;;10;7;25;9;11;12;6;8;5;16;3;10; -a08EO#K7S~2C~~~-5;;;;4668;-1-1;-1-1;;1;3;2;1;946;;10;7;25;9;11;12;6;8;5;16;3;10; -a08AO-PP~34D~~~-5F;;;;4668;-1-1;5883;;1;3;2;1;946;;10;7;25;9;11;12;6;8;5;16;3;10; -*08DO#~~~24DS~~+5B;;;;4668;-1-1;5883;;1;3;2;1;947;;10;7;25;9;11;12;6;8;5;16;3;10; -*12ET#K1B~3B~~~+5;;;;4557;-1-1;-1-1;;1;3;2;1;948;;10;7;25;9;11;12;6;8;5;16;3;10; -*25AT-X6~26CP4~+5F;;;;4186;-1-1;7850;;1;3;2;1;950;;10;7;25;9;11;12;6;8;5;16;3;10; -a10DT#~~~26CS~~-5B;;;;4186;-1-1;7850;;1;3;2;1;950;;10;7;25;9;11;12;6;8;5;16;3;10; -a08EQ#K1C~3A~~~-5;;;;3952;-1-1;-1-1;;1;3;2;1;952;;10;7;25;9;11;12;6;8;5;16;3;10; -a16AQ-X1~38DH1~-5F;;;;4541;-1-1;7650;;1;3;2;1;953;;10;7;25;9;11;12;6;8;5;16;3;10; -*10DQ+~~~38DS~~+5B;;;;4541;-1-1;7650;;1;3;2;1;953;;10;7;25;9;11;12;6;8;5;16;3;10; -*08EH#~~~~4A~~~+5;;;;4134;-1-1;-1-1;;1;3;2;1;955;;10;7;25;9;11;12;6;8;5;16;3;10; -*09AH-V5~49DP2~+5F;;;;4022;-1-1;7426;;1;3;2;1;956;;10;7;25;9;11;12;6;8;5;16;3;10; -a03DH#~~~49DS~~-5B;;;;4022;-1-1;7426;;1;3;2;1;957;;10;7;25;9;11;12;6;8;5;16;3;10; -a08EO#K1S~3B~~~-5;;;;4656;-1-1;-1-1;;1;3;2;1;959;;10;7;25;9;11;12;6;8;5;16;3;10; -a08AO#PP~32C~~~-5F;;;;4656;-1-1;5631;;1;3;2;1;959;;10;7;25;9;11;12;6;8;5;16;3;10; -*25DO=~~~32CS~~+5F;;;;4656;-1-1;5631;;1;3;2;1;959;;10;7;25;9;11;12;6;8;5;16;3;10; -ap10:06;;;;2187;-1-1;;;1;3;2;1;960;;10;7;25;9;11;12;6;8;5;16;3;10; -ac08:07;;;;1010;-1-1;9090;;1;0;0;1;985;; -ac03:17;;;;1010;-1-1;9923;;1;0;0;1;985;; -aP07;;;;;;;;1;3;1;1;985;;10;7;25;9;11;12;7;5;16;17;10;6; -az1;;;;;;;;1;3;1;1;985;;10;7;25;9;11;12;7;5;16;17;10;6; -*P25;;;;;;;;1;3;1;1;985;;10;7;25;9;11;12;7;5;16;17;10;6; -*z3;;;;;;;;1;3;1;1;985;;10;7;25;9;11;12;7;5;16;17;10;6; -a07SM+~~~16B~~~-4;;;;0177;-1-1;8138;;1;3;1;1;985;;10;7;25;9;11;12;7;5;16;17;10;6; -*10RM-~~~16BW~~+4B;;;;0177;-1-1;8138;;1;3;1;1;986;;10;7;25;9;11;12;7;5;16;17;10;6; -*25EH#~~~~9D~~~+4;;;;2879;-1-1;-1-1;;1;3;1;1;987;;10;7;25;9;11;12;7;5;16;17;10;6; -*09AH+V5~41CT2~+4F;;;;4426;5529;8036;;1;3;1;1;989;;10;7;25;9;11;12;7;5;16;17;10;6; -a17BH/~~~~2C~~~-4;;;;4571;-1-1;-1-1;;1;3;1;1;989;;10;7;25;9;11;12;7;5;16;17;10;6; -*08DH#~~~44AC~~+4B;;;;5674;4571;5873;;1;3;1;1;990;;10;7;25;9;11;12;7;5;16;17;10;6; -*12EQ#K1C~3A~~~+4;;;;4356;-1-1;-1-1;;1;3;1;1;991;;10;7;25;9;11;12;7;5;16;17;10;6; -*07AQ#X1~39CH4~+4F;;;;4349;-1-1;6731;;1;3;1;1;991;;10;7;25;9;11;12;7;5;16;17;10;6; -*p11:06;;;;3369;-1-1;;;1;3;1;1;992;;10;7;25;9;11;12;7;5;16;17;10;6; -*P25;;;;;;;;1;2;1;1;1014;;7;25;9;11;12;10;7;5;16;17;10;6; -*z2;;;;;;;;1;2;1;1;1014;;7;25;9;11;12;10;7;5;16;17;10;6; -aP07;;;;;;;;1;2;1;1;1014;;7;25;9;11;12;10;7;5;16;17;10;6; -az1;;;;;;;;1;2;1;1;1014;;7;25;9;11;12;10;7;5;16;17;10;6; -*07SM-~~~97A~~~+5;;;;0073;-1-1;7368;;1;2;1;1;1014;;7;25;9;11;12;10;7;5;16;17;10;6; -a10RM+~~~17AL~~-5B;;;;0073;-1-1;7368;;1;2;1;1;1015;;7;25;9;11;12;10;7;5;16;17;10;6; -a07EQ#K1C~3C~~~-5;;;;4437;-1-1;-1-1;;1;2;1;1;1016;;7;25;9;11;12;10;7;5;16;17;10;6; -a16AQ-X1~37AH1~-5F;;;;4528;-1-1;7466;;1;2;1;1;1017;;7;25;9;11;12;10;7;5;16;17;10;6; -*07DQ+~~~47AS~~+5B;;;;4528;-1-1;7466;;1;2;1;1;1017;;7;25;9;11;12;10;7;5;16;17;10;6; -*12ET#~~~~7B~~~+5;;;;3337;-1-1;-1-1;;1;2;1;1;1019;;7;25;9;11;12;10;7;5;16;17;10;6; -*09AT#X5~49DP2~+5F;;;;4321;-1-1;7627;;1;2;1;1;1020;;7;25;9;11;12;10;7;5;16;17;10;6; -a10DT=~~~49DS~~-5B;;;;4321;-1-1;7627;;1;2;1;1;1021;;7;25;9;11;12;10;7;5;16;17;10;6; -*p12:06;;;;0693;-1-1;;;1;2;1;1;1023;;7;25;9;11;12;10;7;5;16;17;10;6; -*P25;;;;;;;;1;2;1;1;1039;;7;25;9;11;12;10;7;5;16;17;10;6; -*z2;;;;;;;;1;2;1;1;1039;;7;25;9;11;12;10;7;5;16;17;10;6; -aP07;;;;;;;;1;2;1;1;1039;;7;25;9;11;12;10;7;5;16;17;10;6; -az1;;;;;;;;1;2;1;1;1039;;7;25;9;11;12;10;7;5;16;17;10;6; -*07SM-~~~17A~~~+6;;;;0577;-1-1;7372;;1;2;1;1;1039;;7;25;9;11;12;10;7;5;16;17;10;6; -a10RM#~~~17AM~~-6B;;;;0577;-1-1;7372;;1;2;1;1;1040;;7;25;9;11;12;10;7;5;16;17;10;6; -a07ET#K7B~3B~~~-6;;;;4459;-1-1;-1-1;;1;2;1;1;1042;;7;25;9;11;12;10;7;5;16;17;10;6; -a17AT-X6~27BT1~-6F;;;;4582;-1-1;6875;;1;2;1;1;1042;;7;25;9;11;12;10;7;5;16;17;10;6; -*07DT#~~~27BS~~+6B;;;;4582;-1-1;6875;;1;2;1;1;1043;;7;25;9;11;12;10;7;5;16;17;10;6; -*12EM#K1P~7B~~~+6;;;;3630;-1-1;-1-1;;1;2;1;1;1045;;7;25;9;11;12;10;7;5;16;17;10;6; -*10AM-XP~87BH4~+6B;;;;3353;5561;6865;;1;2;1;1;1046;;7;25;9;11;12;10;7;5;16;17;10;6; -a05BM+~~~~3C~~~-6;;;;4539;-1-1;-1-1;;1;2;1;1;1046;;7;25;9;11;12;10;7;5;16;17;10;6; -a02DM#~~~87AB~~-6B;;;;3353;5561;7269;;1;2;1;1;1047;;7;25;9;11;12;10;7;5;16;17;10;6; -a07EQ#K1C~3B~~~-6;;;;4559;-1-1;-1-1;;1;2;1;1;1049;;7;25;9;11;12;10;7;5;16;17;10;6; -a16AQ+X1~38CT1~-6F;;;;4554;5552;6750;;1;2;1;1;1049;;7;25;9;11;12;10;7;5;16;17;10;6; -*11BQ/~~~~3C~~~+6;;;;4548;-1-1;-1-1;;1;2;1;1;1049;;7;25;9;11;12;10;7;5;16;17;10;6; -a02DQ+~~~33DC~~-6B;;;;5546;5552;4146;;1;2;1;1;1050;;7;25;9;11;12;10;7;5;16;17;10;6; -a16EO#~~~~3C~~~-6;;;;4550;-1-1;-1-1;;1;2;1;1;1051;;7;25;9;11;12;10;7;5;16;17;10;6; -a05AO+~~~46BH2~-6F;;;;4522;-1-1;8143;;1;2;1;1;1053;;7;25;9;11;12;10;7;5;16;17;10;6; -*10DO-~~~46BS~~+6B;;;;4522;-1-1;8143;;1;2;1;1;1053;;7;25;9;11;12;10;7;5;16;17;10;6; -a16AO+~~~37BT1~-6F;;;;4555;-1-1;6875;;1;2;1;1;1055;;7;25;9;11;12;10;7;5;16;17;10;6; -*07DO-~~~37BS~~+6B;;;;4555;-1-1;6875;;1;2;1;1;1055;;7;25;9;11;12;10;7;5;16;17;10;6; -a10FH+~~~99C~~~-6B;;;;2967;;6933;;1;2;1;1;1059;;7;25;9;11;12;10;7;5;16;17;10;6; -a07ET#K1F~3D~~~-6;;;;4350;-1-1;-1-1;;1;2;1;1;1060;;7;25;9;11;12;10;7;5;16;17;10;6; -a05AT/X5~41CH2~-6F;;;;4510;5415;8026;;1;2;1;1;1061;;7;25;9;11;12;10;7;5;16;17;10;6; -*25BT#~~~~2B~~~+6;;;;4685;-1-1;-1-1;;1;2;1;1;1061;;7;25;9;11;12;10;7;5;16;17;10;6; -a02DT=~~~44AC~~-6B;;;;5590;5415;4224;;1;2;1;1;1062;;7;25;9;11;12;10;7;5;16;17;10;6; -*p13:06;;;;2813;-1-1;;;1;2;1;1;1063;;7;25;9;11;12;10;7;5;16;17;10;6; -*P25;;;;;;;;1;2;1;1;1081;;7;25;9;11;12;10;7;5;16;17;10;6; -*z2;;;;;;;;1;2;1;1;1081;;7;25;9;11;12;10;7;5;16;17;10;6; -aP07;;;;;;;;1;2;1;1;1081;;7;25;9;11;12;10;7;5;16;17;10;6; -az1;;;;;;;;1;2;1;1;1081;;7;25;9;11;12;10;7;5;16;17;10;6; -*07SM+~~~17A~~~+7;;;;0575;-1-1;7572;;1;2;1;1;1081;;7;25;9;11;12;10;7;5;16;17;10;6; -a10RM-~~~17AL~~-7B;;;;0575;-1-1;7572;;1;2;1;1;1082;;7;25;9;11;12;10;7;5;16;17;10;6; -a07EH#~~~~8D~~~-7;;;;2944;-1-1;-1-1;;1;2;1;1;1084;;7;25;9;11;12;10;7;5;16;17;10;6; -a05AH#V5~45BH2~-7F;;;;4314;-1-1;7971;;1;2;1;1;1086;;7;25;9;11;12;10;7;5;16;17;10;6; -*07DH=~~~45BS~~+7B;;;;4314;-1-1;7971;;1;2;1;1;1086;;7;25;9;11;12;10;7;5;16;17;10;6; -ap13:07;;;;4260;-1-1;;;1;2;1;1;1087;;7;25;9;11;12;10;7;5;16;17;10;6; -ac05:20;;;;1010;-1-1;9628;;1;0;0;1;1105;; -aP07;;;;;;;;1;2;6;1;1105;;7;25;9;11;12;10;20;16;17;10;6;7; -az6;;;;;;;;1;2;6;1;1105;;7;25;9;11;12;10;20;16;17;10;6;7; -*P25;;;;;;;;1;2;6;1;1105;;7;25;9;11;12;10;20;16;17;10;6;7; -*z2;;;;;;;;1;2;6;1;1105;;7;25;9;11;12;10;20;16;17;10;6;7; -a20ST-~~~96C~~~-6;;;;0472;-1-1;8161;;1;2;6;1;1105;;7;25;9;11;12;10;20;16;17;10;6;7; -*10RT+~~~16CL~~+6B;;;;0472;-1-1;8161;;1;2;6;1;1106;;7;25;9;11;12;10;20;16;17;10;6;7; -*12EM#K1B~3A~~~+6;;;;4159;-1-1;-1-1;;1;2;6;1;1108;;7;25;9;11;12;10;20;16;17;10;6;7; -*25AM#X4~28DH2~+6F;;;;4373;-1-1;7156;;1;2;6;1;1108;;7;25;9;11;12;10;20;16;17;10;6;7; -*p14:07;;;;2944;-1-1;;;1;2;6;1;1109;;7;25;9;11;12;10;20;16;17;10;6;7; -*c12:15;;;;1010;-1-1;9090;;1;0;0;1;1142;; -*c25:19;;;;1010;-1-1;9578;;1;0;0;1;1142;; -*P19;;;;;;;;1;1;6;1;1142;;19;9;11;15;10;7;20;16;17;10;6;7; -*z1;;;;;;;;1;1;6;1;1142;;19;9;11;15;10;7;20;16;17;10;6;7; -aP07;;;;;;;;1;1;6;1;1142;;19;9;11;15;10;7;20;16;17;10;6;7; -az6;;;;;;;;1;1;6;1;1142;;19;9;11;15;10;7;20;16;17;10;6;7; -*19SM-~~~51C~~~+7;;;;0522;-1-1;8127;;1;1;6;1;1142;;19;9;11;15;10;7;20;16;17;10;6;7; -a20RM#~~~51CM~~-7B;;;;0522;-1-1;8127;;1;1;6;1;1144;;19;9;11;15;10;7;20;16;17;10;6;7; -a07ET#K7F~3B~~~-7;;;;4557;-1-1;-1-1;;1;1;6;1;1146;;19;9;11;15;10;7;20;16;17;10;6;7; -a10AT#X5~46BH2~-7F;;;;4518;5426;8149;;1;1;6;1;1147;;19;9;11;15;10;7;20;16;17;10;6;7; -*11BT=~~~~2C~~~+7;;;;4674;-1-1;-1-1;;1;1;6;1;1147;;19;9;11;15;10;7;20;16;17;10;6;7; -ap14:08;;;;4684;-1-1;;;1;1;6;1;1147;;19;9;11;15;10;7;20;16;17;10;6;7; -aP07;;;;;;;;1;1;5;1;1165;;19;9;11;15;10;7;16;17;10;6;7;20; -az5;;;;;;;;1;1;5;1;1165;;19;9;11;15;10;7;16;17;10;6;7;20; -*P19;;;;;;;;1;1;5;1;1165;;19;9;11;15;10;7;16;17;10;6;7;20; -*z1;;;;;;;;1;1;5;1;1165;;19;9;11;15;10;7;16;17;10;6;7;20; -a02SM-~~~58B~~~-6;;;;0223;-1-1;6941;;1;1;5;1;1165;;19;9;11;15;10;7;16;17;10;6;7;20; -*08RM+~~~58BL~~+6B;;;;0223;-1-1;6941;;1;1;5;1;1166;;19;9;11;15;10;7;16;17;10;6;7;20; -*19EQ#K1B~3A~~~+6;;;;4355;-1-1;-1-1;;1;1;5;1;1167;;19;9;11;15;10;7;16;17;10;6;7;20; -*11AQ-XO~29CT2~+6F;;;;4263;-1-1;6932;;1;1;5;1;1168;;19;9;11;15;10;7;16;17;10;6;7;20; -a07DQ+~~~29CS~~-6B;;;;4263;-1-1;6932;;1;1;5;1;1169;;19;9;11;15;10;7;16;17;10;6;7;20; -a02ET#~~~~8B~~~-6;;;;3356;-1-1;-1-1;;1;1;5;1;1170;;19;9;11;15;10;7;16;17;10;6;7;20; -a10AT=X5~42CH2~-6F;;;;4224;-1-1;5524;;1;1;5;1;1172;;19;9;11;15;10;7;16;17;10;6;7;20; -*p15:08;;;;4576;-1-1;;;1;1;5;1;1172;;19;9;11;15;10;7;16;17;10;6;7;20; -*P19;;;;;;;;1;6;5;1;1189;;9;11;15;10;7;19;16;17;10;6;7;20; -*z6;;;;;;;;1;6;5;1;1189;;9;11;15;10;7;19;16;17;10;6;7;20; -aP07;;;;;;;;1;6;5;1;1189;;9;11;15;10;7;19;16;17;10;6;7;20; -az5;;;;;;;;1;6;5;1;1189;;9;11;15;10;7;19;16;17;10;6;7;20; -*09SM-~~~96C~~~+7;;;;0462;-1-1;8051;;1;6;5;1;1189;;9;11;15;10;7;19;16;17;10;6;7;20; -a20RM+~~~66CL~~-7B;;;;0462;-1-1;8051;;1;6;5;1;1190;;9;11;15;10;7;19;16;17;10;6;7;20; -a07EQ#K7C~3A~~~-7;;;;4054;-1-1;-1-1;;1;6;5;1;1192;;9;11;15;10;7;19;16;17;10;6;7;20; -a06AQ#X7~49CH1~-7F;;;;4529;-1-1;6934;;1;6;5;1;1192;;9;11;15;10;7;19;16;17;10;6;7;20; -ap15:09;;;;3166;-1-1;;;1;6;5;1;1193;;9;11;15;10;7;19;16;17;10;6;7;20; -*c09:04;;;;1010;-1-1;9090;;1;0;0;1;1220;; -ac07:08;;;;1010;-1-1;9090;;1;0;0;1;1220;; -ac17:03;;;;1010;-1-1;9823;;1;0;0;1;1220;; -aP08;;;;;;;;1;6;4;1;1220;;4;11;15;10;7;19;3;10;6;8;20;16; -az4;;;;;;;;1;6;4;1;1220;;4;11;15;10;7;19;3;10;6;8;20;16; -*P19;;;;;;;;1;6;4;1;1220;;4;11;15;10;7;19;3;10;6;8;20;16; -*z6;;;;;;;;1;6;4;1;1220;;4;11;15;10;7;19;3;10;6;8;20;16; -a03SM+~~~18B~~~-6;;;;0277;-1-1;6940;;1;6;4;1;1220;;4;11;15;10;7;19;3;10;6;8;20;16; -*08RM-~~~18BR~~+6B;;;;0277;-1-1;6940;;1;6;4;1;1221;;4;11;15;10;7;19;3;10;6;8;20;16; -*19EH#~~~~2C~~~+6;;;;4474;-1-1;-1-1;;1;6;4;1;1223;;4;11;15;10;7;19;3;10;6;8;20;16; -*10AH#V5~49BT2~+6F;;;;4221;-1-1;6517;;1;6;4;1;1224;;4;11;15;10;7;19;3;10;6;8;20;16; -*p16:09;;;;3583;-1-1;;;1;6;4;1;1225;;4;11;15;10;7;19;3;10;6;8;20;16; -*P19;;;;;;;;1;5;4;1;1333;;11;15;10;7;19;4;3;10;6;8;20;16; -*z5;;;;;;;;1;5;4;1;1333;;11;15;10;7;19;4;3;10;6;8;20;16; -aP08;;;;;;;;1;5;4;1;1333;;11;15;10;7;19;4;3;10;6;8;20;16; -az4;;;;;;;;1;5;4;1;1333;;11;15;10;7;19;4;3;10;6;8;20;16; -*08SM!~~~57A~~~+7;;;;0522;-1-1;7263;;1;5;4;1;1333;;11;15;10;7;19;4;3;10;6;8;20;16; -a02RM!~~~57AM~~-7B;;;;0522;-1-1;7263;;1;5;4;1;1334;;11;15;10;7;19;4;3;10;6;8;20;16; -a08EN#KBC~3D~~~-7;;;;3848;-1-1;-1-1;;1;5;4;1;1336;;11;15;10;7;19;4;3;10;6;8;20;16; -a06AN=CF~21BH1~-7F;;;;4580;-1-1;8113;;1;5;4;1;1337;;11;15;10;7;19;4;3;10;6;8;20;16; -*p17:09;;;;1987;-1-1;;;1;5;4;1;1337;;11;15;10;7;19;4;3;10;6;8;20;16; -*P19;;;;;;;;1;5;4;1;1352;;11;15;10;7;19;4;3;10;6;8;20;16; -*z5;;;;;;;;1;5;4;1;1352;;11;15;10;7;19;4;3;10;6;8;20;16; -aP08;;;;;;;;1;5;4;1;1352;;11;15;10;7;19;4;3;10;6;8;20;16; -az4;;;;;;;;1;5;4;1;1352;;11;15;10;7;19;4;3;10;6;8;20;16; -*08SM-~~~55B~~~+8;;;;0523;-1-1;8075;;1;5;4;1;1352;;11;15;10;7;19;4;3;10;6;8;20;16; -a20RM+~~~55BR~~-8B;;;;0523;-1-1;8075;;1;5;4;1;1353;;11;15;10;7;19;4;3;10;6;8;20;16; -a08EN#KBC~4A~~~-8;;;;4335;-1-1;-1-1;;1;5;4;1;1355;;11;15;10;7;19;4;3;10;6;8;20;16; -a06AN#CF~29DH4~-8F;;;;4579;-1-1;7223;;1;5;4;1;1356;;11;15;10;7;19;4;3;10;6;8;20;16; -*19DN=~~~29DS~~+8B;;;;4579;-1-1;7223;;1;5;4;1;1357;;11;15;10;7;19;4;3;10;6;8;20;16; -ap17:10;;;;0287;-1-1;;;1;5;4;1;1358;;11;15;10;7;19;4;3;10;6;8;20;16; -ac20:05;;;;1010;-1-1;9823;;1;0;0;1;1376;; -aP08;;;;;;;;1;5;3;1;1376;;11;15;10;7;19;4;10;6;8;5;16;3; -az3;;;;;;;;1;5;3;1;1376;;11;15;10;7;19;4;10;6;8;5;16;3; -*P19;;;;;;;;1;5;3;1;1376;;11;15;10;7;19;4;10;6;8;5;16;3; -*z5;;;;;;;;1;5;3;1;1376;;11;15;10;7;19;4;10;6;8;5;16;3; -a10SM/~~~16C~~~-7;;;;0277;-1-1;8058;;1;5;3;1;1376;;11;15;10;7;19;4;10;6;8;5;16;3; -*04RM/~~~16CL~~+7B;;;;0277;-1-1;8058;;1;5;3;1;1377;;11;15;10;7;19;4;10;6;8;5;16;3; -a06FH+~~~63D~~~-7F;;;;2042;;5753;;1;5;3;1;1379;;11;15;10;7;19;4;10;6;8;5;16;3; -a08ET#KBF~3A~~~-7;;;;4159;-1-1;-1-1;;1;5;3;1;1380;;11;15;10;7;19;4;10;6;8;5;16;3; -a05AT#X5~46CH4~-7F;;;;4416;-1-1;8251;;1;5;3;1;1381;;11;15;10;7;19;4;10;6;8;5;16;3; -*08DT=~~~46CS~~+7B;;;;4416;-1-1;8251;;1;5;3;1;1382;;11;15;10;7;19;4;10;6;8;5;16;3; -ap17:11;;;;-287;-1-1;;;1;5;3;1;1383;;11;15;10;7;19;4;10;6;8;5;16;3; -aP08;;;;;;;;1;5;3;1;1398;;11;15;10;7;19;4;10;6;8;5;16;3; -az3;;;;;;;;1;5;3;1;1398;;11;15;10;7;19;4;10;6;8;5;16;3; -*P19;;;;;;;;1;5;3;1;1398;;11;15;10;7;19;4;10;6;8;5;16;3; -*z5;;;;;;;;1;5;3;1;1398;;11;15;10;7;19;4;10;6;8;5;16;3; -a10SM!~~~16C~~~-6;;;;0176;-1-1;8055;;1;5;3;1;1398;;11;15;10;7;19;4;10;6;8;5;16;3; -*04RM!~~~16CM~~+6B;;;;0176;-1-1;8055;;1;5;3;1;1399;;11;15;10;7;19;4;10;6;8;5;16;3; -*19ET#K1B~2B~~~+6;;;;4482;-1-1;-1-1;;1;5;3;1;1400;;11;15;10;7;19;4;10;6;8;5;16;3; -*15AT/X6~26CH2~+6F;;;;4388;5580;7953;;1;5;3;1;1402;;11;15;10;7;19;4;10;6;8;5;16;3; -a05BT#~~~~4B~~~-6;;;;4520;-1-1;-1-1;;1;5;3;1;1402;;11;15;10;7;19;4;10;6;8;5;16;3; -*08DT=~~~22DC~~+6B;;;;5712;4520;5833;;1;5;3;1;1402;;11;15;10;7;19;4;10;6;8;5;16;3; -ap17:12;;;;-379;-1-1;;;1;5;3;1;1404;;11;15;10;7;19;4;10;6;8;5;16;3; -aP08;;;;;;;;1;5;3;1;1420;;11;15;10;7;19;4;10;6;8;5;16;3; -az3;;;;;;;;1;5;3;1;1420;;11;15;10;7;19;4;10;6;8;5;16;3; -*P19;;;;;;;;1;5;3;1;1420;;11;15;10;7;19;4;10;6;8;5;16;3; -*z5;;;;;;;;1;5;3;1;1420;;11;15;10;7;19;4;10;6;8;5;16;3; -a10SM=~~~15A~~~-5;;;;0578;-1-1;9570;;1;5;3;1;1420;;11;15;10;7;19;4;10;6;8;5;16;3; -*p18:12;;;;0530;-1-1;;;1;5;3;1;1421;;11;15;10;7;19;4;10;6;8;5;16;3; -*c15:12;;;;1010;-1-1;9090;;1;0;0;1;1445;; -*c19:25;;;;1010;-1-1;9681;;1;0;0;1;1445;; -*P25;;;;;;;;1;4;3;1;1445;;12;10;7;25;4;11;10;6;8;5;16;3; -*z4;;;;;;;;1;4;3;1;1445;;12;10;7;25;4;11;10;6;8;5;16;3; -aP08;;;;;;;;1;4;3;1;1445;;12;10;7;25;4;11;10;6;8;5;16;3; -az3;;;;;;;;1;4;3;1;1445;;12;10;7;25;4;11;10;6;8;5;16;3; -*12SM-~~~55B~~~+6;;;;0419;-1-1;7868;;1;4;3;1;1445;;12;10;7;25;4;11;10;6;8;5;16;3; -a02RM#~~~55BL~~-6B;;;;0419;-1-1;7868;;1;4;3;1;1446;;12;10;7;25;4;11;10;6;8;5;16;3; -a08EN#KSC~3C~~~-6;;;;4450;-1-1;-1-1;;1;4;3;1;1447;;12;10;7;25;4;11;10;6;8;5;16;3; -a06AN-CF~29DH1~-6F;;;;4485;-1-1;7126;;1;4;3;1;1448;;12;10;7;25;4;11;10;6;8;5;16;3; -*08DN+~~~29DS~~+6B;;;;4485;-1-1;7126;;1;4;3;1;1449;;12;10;7;25;4;11;10;6;8;5;16;3; -*08EH#~~~~8A~~~+6;;;;2653;-1-1;-1-1;;1;4;3;1;1451;;12;10;7;25;4;11;10;6;8;5;16;3; -*10AH#V5~47BH2~+6F;;;;4319;-1-1;6875;;1;4;3;1;1452;;12;10;7;25;4;11;10;6;8;5;16;3; -a05DH=~~~47BS~~-6F;;;;4319;-1-1;6875;;1;4;3;1;1453;;12;10;7;25;4;11;10;6;8;5;16;3; -*p19:12;;;;4113;-1-1;;;1;4;3;1;1454;;12;10;7;25;4;11;10;6;8;5;16;3; -*P25;;;;;;;;1;4;3;1;1473;;12;10;7;25;4;11;10;6;8;5;16;3; -*z4;;;;;;;;1;4;3;1;1473;;12;10;7;25;4;11;10;6;8;5;16;3; -aP08;;;;;;;;1;4;3;1;1473;;12;10;7;25;4;11;10;6;8;5;16;3; -az3;;;;;;;;1;4;3;1;1473;;12;10;7;25;4;11;10;6;8;5;16;3; -*12SM/~~~57A~~~+7;;;;0524;-1-1;7571;;1;4;3;1;1473;;12;10;7;25;4;11;10;6;8;5;16;3; -a02RM/~~~57AW~~-7B;;;;0524;-1-1;7571;;1;4;3;1;1474;;12;10;7;25;4;11;10;6;8;5;16;3; -*04FH+~~~37A~~~+7B;;;;4162;;7275;;1;4;3;1;1479;;12;10;7;25;4;11;10;6;8;5;16;3; -*12EQ#K1C~3D~~~+7;;;;4250;-1-1;-1-1;;1;4;3;1;1480;;12;10;7;25;4;11;10;6;8;5;16;3; -*07AQ#X1~38BH1~+7F;;;;4344;5544;6544;;1;4;3;1;1481;;12;10;7;25;4;11;10;6;8;5;16;3; -a06BQ=~~~~3B~~~-7;;;;4556;-1-1;-1-1;;1;4;3;1;1481;;12;10;7;25;4;11;10;6;8;5;16;3; -*p20:12;;;;4283;-1-1;;;1;4;3;1;1481;;12;10;7;25;4;11;10;6;8;5;16;3; -*P25;;;;;;;;1;4;3;1;1500;;12;10;7;25;4;11;10;6;8;5;16;3; -*z4;;;;;;;;1;4;3;1;1500;;12;10;7;25;4;11;10;6;8;5;16;3; -aP08;;;;;;;;1;4;3;1;1500;;12;10;7;25;4;11;10;6;8;5;16;3; -az3;;;;;;;;1;4;3;1;1500;;12;10;7;25;4;11;10;6;8;5;16;3; -*12SM/~~~57A~~~+8;;;;0523;-1-1;7470;;1;4;3;1;1500;;12;10;7;25;4;11;10;6;8;5;16;3; -a02RM/~~~57AM~~-8B;;;;0523;-1-1;7470;;1;4;3;1;1501;;12;10;7;25;4;11;10;6;8;5;16;3; -*10AO#~~~33CT1~+8F;;;;4544;-1-1;5562;;1;4;3;1;1502;;12;10;7;25;4;11;10;6;8;5;16;3; -*p21:12;;;;4538;-1-1;;;1;4;3;1;1503;;12;10;7;25;4;11;10;6;8;5;16;3; -*P25;;;;;;;;1;4;3;1;1522;;12;10;7;25;4;11;10;6;8;5;16;3; -*z4;;;;;;;;1;4;3;1;1522;;12;10;7;25;4;11;10;6;8;5;16;3; -aP08;;;;;;;;1;4;3;1;1522;;12;10;7;25;4;11;10;6;8;5;16;3; -az3;;;;;;;;1;4;3;1;1522;;12;10;7;25;4;11;10;6;8;5;16;3; -*12SM#~~~56C~~~+9;;;;0523;-1-1;8655;;1;4;3;1;1522;;12;10;7;25;4;11;10;6;8;5;16;3; -a03RM=~~~56CL~~-9B;;;;0523;-1-1;8655;;1;4;3;1;1523;;12;10;7;25;4;11;10;6;8;5;16;3; -*p22:12;;;;1445;-1-1;;;1;4;3;1;1523;;12;10;7;25;4;11;10;6;8;5;16;3; -*P25;;;;;;;;1;4;3;1;1543;;12;10;7;25;4;11;10;6;8;5;16;3; -*z4;;;;;;;;1;4;3;1;1543;;12;10;7;25;4;11;10;6;8;5;16;3; -aP08;;;;;;;;1;4;3;1;1543;;12;10;7;25;4;11;10;6;8;5;16;3; -az3;;;;;;;;1;4;3;1;1543;;12;10;7;25;4;11;10;6;8;5;16;3; -*12SM-~~~56C~~~+9;;;;0525;-1-1;7856;;1;4;3;1;1543;;12;10;7;25;4;11;10;6;8;5;16;3; -a03RM+~~~56CL~~-9B;;;;0525;-1-1;7856;;1;4;3;1;1544;;12;10;7;25;4;11;10;6;8;5;16;3; -a08EN#KSC~3A~~~-9;;;;4156;-1-1;-1-1;;1;4;3;1;1546;;12;10;7;25;4;11;10;6;8;5;16;3; -a06AN=CF~25CH2~-9F;;;;4588;-1-1;8693;;1;4;3;1;1547;;12;10;7;25;4;11;10;6;8;5;16;3; -*p23:12;;;;1407;-1-1;;;1;4;3;1;1547;;12;10;7;25;4;11;10;6;8;5;16;3; -ac06:15;;;;1010;-1-1;9578;;1;0;0;1;1574;; -*P25;;;;;;;;1;4;3;1;1574;;12;10;7;25;4;11;10;15;8;5;16;3; -*z4;;;;;;;;1;4;3;1;1574;;12;10;7;25;4;11;10;15;8;5;16;3; -aP08;;;;;;;;1;4;3;1;1574;;12;10;7;25;4;11;10;15;8;5;16;3; -az3;;;;;;;;1;4;3;1;1574;;12;10;7;25;4;11;10;15;8;5;16;3; -*12SM=~~~55A~~~+9;;;;0522;-1-1;9773;;1;4;3;1;1574;;12;10;7;25;4;11;10;15;8;5;16;3; -ap23:13;;;;0327;-1-1;;;1;4;3;1;1575;;12;10;7;25;4;11;10;15;8;5;16;3; -aP08;;;;;;;;1;4;2;1;1591;;12;10;7;25;4;11;15;8;5;16;3;10; -az2;;;;;;;;1;4;2;1;1591;;12;10;7;25;4;11;15;8;5;16;3;10; -*P25;;;;;;;;1;4;2;1;1591;;12;10;7;25;4;11;15;8;5;16;3;10; -*z4;;;;;;;;1;4;2;1;1591;;12;10;7;25;4;11;15;8;5;16;3;10; -a15SM!~~~55B~~~-9;;;;0023;-1-1;7874;;1;4;2;1;1591;;12;10;7;25;4;11;15;8;5;16;3;10; -*10RM!~~~55BL~~+9F;;;;0023;-1-1;7874;;1;4;2;1;1592;;12;10;7;25;4;11;15;8;5;16;3;10; -*12ET#K1B~2D~~~+9;;;;4072;-1-1;-1-1;;1;4;2;1;1593;;12;10;7;25;4;11;15;8;5;16;3;10; -*25AT/X6~25BH4~+9F;;;;4290;5582;7770;;1;4;2;1;1594;;12;10;7;25;4;11;15;8;5;16;3;10; -a05BT#~~~~4C~~~-9;;;;4518;-1-1;-1-1;;1;4;2;1;1594;;12;10;7;25;4;11;15;8;5;16;3;10; -ap23:14;;;;4389;-1-1;;;1;4;2;1;1595;;12;10;7;25;4;11;15;8;5;16;3;10; -aP08;;;;;;;;1;4;2;1;1610;;12;10;7;25;4;11;15;8;5;16;3;10; -az2;;;;;;;;1;4;2;1;1610;;12;10;7;25;4;11;15;8;5;16;3;10; -*P25;;;;;;;;1;4;2;1;1610;;12;10;7;25;4;11;15;8;5;16;3;10; -*z4;;;;;;;;1;4;2;1;1610;;12;10;7;25;4;11;15;8;5;16;3;10; -a15SM+~~~58D~~~-9;;;;0023;-1-1;7656;;1;4;2;1;1610;;12;10;7;25;4;11;15;8;5;16;3;10; -*04RM-~~~58DL~~+9B;;;;0023;-1-1;7656;;1;4;2;1;1611;;12;10;7;25;4;11;15;8;5;16;3;10; -*12EH#~~~~8B~~~+9;;;;3261;-1-1;-1-1;;1;4;2;1;1613;;12;10;7;25;4;11;15;8;5;16;3;10; -*10AH-V5~41BH2~+9F;;;;4515;5415;8018;;1;4;2;1;1614;;12;10;7;25;4;11;15;8;5;16;3;10; -a08BH+~~~~2B~~~-9;;;;4685;-1-1;-1-1;;1;4;2;1;1614;;12;10;7;25;4;11;15;8;5;16;3;10; -a08DH+~~~42BB~~-9F;;;;4515;5415;5616;;1;4;2;1;1615;;12;10;7;25;4;11;15;8;5;16;3;10; -a03EH#~~~~8C~~~-9;;;;3247;-1-1;-1-1;;1;4;2;1;1617;;12;10;7;25;4;11;15;8;5;16;3;10; -a05AH+V5~41CH2~-9F;;;;4516;5518;8024;;1;4;2;1;1619;;12;10;7;25;4;11;15;8;5;16;3;10; -*25BH/~~~~2B~~~+9;;;;4582;-1-1;-1-1;;1;4;2;1;1619;;12;10;7;25;4;11;15;8;5;16;3;10; -a03DH+~~~44AC~~-9B;;;;5584;5518;4036;;1;4;2;1;1619;;12;10;7;25;4;11;15;8;5;16;3;10; -a08EH#~~~~2D~~~-9;;;;4367;-1-1;-1-1;;1;4;2;1;1621;;12;10;7;25;4;11;15;8;5;16;3;10; -a10AH-VP~81CP1~-9B;;;;3356;-1-1;7825;;1;4;2;1;1622;;12;10;7;25;4;11;15;8;5;16;3;10; -*12DH+~~~81CS~~+9B;;;;3356;-1-1;7825;;1;4;2;1;1623;;12;10;7;25;4;11;15;8;5;16;3;10; -*04EH#~~~~5C~~~+9;;;;1512;-1-1;-1-1;;1;4;2;1;1625;;12;10;7;25;4;11;15;8;5;16;3;10; -*10AH-V5~47AP2~+9F;;;;3208;-1-1;7072;;1;4;2;1;1627;;12;10;7;25;4;11;15;8;5;16;3;10; -a05DH#~~~77AS~~-9F;;;;3208;-1-1;7072;;1;4;2;1;1628;;12;10;7;25;4;11;15;8;5;16;3;10; -a08EM#K1P~3A~~~-9;;;;4257;-1-1;-1-1;;1;4;2;1;1630;;12;10;7;25;4;11;15;8;5;16;3;10; -a10AM#XP~88CH3~-9B;;;;3345;5555;6861;;1;4;2;1;1631;;12;10;7;25;4;11;15;8;5;16;3;10; -*10BM=~~~~3C~~~+9;;;;4545;-1-1;-1-1;;1;4;2;1;1631;;12;10;7;25;4;11;15;8;5;16;3;10; -ap23:15;;;;1807;-1-1;;;1;4;2;1;1632;;12;10;7;25;4;11;15;8;5;16;3;10; -aP08;;;;;;;;1;4;2;1;1650;;12;10;7;25;4;11;15;8;5;16;3;10; -az2;;;;;;;;1;4;2;1;1650;;12;10;7;25;4;11;15;8;5;16;3;10; -*P25;;;;;;;;1;4;2;1;1650;;12;10;7;25;4;11;15;8;5;16;3;10; -*z4;;;;;;;;1;4;2;1;1650;;12;10;7;25;4;11;15;8;5;16;3;10; -a15SM-~~~57A~~~-8;;;;0124;-1-1;7572;;1;4;2;1;1650;;12;10;7;25;4;11;15;8;5;16;3;10; -*10RM+~~~57AW~~+8F;;;;0124;-1-1;7572;;1;4;2;1;1651;;12;10;7;25;4;11;15;8;5;16;3;10; -*12EM#K1B~3A~~~+8;;;;4256;-1-1;-1-1;;1;4;2;1;1653;;12;10;7;25;4;11;15;8;5;16;3;10; -*25AM=X4~22CH2~+8F;;;;4371;-1-1;5234;;1;4;2;1;1654;;12;10;7;25;4;11;15;8;5;16;3;10; -ap23:16;;;;4866;-1-1;;;1;4;2;1;1654;;12;10;7;25;4;11;15;8;5;16;3;10; -aP08;;;;;;;;1;4;2;1;1671;;12;10;7;25;4;11;15;8;5;16;3;10; -az2;;;;;;;;1;4;2;1;1671;;12;10;7;25;4;11;15;8;5;16;3;10; -*P25;;;;;;;;1;4;2;1;1671;;12;10;7;25;4;11;15;8;5;16;3;10; -*z4;;;;;;;;1;4;2;1;1671;;12;10;7;25;4;11;15;8;5;16;3;10; -a15SM=~~~54C~~~-7;;;;0222;-1-1;4811;;1;4;2;1;1671;;12;10;7;25;4;11;15;8;5;16;3;10; -*p24:16;;;;4811;-1-1;;;1;4;2;1;1672;;12;10;7;25;4;11;15;8;5;16;3;10; -*c04:09;;;;1010;-1-1;9573;;1;0;0;1;1693;; -*P25;;;;;;;;1;3;2;1;1693;;10;7;25;9;11;12;15;8;5;16;3;10; -*z3;;;;;;;;1;3;2;1;1693;;10;7;25;9;11;12;15;8;5;16;3;10; -aP08;;;;;;;;1;3;2;1;1693;;10;7;25;9;11;12;15;8;5;16;3;10; -az2;;;;;;;;1;3;2;1;1693;;10;7;25;9;11;12;15;8;5;16;3;10; -*10SM!~~~75B~~~+8;;;;0527;-1-1;8175;;1;3;2;1;1693;;10;7;25;9;11;12;15;8;5;16;3;10; -a03RM!~~~55BR~~-8B;;;;0527;-1-1;8175;;1;3;2;1;1694;;10;7;25;9;11;12;15;8;5;16;3;10; -a08EQ#K7C~3D~~~-8;;;;3743;-1-1;-1-1;;1;3;2;1;1696;;10;7;25;9;11;12;15;8;5;16;3;10; -a16AQ-X7~47BT1~-8F;;;;4528;-1-1;6963;;1;3;2;1;1696;;10;7;25;9;11;12;15;8;5;16;3;10; -*08DQ#~~~47BS~~+8B;;;;4528;-1-1;6963;;1;3;2;1;1697;;10;7;25;9;11;12;15;8;5;16;3;10; -*12ET#K1B~2D~~~+8;;;;4272;-1-1;-1-1;;1;3;2;1;1699;;10;7;25;9;11;12;15;8;5;16;3;10; -*25AT=X6~22BH4~+8F;;;;4289;-1-1;5210;;1;3;2;1;1700;;10;7;25;9;11;12;15;8;5;16;3;10; -ap24:17;;;;4890;-1-1;;;1;3;2;1;1700;;10;7;25;9;11;12;15;8;5;16;3;10; -ac08:07;;;;1010;-1-1;9090;;1;0;0;1;1724;; -ac03:17;;;;1010;-1-1;9822;;1;0;0;1;1724;; -aP07;;;;;;;;1;3;1;1;1724;;10;7;25;9;11;12;7;5;16;17;10;15; -az1;;;;;;;;1;3;1;1;1724;;10;7;25;9;11;12;7;5;16;17;10;15; -*P25;;;;;;;;1;3;1;1;1724;;10;7;25;9;11;12;7;5;16;17;10;15; -*z3;;;;;;;;1;3;1;1;1724;;10;7;25;9;11;12;7;5;16;17;10;15; -a07SM-~~~18B~~~-7;;;;0278;-1-1;6943;;1;3;1;1;1724;;10;7;25;9;11;12;7;5;16;17;10;15; -*08RM+~~~18BR~~+7B;;;;0278;-1-1;6943;;1;3;1;1;1725;;10;7;25;9;11;12;7;5;16;17;10;15; -*12EQ#K1C~3D~~~+7;;;;4247;-1-1;-1-1;;1;3;1;1;1727;;10;7;25;9;11;12;7;5;16;17;10;15; -*07AQ-X1~38BT4~+7F;;;;4240;5639;6539;;1;3;1;1;1727;;10;7;25;9;11;12;7;5;16;17;10;15; -a16BQ+~~~~3B~~~-7;;;;4461;-1-1;-1-1;;1;3;1;1;1727;;10;7;25;9;11;12;7;5;16;17;10;15; -a07DQ+~~~39BB~~-7B;;;;4240;5639;6816;;1;3;1;1;1728;;10;7;25;9;11;12;7;5;16;17;10;15; -a02EH#~~~~3D~~~-7;;;;4343;-1-1;-1-1;;1;3;1;1;1730;;10;7;25;9;11;12;7;5;16;17;10;15; -a05AH-V5~45BH2~-7F;;;;4519;-1-1;7970;;1;3;1;1;1732;;10;7;25;9;11;12;7;5;16;17;10;15; -*08DH#~~~45BS~~+7B;;;;4519;-1-1;7970;;1;3;1;1;1732;;10;7;25;9;11;12;7;5;16;17;10;15; -*12ET#K1F~3D~~~+7;;;;4344;-1-1;-1-1;;1;3;1;1;1734;;10;7;25;9;11;12;7;5;16;17;10;15; -*09AT#X5~41CH2~+7F;;;;4311;5516;7926;;1;3;1;1;1735;;10;7;25;9;11;12;7;5;16;17;10;15; -a17BT=~~~~2B~~~-7;;;;4584;-1-1;-1-1;;1;3;1;1;1736;;10;7;25;9;11;12;7;5;16;17;10;15; -*p25:17;;;;4883;-1-1;;;1;3;1;1;1736;;10;7;25;9;11;12;7;5;16;17;10;15; -**1set;;;;;;;;2;3;1;1;1736;;10;7;25;9;11;12;7;5;16;17;10;15; -aP08>LUp;;;;;;;;2;2;6;1;1992;;7;19;9;11;15;10;20;16;6;10;15;8; -az6>LUp;;;;;;;;2;2;6;1;1992;;7;19;9;11;15;10;20;16;6;10;15;8; -*P19>LUp;;;;;;;;2;2;6;1;1992;;7;19;9;11;15;10;20;16;6;10;15;8; -*z2>LUp;;;;;;;;2;2;6;1;1992;;7;19;9;11;15;10;20;16;6;10;15;8; -a20ST=~~~95A~~~00;;;;0471;-1-1;9769;;2;2;6;1;1992;;7;19;9;11;15;10;20;16;6;10;15;8; -*p01:00;;;;0331;-1-1;;;2;2;6;1;1994;;7;19;9;11;15;10;20;16;6;10;15;8; -*P19;;;;;;;;2;1;6;1;2011;;19;9;11;15;10;7;20;16;6;10;15;8; -*z1;;;;;;;;2;1;6;1;2011;;19;9;11;15;10;7;20;16;6;10;15;8; -aP08;;;;;;;;2;1;6;1;2011;;19;9;11;15;10;7;20;16;6;10;15;8; -az6;;;;;;;;2;1;6;1;2011;;19;9;11;15;10;7;20;16;6;10;15;8; -*19SM+~~~71C~~~+1;;;;0232;-1-1;8222;;2;1;6;1;2011;;19;9;11;15;10;7;20;16;6;10;15;8; -a20RM-~~~51CW~~-1B;;;;0232;-1-1;8222;;2;1;6;1;2012;;19;9;11;15;10;7;20;16;6;10;15;8; -a08ET#~~~~9D~~~-1;;;;2873;-1-1;-1-1;;2;1;6;1;2014;;19;9;11;15;10;7;20;16;6;10;15;8; -a10AT#X5~47AH2~-1F;;;;4323;-1-1;7179;;2;1;6;1;2015;;19;9;11;15;10;7;20;16;6;10;15;8; -ap01:01;;;;2921;-1-1;;;2;1;6;1;2016;;19;9;11;15;10;7;20;16;6;10;15;8; -aP08;;;;;;;;2;1;5;1;2035;;19;9;11;15;10;7;16;6;10;15;8;20; -az5;;;;;;;;2;1;5;1;2035;;19;9;11;15;10;7;16;6;10;15;8;20; -*P19;;;;;;;;2;1;5;1;2035;;19;9;11;15;10;7;16;6;10;15;8;20; -*z1;;;;;;;;2;1;5;1;2035;;19;9;11;15;10;7;16;6;10;15;8;20; -a02SM#~~~54A~~~00;;;;0523;-1-1;5969;;2;1;5;1;2035;;19;9;11;15;10;7;16;6;10;15;8;20; -*11RM=~~~54AR~~00F;;;;0523;-1-1;5969;;2;1;5;1;2036;;19;9;11;15;10;7;16;6;10;15;8;20; -ap01:02;;;;0545;-1-1;;;2;1;5;1;2037;;19;9;11;15;10;7;16;6;10;15;8;20; -aP08;;;;;;;;2;1;5;1;2052;;19;9;11;15;10;7;16;6;10;15;8;20; -az5;;;;;;;;2;1;5;1;2052;;19;9;11;15;10;7;16;6;10;15;8;20; -*P19;;;;;;;;2;1;5;1;2052;;19;9;11;15;10;7;16;6;10;15;8;20; -*z1;;;;;;;;2;1;5;1;2052;;19;9;11;15;10;7;16;6;10;15;8;20; -a02SM-~~~57A~~~+1;;;;0524;-1-1;7269;;2;1;5;1;2052;;19;9;11;15;10;7;16;6;10;15;8;20; -*10RM#~~~57AL~~-1B;;;;0524;-1-1;7269;;2;1;5;1;2053;;19;9;11;15;10;7;16;6;10;15;8;20; -*19EN#KSC~3B~~~-1;;;;4456;-1-1;-1-1;;2;1;5;1;2054;;19;9;11;15;10;7;16;6;10;15;8;20; -*11AN+CF~27BH4~-1F;;;;4488;5577;6666;;2;1;5;1;2055;;19;9;11;15;10;7;16;6;10;15;8;20; -a10BN/~~~~4B~~~+1;;;;4523;-1-1;-1-1;;2;1;5;1;2055;;19;9;11;15;10;7;16;6;10;15;8;20; -*08DN+~~~22CC~~-1B;;;;5612;5577;4576;;2;1;5;1;2056;;19;9;11;15;10;7;16;6;10;15;8;20; -*19ET#KBF~8B~~~-1;;;;3155;-1-1;-1-1;;2;1;5;1;2058;;19;9;11;15;10;7;16;6;10;15;8;20; -*09AT#X5~46BH2~-1F;;;;4515;5523;8041;;2;1;5;1;2059;;19;9;11;15;10;7;16;6;10;15;8;20; -a15BT=~~~~2C~~~+1;;;;4577;-1-1;-1-1;;2;1;5;1;2059;;19;9;11;15;10;7;16;6;10;15;8;20; -*p02:02;;;;3213;-1-1;;;2;1;5;1;2061;;19;9;11;15;10;7;16;6;10;15;8;20; -*P19;;;;;;;;2;6;5;1;2080;;9;11;15;10;7;19;16;6;10;15;8;20; -*z6;;;;;;;;2;6;5;1;2080;;9;11;15;10;7;19;16;6;10;15;8;20; -aP08;;;;;;;;2;6;5;1;2080;;9;11;15;10;7;19;16;6;10;15;8;20; -az5;;;;;;;;2;6;5;1;2080;;9;11;15;10;7;19;16;6;10;15;8;20; -*09SM+~~~96B~~~00;;;;0563;-1-1;8047;;2;6;5;1;2080;;9;11;15;10;7;19;16;6;10;15;8;20; -a20RM-~~~16BR~~00B;;;;0563;-1-1;8047;;2;6;5;1;2080;;9;11;15;10;7;19;16;6;10;15;8;20; -a08ET#K7F~8B~~~00;;;;3254;-1-1;-1-1;;2;6;5;1;2082;;9;11;15;10;7;19;16;6;10;15;8;20; -a10AT=X5~41AH2~00F;;;;4318;-1-1;9707;;2;6;5;1;2083;;9;11;15;10;7;19;16;6;10;15;8;20; -*p03:02;;;;0393;-1-1;;;2;6;5;1;2084;;9;11;15;10;7;19;16;6;10;15;8;20; -*P19;;;;;;;;2;6;5;1;2101;;9;11;15;10;7;19;16;6;10;15;8;20; -*z6;;;;;;;;2;6;5;1;2101;;9;11;15;10;7;19;16;6;10;15;8;20; -aP08;;;;;;;;2;6;5;1;2101;;9;11;15;10;7;19;16;6;10;15;8;20; -az5;;;;;;;;2;6;5;1;2101;;9;11;15;10;7;19;16;6;10;15;8;20; -*09SM!~~~96C~~~+1;;;;0563;-1-1;7850;;2;6;5;1;2101;;9;11;15;10;7;19;16;6;10;15;8;20; -a20RM!~~~16CL~~-1B;;;;0563;-1-1;7850;;2;6;5;1;2102;;9;11;15;10;7;19;16;6;10;15;8;20; -a08EQ#K1C~3A~~~-1;;;;4353;-1-1;-1-1;;2;6;5;1;2103;;9;11;15;10;7;19;16;6;10;15;8;20; -a15AQ#X1~34AH1~-1F;;;;4446;-1-1;6065;;2;6;5;1;2104;;9;11;15;10;7;19;16;6;10;15;8;20; -*08DQ=~~~34AS~~+1B;;;;4446;-1-1;6065;;2;6;5;1;2104;;9;11;15;10;7;19;16;6;10;15;8;20; -ap03:03;;;;1913;-1-1;;;2;6;5;1;2106;;9;11;15;10;7;19;16;6;10;15;8;20; -ac06:03;;;;1010;-1-1;9527;;2;0;0;1;2128;; -aP08;;;;;;;;2;6;4;1;2128;;9;11;15;10;7;19;3;10;15;8;20;16; -az4;;;;;;;;2;6;4;1;2128;;9;11;15;10;7;19;3;10;15;8;20;16; -*P19;;;;;;;;2;6;4;1;2128;;9;11;15;10;7;19;3;10;15;8;20;16; -*z6;;;;;;;;2;6;4;1;2128;;9;11;15;10;7;19;3;10;15;8;20;16; -a03SM!~~~99D~~~00;;;;0573;-1-1;7032;;2;6;4;1;2128;;9;11;15;10;7;19;3;10;15;8;20;16; -*09RM!~~~19DW~~00B;;;;0573;-1-1;7032;;2;6;4;1;2129;;9;11;15;10;7;19;3;10;15;8;20;16; -*19EQ#K1C~2C~~~00;;;;4471;-1-1;-1-1;;2;6;4;1;2130;;9;11;15;10;7;19;3;10;15;8;20;16; -*11AQ#X1~36BH1~00F;;;;4564;-1-1;8048;;2;6;4;1;2131;;9;11;15;10;7;19;3;10;15;8;20;16; -a20DQ=~~~26BS~~00B;;;;4564;-1-1;8048;;2;6;4;1;2131;;9;11;15;10;7;19;3;10;15;8;20;16; -*p04:03;;;;4587;-1-1;;;2;6;4;1;2133;;9;11;15;10;7;19;3;10;15;8;20;16; -*P19;;;;;;;;2;5;4;1;2150;;11;15;10;7;19;9;3;10;15;8;20;16; -*z5;;;;;;;;2;5;4;1;2150;;11;15;10;7;19;9;3;10;15;8;20;16; -aP08;;;;;;;;2;5;4;1;2150;;11;15;10;7;19;9;3;10;15;8;20;16; -az4;;;;;;;;2;5;4;1;2150;;11;15;10;7;19;9;3;10;15;8;20;16; -*08SM+~~~55B~~~+1;;;;0223;-1-1;8070;;2;5;4;1;2150;;11;15;10;7;19;9;3;10;15;8;20;16; -a20RM-~~~55BM~~-1B;;;;0223;-1-1;8070;;2;5;4;1;2151;;11;15;10;7;19;9;3;10;15;8;20;16; -a08ET#KBF~8D~~~-1;;;;2946;-1-1;-1-1;;2;5;4;1;2153;;11;15;10;7;19;9;3;10;15;8;20;16; -a10AT+X5~47BH2~-1F;;;;4316;-1-1;6978;;2;5;4;1;2154;;11;15;10;7;19;9;3;10;15;8;20;16; -*10DT-~~~47BS~~+1F;;;;4316;-1-1;6978;;2;5;4;1;2154;;11;15;10;7;19;9;3;10;15;8;20;16; -a15FH#~~~73A~~~-1F;;;;3122;;5845;;2;5;4;1;2157;;11;15;10;7;19;9;3;10;15;8;20;16; -a08ET#KBF~3B~~~-1;;;;4459;-1-1;-1-1;;2;5;4;1;2158;;11;15;10;7;19;9;3;10;15;8;20;16; -a10AT#X5~48DH4~-1F;;;;4417;-1-1;7153;;2;5;4;1;2159;;11;15;10;7;19;9;3;10;15;8;20;16; -ap04:04;;;;2947;-1-1;;;2;5;4;1;2160;;11;15;10;7;19;9;3;10;15;8;20;16; -ac20:05;;;;1010;-1-1;9523;;2;0;0;1;2179;; -aP08;;;;;;;;2;5;3;1;2179;;11;15;10;7;19;9;10;15;8;5;16;3; -az3;;;;;;;;2;5;3;1;2179;;11;15;10;7;19;9;10;15;8;5;16;3; -*P19;;;;;;;;2;5;3;1;2179;;11;15;10;7;19;9;10;15;8;5;16;3; -*z5;;;;;;;;2;5;3;1;2179;;11;15;10;7;19;9;10;15;8;5;16;3; -a10SM+~~~17A~~~00;;;;0577;-1-1;7272;;2;5;3;1;2179;;11;15;10;7;19;9;10;15;8;5;16;3; -*10RM-~~~17AW~~00F;;;;0577;-1-1;7272;;2;5;3;1;2180;;11;15;10;7;19;9;10;15;8;5;16;3; -*19EH#~~~~2D~~~00;;;;4263;-1-1;-1-1;;2;5;3;1;2181;;11;15;10;7;19;9;10;15;8;5;16;3; -*15AH-V6~21CH2~00F;;;;4380;-1-1;7929;;2;5;3;1;2183;;11;15;10;7;19;9;10;15;8;5;16;3; -a03DH#~~~21CS~~00B;;;;4380;-1-1;7929;;2;5;3;1;2183;;11;15;10;7;19;9;10;15;8;5;16;3; -a08EM#K1P~2D~~~00;;;;3767;-1-1;-1-1;;2;5;3;1;2185;;11;15;10;7;19;9;10;15;8;5;16;3; -a10AM#XP~86BH1~00B;;;;3255;-1-1;8443;;2;5;3;1;2186;;11;15;10;7;19;9;10;15;8;5;16;3; -ap04:05;;;;1657;-1-1;;;2;5;3;1;2187;;11;15;10;7;19;9;10;15;8;5;16;3; -aP08;;;;;;;;2;5;3;1;2203;;11;15;10;7;19;9;10;15;8;5;16;3; -az3;;;;;;;;2;5;3;1;2203;;11;15;10;7;19;9;10;15;8;5;16;3; -*P19;;;;;;;;2;5;3;1;2203;;11;15;10;7;19;9;10;15;8;5;16;3; -*z5;;;;;;;;2;5;3;1;2203;;11;15;10;7;19;9;10;15;8;5;16;3; -a10SM#~~~18A~~~+1;;;;0578;-1-1;7349;;2;5;3;1;2203;;11;15;10;7;19;9;10;15;8;5;16;3; -*09RM=~~~18AR~~-1B;;;;0578;-1-1;7349;;2;5;3;1;2204;;11;15;10;7;19;9;10;15;8;5;16;3; -ap04:06;;;;4107;-1-1;;;2;5;3;1;2206;;11;15;10;7;19;9;10;15;8;5;16;3; -aP08;;;;;;;;2;5;3;1;2231;;11;15;10;7;19;9;10;15;8;5;16;3; -az3;;;;;;;;2;5;3;1;2231;;11;15;10;7;19;9;10;15;8;5;16;3; -*P19;;;;;;;;2;5;3;1;2231;;11;15;10;7;19;9;10;15;8;5;16;3; -*z5;;;;;;;;2;5;3;1;2231;;11;15;10;7;19;9;10;15;8;5;16;3; -a10SM-~~~17A~~~+2;;;;0577;-1-1;7369;;2;5;3;1;2231;;11;15;10;7;19;9;10;15;8;5;16;3; -*10RM#~~~17AW~~-2F;;;;0577;-1-1;7369;;2;5;3;1;2232;;11;15;10;7;19;9;10;15;8;5;16;3; -*19EQ#K1C~3B~~~-2;;;;4456;-1-1;-1-1;;2;5;3;1;2233;;11;15;10;7;19;9;10;15;8;5;16;3; -*07AQ-X1~37AT2~-2F;;;;4546;-1-1;7075;;2;5;3;1;2234;;11;15;10;7;19;9;10;15;8;5;16;3; -a02DQ+~~~37AS~~+2B;;;;4546;-1-1;7075;;2;5;3;1;2234;;11;15;10;7;19;9;10;15;8;5;16;3; -a08ET#K1F~8A~~~+2;;;;2959;-1-1;-1-1;;2;5;3;1;2236;;11;15;10;7;19;9;10;15;8;5;16;3; -a05AT+X5~46CH2~+2F;;;;4315;-1-1;8150;;2;5;3;1;2237;;11;15;10;7;19;9;10;15;8;5;16;3; -*09DT-~~~46CS~~-2B;;;;4315;-1-1;8150;;2;5;3;1;2238;;11;15;10;7;19;9;10;15;8;5;16;3; -a15AO+~~~34BT1~+2F;;;;4550;-1-1;5572;;2;5;3;1;2240;;11;15;10;7;19;9;10;15;8;5;16;3; -*10DO-~~~34BS~~-2F;;;;4550;-1-1;5572;;2;5;3;1;2240;;11;15;10;7;19;9;10;15;8;5;16;3; -a03FH+~~~49C~~~+2B;;;;4528;;6827;;2;5;3;1;2241;;11;15;10;7;19;9;10;15;8;5;16;3; -a08EN#KBC~3D~~~+2;;;;4243;-1-1;-1-1;;2;5;3;1;2243;;11;15;10;7;19;9;10;15;8;5;16;3; -a15AN-CF~28AP2~+2F;;;;4684;-1-1;7043;;2;5;3;1;2244;;11;15;10;7;19;9;10;15;8;5;16;3; -*19DN+~~~28AS~~-2B;;;;4684;-1-1;7043;;2;5;3;1;2245;;11;15;10;7;19;9;10;15;8;5;16;3; -*08EH#~~~~7B~~~-2;;;;3230;-1-1;-1-1;;2;5;3;1;2247;;11;15;10;7;19;9;10;15;8;5;16;3; -*10AH+V5~41CP2~-2F;;;;4321;-1-1;8127;;2;5;3;1;2248;;11;15;10;7;19;9;10;15;8;5;16;3; -a10DH-~~~41CS~~+2B;;;;4321;-1-1;8127;;2;5;3;1;2249;;11;15;10;7;19;9;10;15;8;5;16;3; -*09FH+~~~68B~~~-2B;;;;1857;;6742;;2;5;3;1;2252;;11;15;10;7;19;9;10;15;8;5;16;3; -*19ET#K1B~2C~~~-2;;;;4570;-1-1;-1-1;;2;5;3;1;2253;;11;15;10;7;19;9;10;15;8;5;16;3; -*15AT#X6~25CH4~-2F;;;;4484;5484;8084;;2;5;3;1;2254;;11;15;10;7;19;9;10;15;8;5;16;3; -a15BT=~~~~4C~~~+2;;;;4616;-1-1;-1-1;;2;5;3;1;2254;;11;15;10;7;19;9;10;15;8;5;16;3; -*p05:06;;;;1807;-1-1;;;2;5;3;1;2255;;11;15;10;7;19;9;10;15;8;5;16;3; -*c15:12;;;;1010;-1-1;9090;;2;0;0;1;2281;; -*c19:25;;;;1010;-1-1;9880;;2;0;0;1;2281;; -*P25;;;;;;;;2;4;3;1;2281;;12;10;7;25;9;11;10;15;8;5;16;3; -*z4;;;;;;;;2;4;3;1;2281;;12;10;7;25;9;11;10;15;8;5;16;3; -aP08;;;;;;;;2;4;3;1;2281;;12;10;7;25;9;11;10;15;8;5;16;3; -az3;;;;;;;;2;4;3;1;2281;;12;10;7;25;9;11;10;15;8;5;16;3; -*12SM+~~~56C~~~-1;;;;0220;-1-1;7957;;2;4;3;1;2281;;12;10;7;25;9;11;10;15;8;5;16;3; -a03RM-~~~56CW~~+1B;;;;0220;-1-1;7957;;2;4;3;1;2282;;12;10;7;25;9;11;10;15;8;5;16;3; -a08ET#K1B~8B~~~+1;;;;3256;-1-1;-1-1;;2;4;3;1;2284;;12;10;7;25;9;11;10;15;8;5;16;3; -a10AT#X8~98BH4~+1B;;;;3273;5551;6838;;2;4;3;1;2285;;12;10;7;25;9;11;10;15;8;5;16;3; -*07BT=~~~~3C~~~-1;;;;4549;-1-1;-1-1;;2;4;3;1;2285;;12;10;7;25;9;11;10;15;8;5;16;3; -ap05:07;;;;2793;-1-1;;;2;4;3;1;2286;;12;10;7;25;9;11;10;15;8;5;16;3; -aP08;;;;;;;;2;4;2;1;2305;;12;10;7;25;9;11;15;8;5;16;3;10; -az2;;;;;;;;2;4;2;1;2305;;12;10;7;25;9;11;15;8;5;16;3;10; -*P25;;;;;;;;2;4;2;1;2305;;12;10;7;25;9;11;15;8;5;16;3;10; -*z4;;;;;;;;2;4;2;1;2305;;12;10;7;25;9;11;15;8;5;16;3;10; -a15SM+~~~76B~~~+2;;;;0526;-1-1;8138;;2;4;2;1;2305;;12;10;7;25;9;11;15;8;5;16;3;10; -*08RM-~~~56BL~~-2B;;;;0526;-1-1;8138;;2;4;2;1;2306;;12;10;7;25;9;11;15;8;5;16;3;10; -*12EH#~~~~2A~~~-2;;;;3986;-1-1;-1-1;;2;4;2;1;2308;;12;10;7;25;9;11;15;8;5;16;3;10; -*10AH#V5~41CP2~-2F;;;;4519;5523;8031;;2;4;2;1;2309;;12;10;7;25;9;11;15;8;5;16;3;10; -a16BH!~~~~2C~~~+2;;;;4577;-1-1;-1-1;;2;4;2;1;2310;;12;10;7;25;9;11;15;8;5;16;3;10; -a05DH=~~~43DB~~+2F;;;;4519;5523;5858;;2;4;2;1;2311;;12;10;7;25;9;11;15;8;5;16;3;10; -*p06:07;;;;2645;-1-1;;;2;4;2;1;2312;;12;10;7;25;9;11;15;8;5;16;3;10; -*P25;;;;;;;;2;3;2;1;2331;;10;7;25;9;11;12;15;8;5;16;3;10; -*z3;;;;;;;;2;3;2;1;2331;;10;7;25;9;11;12;15;8;5;16;3;10; -aP08;;;;;;;;2;3;2;1;2331;;10;7;25;9;11;12;15;8;5;16;3;10; -az2;;;;;;;;2;3;2;1;2331;;10;7;25;9;11;12;15;8;5;16;3;10; -*10SM+~~~58D~~~-1;;;;0224;-1-1;7556;;2;3;2;1;2331;;10;7;25;9;11;12;15;8;5;16;3;10; -a10RM-~~~58DL~~+1B;;;;0224;-1-1;7556;;2;3;2;1;2332;;10;7;25;9;11;12;15;8;5;16;3;10; -a08ET#~~~~8B~~~+1;;;;3162;-1-1;-1-1;;2;3;2;1;2334;;10;7;25;9;11;12;15;8;5;16;3;10; -a05AT=X5~45AH2~+1F;;;;4419;-1-1;9872;;2;3;2;1;2335;;10;7;25;9;11;12;15;8;5;16;3;10; -*p07:07;;;;0228;-1-1;;;2;3;2;1;2336;;10;7;25;9;11;12;15;8;5;16;3;10; -*P25;;;;;;;;2;3;2;1;2356;;10;7;25;9;11;12;15;8;5;16;3;10; -*z3;;;;;;;;2;3;2;1;2356;;10;7;25;9;11;12;15;8;5;16;3;10; -aP08;;;;;;;;2;3;2;1;2356;;10;7;25;9;11;12;15;8;5;16;3;10; -az2;;;;;;;;2;3;2;1;2356;;10;7;25;9;11;12;15;8;5;16;3;10; -*10SM-~~~75B~~~00;;;;0230;-1-1;8171;;2;3;2;1;2356;;10;7;25;9;11;12;15;8;5;16;3;10; -a03RM+~~~55BR~~00B;;;;0230;-1-1;8171;;2;3;2;1;2357;;10;7;25;9;11;12;15;8;5;16;3;10; -a08ET#K1F~3D~~~00;;;;4344;-1-1;-1-1;;2;3;2;1;2358;;10;7;25;9;11;12;15;8;5;16;3;10; -a05AT+X5~41CT1~00F;;;;4415;5517;8023;;2;3;2;1;2359;;10;7;25;9;11;12;15;8;5;16;3;10; -*25BT/~~~~2B~~~00;;;;4583;-1-1;-1-1;;2;3;2;1;2360;;10;7;25;9;11;12;15;8;5;16;3;10; -a03DT+~~~44AC~~00B;;;;5685;4583;5975;;2;3;2;1;2360;;10;7;25;9;11;12;15;8;5;16;3;10; -a08EH#~~~~2A~~~00;;;;4285;-1-1;-1-1;;2;3;2;1;2362;;10;7;25;9;11;12;15;8;5;16;3;10; -a10AH+VP~89DH2~00B;;;;3259;-1-1;7122;;2;3;2;1;2363;;10;7;25;9;11;12;15;8;5;16;3;10; -*12DH-~~~89DS~~00B;;;;3259;-1-1;7122;;2;3;2;1;2364;;10;7;25;9;11;12;15;8;5;16;3;10; -a02FH!~~~18C~~~00B;;;;2163;;6861;;2;3;2;1;2369;;10;7;25;9;11;12;15;8;5;16;3;10; -a08ET#K7F~3A~~~00;;;;3962;-1-1;-1-1;;2;3;2;1;2371;;10;7;25;9;11;12;15;8;5;16;3;10; -a05AT#X5~46BH2~00F;;;;4517;5425;8047;;2;3;2;1;2372;;10;7;25;9;11;12;15;8;5;16;3;10; -*07BT=~~~~2C~~~00;;;;4675;-1-1;-1-1;;2;3;2;1;2372;;10;7;25;9;11;12;15;8;5;16;3;10; -ap07:08;;;;4876;-1-1;;;2;3;2;1;2372;;10;7;25;9;11;12;15;8;5;16;3;10; -ac08:07;;;;1010;-1-1;9090;;2;0;0;1;2405;; -ac03:06;;;;1010;-1-1;9522;;2;0;0;1;2405;; -aP07;;;;;;;;2;3;1;1;2405;;10;7;25;9;11;12;7;5;16;6;10;15; -az1;;;;;;;;2;3;1;1;2405;;10;7;25;9;11;12;7;5;16;6;10;15; -*P25;;;;;;;;2;3;1;1;2405;;10;7;25;9;11;12;7;5;16;6;10;15; -*z3;;;;;;;;2;3;1;1;2405;;10;7;25;9;11;12;7;5;16;6;10;15; -a07SM-~~~19D~~~+1;;;;0578;-1-1;7334;;2;3;1;1;2405;;10;7;25;9;11;12;7;5;16;6;10;15; -*10RM#~~~19DL~~-1B;;;;0578;-1-1;7334;;2;3;1;1;2406;;10;7;25;9;11;12;7;5;16;6;10;15; -*12EQ#K1C~3B~~~-1;;;;4455;-1-1;-1-1;;2;3;1;1;2407;;10;7;25;9;11;12;7;5;16;6;10;15; -*07AQ-X1~37AH1~-1F;;;;4545;-1-1;7273;;2;3;1;1;2408;;10;7;25;9;11;12;7;5;16;6;10;15; -a02DQ+~~~37AS~~+1B;;;;4545;-1-1;7273;;2;3;1;1;2408;;10;7;25;9;11;12;7;5;16;6;10;15; -a15EH#~~~~4B~~~+1;;;;4525;-1-1;-1-1;;2;3;1;1;2410;;10;7;25;9;11;12;7;5;16;6;10;15; -a05AH=V5~45CP1~+1F;;;;3215;-1-1;8487;;2;3;1;1;2412;;10;7;25;9;11;12;7;5;16;6;10;15; -*p08:08;;;;1613;-1-1;;;2;3;1;1;2413;;10;7;25;9;11;12;7;5;16;6;10;15; -*P25;;;;;;;;2;2;1;1;2429;;7;25;9;11;12;10;7;5;16;6;10;15; -*z2;;;;;;;;2;2;1;1;2429;;7;25;9;11;12;10;7;5;16;6;10;15; -aP07;;;;;;;;2;2;1;1;2429;;7;25;9;11;12;10;7;5;16;6;10;15; -az1;;;;;;;;2;2;1;1;2429;;7;25;9;11;12;10;7;5;16;6;10;15; -*07SM-~~~95B~~~00;;;;0272;-1-1;8072;;2;2;1;1;2429;;7;25;9;11;12;10;7;5;16;6;10;15; -a10RM+~~~15BM~~00B;;;;0272;-1-1;8072;;2;2;1;1;2430;;7;25;9;11;12;10;7;5;16;6;10;15; -a07ET#K1B~3D~~~00;;;;4343;-1-1;-1-1;;2;2;1;1;2432;;7;25;9;11;12;10;7;5;16;6;10;15; -a06AT=X6~26AH2~00F;;;;4488;-1-1;9942;;2;2;1;1;2433;;7;25;9;11;12;10;7;5;16;6;10;15; -*p09:08;;;;0158;-1-1;;;2;2;1;1;2434;;7;25;9;11;12;10;7;5;16;6;10;15; -*P25;;;;;;;;2;2;1;1;2449;;7;25;9;11;12;10;7;5;16;6;10;15; -*z2;;;;;;;;2;2;1;1;2449;;7;25;9;11;12;10;7;5;16;6;10;15; -aP07;;;;;;;;2;2;1;1;2449;;7;25;9;11;12;10;7;5;16;6;10;15; -az1;;;;;;;;2;2;1;1;2449;;7;25;9;11;12;10;7;5;16;6;10;15; -*07SM/~~~95B~~~+1;;;;0171;-1-1;8175;;2;2;1;1;2449;;7;25;9;11;12;10;7;5;16;6;10;15; -a10RM/~~~15BL~~-1B;;;;0171;-1-1;8175;;2;2;1;1;2450;;7;25;9;11;12;10;7;5;16;6;10;15; -*11AO=~~~34CH0~+1F;;;;4547;-1-1;5588;;2;2;1;1;2451;;7;25;9;11;12;10;7;5;16;6;10;15; -ap09:09;;;;4512;-1-1;;;2;2;1;1;2452;;7;25;9;11;12;10;7;5;16;6;10;15; -ac05:20;;;;1010;-1-1;9527;;2;0;0;1;2472;; -aP07;;;;;;;;2;2;6;1;2472;;7;25;9;11;12;10;20;16;6;10;15;7; -az6;;;;;;;;2;2;6;1;2472;;7;25;9;11;12;10;20;16;6;10;15;7; -*P25;;;;;;;;2;2;6;1;2472;;7;25;9;11;12;10;20;16;6;10;15;7; -*z2;;;;;;;;2;2;6;1;2472;;7;25;9;11;12;10;20;16;6;10;15;7; -a20ST-~~~95B~~~00;;;;0573;-1-1;7768;;2;2;6;1;2472;;7;25;9;11;12;10;20;16;6;10;15;7; -*10RT#~~~15BM~~00B;;;;0573;-1-1;7768;;2;2;6;1;2473;;7;25;9;11;12;10;20;16;6;10;15;7; -*12ET#K1F~3B~~~00;;;;4457;-1-1;-1-1;;2;2;6;1;2475;;7;25;9;11;12;10;20;16;6;10;15;7; -*09AT#X5~48DH4~00F;;;;4519;-1-1;7455;;2;2;6;1;2475;;7;25;9;11;12;10;20;16;6;10;15;7; -a02DT=~~~48DS~~00B;;;;4519;-1-1;7455;;2;2;6;1;2476;;7;25;9;11;12;10;20;16;6;10;15;7; -*p10:09;;;;2068;-1-1;;;2;2;6;1;2476;;7;25;9;11;12;10;20;16;6;10;15;7; -*c12:15;;;;1010;-1-1;9090;;2;0;0;1;2502;; -*c25:19;;;;1010;-1-1;9670;;2;0;0;1;2502;; -*P19;;;;;;;;2;1;6;1;2502;;19;9;11;15;10;7;20;16;6;10;15;7; -*z1;;;;;;;;2;1;6;1;2502;;19;9;11;15;10;7;20;16;6;10;15;7; -aP07;;;;;;;;2;1;6;1;2502;;19;9;11;15;10;7;20;16;6;10;15;7; -az6;;;;;;;;2;1;6;1;2502;;19;9;11;15;10;7;20;16;6;10;15;7; -*19SM+~~~71C~~~+1;;;;0430;-1-1;8229;;2;1;6;1;2502;;19;9;11;15;10;7;20;16;6;10;15;7; -a20RM-~~~51CR~~-1B;;;;0430;-1-1;8229;;2;1;6;1;2503;;19;9;11;15;10;7;20;16;6;10;15;7; -a02EH#~~~~1C~~~-1;;;;1971;-1-1;-1-1;;2;1;6;1;2505;;19;9;11;15;10;7;20;16;6;10;15;7; -a10AH-V5~47AH2~-1F;;;;2928;-1-1;7576;;2;1;6;1;2507;;19;9;11;15;10;7;20;16;6;10;15;7; -*08DH+~~~77AS~~+1B;;;;2928;-1-1;7576;;2;1;6;1;2507;;19;9;11;15;10;7;20;16;6;10;15;7; -*19EH#~~~~8A~~~+1;;;;2861;-1-1;-1-1;;2;1;6;1;2509;;19;9;11;15;10;7;20;16;6;10;15;7; -*09AH-V5~46BP2~+1F;;;;4111;-1-1;8343;;2;1;6;1;2511;;19;9;11;15;10;7;20;16;6;10;15;7; -a20DH+~~~46BS~~-1B;;;;4111;-1-1;8343;;2;1;6;1;2512;;19;9;11;15;10;7;20;16;6;10;15;7; -a02EO#~~~~6C~~~-1;;;;1544;-1-1;-1-1;;2;1;6;1;2514;;19;9;11;15;10;7;20;16;6;10;15;7; -a10AO-~~~88AP2~-1F;;;;3440;5545;7049;;2;1;6;1;2516;;19;9;11;15;10;7;20;16;6;10;15;7; -*11BO+~~~~3B~~~+1;;;;4555;-1-1;-1-1;;2;1;6;1;2516;;19;9;11;15;10;7;20;16;6;10;15;7; -a16DO-~~~83BC~~-1F;;;;6660;4555;5549;;2;1;6;1;2516;;19;9;11;15;10;7;20;16;6;10;15;7; -*08FH#~~~25B~~~+1B;;;;3763;;8080;;2;1;6;1;2520;;19;9;11;15;10;7;20;16;6;10;15;7; -*19ET#K7B~3A~~~+1;;;;4358;-1-1;-1-1;;2;1;6;1;2522;;19;9;11;15;10;7;20;16;6;10;15;7; -*15AT#X6~29DH4~+1F;;;;4483;-1-1;7229;;2;1;6;1;2523;;19;9;11;15;10;7;20;16;6;10;15;7; -a07DT=~~~29DS~~-1B;;;;4483;-1-1;7229;;2;1;6;1;2523;;19;9;11;15;10;7;20;16;6;10;15;7; -*p11:09;;;;-288;-1-1;;;2;1;6;1;2525;;19;9;11;15;10;7;20;16;6;10;15;7; -*P19;;;;;;;;2;1;6;1;2541;;19;9;11;15;10;7;20;16;6;10;15;7; -*z1;;;;;;;;2;1;6;1;2541;;19;9;11;15;10;7;20;16;6;10;15;7; -aP07;;;;;;;;2;1;6;1;2541;;19;9;11;15;10;7;20;16;6;10;15;7; -az6;;;;;;;;2;1;6;1;2541;;19;9;11;15;10;7;20;16;6;10;15;7; -*19SM-~~~71C~~~+2;;;;0530;-1-1;8125;;2;1;6;1;2541;;19;9;11;15;10;7;20;16;6;10;15;7; -a20RM+~~~51CM~~-2B;;;;0530;-1-1;8125;;2;1;6;1;2542;;19;9;11;15;10;7;20;16;6;10;15;7; -a07EO#K1S~3D~~~-2;;;;4043;-1-1;-1-1;;2;1;6;1;2544;;19;9;11;15;10;7;20;16;6;10;15;7; -a07AO+PP~33B~~~-2B;;;;4043;-1-1;5541;;2;1;6;1;2544;;19;9;11;15;10;7;20;16;6;10;15;7; -*11DO-~~~33BS~~+2F;;;;4043;-1-1;5541;;2;1;6;1;2544;;19;9;11;15;10;7;20;16;6;10;15;7; -*09AO#~~~48AP1~+2F;;;;4531;-1-1;7639;;2;1;6;1;2545;;19;9;11;15;10;7;20;16;6;10;15;7; -a20DO=~~~48AS~~-2B;;;;4531;-1-1;7639;;2;1;6;1;2546;;19;9;11;15;10;7;20;16;6;10;15;7; -*p12:09;;;;0226;-1-1;;;2;1;6;1;2546;;19;9;11;15;10;7;20;16;6;10;15;7; -*P19;;;;;;;;2;1;6;1;2724;;19;9;11;15;10;7;20;16;6;10;15;7; -*z1;;;;;;;;2;1;6;1;2724;;19;9;11;15;10;7;20;16;6;10;15;7; -aP07;;;;;;;;2;1;6;1;2724;;19;9;11;15;10;7;20;16;6;10;15;7; -az6;;;;;;;;2;1;6;1;2724;;19;9;11;15;10;7;20;16;6;10;15;7; -*19SM-~~~76B~~~+3;;;;0229;-1-1;8447;;2;1;6;1;2724;;19;9;11;15;10;7;20;16;6;10;15;7; -a02RM+~~~56BL~~-3B;;;;0229;-1-1;8447;;2;1;6;1;2725;;19;9;11;15;10;7;20;16;6;10;15;7; -a07EQ#K1C~3A~~~-3;;;;4256;-1-1;-1-1;;2;1;6;1;2726;;19;9;11;15;10;7;20;16;6;10;15;7; -a16AQ-X1~38BH1~-3F;;;;4346;5446;6547;;2;1;6;1;2727;;19;9;11;15;10;7;20;16;6;10;15;7; -*11BQ+~~~~3B~~~+3;;;;4654;-1-1;-1-1;;2;1;6;1;2727;;19;9;11;15;10;7;20;16;6;10;15;7; -*08DQ#~~~37BB~~+3B;;;;4346;5446;6971;;2;1;6;1;2728;;19;9;11;15;10;7;20;16;6;10;15;7; -*19EQ#K1C~3A~~~+3;;;;4260;-1-1;-1-1;;2;1;6;1;2729;;19;9;11;15;10;7;20;16;6;10;15;7; -*11AQ#X1~35CP1~+3F;;;;4451;-1-1;8584;;2;1;6;1;2730;;19;9;11;15;10;7;20;16;6;10;15;7; -*p13:09;;;;1516;-1-1;;;2;1;6;1;2730;;19;9;11;15;10;7;20;16;6;10;15;7; -*P19;;;;;;;;2;1;6;1;2763;;19;9;11;15;10;7;20;16;6;10;15;7; -*z1;;;;;;;;2;1;6;1;2763;;19;9;11;15;10;7;20;16;6;10;15;7; -aP07;;;;;;;;2;1;6;1;2763;;19;9;11;15;10;7;20;16;6;10;15;7; -az6;;;;;;;;2;1;6;1;2763;;19;9;11;15;10;7;20;16;6;10;15;7; -*19SM!~~~76B~~~+4;;;;0031;-1-1;8442;;2;1;6;1;2763;;19;9;11;15;10;7;20;16;6;10;15;7; -a02RM!~~~56BR~~-4B;;;;0031;-1-1;8442;;2;1;6;1;2765;;19;9;11;15;10;7;20;16;6;10;15;7; -a07ET#K1F~3A~~~-4;;;;3855;-1-1;-1-1;;2;1;6;1;2766;;19;9;11;15;10;7;20;16;6;10;15;7; -a10AT-X5~49AH2~-4F;;;;4317;-1-1;7215;;2;1;6;1;2767;;19;9;11;15;10;7;20;16;6;10;15;7; -*19DT+~~~49AS~~+4B;;;;4317;-1-1;7215;;2;1;6;1;2768;;19;9;11;15;10;7;20;16;6;10;15;7; -*08EH#~~~~3A~~~+4;;;;4357;-1-1;-1-1;;2;1;6;1;2770;;19;9;11;15;10;7;20;16;6;10;15;7; -*02AH#V8~93DP2~+4M;;;;4488;-1-1;5959;;2;1;6;1;2772;;19;9;11;15;10;7;20;16;6;10;15;7; -*p14:09;;;;4141;-1-1;;;2;1;6;1;2773;;19;9;11;15;10;7;20;16;6;10;15;7; -*P19;;;;;;;;2;1;6;1;2789;;19;9;11;15;10;7;20;16;6;10;15;7; -*z1;;;;;;;;2;1;6;1;2789;;19;9;11;15;10;7;20;16;6;10;15;7; -aP07;;;;;;;;2;1;6;1;2789;;19;9;11;15;10;7;20;16;6;10;15;7; -az6;;;;;;;;2;1;6;1;2789;;19;9;11;15;10;7;20;16;6;10;15;7; -*19SM!~~~79A~~~+5;;;;0031;-1-1;7317;;2;1;6;1;2789;;19;9;11;15;10;7;20;16;6;10;15;7; -a20RM!~~~59AW~~-5B;;;;0031;-1-1;7317;;2;1;6;1;2791;;19;9;11;15;10;7;20;16;6;10;15;7; -a07EQ#K7C~8B~~~-5;;;;3655;-1-1;-1-1;;2;1;6;1;2792;;19;9;11;15;10;7;20;16;6;10;15;7; -a16AQ-X7~49DH0~-5F;;;;4237;-1-1;7123;;2;1;6;1;2793;;19;9;11;15;10;7;20;16;6;10;15;7; -*19DQ+~~~39DS~~+5B;;;;4237;-1-1;7123;;2;1;6;1;2793;;19;9;11;15;10;7;20;16;6;10;15;7; -*11EH#~~~~2C~~~+5;;;;4471;-1-1;-1-1;;2;1;6;1;2795;;19;9;11;15;10;7;20;16;6;10;15;7; -*02AH#V8~96CT2~+5M;;;;4481;-1-1;8361;;2;1;6;1;2796;;19;9;11;15;10;7;20;16;6;10;15;7; -*p15:09;;;;1739;-1-1;;;2;1;6;1;2797;;19;9;11;15;10;7;20;16;6;10;15;7; -ac16:12;;;;1010;-1-1;10066;;2;0;0;1;2822;; -*P19;;;;;;;;2;1;6;1;2822;;19;9;11;15;10;7;20;12;6;10;15;7; -*z1;;;;;;;;2;1;6;1;2822;;19;9;11;15;10;7;20;12;6;10;15;7; -aP07;;;;;;;;2;1;6;1;2822;;19;9;11;15;10;7;20;12;6;10;15;7; -az6;;;;;;;;2;1;6;1;2822;;19;9;11;15;10;7;20;12;6;10;15;7; -*19SM!~~~72A~~~+6;;;;0034;-1-1;5917;;2;1;6;1;2822;;19;9;11;15;10;7;20;12;6;10;15;7; -a06RM!~~~52AM~~-6F;;;;0034;-1-1;5917;;2;1;6;1;2823;;19;9;11;15;10;7;20;12;6;10;15;7; -a07ET#K1B~2D~~~-6;;;;4275;-1-1;-1-1;;2;1;6;1;2825;;19;9;11;15;10;7;20;12;6;10;15;7; -a06AT-X6~26BH2~-6F;;;;4584;5571;8039;;2;1;6;1;2826;;19;9;11;15;10;7;20;12;6;10;15;7; -*11BT+~~~~4B~~~+6;;;;4529;-1-1;-1-1;;2;1;6;1;2826;;19;9;11;15;10;7;20;12;6;10;15;7; -*10DT#~~~28AB~~+6B;;;;4584;5571;7344;;2;1;6;1;2827;;19;9;11;15;10;7;20;12;6;10;15;7; -*19ET#K1F~3A~~~+6;;;;4355;-1-1;-1-1;;2;1;6;1;2829;;19;9;11;15;10;7;20;12;6;10;15;7; -*09AT#X5~48AH4~+6F;;;;4411;-1-1;7545;;2;1;6;1;2830;;19;9;11;15;10;7;20;12;6;10;15;7; -*p16:09;;;;2555;-1-1;;;2;1;6;1;2830;;19;9;11;15;10;7;20;12;6;10;15;7; -*P19;;;;;;;;2;1;6;1;2942;;19;9;11;15;10;7;20;12;6;10;15;7; -*z1;;;;;;;;2;1;6;1;2942;;19;9;11;15;10;7;20;12;6;10;15;7; -aP07;;;;;;;;2;1;6;1;2942;;19;9;11;15;10;7;20;12;6;10;15;7; -az6;;;;;;;;2;1;6;1;2942;;19;9;11;15;10;7;20;12;6;10;15;7; -*19SM-~~~71C~~~+7;;;;0535;-1-1;8125;;2;1;6;1;2942;;19;9;11;15;10;7;20;12;6;10;15;7; -a20RM#~~~51CR~~-7B;;;;0535;-1-1;8125;;2;1;6;1;2943;;19;9;11;15;10;7;20;12;6;10;15;7; -a07EQ#K7C~3C~~~-7;;;;4449;-1-1;-1-1;;2;1;6;1;2945;;19;9;11;15;10;7;20;12;6;10;15;7; -a12AQ+X7~48CH2~-7F;;;;4432;-1-1;6860;;2;1;6;1;2946;;19;9;11;15;10;7;20;12;6;10;15;7; -*08DQ-~~~48CS~~+7B;;;;4432;-1-1;6860;;2;1;6;1;2946;;19;9;11;15;10;7;20;12;6;10;15;7; -a20FH#~~~86B~~~-7B;;;;2455;;7945;;2;1;6;1;2950;;19;9;11;15;10;7;20;12;6;10;15;7; -a07ET#K1F~3A~~~-7;;;;4357;-1-1;-1-1;;2;1;6;1;2951;;19;9;11;15;10;7;20;12;6;10;15;7; -a10AT#X5~41CH4~-7F;;;;4215;5521;7830;;2;1;6;1;2952;;19;9;11;15;10;7;20;12;6;10;15;7; -*02BT=~~~~2C~~~+7;;;;4579;-1-1;-1-1;;2;1;6;1;2952;;19;9;11;15;10;7;20;12;6;10;15;7; -ap16:10;;;;2993;-1-1;;;2;1;6;1;2953;;19;9;11;15;10;7;20;12;6;10;15;7; -aP07;;;;;;;;2;1;5;1;2972;;19;9;11;15;10;7;12;6;10;15;7;20; -az5;;;;;;;;2;1;5;1;2972;;19;9;11;15;10;7;12;6;10;15;7;20; -*P19;;;;;;;;2;1;5;1;2972;;19;9;11;15;10;7;12;6;10;15;7;20; -*z1;;;;;;;;2;1;5;1;2972;;19;9;11;15;10;7;12;6;10;15;7;20; -a02SM-~~~77A~~~-6;;;;0526;-1-1;7464;;2;1;5;1;2972;;19;9;11;15;10;7;12;6;10;15;7;20; -*10RM+~~~57AL~~+6B;;;;0526;-1-1;7464;;2;1;5;1;2973;;19;9;11;15;10;7;12;6;10;15;7;20; -*19EN#KSC~2D~~~+6;;;;4267;-1-1;-1-1;;2;1;5;1;2975;;19;9;11;15;10;7;12;6;10;15;7;20; -*11AN#CF~27BH4~+6F;;;;4485;5578;6671;;2;1;5;1;2976;;19;9;11;15;10;7;12;6;10;15;7;20; -a10BN=~~~~4B~~~-6;;;;4522;-1-1;-1-1;;2;1;5;1;2976;;19;9;11;15;10;7;12;6;10;15;7;20; -*p17:10;;;;4108;-1-1;;;2;1;5;1;2976;;19;9;11;15;10;7;12;6;10;15;7;20; -*P19;;;;;;;;2;6;5;1;2994;;9;11;15;10;7;19;12;6;10;15;7;20; -*z6;;;;;;;;2;6;5;1;2994;;9;11;15;10;7;19;12;6;10;15;7;20; -aP07;;;;;;;;2;6;5;1;2994;;9;11;15;10;7;19;12;6;10;15;7;20; -az5;;;;;;;;2;6;5;1;2994;;9;11;15;10;7;19;12;6;10;15;7;20; -*09SM!~~~96B~~~+7;;;;0261;-1-1;8043;;2;6;5;1;2994;;9;11;15;10;7;19;12;6;10;15;7;20; -a20RM!~~~66BW~~-7B;;;;0261;-1-1;8043;;2;6;5;1;2995;;9;11;15;10;7;19;12;6;10;15;7;20; -a07EO#K1S~2C~~~-7;;;;4470;-1-1;-1-1;;2;6;5;1;2997;;9;11;15;10;7;19;12;6;10;15;7;20; -a07AO-PP~33D~~~-7B;;;;4470;-1-1;6161;;2;6;5;1;2997;;9;11;15;10;7;19;12;6;10;15;7;20; -*08DO+~~~23DS~~+7B;;;;4470;-1-1;6161;;2;6;5;1;2998;;9;11;15;10;7;19;12;6;10;15;7;20; -*19EH#~~~~2D~~~+7;;;;3864;-1-1;-1-1;;2;6;5;1;2999;;9;11;15;10;7;19;12;6;10;15;7;20; -*10AH+V5~46BP2~+7F;;;;4410;5520;8045;;2;6;5;1;3000;;9;11;15;10;7;19;12;6;10;15;7;20; -a15BH-~~~~2C~~~-7;;;;4580;-1-1;-1-1;;2;6;5;1;3001;;9;11;15;10;7;19;12;6;10;15;7;20; -a10DH-~~~43DB~~-7F;;;;4410;5520;5856;;2;6;5;1;3001;;9;11;15;10;7;19;12;6;10;15;7;20; -*09FH+~~~79D~~~+7B;;;;3222;;7225;;2;6;5;1;3006;;9;11;15;10;7;19;12;6;10;15;7;20; -*19ET#K1F~2C~~~+7;;;;4463;-1-1;-1-1;;2;6;5;1;3007;;9;11;15;10;7;19;12;6;10;15;7;20; -*10AT#X5~41CH4~+7F;;;;4515;5417;8122;;2;6;5;1;3008;;9;11;15;10;7;19;12;6;10;15;7;20; -a06BT=~~~~2B~~~-7;;;;4683;-1-1;-1-1;;2;6;5;1;3008;;9;11;15;10;7;19;12;6;10;15;7;20; -*p18:10;;;;4883;-1-1;;;2;6;5;1;3008;;9;11;15;10;7;19;12;6;10;15;7;20; -*P19;;;;;;;;2;6;5;1;3026;;9;11;15;10;7;19;12;6;10;15;7;20; -*z6;;;;;;;;2;6;5;1;3026;;9;11;15;10;7;19;12;6;10;15;7;20; -aP07;;;;;;;;2;6;5;1;3026;;9;11;15;10;7;19;12;6;10;15;7;20; -az5;;;;;;;;2;6;5;1;3026;;9;11;15;10;7;19;12;6;10;15;7;20; -*09SM!~~~97A~~~+8;;;;0163;-1-1;7564;;2;6;5;1;3026;;9;11;15;10;7;19;12;6;10;15;7;20; -a10RM!~~~17AR~~-8F;;;;0163;-1-1;7564;;2;6;5;1;3027;;9;11;15;10;7;19;12;6;10;15;7;20; -a07ET#K1B~2D~~~-8;;;;4379;-1-1;-1-1;;2;6;5;1;3029;;9;11;15;10;7;19;12;6;10;15;7;20; -a06AT-X6~26CH2~-8F;;;;4489;-1-1;7850;;2;6;5;1;3030;;9;11;15;10;7;19;12;6;10;15;7;20; -*09DT+~~~26CS~~+8B;;;;4489;-1-1;7850;;2;6;5;1;3031;;9;11;15;10;7;19;12;6;10;15;7;20; -*19ET#~~~~8B~~~+8;;;;3255;-1-1;-1-1;;2;6;5;1;3032;;9;11;15;10;7;19;12;6;10;15;7;20; -*10AT#X5~41CP2~+8F;;;;4415;5517;7921;;2;6;5;1;3034;;9;11;15;10;7;19;12;6;10;15;7;20; -a06BT!~~~~2B~~~-8;;;;4583;-1-1;-1-1;;2;6;5;1;3034;;9;11;15;10;7;19;12;6;10;15;7;20; -a20DT=~~~46BB~~-8B;;;;4415;5517;8142;;2;6;5;1;3034;;9;11;15;10;7;19;12;6;10;15;7;20; -*p19:10;;;;0570;-1-1;;;2;6;5;1;3034;;9;11;15;10;7;19;12;6;10;15;7;20; -*P19;;;;;;;;2;6;5;1;3052;;9;11;15;10;7;19;12;6;10;15;7;20; -*z6;;;;;;;;2;6;5;1;3052;;9;11;15;10;7;19;12;6;10;15;7;20; -aP07;;;;;;;;2;6;5;1;3052;;9;11;15;10;7;19;12;6;10;15;7;20; -az5;;;;;;;;2;6;5;1;3052;;9;11;15;10;7;19;12;6;10;15;7;20; -*09SQ-~~~96C~~~+9;;;;0161;-1-1;8157;;2;6;5;1;3052;;9;11;15;10;7;19;12;6;10;15;7;20; -a20RQ+~~~66CL~~-9B;;;;0161;-1-1;8157;;2;6;5;1;3053;;9;11;15;10;7;19;12;6;10;15;7;20; -a07ET#K1F~3D~~~-9;;;;4343;-1-1;-1-1;;2;6;5;1;3055;;9;11;15;10;7;19;12;6;10;15;7;20; -a10AT-X5~49DH4~-9F;;;;4415;-1-1;7022;;2;6;5;1;3055;;9;11;15;10;7;19;12;6;10;15;7;20; -*19DT+~~~49DS~~+9B;;;;4415;-1-1;7022;;2;6;5;1;3056;;9;11;15;10;7;19;12;6;10;15;7;20; -*08EH#~~~~8B~~~+9;;;;3155;-1-1;-1-1;;2;6;5;1;3058;;9;11;15;10;7;19;12;6;10;15;7;20; -*10AH+V5~41CP2~+9F;;;;4224;5523;7720;;2;6;5;1;3060;;9;11;15;10;7;19;12;6;10;15;7;20; -a06BH/~~~~2C~~~-9;;;;4577;-1-1;-1-1;;2;6;5;1;3060;;9;11;15;10;7;19;12;6;10;15;7;20; -*10DH+~~~44BC~~+9F;;;;5876;5523;4429;;2;6;5;1;3060;;9;11;15;10;7;19;12;6;10;15;7;20; -*11AO-~~~38DT1~+9F;;;;4442;-1-1;7158;;2;6;5;1;3062;;9;11;15;10;7;19;12;6;10;15;7;20; -a02DO#~~~38DS~~-9B;;;;4442;-1-1;7158;;2;6;5;1;3063;;9;11;15;10;7;19;12;6;10;15;7;20; -a07ET#K1F~3B~~~-9;;;;4460;-1-1;-1-1;;2;6;5;1;3064;;9;11;15;10;7;19;12;6;10;15;7;20; -a10AT+X5~48DH4~-9F;;;;4316;-1-1;7358;;2;6;5;1;3065;;9;11;15;10;7;19;12;6;10;15;7;20; -*09DT-~~~48DS~~+9B;;;;4316;-1-1;7358;;2;6;5;1;3066;;9;11;15;10;7;19;12;6;10;15;7;20; -a06AO#~~~24BT0~-9F;;;;4573;-1-1;5572;;2;6;5;1;3067;;9;11;15;10;7;19;12;6;10;15;7;20; -ap19:11;;;;4528;-1-1;;;2;6;5;1;3067;;9;11;15;10;7;19;12;6;10;15;7;20; -ac07:08;;;;1010;-1-1;9090;;2;0;0;1;3095;; -ac06:03;;;;1010;-1-1;9090;;2;0;0;1;3095;; -*c09:04;;;;1010;-1-1;9522;;2;0;0;1;3095;; -aP08;;;;;;;;2;6;4;1;3095;;4;11;15;10;7;19;3;10;15;8;20;12; -az4;;;;;;;;2;6;4;1;3095;;4;11;15;10;7;19;3;10;15;8;20;12; -*P19;;;;;;;;2;6;4;1;3095;;4;11;15;10;7;19;3;10;15;8;20;12; -*z6;;;;;;;;2;6;4;1;3095;;4;11;15;10;7;19;3;10;15;8;20;12; -a03SM+~~~17A~~~-8;;;;0578;-1-1;7476;;2;6;4;1;3095;;4;11;15;10;7;19;3;10;15;8;20;12; -*10RM-~~~17AL~~+8F;;;;0578;-1-1;7476;;2;6;4;1;3096;;4;11;15;10;7;19;3;10;15;8;20;12; -*08EO#~~~~7C~~~+8;;;;3113;-1-1;-1-1;;2;6;4;1;3098;;4;11;15;10;7;19;3;10;15;8;20;12; -*10AO#~~~47DP2~+8F;;;;4430;-1-1;7184;;2;6;4;1;3100;;4;11;15;10;7;19;3;10;15;8;20;12; -*p20:11;;;;2916;-1-1;;;2;6;4;1;3101;;4;11;15;10;7;19;3;10;15;8;20;12; -*P19;;;;;;;;2;5;4;1;3118;;11;15;10;7;19;4;3;10;15;8;20;12; -*z5;;;;;;;;2;5;4;1;3118;;11;15;10;7;19;4;3;10;15;8;20;12; -aP08;;;;;;;;2;5;4;1;3118;;11;15;10;7;19;4;3;10;15;8;20;12; -az4;;;;;;;;2;5;4;1;3118;;11;15;10;7;19;4;3;10;15;8;20;12; -*08SM+~~~56C~~~+9;;;;0224;-1-1;8355;;2;5;4;1;3118;;11;15;10;7;19;4;3;10;15;8;20;12; -a02RM-~~~56CR~~-9B;;;;0224;-1-1;8355;;2;5;4;1;3119;;11;15;10;7;19;4;3;10;15;8;20;12; -a03ET#~~~~4A~~~-9;;;;4321;-1-1;-1-1;;2;5;4;1;3121;;11;15;10;7;19;4;3;10;15;8;20;12; -a10AT-X5~43DP2~-9F;;;;4310;-1-1;5755;;2;5;4;1;3122;;11;15;10;7;19;4;3;10;15;8;20;12; -*10DT+~~~43DS~~+9F;;;;4310;-1-1;5755;;2;5;4;1;3122;;11;15;10;7;19;4;3;10;15;8;20;12; -*08EH#~~~~7A~~~+9;;;;3021;-1-1;-1-1;;2;5;4;1;3125;;11;15;10;7;19;4;3;10;15;8;20;12; -*10AH-V5~41CH2~+9F;;;;4314;5417;7921;;2;5;4;1;3126;;11;15;10;7;19;4;3;10;15;8;20;12; -a08BH+~~~~2B~~~-9;;;;4683;-1-1;-1-1;;2;5;4;1;3126;;11;15;10;7;19;4;3;10;15;8;20;12; -*10DH-~~~44CC~~+9F;;;;5786;5417;4517;;2;5;4;1;3127;;11;15;10;7;19;4;3;10;15;8;20;12; -a02FH!~~~46C~~~-9B;;;;3710;;7752;;2;5;4;1;3130;;11;15;10;7;19;4;3;10;15;8;20;12; -a03ET#KBF~9C~~~-9;;;;3665;-1-1;-1-1;;2;5;4;1;3131;;11;15;10;7;19;4;3;10;15;8;20;12; -a10AT#X5~46CH2~-9F;;;;4217;5532;7859;;2;5;4;1;3132;;11;15;10;7;19;4;3;10;15;8;20;12; -*07BT=~~~~2C~~~+9;;;;4568;-1-1;-1-1;;2;5;4;1;3132;;11;15;10;7;19;4;3;10;15;8;20;12; -ap20:12;;;;4107;-1-1;;;2;5;4;1;3133;;11;15;10;7;19;4;3;10;15;8;20;12; -ac20:05;;;;1010;-1-1;9521;;2;0;0;1;3152;; -aP08;;;;;;;;2;5;3;1;3152;;11;15;10;7;19;4;10;15;8;5;12;3; -az3;;;;;;;;2;5;3;1;3152;;11;15;10;7;19;4;10;15;8;5;12;3; -*P19;;;;;;;;2;5;3;1;3152;;11;15;10;7;19;4;10;15;8;5;12;3; -*z5;;;;;;;;2;5;3;1;3152;;11;15;10;7;19;4;10;15;8;5;12;3; -a10SM-~~~17A~~~-8;;;;0579;-1-1;7577;;2;5;3;1;3152;;11;15;10;7;19;4;10;15;8;5;12;3; -*10RM#~~~17AM~~+8F;;;;0579;-1-1;7577;;2;5;3;1;3153;;11;15;10;7;19;4;10;15;8;5;12;3; -*19ET#K7B~3B~~~+8;;;;4561;-1-1;-1-1;;2;5;3;1;3155;;11;15;10;7;19;4;10;15;8;5;12;3; -*02AT#X8~96BH1~+8M;;;;4582;-1-1;8043;;2;5;3;1;3156;;11;15;10;7;19;4;10;15;8;5;12;3; -a10DT=~~~26BS~~-8B;;;;4582;-1-1;8043;;2;5;3;1;3156;;11;15;10;7;19;4;10;15;8;5;12;3; -*p21:12;;;;4207;-1-1;;;2;5;3;1;3159;;11;15;10;7;19;4;10;15;8;5;12;3; -*c15:12;;;;1010;-1-1;9090;;2;0;0;1;3190;; -*c19:25;;;;1010;-1-1;9090;;2;0;0;1;3190;; -ac10:09;;;;1010;-1-1;10076;;2;0;0;1;3190;; -*P25;;;;;;;;2;4;3;1;3190;;12;10;7;25;4;11;9;15;8;5;12;3; -*z4;;;;;;;;2;4;3;1;3190;;12;10;7;25;4;11;9;15;8;5;12;3; -aP08;;;;;;;;2;4;3;1;3190;;12;10;7;25;4;11;9;15;8;5;12;3; -az3;;;;;;;;2;4;3;1;3190;;12;10;7;25;4;11;9;15;8;5;12;3; -*12SM!~~~58D~~~+9;;;;0024;-1-1;7550;;2;4;3;1;3190;;12;10;7;25;4;11;9;15;8;5;12;3; -a09RM!~~~58DW~~-9B;;;;0024;-1-1;7550;;2;4;3;1;3191;;12;10;7;25;4;11;9;15;8;5;12;3; -a03ET#K1F~9C~~~-9;;;;3569;-1-1;-1-1;;2;4;3;1;3193;;12;10;7;25;4;11;9;15;8;5;12;3; -a05AT-X5~49BT2~-9F;;;;4320;-1-1;6616;;2;4;3;1;3194;;12;10;7;25;4;11;9;15;8;5;12;3; -*12DT+~~~49BS~~+9B;;;;4320;-1-1;6616;;2;4;3;1;3195;;12;10;7;25;4;11;9;15;8;5;12;3; -*08EH#~~~~1C~~~+9;;;;2167;-1-1;-1-1;;2;4;3;1;3196;;12;10;7;25;4;11;9;15;8;5;12;3; -*10AH#V5~41CH2~+9F;;;;4313;5515;7920;;2;4;3;1;3198;;12;10;7;25;4;11;9;15;8;5;12;3; -a08BH=~~~~2B~~~-9;;;;4585;-1-1;-1-1;;2;4;3;1;3198;;12;10;7;25;4;11;9;15;8;5;12;3; -*p22:12;;;;1682;-1-1;;;2;4;3;1;3199;;12;10;7;25;4;11;9;15;8;5;12;3; -*P25;;;;;;;;2;4;3;1;3226;;12;10;7;25;4;11;9;15;8;5;12;3; -*z4;;;;;;;;2;4;3;1;3226;;12;10;7;25;4;11;9;15;8;5;12;3; -aP08;;;;;;;;2;4;3;1;3226;;12;10;7;25;4;11;9;15;8;5;12;3; -az3;;;;;;;;2;4;3;1;3226;;12;10;7;25;4;11;9;15;8;5;12;3; -*12SM/~~~76B~~~+9;;;;0228;-1-1;8046;;2;4;3;1;3226;;12;10;7;25;4;11;9;15;8;5;12;3; -a09RM/~~~56BR~~-9B;;;;0228;-1-1;8046;;2;4;3;1;3227;;12;10;7;25;4;11;9;15;8;5;12;3; -*04FH#~~~88C~~~+9B;;;;3643;;6961;;2;4;3;1;3233;;12;10;7;25;4;11;9;15;8;5;12;3; -*12ET#K1B~3A~~~+9;;;;4355;-1-1;-1-1;;2;4;3;1;3234;;12;10;7;25;4;11;9;15;8;5;12;3; -*25AT=X6~25DP2~+9F;;;;4482;-1-1;9392;;2;4;3;1;3235;;12;10;7;25;4;11;9;15;8;5;12;3; -ap22:13;;;;0708;-1-1;;;2;4;3;1;3236;;12;10;7;25;4;11;9;15;8;5;12;3; -aP08;;;;;;;;2;4;2;1;3260;;12;10;7;25;4;11;15;8;5;12;3;9; -az2;;;;;;;;2;4;2;1;3260;;12;10;7;25;4;11;15;8;5;12;3;9; -*P25;;;;;;;;2;4;2;1;3260;;12;10;7;25;4;11;15;8;5;12;3;9; -*z4;;;;;;;;2;4;2;1;3260;;12;10;7;25;4;11;15;8;5;12;3;9; -a15SM=~~~56D~~~-9;;;;0424;-1-1;9857;;2;4;2;1;3260;;12;10;7;25;4;11;15;8;5;12;3;9; -*p23:13;;;;0243;-1-1;;;2;4;2;1;3261;;12;10;7;25;4;11;15;8;5;12;3;9; -*c04:09;;;;1010;-1-1;9970;;2;0;0;1;3285;; -*P25;;;;;;;;2;3;2;1;3285;;10;7;25;9;11;12;15;8;5;12;3;9; -*z3;;;;;;;;2;3;2;1;3285;;10;7;25;9;11;12;15;8;5;12;3;9; -aP08;;;;;;;;2;3;2;1;3285;;10;7;25;9;11;12;15;8;5;12;3;9; -az2;;;;;;;;2;3;2;1;3285;;10;7;25;9;11;12;15;8;5;12;3;9; -*10SM#~~~75B~~~+9;;;;0130;-1-1;7968;;2;3;2;1;3285;;10;7;25;9;11;12;15;8;5;12;3;9; -a08RM=~~~55BR~~-9F;;;;0130;-1-1;7968;;2;3;2;1;3286;;10;7;25;9;11;12;15;8;5;12;3;9; -*p24:13;;;;4593;-1-1;;;2;3;2;1;3289;;10;7;25;9;11;12;15;8;5;12;3;9; -ac08:04;;;;1010;-1-1;9869;;2;0;0;1;3315;; -*P25;;;;;;;;2;3;2;1;3315;;10;7;25;9;11;12;15;4;5;12;3;9; -*z3;;;;;;;;2;3;2;1;3315;;10;7;25;9;11;12;15;4;5;12;3;9; -aP04;;;;;;;;2;3;2;1;3315;;10;7;25;9;11;12;15;4;5;12;3;9; -az2;;;;;;;;2;3;2;1;3315;;10;7;25;9;11;12;15;4;5;12;3;9; -*10SM-~~~75B~~~+9;;;;0231;-1-1;8171;;2;3;2;1;3315;;10;7;25;9;11;12;15;4;5;12;3;9; -a04RM#~~~55BM~~-9F;;;;0231;-1-1;8171;;2;3;2;1;3316;;10;7;25;9;11;12;15;4;5;12;3;9; -a03EN#KSC~3A~~~-9;;;;4357;-1-1;-1-1;;2;3;2;1;3317;;10;7;25;9;11;12;15;4;5;12;3;9; -a12AN-CF~28BH4~-9F;;;;4488;5470;6647;;2;3;2;1;3318;;10;7;25;9;11;12;15;4;5;12;3;9; -*07BN+~~~~4B~~~+9;;;;4630;-1-1;-1-1;;2;3;2;1;3318;;10;7;25;9;11;12;15;4;5;12;3;9; -*10DN#~~~28AB~~+9B;;;;4488;5470;7141;;2;3;2;1;3319;;10;7;25;9;11;12;15;4;5;12;3;9; -*12EO=K7~~2D~~~+9;;;;4064;;;;2;3;2;1;3321;;10;7;25;9;11;12;15;4;5;12;3;9; -ap24:14;;;;4513;-1-1;;;2;3;2;1;3323;;10;7;25;9;11;12;15;4;5;12;3;9; -ac04:07;;;;1010;-1-1;9090;;2;0;0;1;3351;; -ac03:06;;;;1010;-1-1;9524;;2;0;0;1;3351;; -aP07;;;;;;;;2;3;1;1;3351;;10;7;25;9;11;12;7;5;12;6;9;15; -az1;;;;;;;;2;3;1;1;3351;;10;7;25;9;11;12;7;5;12;6;9;15; -*P25;;;;;;;;2;3;1;1;3351;;10;7;25;9;11;12;7;5;12;6;9;15; -*z3;;;;;;;;2;3;1;1;3351;;10;7;25;9;11;12;7;5;12;6;9;15; -a07SM+~~~17A~~~-9;;;;0576;-1-1;7476;;2;3;1;1;3351;;10;7;25;9;11;12;7;5;12;6;9;15; -*09RM-~~~17AR~~+9F;;;;0576;-1-1;7476;;2;3;1;1;3352;;10;7;25;9;11;12;7;5;12;6;9;15; -*12ET#~~~~9C~~~+9;;;;3273;-1-1;-1-1;;2;3;1;1;3353;;10;7;25;9;11;12;7;5;12;6;9;15; -*07AT-X6~25BT2~+9F;;;;4491;-1-1;8070;;2;3;1;1;3354;;10;7;25;9;11;12;7;5;12;6;9;15; -a02DT+~~~25BS~~-9B;;;;4491;-1-1;8070;;2;3;1;1;3355;;10;7;25;9;11;12;7;5;12;6;9;15; -a07EH#K7P~9D~~~-9;;;;2866;-1-1;-1-1;;2;3;1;1;3356;;10;7;25;9;11;12;7;5;12;6;9;15; -a09AH=VP~81DH4~-9B;;;;3357;-1-1;9832;;2;3;1;1;3358;;10;7;25;9;11;12;7;5;12;6;9;15; -*p25:14;;;;0268;-1-1;;;2;3;1;1;3359;;10;7;25;9;11;12;7;5;12;6;9;15; -**2set;;;;;;;;3;3;1;1;3359;;10;7;25;9;11;12;7;5;12;6;9;15; -*P19>LUp;;;;;;;;3;1;6;1;3746;;19;4;11;2;10;7;20;16;17;10;15;8; -*z1>LUp;;;;;;;;3;1;6;1;3746;;19;4;11;2;10;7;20;16;17;10;15;8; -aP08>LUp;;;;;;;;3;1;6;1;3746;;19;4;11;2;10;7;20;16;17;10;15;8; -az6>LUp;;;;;;;;3;1;6;1;3746;;19;4;11;2;10;7;20;16;17;10;15;8; -*19SM-~~~79D~~~00;;;;0529;-1-1;7222;;3;1;6;1;3746;;19;4;11;2;10;7;20;16;17;10;15;8; -a20RM+~~~59DR~~00B;;;;0529;-1-1;7222;;3;1;6;1;3747;;19;4;11;2;10;7;20;16;17;10;15;8; -a08EQ#K1C~3A~~~00;;;;4258;-1-1;-1-1;;3;1;6;1;3749;;19;4;11;2;10;7;20;16;17;10;15;8; -a16AQ+X1~36CP1~00F;;;;4551;-1-1;8153;;3;1;6;1;3749;;19;4;11;2;10;7;20;16;17;10;15;8; -*10DQ-~~~36CS~~00B;;;;4551;-1-1;8153;;3;1;6;1;3750;;19;4;11;2;10;7;20;16;17;10;15;8; -a10FH-~~~64B~~~00F;;;;1947;;5565;;3;1;6;1;3751;;19;4;11;2;10;7;20;16;17;10;15;8; -a20EH#~~~~6C~~~00;;;;2140;-1-1;-1-1;;3;1;6;1;3752;;19;4;11;2;10;7;20;16;17;10;15;8; -a10AH-V5~41CP2~00F;;;;4020;-1-1;7932;;3;1;6;1;3754;;19;4;11;2;10;7;20;16;17;10;15;8; -*10DH#~~~41CS~~00B;;;;4020;-1-1;7932;;3;1;6;1;3754;;19;4;11;2;10;7;20;16;17;10;15;8; -*19EQ#K1C~3A~~~00;;;;4356;-1-1;-1-1;;3;1;6;1;3756;;19;4;11;2;10;7;20;16;17;10;15;8; -*11AQ#X1~38CH1~00F;;;;4346;5449;6553;;3;1;6;1;3757;;19;4;11;2;10;7;20;16;17;10;15;8; -a16BQ=~~~~3B~~~00;;;;4651;-1-1;-1-1;;3;1;6;1;3757;;19;4;11;2;10;7;20;16;17;10;15;8; -*p01:00;;;;4357;-1-1;;;3;1;6;1;3758;;19;4;11;2;10;7;20;16;17;10;15;8; -*P19;;;;;;;;3;1;6;1;3787;;19;4;11;2;10;7;20;16;17;10;15;8; -*z1;;;;;;;;3;1;6;1;3787;;19;4;11;2;10;7;20;16;17;10;15;8; -aP08;;;;;;;;3;1;6;1;3787;;19;4;11;2;10;7;20;16;17;10;15;8; -az6;;;;;;;;3;1;6;1;3787;;19;4;11;2;10;7;20;16;17;10;15;8; -*19SM!~~~79D~~~+1;;;;0434;-1-1;7427;;3;1;6;1;3787;;19;4;11;2;10;7;20;16;17;10;15;8; -a20RM!~~~59DW~~-1B;;;;0434;-1-1;7427;;3;1;6;1;3789;;19;4;11;2;10;7;20;16;17;10;15;8; -a08EQ#K1C~2C~~~-1;;;;4574;-1-1;-1-1;;3;1;6;1;3790;;19;4;11;2;10;7;20;16;17;10;15;8; -a16AQ+XM~38CH1~-1F;;;;4558;5560;6762;;3;1;6;1;3790;;19;4;11;2;10;7;20;16;17;10;15;8; -*11BQ#~~~~3C~~~+1;;;;4540;-1-1;-1-1;;3;1;6;1;3791;;19;4;11;2;10;7;20;16;17;10;15;8; -a16DQ=~~~33BC~~-1F;;;;5542;5560;4560;;3;1;6;1;3791;;19;4;11;2;10;7;20;16;17;10;15;8; -*p02:00;;;;4316;-1-1;;;3;1;6;1;3794;;19;4;11;2;10;7;20;16;17;10;15;8; -*P19;;;;;;;;3;1;6;1;3813;;19;4;11;2;10;7;20;16;17;10;15;8; -*z1;;;;;;;;3;1;6;1;3813;;19;4;11;2;10;7;20;16;17;10;15;8; -aP08;;;;;;;;3;1;6;1;3813;;19;4;11;2;10;7;20;16;17;10;15;8; -az6;;;;;;;;3;1;6;1;3813;;19;4;11;2;10;7;20;16;17;10;15;8; -*19SM-~~~59D~~~+2;;;;0425;-1-1;7431;;3;1;6;1;3813;;19;4;11;2;10;7;20;16;17;10;15;8; -a20RM#~~~59DW~~-2B;;;;0425;-1-1;7431;;3;1;6;1;3814;;19;4;11;2;10;7;20;16;17;10;15;8; -a08ET#K1F~3B~~~-2;;;;4458;-1-1;-1-1;;3;1;6;1;3816;;19;4;11;2;10;7;20;16;17;10;15;8; -a10AT#X5~48DH4~-2F;;;;4416;-1-1;7354;;3;1;6;1;3817;;19;4;11;2;10;7;20;16;17;10;15;8; -ap02:01;;;;2746;-1-1;;;3;1;6;1;3817;;19;4;11;2;10;7;20;16;17;10;15;8; -aP08;;;;;;;;3;1;5;1;3837;;19;4;11;2;10;7;16;17;10;15;8;20; -az5;;;;;;;;3;1;5;1;3837;;19;4;11;2;10;7;16;17;10;15;8;20; -*P19;;;;;;;;3;1;5;1;3837;;19;4;11;2;10;7;16;17;10;15;8;20; -*z1;;;;;;;;3;1;5;1;3837;;19;4;11;2;10;7;16;17;10;15;8;20; -a02SM#~~~51C~~~-1;;;;0224;-1-1;8132;;3;1;5;1;3837;;19;4;11;2;10;7;16;17;10;15;8;20; -*08RM=~~~51CR~~+1B;;;;0224;-1-1;8132;;3;1;5;1;3838;;19;4;11;2;10;7;16;17;10;15;8;20; -ap02:02;;;;4118;-1-1;;;3;1;5;1;3840;;19;4;11;2;10;7;16;17;10;15;8;20; -aP08;;;;;;;;3;1;5;1;3867;;19;4;11;2;10;7;16;17;10;15;8;20; -az5;;;;;;;;3;1;5;1;3867;;19;4;11;2;10;7;16;17;10;15;8;20; -*P19;;;;;;;;3;1;5;1;3867;;19;4;11;2;10;7;16;17;10;15;8;20; -*z1;;;;;;;;3;1;5;1;3867;;19;4;11;2;10;7;16;17;10;15;8;20; -a02SM=~~~54B~~~00;;;;0122;-1-1;4830;;3;1;5;1;3867;;19;4;11;2;10;7;16;17;10;15;8;20; -*p03:02;;;;4830;-1-1;;;3;1;5;1;3868;;19;4;11;2;10;7;16;17;10;15;8;20; -*P19;;;;;;;;3;6;5;1;3884;;4;11;2;10;7;19;16;17;10;15;8;20; -*z6;;;;;;;;3;6;5;1;3884;;4;11;2;10;7;19;16;17;10;15;8;20; -aP08;;;;;;;;3;6;5;1;3884;;4;11;2;10;7;19;16;17;10;15;8;20; -az5;;;;;;;;3;6;5;1;3884;;4;11;2;10;7;19;16;17;10;15;8;20; -*04SM/~~~97A~~~+1;;;;0571;-1-1;7471;;3;6;5;1;3884;;4;11;2;10;7;19;16;17;10;15;8;20; -a10RM/~~~17AR~~-1F;;;;0571;-1-1;7471;;3;6;5;1;3885;;4;11;2;10;7;19;16;17;10;15;8;20; -*08FH+~~~77A~~~+1B;;;;3019;;7469;;3;6;5;1;3890;;4;11;2;10;7;19;16;17;10;15;8;20; -*19EM#K1B~3A~~~+1;;;;4356;-1-1;-1-1;;3;6;5;1;3892;;4;11;2;10;7;19;16;17;10;15;8;20; -*02AM#X4~29CH1~+1F;;;;4376;-1-1;6929;;3;6;5;1;3893;;4;11;2;10;7;19;16;17;10;15;8;20; -a08DM=~~~29CS~~-1B;;;;4376;-1-1;6929;;3;6;5;1;3893;;4;11;2;10;7;19;16;17;10;15;8;20; -*p04:02;;;;0476;-1-1;;;3;6;5;1;3894;;4;11;2;10;7;19;16;17;10;15;8;20; -*P19;;;;;;;;3;6;5;1;3910;;4;11;2;10;7;19;16;17;10;15;8;20; -*z6;;;;;;;;3;6;5;1;3910;;4;11;2;10;7;19;16;17;10;15;8;20; -aP08;;;;;;;;3;6;5;1;3910;;4;11;2;10;7;19;16;17;10;15;8;20; -az5;;;;;;;;3;6;5;1;3910;;4;11;2;10;7;19;16;17;10;15;8;20; -*04SM+~~~97A~~~+2;;;;0464;-1-1;7569;;3;6;5;1;3910;;4;11;2;10;7;19;16;17;10;15;8;20; -a10RM-~~~17AM~~-2F;;;;0464;-1-1;7569;;3;6;5;1;3912;;4;11;2;10;7;19;16;17;10;15;8;20; -a08ET#K1B~8B~~~-2;;;;3156;-1-1;-1-1;;3;6;5;1;3913;;4;11;2;10;7;19;16;17;10;15;8;20; -a17AT#X6~25BH4~-2F;;;;4484;5478;7963;;3;6;5;1;3914;;4;11;2;10;7;19;16;17;10;15;8;20; -*10BT=~~~~4B~~~+2;;;;4622;-1-1;-1-1;;3;6;5;1;3914;;4;11;2;10;7;19;16;17;10;15;8;20; -ap04:03;;;;4193;-1-1;;;3;6;5;1;3915;;4;11;2;10;7;19;16;17;10;15;8;20; -ac17:03;;;;1010;-1-1;9824;;3;0;0;1;3938;; -aP08;;;;;;;;3;6;4;1;3938;;4;11;2;10;7;19;3;10;15;8;20;16; -az4;;;;;;;;3;6;4;1;3938;;4;11;2;10;7;19;3;10;15;8;20;16; -*P19;;;;;;;;3;6;4;1;3938;;4;11;2;10;7;19;3;10;15;8;20;16; -*z6;;;;;;;;3;6;4;1;3938;;4;11;2;10;7;19;3;10;15;8;20;16; -a03SM-~~~16B~~~-1;;;;0276;-1-1;8046;;3;6;4;1;3938;;4;11;2;10;7;19;3;10;15;8;20;16; -*08RM+~~~16BR~~+1B;;;;0276;-1-1;8046;;3;6;4;1;3940;;4;11;2;10;7;19;3;10;15;8;20;16; -*19EQ#K1C~2D~~~+1;;;;4363;-1-1;-1-1;;3;6;4;1;3941;;4;11;2;10;7;19;3;10;15;8;20;16; -*11AQ#X1~36CH1~+1F;;;;4354;-1-1;8253;;3;6;4;1;3941;;4;11;2;10;7;19;3;10;15;8;20;16; -*p05:03;;;;1847;-1-1;;;3;6;4;1;3942;;4;11;2;10;7;19;3;10;15;8;20;16; -*P19;;;;;;;;3;5;4;1;3959;;11;2;10;7;19;4;3;10;15;8;20;16; -*z5;;;;;;;;3;5;4;1;3959;;11;2;10;7;19;4;3;10;15;8;20;16; -aP08;;;;;;;;3;5;4;1;3959;;11;2;10;7;19;4;3;10;15;8;20;16; -az4;;;;;;;;3;5;4;1;3959;;11;2;10;7;19;4;3;10;15;8;20;16; -*08SM!~~~55B~~~+2;;;;0522;-1-1;7873;;3;5;4;1;3959;;11;2;10;7;19;4;3;10;15;8;20;16; -a20RM!~~~55BW~~-2B;;;;0522;-1-1;7873;;3;5;4;1;3960;;11;2;10;7;19;4;3;10;15;8;20;16; -a08ET#KBF~3A~~~-2;;;;3853;-1-1;-1-1;;3;5;4;1;3962;;11;2;10;7;19;4;3;10;15;8;20;16; -a10AT-X5~47AH2~-2F;;;;4316;-1-1;7472;;3;5;4;1;3963;;11;2;10;7;19;4;3;10;15;8;20;16; -*08DT#~~~47AS~~+2B;;;;4316;-1-1;7472;;3;5;4;1;3963;;11;2;10;7;19;4;3;10;15;8;20;16; -*19ET#K1B~3A~~~+2;;;;4356;-1-1;-1-1;;3;5;4;1;3965;;11;2;10;7;19;4;3;10;15;8;20;16; -*02AT-X6~27DH2~+2F;;;;4584;-1-1;7283;;3;5;4;1;3966;;11;2;10;7;19;4;3;10;15;8;20;16; -a02DT#~~~27DS~~-2B;;;;4584;-1-1;7283;;3;5;4;1;3967;;11;2;10;7;19;4;3;10;15;8;20;16; -a08EQ#K1C~3B~~~-2;;;;4454;-1-1;-1-1;;3;5;4;1;3969;;11;2;10;7;19;4;3;10;15;8;20;16; -a15AQ#X1~31CP2~-2F;;;;4444;-1-1;8328;;3;5;4;1;3969;;11;2;10;7;19;4;3;10;15;8;20;16; -ap05:04;;;;1772;-1-1;;;3;5;4;1;3970;;11;2;10;7;19;4;3;10;15;8;20;16; -ac20:05;;;;1010;-1-1;9924;;3;0;0;1;3990;; -aP08;;;;;;;;3;5;3;1;3990;;11;2;10;7;19;4;10;15;8;5;16;3; -az3;;;;;;;;3;5;3;1;3990;;11;2;10;7;19;4;10;15;8;5;16;3; -*P19;;;;;;;;3;5;3;1;3990;;11;2;10;7;19;4;10;15;8;5;16;3; -*z5;;;;;;;;3;5;3;1;3990;;11;2;10;7;19;4;10;15;8;5;16;3; -a10SM+~~~16C~~~-1;;;;0176;-1-1;8152;;3;5;3;1;3990;;11;2;10;7;19;4;10;15;8;5;16;3; -*04RM-~~~16CW~~+1B;;;;0176;-1-1;8152;;3;5;3;1;3991;;11;2;10;7;19;4;10;15;8;5;16;3; -*19EH#~~~~2A~~~+1;;;;3888;-1-1;-1-1;;3;5;3;1;3993;;11;2;10;7;19;4;10;15;8;5;16;3; -*02AH#V6~26BH2~+1F;;;;4181;-1-1;7944;;3;5;3;1;3994;;11;2;10;7;19;4;10;15;8;5;16;3; -a10DH=~~~26BS~~-1B;;;;4181;-1-1;7944;;3;5;3;1;3995;;11;2;10;7;19;4;10;15;8;5;16;3; -*p06:04;;;;4493;-1-1;;;3;5;3;1;3997;;11;2;10;7;19;4;10;15;8;5;16;3; -*c19:25;;;;1010;-1-1;9090;;3;0;0;1;4021;; -*c02:12;;;;1010;-1-1;9576;;3;0;0;1;4021;; -*P25;;;;;;;;3;4;3;1;4021;;12;10;7;25;4;11;10;15;8;5;16;3; -*z4;;;;;;;;3;4;3;1;4021;;12;10;7;25;4;11;10;15;8;5;16;3; -aP08;;;;;;;;3;4;3;1;4021;;12;10;7;25;4;11;10;15;8;5;16;3; -az3;;;;;;;;3;4;3;1;4021;;12;10;7;25;4;11;10;15;8;5;16;3; -*12SM-~~~56C~~~+2;;;;0524;-1-1;7955;;3;4;3;1;4021;;12;10;7;25;4;11;10;15;8;5;16;3; -a03RM#~~~56CM~~-2B;;;;0524;-1-1;7955;;3;4;3;1;4023;;12;10;7;25;4;11;10;15;8;5;16;3; -a08EO#K1S~3B~~~-2;;;;4555;-1-1;-1-1;;3;4;3;1;4024;;12;10;7;25;4;11;10;15;8;5;16;3; -a08AO#PP~32A~~~-2F;;;;4555;-1-1;5813;;3;4;3;1;4024;;12;10;7;25;4;11;10;15;8;5;16;3; -ap06:05;;;;4287;-1-1;;;3;4;3;1;4025;;12;10;7;25;4;11;10;15;8;5;16;3; -aP08;;;;;;;;3;4;2;1;4045;;12;10;7;25;4;11;15;8;5;16;3;10; -az2;;;;;;;;3;4;2;1;4045;;12;10;7;25;4;11;15;8;5;16;3;10; -*P25;;;;;;;;3;4;2;1;4045;;12;10;7;25;4;11;15;8;5;16;3;10; -*z4;;;;;;;;3;4;2;1;4045;;12;10;7;25;4;11;15;8;5;16;3;10; -a15SM=~~~76A~~~-1;;;;0330;-1-1;9543;;3;4;2;1;4045;;12;10;7;25;4;11;15;8;5;16;3;10; -*p07:05;;;;0557;-1-1;;;3;4;2;1;4046;;12;10;7;25;4;11;15;8;5;16;3;10; -*P25;;;;;;;;3;3;2;1;4062;;10;7;25;4;11;12;15;8;5;16;3;10; -*z3;;;;;;;;3;3;2;1;4062;;10;7;25;4;11;12;15;8;5;16;3;10; -aP08;;;;;;;;3;3;2;1;4062;;10;7;25;4;11;12;15;8;5;16;3;10; -az2;;;;;;;;3;3;2;1;4062;;10;7;25;4;11;12;15;8;5;16;3;10; -*10SM=~~~53C~~~+2;;;;0524;-1-1;4844;;3;3;2;1;4062;;10;7;25;4;11;12;15;8;5;16;3;10; -ap07:06;;;;4844;-1-1;;;3;3;2;1;4063;;10;7;25;4;11;12;15;8;5;16;3;10; -ac08:07;;;;1010;-1-1;9090;;3;0;0;1;4086;; -ac03:17;;;;1010;-1-1;9823;;3;0;0;1;4086;; -aP07;;;;;;;;3;3;1;1;4086;;10;7;25;4;11;12;7;5;16;17;10;15; -az1;;;;;;;;3;3;1;1;4086;;10;7;25;4;11;12;7;5;16;17;10;15; -*P25;;;;;;;;3;3;1;1;4086;;10;7;25;4;11;12;7;5;16;17;10;15; -*z3;;;;;;;;3;3;1;1;4086;;10;7;25;4;11;12;7;5;16;17;10;15; -a07SM+~~~15B~~~-1;;;;0277;-1-1;7976;;3;3;1;1;4086;;10;7;25;4;11;12;7;5;16;17;10;15; -*04RM-~~~15BO~~+1F;;;;0277;-1-1;7976;;3;3;1;1;4087;;10;7;25;4;11;12;7;5;16;17;10;15; -*12EH#~~~~4A~~~+1;;;;4236;-1-1;-1-1;;3;3;1;1;4088;;10;7;25;4;11;12;7;5;16;17;10;15; -*04AH=V5~44CH2~+1F;;;;4614;-1-1;5286;;3;3;1;1;4090;;10;7;25;4;11;12;7;5;16;17;10;15; -ap07:07;;;;4814;-1-1;;;3;3;1;1;4090;;10;7;25;4;11;12;7;5;16;17;10;15; -aP07;;;;;;;;3;3;1;1;4110;;10;7;25;4;11;12;7;5;16;17;10;15; -az1;;;;;;;;3;3;1;1;4110;;10;7;25;4;11;12;7;5;16;17;10;15; -*P25;;;;;;;;3;3;1;1;4110;;10;7;25;4;11;12;7;5;16;17;10;15; -*z3;;;;;;;;3;3;1;1;4110;;10;7;25;4;11;12;7;5;16;17;10;15; -a07SM-~~~16C~~~00;;;;0277;-1-1;8260;;3;3;1;1;4110;;10;7;25;4;11;12;7;5;16;17;10;15; -*08RM+~~~16CL~~00B;;;;0277;-1-1;8260;;3;3;1;1;4111;;10;7;25;4;11;12;7;5;16;17;10;15; -*12ET#K1B~3A~~~00;;;;4355;-1-1;-1-1;;3;3;1;1;4113;;10;7;25;4;11;12;7;5;16;17;10;15; -*25AT+X6~21CT4~00F;;;;4588;5573;8136;;3;3;1;1;4114;;10;7;25;4;11;12;7;5;16;17;10;15; -a16BT-~~~~4B~~~00;;;;4527;-1-1;-1-1;;3;3;1;1;4114;;10;7;25;4;11;12;7;5;16;17;10;15; -a17DT-~~~23DB~~00F;;;;4588;5573;5763;;3;3;1;1;4115;;10;7;25;4;11;12;7;5;16;17;10;15; -a05AO-~~~47AP1~00F;;;;4526;-1-1;7476;;3;3;1;1;4117;;10;7;25;4;11;12;7;5;16;17;10;15; -*08DO#~~~47AS~~00B;;;;4526;-1-1;7476;;3;3;1;1;4117;;10;7;25;4;11;12;7;5;16;17;10;15; -*12EQ#K1C~3A~~~00;;;;4256;-1-1;-1-1;;3;3;1;1;4119;;10;7;25;4;11;12;7;5;16;17;10;15; -*07AQ-X1~37AT1~00F;;;;4345;-1-1;7072;;3;3;1;1;4120;;10;7;25;4;11;12;7;5;16;17;10;15; -a02DQ#~~~37AS~~00B;;;;4345;-1-1;7072;;3;3;1;1;4120;;10;7;25;4;11;12;7;5;16;17;10;15; -a07EQ#K1C~3B~~~00;;;;4552;-1-1;-1-1;;3;3;1;1;4122;;10;7;25;4;11;12;7;5;16;17;10;15; -a16AQ-X1~39DT1~00F;;;;4445;-1-1;7323;;3;3;1;1;4122;;10;7;25;4;11;12;7;5;16;17;10;15; -*12DQ+~~~39DS~~00B;;;;4445;-1-1;7323;;3;3;1;1;4123;;10;7;25;4;11;12;7;5;16;17;10;15; -*08EH#~~~~7B~~~00;;;;3130;-1-1;-1-1;;3;3;1;1;4125;;10;7;25;4;11;12;7;5;16;17;10;15; -*04AH/V5~49DH2~00F;;;;3724;5529;7235;;3;3;1;1;4126;;10;7;25;4;11;12;7;5;16;17;10;15; -a16BH#~~~~2C~~~00;;;;4571;-1-1;-1-1;;3;3;1;1;4126;;10;7;25;4;11;12;7;5;16;17;10;15; -ap07:08;;;;4411;-1-1;;;3;3;1;1;4127;;10;7;25;4;11;12;7;5;16;17;10;15; -aP07;;;;;;;;3;3;1;1;4148;;10;7;25;4;11;12;7;5;16;17;10;15; -az1;;;;;;;;3;3;1;1;4148;;10;7;25;4;11;12;7;5;16;17;10;15; -*P25;;;;;;;;3;3;1;1;4148;;10;7;25;4;11;12;7;5;16;17;10;15; -*z3;;;;;;;;3;3;1;1;4148;;10;7;25;4;11;12;7;5;16;17;10;15; -a07SM!~~~17A~~~+1;;;;0276;-1-1;7181;;3;3;1;1;4148;;10;7;25;4;11;12;7;5;16;17;10;15; -*04RM!~~~17AW~~-1F;;;;0276;-1-1;7181;;3;3;1;1;4149;;10;7;25;4;11;12;7;5;16;17;10;15; -*12ET#KBF~4A~~~-1;;;;4329;-1-1;-1-1;;3;3;1;1;4150;;10;7;25;4;11;12;7;5;16;17;10;15; -*04AT-X5~48AP2~-1F;;;;4320;-1-1;7641;;3;3;1;1;4151;;10;7;25;4;11;12;7;5;16;17;10;15; -a10DT+~~~48AS~~+1B;;;;4320;-1-1;7641;;3;3;1;1;4152;;10;7;25;4;11;12;7;5;16;17;10;15; -a07EH#~~~~8C~~~+1;;;;3550;-1-1;-1-1;;3;3;1;1;4154;;10;7;25;4;11;12;7;5;16;17;10;15; -a05AH=V5~41DH2~+1F;;;;4315;-1-1;9528;;3;3;1;1;4156;;10;7;25;4;11;12;7;5;16;17;10;15; -*p08:08;;;;0572;-1-1;;;3;3;1;1;4156;;10;7;25;4;11;12;7;5;16;17;10;15; -*P25;;;;;;;;3;2;1;1;4175;;7;25;4;11;12;10;7;5;16;17;10;15; -*z2;;;;;;;;3;2;1;1;4175;;7;25;4;11;12;10;7;5;16;17;10;15; -aP07;;;;;;;;3;2;1;1;4175;;7;25;4;11;12;10;7;5;16;17;10;15; -az1;;;;;;;;3;2;1;1;4175;;7;25;4;11;12;10;7;5;16;17;10;15; -*07SM-~~~97A~~~00;;;;0570;-1-1;7564;;3;2;1;1;4175;;7;25;4;11;12;10;7;5;16;17;10;15; -a10RM+~~~17AM~~00B;;;;0570;-1-1;7564;;3;2;1;1;4176;;7;25;4;11;12;10;7;5;16;17;10;15; -a07EQ#K1C~3C~~~00;;;;4437;-1-1;-1-1;;3;2;1;1;4178;;7;25;4;11;12;10;7;5;16;17;10;15; -a16AQ#X1~39DH1~00F;;;;4527;-1-1;7121;;3;2;1;1;4178;;7;25;4;11;12;10;7;5;16;17;10;15; -*12DQ=~~~49DS~~00B;;;;4527;-1-1;7121;;3;2;1;1;4179;;7;25;4;11;12;10;7;5;16;17;10;15; -ap08:09;;;;0522;-1-1;;;3;2;1;1;4180;;7;25;4;11;12;10;7;5;16;17;10;15; -ac05:20;;;;1010;-1-1;9626;;3;0;0;1;4200;; -aP07;;;;;;;;3;2;6;1;4200;;7;25;4;11;12;10;20;16;17;10;15;7; -az6;;;;;;;;3;2;6;1;4200;;7;25;4;11;12;10;20;16;17;10;15;7; -*P25;;;;;;;;3;2;6;1;4200;;7;25;4;11;12;10;20;16;17;10;15;7; -*z2;;;;;;;;3;2;6;1;4200;;7;25;4;11;12;10;20;16;17;10;15;7; -a20ST!~~~96C~~~+1;;;;0474;-1-1;7962;;3;2;6;1;4200;;7;25;4;11;12;10;20;16;17;10;15;7; -*10RT!~~~16CL~~-1B;;;;0474;-1-1;7962;;3;2;6;1;4202;;7;25;4;11;12;10;20;16;17;10;15;7; -*12EN#KSC~2D~~~-1;;;;4275;-1-1;-1-1;;3;2;6;1;4203;;7;25;4;11;12;10;20;16;17;10;15;7; -*04AN=CB~22BT1~-1F;;;;4289;-1-1;5413;;3;2;6;1;4204;;7;25;4;11;12;10;20;16;17;10;15;7; -ap08:10;;;;4687;-1-1;;;3;2;6;1;4205;;7;25;4;11;12;10;20;16;17;10;15;7; -aP07;;;;;;;;3;2;6;1;4223;;7;25;4;11;12;10;20;16;17;10;15;7; -az6;;;;;;;;3;2;6;1;4223;;7;25;4;11;12;10;20;16;17;10;15;7; -*P25;;;;;;;;3;2;6;1;4223;;7;25;4;11;12;10;20;16;17;10;15;7; -*z2;;;;;;;;3;2;6;1;4223;;7;25;4;11;12;10;20;16;17;10;15;7; -a20ST-~~~95B~~~+2;;;;0468;-1-1;7966;;3;2;6;1;4223;;7;25;4;11;12;10;20;16;17;10;15;7; -*10RT#~~~15BW~~-2B;;;;0468;-1-1;7966;;3;2;6;1;4224;;7;25;4;11;12;10;20;16;17;10;15;7; -*12EM#KBB~3B~~~-2;;;;4556;-1-1;-1-1;;3;2;6;1;4226;;7;25;4;11;12;10;20;16;17;10;15;7; -*25AM=X3~33CT1~-2F;;;;4450;-1-1;5657;;3;2;6;1;4226;;7;25;4;11;12;10;20;16;17;10;15;7; -ap08:11;;;;4443;-1-1;;;3;2;6;1;4227;;7;25;4;11;12;10;20;16;17;10;15;7; -aP07;;;;;;;;3;2;6;1;4329;;7;25;4;11;12;10;20;16;17;10;15;7; -az6;;;;;;;;3;2;6;1;4329;;7;25;4;11;12;10;20;16;17;10;15;7; -*P25;;;;;;;;3;2;6;1;4329;;7;25;4;11;12;10;20;16;17;10;15;7; -*z2;;;;;;;;3;2;6;1;4329;;7;25;4;11;12;10;20;16;17;10;15;7; -a20ST-~~~95B~~~+3;;;;0470;-1-1;8177;;3;2;6;1;4329;;7;25;4;11;12;10;20;16;17;10;15;7; -*04RT+~~~15BL~~-3F;;;;0470;-1-1;8177;;3;2;6;1;4330;;7;25;4;11;12;10;20;16;17;10;15;7; -*12ET#K7F~3A~~~-3;;;;4353;-1-1;-1-1;;3;2;6;1;4332;;7;25;4;11;12;10;20;16;17;10;15;7; -*04AT=X5~41BH4~-3F;;;;4310;-1-1;8207;;3;2;6;1;4333;;7;25;4;11;12;10;20;16;17;10;15;7; -ap08:12;;;;1893;-1-1;;;3;2;6;1;4333;;7;25;4;11;12;10;20;16;17;10;15;7; -aP07;;;;;;;;3;2;6;1;4348;;7;25;4;11;12;10;20;16;17;10;15;7; -az6;;;;;;;;3;2;6;1;4348;;7;25;4;11;12;10;20;16;17;10;15;7; -*P25;;;;;;;;3;2;6;1;4348;;7;25;4;11;12;10;20;16;17;10;15;7; -*z2;;;;;;;;3;2;6;1;4348;;7;25;4;11;12;10;20;16;17;10;15;7; -a20ST-~~~96C~~~+4;;;;0570;-1-1;8058;;3;2;6;1;4348;;7;25;4;11;12;10;20;16;17;10;15;7; -*10RT+~~~16CL~~-4B;;;;0570;-1-1;8058;;3;2;6;1;4349;;7;25;4;11;12;10;20;16;17;10;15;7; -*12EQ#K7C~3A~~~-4;;;;4358;-1-1;-1-1;;3;2;6;1;4350;;7;25;4;11;12;10;20;16;17;10;15;7; -*11AQ+X7~49CH4~-4F;;;;4331;5530;6529;;3;2;6;1;4351;;7;25;4;11;12;10;20;16;17;10;15;7; -a17BQ/~~~~2C~~~+4;;;;4570;-1-1;-1-1;;3;2;6;1;4351;;7;25;4;11;12;10;20;16;17;10;15;7; -*04DQ+~~~44DC~~-4F;;;;5769;4570;5786;;3;2;6;1;4351;;7;25;4;11;12;10;20;16;17;10;15;7; -*10EH#~~~~8D~~~-4;;;;2740;-1-1;-1-1;;3;2;6;1;4353;;7;25;4;11;12;10;20;16;17;10;15;7; -*04AH-V5~47AH2~-4F;;;;4110;-1-1;7463;;3;2;6;1;4354;;7;25;4;11;12;10;20;16;17;10;15;7; -a02DH#~~~47AS~~+4B;;;;4110;-1-1;7463;;3;2;6;1;4355;;7;25;4;11;12;10;20;16;17;10;15;7; -a07ET#K7F~8B~~~+4;;;;3658;-1-1;-1-1;;3;2;6;1;4357;;7;25;4;11;12;10;20;16;17;10;15;7; -a10AT#X5~47AH2~+4F;;;;4416;-1-1;7373;;3;2;6;1;4358;;7;25;4;11;12;10;20;16;17;10;15;7; -*08DT=~~~47AS~~-4B;;;;4416;-1-1;7373;;3;2;6;1;4359;;7;25;4;11;12;10;20;16;17;10;15;7; -ap08:13;;;;1830;-1-1;;;3;2;6;1;4359;;7;25;4;11;12;10;20;16;17;10;15;7; -*c12:02;;;;1010;-1-1;9090;;3;0;0;1;4386;; -*c25:19;;;;1010;-1-1;9531;;3;0;0;1;4386;; -aP07;;;;;;;;3;2;6;1;4386;;7;19;4;11;2;10;20;16;17;10;15;7; -az6;;;;;;;;3;2;6;1;4386;;7;19;4;11;2;10;20;16;17;10;15;7; -*P19;;;;;;;;3;2;6;1;4386;;7;19;4;11;2;10;20;16;17;10;15;7; -*z2;;;;;;;;3;2;6;1;4386;;7;19;4;11;2;10;20;16;17;10;15;7; -a20ST!~~~95B~~~+5;;;;0569;-1-1;7876;;3;2;6;1;4386;;7;19;4;11;2;10;20;16;17;10;15;7; -*04RT!~~~15BR~~-5F;;;;0569;-1-1;7876;;3;2;6;1;4387;;7;19;4;11;2;10;20;16;17;10;15;7; -*19ET#KBF~3D~~~-5;;;;3940;-1-1;-1-1;;3;2;6;1;4389;;7;19;4;11;2;10;20;16;17;10;15;7; -*04AT#X5~46CT2~-5F;;;;4209;5526;7857;;3;2;6;1;4390;;7;19;4;11;2;10;20;16;17;10;15;7; -a16BT=~~~~2C~~~+5;;;;4574;-1-1;-1-1;;3;2;6;1;4390;;7;19;4;11;2;10;20;16;17;10;15;7; -*p09:13;;;;4307;-1-1;;;3;2;6;1;4391;;7;19;4;11;2;10;20;16;17;10;15;7; -*P19;;;;;;;;3;1;6;1;4413;;19;4;11;2;10;7;20;16;17;10;15;7; -*z1;;;;;;;;3;1;6;1;4413;;19;4;11;2;10;7;20;16;17;10;15;7; -aP07;;;;;;;;3;1;6;1;4413;;19;4;11;2;10;7;20;16;17;10;15;7; -az6;;;;;;;;3;1;6;1;4413;;19;4;11;2;10;7;20;16;17;10;15;7; -*19SM-~~~59D~~~-4;;;;0524;-1-1;7226;;3;1;6;1;4413;;19;4;11;2;10;7;20;16;17;10;15;7; -a20RM+~~~59DM~~+4B;;;;0524;-1-1;7226;;3;1;6;1;4414;;19;4;11;2;10;7;20;16;17;10;15;7; -a07EQ#K1C~2D~~~+4;;;;4364;-1-1;-1-1;;3;1;6;1;4416;;19;4;11;2;10;7;20;16;17;10;15;7; -a16AQ-X1~38BH1~+4F;;;;4555;5650;6745;;3;1;6;1;4416;;19;4;11;2;10;7;20;16;17;10;15;7; -*11BQ+~~~~3C~~~-4;;;;4450;-1-1;-1-1;;3;1;6;1;4416;;19;4;11;2;10;7;20;16;17;10;15;7; -*08DQ#~~~34AB~~-4B;;;;4555;5650;6278;;3;1;6;1;4417;;19;4;11;2;10;7;20;16;17;10;15;7; -*19ET#K1B~3A~~~-4;;;;4356;-1-1;-1-1;;3;1;6;1;4419;;19;4;11;2;10;7;20;16;17;10;15;7; -*02AT#X6~26CH4~-4F;;;;4383;-1-1;7754;;3;1;6;1;4420;;19;4;11;2;10;7;20;16;17;10;15;7; -*p10:13;;;;2346;-1-1;;;3;1;6;1;4421;;19;4;11;2;10;7;20;16;17;10;15;7; -*P19;;;;;;;;3;1;6;1;4436;;19;4;11;2;10;7;20;16;17;10;15;7; -*z1;;;;;;;;3;1;6;1;4436;;19;4;11;2;10;7;20;16;17;10;15;7; -aP07;;;;;;;;3;1;6;1;4436;;19;4;11;2;10;7;20;16;17;10;15;7; -az6;;;;;;;;3;1;6;1;4436;;19;4;11;2;10;7;20;16;17;10;15;7; -*19SM-~~~79D~~~-3;;;;0438;-1-1;7425;;3;1;6;1;4436;;19;4;11;2;10;7;20;16;17;10;15;7; -a20RM+~~~69DW~~+3B;;;;0438;-1-1;7425;;3;1;6;1;4437;;19;4;11;2;10;7;20;16;17;10;15;7; -a07ET#K7B~3A~~~+3;;;;4356;-1-1;-1-1;;3;1;6;1;4439;;19;4;11;2;10;7;20;16;17;10;15;7; -a17AT-X6~26BP1~+3F;;;;4588;-1-1;8147;;3;1;6;1;4440;;19;4;11;2;10;7;20;16;17;10;15;7; -*10DT#~~~26BS~~-3B;;;;4588;-1-1;8147;;3;1;6;1;4441;;19;4;11;2;10;7;20;16;17;10;15;7; -*19ET#K1B~2D~~~-3;;;;4372;-1-1;-1-1;;3;1;6;1;4442;;19;4;11;2;10;7;20;16;17;10;15;7; -*02AT/X6~25BH4~-3F;;;;4585;5583;8078;;3;1;6;1;4443;;19;4;11;2;10;7;20;16;17;10;15;7; -a10BT#~~~~4C~~~+3;;;;4517;-1-1;-1-1;;3;1;6;1;4443;;19;4;11;2;10;7;20;16;17;10;15;7; -*10DT=~~~28AC~~-3B;;;;5515;4517;7348;;3;1;6;1;4444;;19;4;11;2;10;7;20;16;17;10;15;7; -ap10:14;;;;3148;-1-1;;;3;1;6;1;4444;;19;4;11;2;10;7;20;16;17;10;15;7; -aP07;;;;;;;;3;1;5;1;4463;;19;4;11;2;10;7;16;17;10;15;7;20; -az5;;;;;;;;3;1;5;1;4463;;19;4;11;2;10;7;16;17;10;15;7;20; -*P19;;;;;;;;3;1;5;1;4463;;19;4;11;2;10;7;16;17;10;15;7;20; -*z1;;;;;;;;3;1;5;1;4463;;19;4;11;2;10;7;16;17;10;15;7;20; -a02SM+~~~55B~~~+4;;;;0225;-1-1;7864;;3;1;5;1;4463;;19;4;11;2;10;7;16;17;10;15;7;20; -*10RM-~~~55BW~~-4B;;;;0225;-1-1;7864;;3;1;5;1;4464;;19;4;11;2;10;7;16;17;10;15;7;20; -*19EH#~~~~8B~~~-4;;;;3461;-1-1;-1-1;;3;1;5;1;4465;;19;4;11;2;10;7;16;17;10;15;7;20; -*04AH-V5~48DP2~-4F;;;;4012;5528;7651;;3;1;5;1;4467;;19;4;11;2;10;7;16;17;10;15;7;20; -a15BH+~~~~2C~~~+4;;;;4572;-1-1;-1-1;;3;1;5;1;4467;;19;4;11;2;10;7;16;17;10;15;7;20; -a02DH#~~~47AB~~+4B;;;;4012;5528;7367;;3;1;5;1;4468;;19;4;11;2;10;7;16;17;10;15;7;20; -a07ET#K1B~2C~~~+4;;;;4481;-1-1;-1-1;;3;1;5;1;4470;;19;4;11;2;10;7;16;17;10;15;7;20; -a17AT-X6~29DH2~+4F;;;;4482;-1-1;7529;;3;1;5;1;4471;;19;4;11;2;10;7;16;17;10;15;7;20; -*19DT#~~~29DS~~-4B;;;;4482;-1-1;7529;;3;1;5;1;4472;;19;4;11;2;10;7;16;17;10;15;7;20; -*11EH#~~~~3D~~~-4;;;;4141;-1-1;-1-1;;3;1;5;1;4473;;19;4;11;2;10;7;16;17;10;15;7;20; -*02AH#V6~25BH2~-4F;;;;4382;5481;7879;;3;1;5;1;4475;;19;4;11;2;10;7;16;17;10;15;7;20; -a10BH=~~~~4B~~~+4;;;;4619;-1-1;-1-1;;3;1;5;1;4475;;19;4;11;2;10;7;16;17;10;15;7;20; -*p11:14;;;;2812;-1-1;;;3;1;5;1;4475;;19;4;11;2;10;7;16;17;10;15;7;20; -*c04:09;;;;1010;-1-1;9623;;3;0;0;1;4498;; -*P19;;;;;;;;3;6;5;1;4498;;9;11;2;10;7;19;16;17;10;15;7;20; -*z6;;;;;;;;3;6;5;1;4498;;9;11;2;10;7;19;16;17;10;15;7;20; -aP07;;;;;;;;3;6;5;1;4498;;9;11;2;10;7;19;16;17;10;15;7;20; -az5;;;;;;;;3;6;5;1;4498;;9;11;2;10;7;19;16;17;10;15;7;20; -*09SQ-~~~17A~~~-3;;;;0477;-1-1;7378;;3;6;5;1;4498;;9;11;2;10;7;19;16;17;10;15;7;20; -a10RQ+~~~17AO~~+3F;;;;0477;-1-1;7378;;3;6;5;1;4499;;9;11;2;10;7;19;16;17;10;15;7;20; -a07EO=K1~~3D~~~+3;;;;4348;;;;3;6;5;1;4500;;9;11;2;10;7;19;16;17;10;15;7;20; -*p12:14;;;;4619;-1-1;;;3;6;5;1;4502;;9;11;2;10;7;19;16;17;10;15;7;20; -*P19;;;;;;;;3;6;5;1;4518;;9;11;2;10;7;19;16;17;10;15;7;20; -*z6;;;;;;;;3;6;5;1;4518;;9;11;2;10;7;19;16;17;10;15;7;20; -aP07;;;;;;;;3;6;5;1;4518;;9;11;2;10;7;19;16;17;10;15;7;20; -az5;;;;;;;;3;6;5;1;4518;;9;11;2;10;7;19;16;17;10;15;7;20; -*09SQ-~~~97A~~~-2;;;;0573;-1-1;7475;;3;6;5;1;4518;;9;11;2;10;7;19;16;17;10;15;7;20; -a10RQ#~~~17AM~~+2F;;;;0573;-1-1;7475;;3;6;5;1;4519;;9;11;2;10;7;19;16;17;10;15;7;20; -a07EO#K7S~3B~~~+2;;;;4557;-1-1;-1-1;;3;6;5;1;4520;;9;11;2;10;7;19;16;17;10;15;7;20; -a07AO-PP~38B~~~+2B;;;;4557;-1-1;6846;;3;6;5;1;4520;;9;11;2;10;7;19;16;17;10;15;7;20; -*19DO+~~~38BS~~-2B;;;;4557;-1-1;6846;;3;6;5;1;4521;;9;11;2;10;7;19;16;17;10;15;7;20; -*09EH#~~~~8C~~~-2;;;;3642;-1-1;-1-1;;3;6;5;1;4522;;9;11;2;10;7;19;16;17;10;15;7;20; -*10AH+V5~46CH2~-2F;;;;4229;5536;7750;;3;6;5;1;4524;;9;11;2;10;7;19;16;17;10;15;7;20; -a15BH/~~~~2C~~~+2;;;;4564;-1-1;-1-1;;3;6;5;1;4524;;9;11;2;10;7;19;16;17;10;15;7;20; -*02DH+~~~42DC~~-2F;;;;5871;4564;5728;;3;6;5;1;4525;;9;11;2;10;7;19;16;17;10;15;7;20; -*19EH#~~~~8D~~~-2;;;;3047;-1-1;-1-1;;3;6;5;1;4527;;9;11;2;10;7;19;16;17;10;15;7;20; -*10AH-V5~49DP2~-2F;;;;4011;-1-1;7026;;3;6;5;1;4529;;9;11;2;10;7;19;16;17;10;15;7;20; -a07DH+~~~49DS~~+2B;;;;4011;-1-1;7026;;3;6;5;1;4529;;9;11;2;10;7;19;16;17;10;15;7;20; -a02EH#~~~~3C~~~+2;;;;4440;-1-1;-1-1;;3;6;5;1;4531;;9;11;2;10;7;19;16;17;10;15;7;20; -a17AH#V6~25CP1~+2F;;;;4584;5584;8082;;3;6;5;1;4533;;9;11;2;10;7;19;16;17;10;15;7;20; -*10BH=~~~~4C~~~-2;;;;4516;-1-1;-1-1;;3;6;5;1;4533;;9;11;2;10;7;19;16;17;10;15;7;20; -ap12:15;;;;4343;-1-1;;;3;6;5;1;4534;;9;11;2;10;7;19;16;17;10;15;7;20; -ac07:08;;;;1010;-1-1;9090;;3;0;0;1;4564;; -ac17:03;;;;1010;-1-1;9924;;3;0;0;1;4564;; -aP08;;;;;;;;3;6;4;1;4564;;9;11;2;10;7;19;3;10;15;8;20;16; -az4;;;;;;;;3;6;4;1;4564;;9;11;2;10;7;19;3;10;15;8;20;16; -*P19;;;;;;;;3;6;4;1;4564;;9;11;2;10;7;19;3;10;15;8;20;16; -*z6;;;;;;;;3;6;4;1;4564;;9;11;2;10;7;19;3;10;15;8;20;16; -a03SM-~~~18C~~~+3;;;;0176;-1-1;6659;;3;6;4;1;4564;;9;11;2;10;7;19;3;10;15;8;20;16; -*08RM+~~~18CW~~-3B;;;;0176;-1-1;6659;;3;6;4;1;4565;;9;11;2;10;7;19;3;10;15;8;20;16; -*19EM#K7B~3A~~~-3;;;;4254;-1-1;-1-1;;3;6;4;1;4566;;9;11;2;10;7;19;3;10;15;8;20;16; -*02AM#X4~28AH4~-3F;;;;4372;-1-1;7449;;3;6;4;1;4567;;9;11;2;10;7;19;3;10;15;8;20;16; -*p13:15;;;;2651;-1-1;;;3;6;4;1;4568;;9;11;2;10;7;19;3;10;15;8;20;16; -*P19;;;;;;;;3;5;4;1;4587;;11;2;10;7;19;9;3;10;15;8;20;16; -*z5;;;;;;;;3;5;4;1;4587;;11;2;10;7;19;9;3;10;15;8;20;16; -aP08;;;;;;;;3;5;4;1;4587;;11;2;10;7;19;9;3;10;15;8;20;16; -az4;;;;;;;;3;5;4;1;4587;;11;2;10;7;19;9;3;10;15;8;20;16; -*08SM-~~~57A~~~-2;;;;0522;-1-1;7571;;3;5;4;1;4587;;11;2;10;7;19;9;3;10;15;8;20;16; -a20RM#~~~57AR~~+2B;;;;0522;-1-1;7571;;3;5;4;1;4588;;11;2;10;7;19;9;3;10;15;8;20;16; -a08ET#KBF~3A~~~+2;;;;4351;-1-1;-1-1;;3;5;4;1;4590;;11;2;10;7;19;9;3;10;15;8;20;16; -a10AT-X5~46BH4~+2F;;;;4416;-1-1;7942;;3;5;4;1;4591;;11;2;10;7;19;9;3;10;15;8;20;16; -*08DT+~~~46BS~~-2B;;;;4416;-1-1;7942;;3;5;4;1;4591;;11;2;10;7;19;9;3;10;15;8;20;16; -*19EH#~~~~2A~~~-2;;;;4287;-1-1;-1-1;;3;5;4;1;4593;;11;2;10;7;19;9;3;10;15;8;20;16; -*10AH#V5~41CH2~-2F;;;;4318;5419;7821;;3;5;4;1;4595;;11;2;10;7;19;9;3;10;15;8;20;16; -a08BH=~~~~2C~~~+2;;;;4681;-1-1;-1-1;;3;5;4;1;4595;;11;2;10;7;19;9;3;10;15;8;20;16; -*p14:15;;;;4680;-1-1;;;3;5;4;1;4596;;11;2;10;7;19;9;3;10;15;8;20;16; -*P19;;;;;;;;3;5;4;1;4615;;11;2;10;7;19;9;3;10;15;8;20;16; -*z5;;;;;;;;3;5;4;1;4615;;11;2;10;7;19;9;3;10;15;8;20;16; -aP08;;;;;;;;3;5;4;1;4615;;11;2;10;7;19;9;3;10;15;8;20;16; -az4;;;;;;;;3;5;4;1;4615;;11;2;10;7;19;9;3;10;15;8;20;16; -*08SM-~~~55B~~~-1;;;;0522;-1-1;7868;;3;5;4;1;4615;;11;2;10;7;19;9;3;10;15;8;20;16; -a20RM+~~~55BR~~+1B;;;;0522;-1-1;7868;;3;5;4;1;4616;;11;2;10;7;19;9;3;10;15;8;20;16; -a08EN#KSC~3A~~~+1;;;;4256;-1-1;-1-1;;3;5;4;1;4618;;11;2;10;7;19;9;3;10;15;8;20;16; -a15AN#CF~26BH1~+1F;;;;4488;-1-1;8038;;3;5;4;1;4619;;11;2;10;7;19;9;3;10;15;8;20;16; -*19DN=~~~26BS~~-1B;;;;4488;-1-1;8038;;3;5;4;1;4620;;11;2;10;7;19;9;3;10;15;8;20;16; -ap14:16;;;;1587;-1-1;;;3;5;4;1;4620;;11;2;10;7;19;9;3;10;15;8;20;16; -ac20:05;;;;1010;-1-1;9822;;3;0;0;1;4639;; -aP08;;;;;;;;3;5;3;1;4639;;11;2;10;7;19;9;10;15;8;5;16;3; -az3;;;;;;;;3;5;3;1;4639;;11;2;10;7;19;9;10;15;8;5;16;3; -*P19;;;;;;;;3;5;3;1;4639;;11;2;10;7;19;9;10;15;8;5;16;3; -*z5;;;;;;;;3;5;3;1;4639;;11;2;10;7;19;9;10;15;8;5;16;3; -a10SM#~~~11C~~~+2;;;;0278;-1-1;8034;;3;5;3;1;4639;;11;2;10;7;19;9;10;15;8;5;16;3; -*08RM=~~~11CW~~-2B;;;;0278;-1-1;8034;;3;5;3;1;4640;;11;2;10;7;19;9;10;15;8;5;16;3; -ap14:17;;;;4890;-1-1;;;3;5;3;1;4642;;11;2;10;7;19;9;10;15;8;5;16;3; -aP08;;;;;;;;3;5;3;1;4658;;11;2;10;7;19;9;10;15;8;5;16;3; -az3;;;;;;;;3;5;3;1;4658;;11;2;10;7;19;9;10;15;8;5;16;3; -*P19;;;;;;;;3;5;3;1;4658;;11;2;10;7;19;9;10;15;8;5;16;3; -*z5;;;;;;;;3;5;3;1;4658;;11;2;10;7;19;9;10;15;8;5;16;3; -a10SM#~~~16C~~~+3;;;;0379;-1-1;8251;;3;5;3;1;4658;;11;2;10;7;19;9;10;15;8;5;16;3; -*09RM=~~~16CR~~-3B;;;;0379;-1-1;8251;;3;5;3;1;4659;;11;2;10;7;19;9;10;15;8;5;16;3; -ap14:18;;;;0187;-1-1;;;3;5;3;1;4660;;11;2;10;7;19;9;10;15;8;5;16;3; -aP08;;;;;;;;3;5;3;1;4763;;11;2;10;7;19;9;10;15;8;5;16;3; -az3;;;;;;;;3;5;3;1;4763;;11;2;10;7;19;9;10;15;8;5;16;3; -*P19;;;;;;;;3;5;3;1;4763;;11;2;10;7;19;9;10;15;8;5;16;3; -*z5;;;;;;;;3;5;3;1;4763;;11;2;10;7;19;9;10;15;8;5;16;3; -a10SM-~~~16C~~~+4;;;;0275;-1-1;8150;;3;5;3;1;4763;;11;2;10;7;19;9;10;15;8;5;16;3; -*09RM+~~~16CM~~-4B;;;;0275;-1-1;8150;;3;5;3;1;4764;;11;2;10;7;19;9;10;15;8;5;16;3; -*19EQ#K1C~3A~~~-4;;;;4356;-1-1;-1-1;;3;5;3;1;4766;;11;2;10;7;19;9;10;15;8;5;16;3; -*07AQ#X1~38AH1~-4F;;;;4351;-1-1;7344;;3;5;3;1;4766;;11;2;10;7;19;9;10;15;8;5;16;3; -*p15:18;;;;2756;-1-1;;;3;5;3;1;4766;;11;2;10;7;19;9;10;15;8;5;16;3; -*c02:17;;;;1010;-1-1;9950;;3;0;0;1;4787;; -*P19;;;;;;;;3;4;3;1;4787;;17;10;7;19;9;11;10;15;8;5;16;3; -*z4;;;;;;;;3;4;3;1;4787;;17;10;7;19;9;11;10;15;8;5;16;3; -aP08;;;;;;;;3;4;3;1;4787;;17;10;7;19;9;11;10;15;8;5;16;3; -az3;;;;;;;;3;4;3;1;4787;;17;10;7;19;9;11;10;15;8;5;16;3; -*17SM-~~~68A~~~-3;;;;0150;-1-1;7448;;3;4;3;1;4787;;17;10;7;19;9;11;10;15;8;5;16;3; -a03RM#~~~68AM~~+3B;;;;0150;-1-1;7448;;3;4;3;1;4788;;17;10;7;19;9;11;10;15;8;5;16;3; -a08EN#KSC~3C~~~+3;;;;4549;-1-1;-1-1;;3;4;3;1;4790;;17;10;7;19;9;11;10;15;8;5;16;3; -a15AN=CF~29BH1~+3F;;;;4581;-1-1;6813;;3;4;3;1;4791;;17;10;7;19;9;11;10;15;8;5;16;3; -*p16:18;;;;3287;-1-1;;;3;4;3;1;4791;;17;10;7;19;9;11;10;15;8;5;16;3; -*P19;;;;;;;;3;4;3;1;4807;;17;10;7;19;9;11;10;15;8;5;16;3; -*z4;;;;;;;;3;4;3;1;4807;;17;10;7;19;9;11;10;15;8;5;16;3; -aP08;;;;;;;;3;4;3;1;4807;;17;10;7;19;9;11;10;15;8;5;16;3; -az3;;;;;;;;3;4;3;1;4807;;17;10;7;19;9;11;10;15;8;5;16;3; -*17SH/~~~66B~~~-2;;;;0152;-1-1;7742;;3;4;3;1;4807;;17;10;7;19;9;11;10;15;8;5;16;3; -a03RH/~~~66BW~~+2B;;;;0152;-1-1;7742;;3;4;3;1;4809;;17;10;7;19;9;11;10;15;8;5;16;3; -*17FH#~~~49D~~~-2B;;;;4131;;7124;;3;4;3;1;4813;;17;10;7;19;9;11;10;15;8;5;16;3; -*19EN#KBC~3B~~~-2;;;;4459;-1-1;-1-1;;3;4;3;1;4815;;17;10;7;19;9;11;10;15;8;5;16;3; -*07AN#CF~29AH4~-2F;;;;4377;-1-1;7116;;3;4;3;1;4815;;17;10;7;19;9;11;10;15;8;5;16;3; -*p17:18;;;;2984;-1-1;;;3;4;3;1;4816;;17;10;7;19;9;11;10;15;8;5;16;3; -*P19;;;;;;;;3;4;3;1;4834;;17;10;7;19;9;11;10;15;8;5;16;3; -*z4;;;;;;;;3;4;3;1;4834;;17;10;7;19;9;11;10;15;8;5;16;3; -aP08;;;;;;;;3;4;3;1;4834;;17;10;7;19;9;11;10;15;8;5;16;3; -az3;;;;;;;;3;4;3;1;4834;;17;10;7;19;9;11;10;15;8;5;16;3; -*17SH+~~~68D~~~-1;;;;0148;-1-1;7454;;3;4;3;1;4834;;17;10;7;19;9;11;10;15;8;5;16;3; -a03RH-~~~68DL~~+1B;;;;0148;-1-1;7454;;3;4;3;1;4835;;17;10;7;19;9;11;10;15;8;5;16;3; -a15EH#~~~~9C~~~+1;;;;3169;-1-1;-1-1;;3;4;3;1;4836;;17;10;7;19;9;11;10;15;8;5;16;3; -a10AH-V8~91CH1~+1B;;;;3282;-1-1;8125;;3;4;3;1;4838;;17;10;7;19;9;11;10;15;8;5;16;3; -*11DH#~~~91CS~~-1B;;;;3282;-1-1;8125;;3;4;3;1;4839;;17;10;7;19;9;11;10;15;8;5;16;3; -*19EO#K1S~3B~~~-1;;;;4457;-1-1;-1-1;;3;4;3;1;4841;;17;10;7;19;9;11;10;15;8;5;16;3; -*19AO-PP~37B~~~-1F;;;;4457;-1-1;6869;;3;4;3;1;4841;;17;10;7;19;9;11;10;15;8;5;16;3; -a02DO#~~~37BS~~+1B;;;;4457;-1-1;6869;;3;4;3;1;4841;;17;10;7;19;9;11;10;15;8;5;16;3; -a08EQ#K1C~3B~~~+1;;;;4461;-1-1;-1-1;;3;4;3;1;4843;;17;10;7;19;9;11;10;15;8;5;16;3; -a15AQ/X1~38CH2~+1F;;;;4350;5450;6651;;3;4;3;1;4843;;17;10;7;19;9;11;10;15;8;5;16;3; -*07BQ#~~~~3C~~~-1;;;;4650;-1-1;-1-1;;3;4;3;1;4843;;17;10;7;19;9;11;10;15;8;5;16;3; -a15DQ=~~~33BC~~+1F;;;;5750;5450;4651;;3;4;3;1;4844;;17;10;7;19;9;11;10;15;8;5;16;3; -*p18:18;;;;4350;-1-1;;;3;4;3;1;4844;;17;10;7;19;9;11;10;15;8;5;16;3; -*P19;;;;;;;;3;4;3;1;4959;;17;10;7;19;9;11;10;15;8;5;16;3; -*z4;;;;;;;;3;4;3;1;4959;;17;10;7;19;9;11;10;15;8;5;16;3; -aP08;;;;;;;;3;4;3;1;4959;;17;10;7;19;9;11;10;15;8;5;16;3; -az3;;;;;;;;3;4;3;1;4959;;17;10;7;19;9;11;10;15;8;5;16;3; -*17SH-~~~66C~~~00;;;;0150;-1-1;7951;;3;4;3;1;4959;;17;10;7;19;9;11;10;15;8;5;16;3; -a03RH+~~~66CM~~00B;;;;0150;-1-1;7951;;3;4;3;1;4960;;17;10;7;19;9;11;10;15;8;5;16;3; -a08ET#K1F~3D~~~00;;;;4241;-1-1;-1-1;;3;4;3;1;4962;;17;10;7;19;9;11;10;15;8;5;16;3; -a05AT/X5~41CH2~00F;;;;4512;5415;8022;;3;4;3;1;4963;;17;10;7;19;9;11;10;15;8;5;16;3; -*19BT#~~~~2B~~~00;;;;4685;-1-1;-1-1;;3;4;3;1;4963;;17;10;7;19;9;11;10;15;8;5;16;3; -*p19:18;;;;4630;-1-1;;;3;4;3;1;4963;;17;10;7;19;9;11;10;15;8;5;16;3; -*P19;;;;;;;;3;4;3;1;4980;;17;10;7;19;9;11;10;15;8;5;16;3; -*z4;;;;;;;;3;4;3;1;4980;;17;10;7;19;9;11;10;15;8;5;16;3; -aP08;;;;;;;;3;4;3;1;4980;;17;10;7;19;9;11;10;15;8;5;16;3; -az3;;;;;;;;3;4;3;1;4980;;17;10;7;19;9;11;10;15;8;5;16;3; -*17SH-~~~69D~~~+1;;;;0151;-1-1;7226;;3;4;3;1;4980;;17;10;7;19;9;11;10;15;8;5;16;3; -a10RH#~~~69DW~~-1B;;;;0151;-1-1;7226;;3;4;3;1;4981;;17;10;7;19;9;11;10;15;8;5;16;3; -a08EO#KBS~3B~~~-1;;;;4458;-1-1;-1-1;;3;4;3;1;4982;;17;10;7;19;9;11;10;15;8;5;16;3; -a08AO-PP~32D~~~-1F;;;;4458;-1-1;5822;;3;4;3;1;4982;;17;10;7;19;9;11;10;15;8;5;16;3; -*19DO+~~~32DS~~+1F;;;;4458;-1-1;5822;;3;4;3;1;4983;;17;10;7;19;9;11;10;15;8;5;16;3; -*09EH#~~~~8C~~~+1;;;;3647;-1-1;-1-1;;3;4;3;1;4985;;17;10;7;19;9;11;10;15;8;5;16;3; -*10AH+V5~47BH2~+1F;;;;4417;-1-1;6575;;3;4;3;1;4987;;17;10;7;19;9;11;10;15;8;5;16;3; -a05DH-~~~47BS~~-1F;;;;4417;-1-1;6575;;3;4;3;1;4987;;17;10;7;19;9;11;10;15;8;5;16;3; -*17FH+~~~79C~~~+1B;;;;3525;;6924;;3;4;3;1;4990;;17;10;7;19;9;11;10;15;8;5;16;3; -*19ET#KBF~3D~~~+1;;;;4247;-1-1;-1-1;;3;4;3;1;4991;;17;10;7;19;9;11;10;15;8;5;16;3; -*10AT-X5~41CH2~+1F;;;;4320;5524;7833;;3;4;3;1;4992;;17;10;7;19;9;11;10;15;8;5;16;3; -a08BT+~~~~2C~~~-1;;;;4576;-1-1;-1-1;;3;4;3;1;4992;;17;10;7;19;9;11;10;15;8;5;16;3; -a10DT#~~~48AB~~-1B;;;;4320;5524;7242;;3;4;3;1;4994;;17;10;7;19;9;11;10;15;8;5;16;3; -a08EN#KSC~3B~~~-1;;;;4458;-1-1;-1-1;;3;4;3;1;4995;;17;10;7;19;9;11;10;15;8;5;16;3; -a15AN=CF~22CH1~-1F;;;;4584;-1-1;5232;;3;4;3;1;4996;;17;10;7;19;9;11;10;15;8;5;16;3; -*p20:18;;;;4868;-1-1;;;3;4;3;1;4997;;17;10;7;19;9;11;10;15;8;5;16;3; -ac05:01;;;;1010;-1-1;9851;;3;0;0;1;5020;; -*P19;;;;;;;;3;4;3;1;5020;;17;10;7;19;9;11;10;15;8;1;16;3; -*z4;;;;;;;;3;4;3;1;5020;;17;10;7;19;9;11;10;15;8;1;16;3; -aP08;;;;;;;;3;4;3;1;5020;;17;10;7;19;9;11;10;15;8;1;16;3; -az3;;;;;;;;3;4;3;1;5020;;17;10;7;19;9;11;10;15;8;1;16;3; -*17SH-~~~66C~~~+2;;;;0249;-1-1;7750;;3;4;3;1;5020;;17;10;7;19;9;11;10;15;8;1;16;3; -a03RH+~~~66CM~~-2B;;;;0249;-1-1;7750;;3;4;3;1;5021;;17;10;7;19;9;11;10;15;8;1;16;3; -a08EM#KBP~3A~~~-2;;;;4255;-1-1;-1-1;;3;4;3;1;5023;;17;10;7;19;9;11;10;15;8;1;16;3; -a10AM=XB~81BH1~-2B;;;;3370;-1-1;8413;;3;4;3;1;5024;;17;10;7;19;9;11;10;15;8;1;16;3; -*p21:18;;;;1687;-1-1;;;3;4;3;1;5024;;17;10;7;19;9;11;10;15;8;1;16;3; -*P19;;;;;;;;3;4;3;1;5135;;17;10;7;19;9;11;10;15;8;1;16;3; -*z4;;;;;;;;3;4;3;1;5135;;17;10;7;19;9;11;10;15;8;1;16;3; -aP08;;;;;;;;3;4;3;1;5135;;17;10;7;19;9;11;10;15;8;1;16;3; -az3;;;;;;;;3;4;3;1;5135;;17;10;7;19;9;11;10;15;8;1;16;3; -*17SH!~~~69A~~~+3;;;;0250;-1-1;7213;;3;4;3;1;5135;;17;10;7;19;9;11;10;15;8;1;16;3; -a10RH!~~~69AM~~-3B;;;;0250;-1-1;7213;;3;4;3;1;5136;;17;10;7;19;9;11;10;15;8;1;16;3; -a08ET#K1F~2B~~~-3;;;;4482;-1-1;-1-1;;3;4;3;1;5138;;17;10;7;19;9;11;10;15;8;1;16;3; -a01AT+X5~46CP4~-3F;;;;4418;-1-1;8157;;3;4;3;1;5139;;17;10;7;19;9;11;10;15;8;1;16;3; -*08DT-~~~46CS~~+3B;;;;4418;-1-1;8157;;3;4;3;1;5140;;17;10;7;19;9;11;10;15;8;1;16;3; -a15AO+~~~36BT1~-3F;;;;4545;5443;8040;;3;4;3;1;5141;;17;10;7;19;9;11;10;15;8;1;16;3; -*19BO/~~~~3B~~~+3;;;;4657;-1-1;-1-1;;3;4;3;1;5141;;17;10;7;19;9;11;10;15;8;1;16;3; -a02DO#~~~33DC~~-3B;;;;5555;5443;4143;;3;4;3;1;5142;;17;10;7;19;9;11;10;15;8;1;16;3; -a08EM#K1P~3A~~~-3;;;;4256;-1-1;-1-1;;3;4;3;1;5143;;17;10;7;19;9;11;10;15;8;1;16;3; -a10AM-XP~89DT1~-3B;;;;4244;-1-1;7327;;3;4;3;1;5144;;17;10;7;19;9;11;10;15;8;1;16;3; -*17DM#~~~39DS~~+3B;;;;4244;-1-1;7327;;3;4;3;1;5145;;17;10;7;19;9;11;10;15;8;1;16;3; -*19EO#KSS~3A~~~+3;;;;4257;-1-1;-1-1;;3;4;3;1;5147;;17;10;7;19;9;11;10;15;8;1;16;3; -*19AO-PP~37B~~~+3F;;;;4257;-1-1;6969;;3;4;3;1;5147;;17;10;7;19;9;11;10;15;8;1;16;3; -a02DO#~~~37BS~~-3B;;;;4257;-1-1;6969;;3;4;3;1;5147;;17;10;7;19;9;11;10;15;8;1;16;3; -a08ET#K1F~3C~~~-3;;;;4450;-1-1;-1-1;;3;4;3;1;5149;;17;10;7;19;9;11;10;15;8;1;16;3; -a01AT/X5~46BH4~-3F;;;;4510;5417;8038;;3;4;3;1;5150;;17;10;7;19;9;11;10;15;8;1;16;3; -*07BT#~~~~2B~~~+3;;;;4683;-1-1;-1-1;;3;4;3;1;5150;;17;10;7;19;9;11;10;15;8;1;16;3; -a15DT=~~~43CC~~-3F;;;;5590;5417;4544;;3;4;3;1;5150;;17;10;7;19;9;11;10;15;8;1;16;3; -*p22:18;;;;2982;-1-1;;;3;4;3;1;5151;;17;10;7;19;9;11;10;15;8;1;16;3; -*P19;;;;;;;;3;4;3;1;5168;;17;10;7;19;9;11;10;15;8;1;16;3; -*z4;;;;;;;;3;4;3;1;5168;;17;10;7;19;9;11;10;15;8;1;16;3; -aP08;;;;;;;;3;4;3;1;5168;;17;10;7;19;9;11;10;15;8;1;16;3; -az3;;;;;;;;3;4;3;1;5168;;17;10;7;19;9;11;10;15;8;1;16;3; -*17SH#~~~69D~~~+4;;;;0250;-1-1;7128;;3;4;3;1;5168;;17;10;7;19;9;11;10;15;8;1;16;3; -a03RH=~~~69DW~~-4B;;;;0250;-1-1;7128;;3;4;3;1;5169;;17;10;7;19;9;11;10;15;8;1;16;3; -*p23:18;;;;2972;-1-1;;;3;4;3;1;5169;;17;10;7;19;9;11;10;15;8;1;16;3; -*P19;;;;;;;;3;4;3;1;5184;;17;10;7;19;9;11;10;15;8;1;16;3; -*z4;;;;;;;;3;4;3;1;5184;;17;10;7;19;9;11;10;15;8;1;16;3; -aP08;;;;;;;;3;4;3;1;5184;;17;10;7;19;9;11;10;15;8;1;16;3; -az3;;;;;;;;3;4;3;1;5184;;17;10;7;19;9;11;10;15;8;1;16;3; -*17SH-~~~68A~~~+5;;;;0251;-1-1;7141;;3;4;3;1;5184;;17;10;7;19;9;11;10;15;8;1;16;3; -a02RH+~~~68AR~~-5B;;;;0251;-1-1;7141;;3;4;3;1;5185;;17;10;7;19;9;11;10;15;8;1;16;3; -a08EN#KSC~2D~~~-5;;;;4368;-1-1;-1-1;;3;4;3;1;5187;;17;10;7;19;9;11;10;15;8;1;16;3; -a15AN-CF~23DT2~-5F;;;;4584;-1-1;5850;;3;4;3;1;5188;;17;10;7;19;9;11;10;15;8;1;16;3; -*19DN+~~~23DS~~+5F;;;;4584;-1-1;5850;;3;4;3;1;5188;;17;10;7;19;9;11;10;15;8;1;16;3; -*09EH#~~~~4A~~~+5;;;;4131;-1-1;-1-1;;3;4;3;1;5190;;17;10;7;19;9;11;10;15;8;1;16;3; -*10AH-V5~48AP2~+5F;;;;3222;-1-1;7538;;3;4;3;1;5192;;17;10;7;19;9;11;10;15;8;1;16;3; -a10DH#~~~78AS~~-5B;;;;3222;-1-1;7538;;3;4;3;1;5193;;17;10;7;19;9;11;10;15;8;1;16;3; -a08EO=KBS~3B~~~-5;;;;4554;;;;3;4;3;1;5194;;17;10;7;19;9;11;10;15;8;1;16;3; -*p24:18;;;;2987;-1-1;;;3;4;3;1;5195;;17;10;7;19;9;11;10;15;8;1;16;3; -*P19;;;;;;;;3;4;3;1;5211;;17;10;7;19;9;11;10;15;8;1;16;3; -*z4;;;;;;;;3;4;3;1;5211;;17;10;7;19;9;11;10;15;8;1;16;3; -aP08;;;;;;;;3;4;3;1;5211;;17;10;7;19;9;11;10;15;8;1;16;3; -az3;;;;;;;;3;4;3;1;5211;;17;10;7;19;9;11;10;15;8;1;16;3; -*17SH+~~~68A~~~+6;;;;0149;-1-1;7241;;3;4;3;1;5211;;17;10;7;19;9;11;10;15;8;1;16;3; -a02RH-~~~68AW~~-6B;;;;0149;-1-1;7241;;3;4;3;1;5212;;17;10;7;19;9;11;10;15;8;1;16;3; -a01EH#~~~~7D~~~-6;;;;2512;-1-1;-1-1;;3;4;3;1;5213;;17;10;7;19;9;11;10;15;8;1;16;3; -a10AH-VP~82DP1~-6B;;;;3251;-1-1;5830;;3;4;3;1;5215;;17;10;7;19;9;11;10;15;8;1;16;3; -*19DH+~~~82DS~~+6F;;;;3251;-1-1;5830;;3;4;3;1;5216;;17;10;7;19;9;11;10;15;8;1;16;3; -*08EH#~~~~9D~~~+6;;;;2469;-1-1;-1-1;;3;4;3;1;5217;;17;10;7;19;9;11;10;15;8;1;16;3; -*10AH=V5~44BH2~+6F;;;;4211;-1-1;5270;;3;4;3;1;5218;;17;10;7;19;9;11;10;15;8;1;16;3; -ap24:19;;;;4830;-1-1;;;3;4;3;1;5219;;17;10;7;19;9;11;10;15;8;1;16;3; -ac15:18;;;;1010;-1-1;9763;;3;0;0;1;5252;; -aP08;;;;;;;;3;4;2;1;5252;;17;10;7;19;9;11;18;8;1;16;3;10; -az2;;;;;;;;3;4;2;1;5252;;17;10;7;19;9;11;18;8;1;16;3;10; -*P19;;;;;;;;3;4;2;1;5252;;17;10;7;19;9;11;18;8;1;16;3;10; -*z4;;;;;;;;3;4;2;1;5252;;17;10;7;19;9;11;18;8;1;16;3;10; -a18SM=~~~71B~~~-5;;;;0337;-1-1;8812;;3;4;2;1;5252;;17;10;7;19;9;11;18;8;1;16;3;10; -*p25:19;;;;1288;-1-1;;;3;4;2;1;5253;;17;10;7;19;9;11;18;8;1;16;3;10; -**3set;;;;;;;;4;4;2;1;5253;;17;10;7;19;9;11;18;8;1;16;3;10; +*P14>LUp;;;;;;;;1;1;1;1;563;;14;77;5;10;22;17;2;33;10;5;1;7; +*z1>LUp;;;;;;;;1;1;1;1;563;;14;77;5;10;22;17;2;33;10;5;1;7; +aP02>LUp;;;;;;;;1;1;1;1;563;;14;77;5;10;22;17;2;33;10;5;1;7; +az1>LUp;;;;;;;;1;1;1;1;563;;14;77;5;10;22;17;2;33;10;5;1;7; +*14SM-~~~91C~~~00;;;;0174;-1-1;7835;;1;1;1;1;563;;14;77;5;10;22;17;2;33;10;5;1;7; +a08RM+~~~11CR~~00B;;;;0174;-1-1;7835;;1;1;1;1;564;;14;77;5;10;22;17;2;33;10;5;1;7; +a02ET#KMB~2D~~~00;;;;4263;-1-1;-1-1;;1;1;1;1;566;;14;77;5;10;22;17;2;33;10;5;1;7; +a05AT#X6~28CT4~00F;;;;4686;-1-1;6762;;1;1;1;1;567;;14;77;5;10;22;17;2;33;10;5;1;7; +ap00:01;;;;3338;-1-1;;;1;1;1;1;568;;14;77;5;10;22;17;2;33;10;5;1;7; +aP02;;;;;;;;1;1;6;1;590;;14;77;5;10;22;17;33;10;5;1;7;2; +az6;;;;;;;;1;1;6;1;590;;14;77;5;10;22;17;33;10;5;1;7;2; +*P14;;;;;;;;1;1;6;1;590;;14;77;5;10;22;17;33;10;5;1;7;2; +*z1;;;;;;;;1;1;6;1;590;;14;77;5;10;22;17;33;10;5;1;7;2; +a33SQ-~~~95B~~~+1;;;;0574;-1-1;8163;;1;1;6;1;590;;14;77;5;10;22;17;33;10;5;1;7;2; +*01RQ#~~~15BL~~-1B;;;;0574;-1-1;8163;;1;1;6;1;590;;14;77;5;10;22;17;33;10;5;1;7;2; +*14ET#K7B~3C~~~-1;;;;4549;-1-1;-1-1;;1;1;6;1;592;;14;77;5;10;22;17;33;10;5;1;7;2; +*77AT-X6~26CP2~-1F;;;;4485;5477;8056;;1;1;6;1;593;;14;77;5;10;22;17;33;10;5;1;7;2; +a01BT+~~~~4B~~~+1;;;;4623;-1-1;-1-1;;1;1;6;1;593;;14;77;5;10;22;17;33;10;5;1;7;2; +a33DT+~~~28DB~~+1B;;;;4485;5477;7552;;1;1;6;1;594;;14;77;5;10;22;17;33;10;5;1;7;2; +a02ET#KMB~9C~~~+1;;;;3471;-1-1;-1-1;;1;1;6;1;596;;14;77;5;10;22;17;33;10;5;1;7;2; +a05AT-X6~26CH2~+1F;;;;4281;5372;7853;;1;1;6;1;597;;14;77;5;10;22;17;33;10;5;1;7;2; +*05BT+~~~~4B~~~-1;;;;4728;-1-1;-1-1;;1;1;6;1;597;;14;77;5;10;22;17;33;10;5;1;7;2; +*22DT+~~~26CB~~-1B;;;;4281;5372;8050;;1;1;6;1;598;;14;77;5;10;22;17;33;10;5;1;7;2; +*14EH#~~~~9C~~~-1;;;;3378;-1-1;-1-1;;1;1;6;1;600;;14;77;5;10;22;17;33;10;5;1;7;2; +*22AH-VP~81BH4~-1B;;;;3447;-1-1;7816;;1;1;6;1;601;;14;77;5;10;22;17;33;10;5;1;7;2; +a02DH+~~~81BS~~+1B;;;;3447;-1-1;7816;;1;1;6;1;602;;14;77;5;10;22;17;33;10;5;1;7;2; +a33EO=~~~~6B~~~+1;;;;2157;;;;1;1;6;1;603;;14;77;5;10;22;17;33;10;5;1;7;2; +*p01:01;;;;2056;-1-1;;;1;1;6;1;603;;14;77;5;10;22;17;33;10;5;1;7;2; +*c77:32;;;;1010;-1-1;9825;;1;0;0;1;632;; +*P14;;;;;;;;1;6;6;1;632;;32;5;10;22;17;14;33;10;5;1;7;2; +*z6;;;;;;;;1;6;6;1;632;;32;5;10;22;17;14;33;10;5;1;7;2; +aP02;;;;;;;;1;6;6;1;632;;32;5;10;22;17;14;33;10;5;1;7;2; +az6;;;;;;;;1;6;6;1;632;;32;5;10;22;17;14;33;10;5;1;7;2; +*32SM-~~~17A~~~00;;;;0275;-1-1;7471;;1;6;6;1;632;;32;5;10;22;17;14;33;10;5;1;7;2; +a01RM+~~~17AR~~00F;;;;0275;-1-1;7471;;1;6;6;1;633;;32;5;10;22;17;14;33;10;5;1;7;2; +a02EM#KMP~2C~~~00;;;;4468;-1-1;-1-1;;1;6;6;1;635;;32;5;10;22;17;14;33;10;5;1;7;2; +a33AM-XP~89DH1~00B;;;;2957;-1-1;7625;;1;6;6;1;636;;32;5;10;22;17;14;33;10;5;1;7;2; +*14DM#~~~89DS~~00B;;;;2957;-1-1;7625;;1;6;6;1;637;;32;5;10;22;17;14;33;10;5;1;7;2; +*05ET#~~~~3D~~~00;;;;4348;-1-1;-1-1;;1;6;6;1;639;;32;5;10;22;17;14;33;10;5;1;7;2; +*22AT#X5~45BH2~00F;;;;4414;-1-1;8074;;1;6;6;1;640;;32;5;10;22;17;14;33;10;5;1;7;2; +*p02:01;;;;2026;-1-1;;;1;6;6;1;640;;32;5;10;22;17;14;33;10;5;1;7;2; +*P14;;;;;;;;1;6;6;1;663;;32;5;10;22;17;14;33;10;5;1;7;2; +*z6;;;;;;;;1;6;6;1;663;;32;5;10;22;17;14;33;10;5;1;7;2; +aP02;;;;;;;;1;6;6;1;663;;32;5;10;22;17;14;33;10;5;1;7;2; +az6;;;;;;;;1;6;6;1;663;;32;5;10;22;17;14;33;10;5;1;7;2; +*32SM-~~~16C~~~+1;;;;0575;-1-1;7862;;1;6;6;1;663;;32;5;10;22;17;14;33;10;5;1;7;2; +a08RM+~~~16CL~~-1B;;;;0575;-1-1;7862;;1;6;6;1;665;;32;5;10;22;17;14;33;10;5;1;7;2; +a02EQ#KMC~2D~~~-1;;;;4364;-1-1;-1-1;;1;6;6;1;666;;32;5;10;22;17;14;33;10;5;1;7;2; +a10AQ#XM~37AH4~-1F;;;;4350;-1-1;7276;;1;6;6;1;667;;32;5;10;22;17;14;33;10;5;1;7;2; +*01DQ=~~~37AS~~+1B;;;;4350;-1-1;7276;;1;6;6;1;667;;32;5;10;22;17;14;33;10;5;1;7;2; +ap02:02;;;;0512;-1-1;;;1;6;6;1;668;;32;5;10;22;17;14;33;10;5;1;7;2; +aP02;;;;;;;;1;6;5;1;685;;32;5;10;22;17;14;10;5;1;7;2;33; +az5;;;;;;;;1;6;5;1;685;;32;5;10;22;17;14;10;5;1;7;2;33; +*P14;;;;;;;;1;6;5;1;685;;32;5;10;22;17;14;10;5;1;7;2;33; +*z6;;;;;;;;1;6;5;1;685;;32;5;10;22;17;14;10;5;1;7;2;33; +a08SM!~~~75B~~~00;;;;0526;-1-1;8071;;1;6;5;1;685;;32;5;10;22;17;14;10;5;1;7;2;33; +*01RM!~~~55BM~~00B;;;;0526;-1-1;8071;;1;6;5;1;686;;32;5;10;22;17;14;10;5;1;7;2;33; +*14ET#KMF~9C~~~00;;;;3664;-1-1;-1-1;;1;6;5;1;688;;32;5;10;22;17;14;10;5;1;7;2;33; +*22AT=X5~41DP2~00F;;;;4415;-1-1;9637;;1;6;5;1;689;;32;5;10;22;17;14;10;5;1;7;2;33; +ap02:03;;;;0463;-1-1;;;1;6;5;1;689;;32;5;10;22;17;14;10;5;1;7;2;33; +aP02;;;;;;;;1;6;5;1;707;;32;5;10;22;17;14;10;5;1;7;2;33; +az5;;;;;;;;1;6;5;1;707;;32;5;10;22;17;14;10;5;1;7;2;33; +*P14;;;;;;;;1;6;5;1;707;;32;5;10;22;17;14;10;5;1;7;2;33; +*z6;;;;;;;;1;6;5;1;707;;32;5;10;22;17;14;10;5;1;7;2;33; +a08SM+~~~55B~~~+1;;;;0325;-1-1;7966;;1;6;5;1;707;;32;5;10;22;17;14;10;5;1;7;2;33; +*01RM-~~~55BO~~-1B;;;;0325;-1-1;7966;;1;6;5;1;708;;32;5;10;22;17;14;10;5;1;7;2;33; +*14ET#~~~~3C~~~-1;;;;4443;-1-1;-1-1;;1;6;5;1;709;;32;5;10;22;17;14;10;5;1;7;2;33; +*22AT-X5~44AT4~-1F;;;;4418;-1-1;6377;;1;6;5;1;710;;32;5;10;22;17;14;10;5;1;7;2;33; +a01DT+~~~44AS~~+1F;;;;4418;-1-1;6377;;1;6;5;1;711;;32;5;10;22;17;14;10;5;1;7;2;33; +a02EH#~~~~8B~~~+1;;;;3259;-1-1;-1-1;;1;6;5;1;713;;32;5;10;22;17;14;10;5;1;7;2;33; +a01AH-V5~47AT2~+1F;;;;4226;-1-1;7376;;1;6;5;1;715;;32;5;10;22;17;14;10;5;1;7;2;33; +*01DH#~~~47AS~~-1B;;;;4226;-1-1;7376;;1;6;5;1;715;;32;5;10;22;17;14;10;5;1;7;2;33; +*14ET#KMB~3B~~~-1;;;;4461;-1-1;-1-1;;1;6;5;1;717;;32;5;10;22;17;14;10;5;1;7;2;33; +*10AT-X6~25BT4~-1F;;;;4486;5681;8070;;1;6;5;1;718;;32;5;10;22;17;14;10;5;1;7;2;33; +a01BT+~~~~4B~~~+1;;;;4419;-1-1;-1-1;;1;6;5;1;718;;32;5;10;22;17;14;10;5;1;7;2;33; +a02DT+~~~29CB~~+1B;;;;4486;5681;6921;;1;6;5;1;719;;32;5;10;22;17;14;10;5;1;7;2;33; +a08EH#~~~~8D~~~+1;;;;2638;-1-1;-1-1;;1;6;5;1;720;;32;5;10;22;17;14;10;5;1;7;2;33; +a01AH+V5~48AP4~+1F;;;;4015;5223;7640;;1;6;5;1;722;;32;5;10;22;17;14;10;5;1;7;2;33; +*05BH-~~~~2C~~~-1;;;;4877;-1-1;-1-1;;1;6;5;1;722;;32;5;10;22;17;14;10;5;1;7;2;33; +*32DH-~~~41CB~~-1B;;;;4015;5223;7737;;1;6;5;1;723;;32;5;10;22;17;14;10;5;1;7;2;33; +a05FH!~~~99D~~~+1F;;;;3672;;7128;;1;6;5;1;725;;32;5;10;22;17;14;10;5;1;7;2;33; +a02ET#~~~~3D~~~+1;;;;3744;-1-1;-1-1;;1;6;5;1;727;;32;5;10;22;17;14;10;5;1;7;2;33; +a01AT-X5~47AH2~+1F;;;;4316;-1-1;7472;;1;6;5;1;728;;32;5;10;22;17;14;10;5;1;7;2;33; +*01DT#~~~47AS~~-1B;;;;4316;-1-1;7472;;1;6;5;1;729;;32;5;10;22;17;14;10;5;1;7;2;33; +*14EQ#K1C~3C~~~-1;;;;4539;-1-1;-1-1;;1;6;5;1;731;;32;5;10;22;17;14;10;5;1;7;2;33; +*05AQ=X1~34BH2~-1F;;;;4331;-1-1;5370;;1;6;5;1;731;;32;5;10;22;17;14;10;5;1;7;2;33; +ap02:04;;;;4730;-1-1;;;1;6;5;1;732;;32;5;10;22;17;14;10;5;1;7;2;33; +aP02;;;;;;;;1;6;5;1;760;;32;5;10;22;17;14;10;5;1;7;2;33; +az5;;;;;;;;1;6;5;1;760;;32;5;10;22;17;14;10;5;1;7;2;33; +*P14;;;;;;;;1;6;5;1;760;;32;5;10;22;17;14;10;5;1;7;2;33; +*z6;;;;;;;;1;6;5;1;760;;32;5;10;22;17;14;10;5;1;7;2;33; +a08SM-~~~75B~~~+2;;;;0026;-1-1;8066;;1;6;5;1;760;;32;5;10;22;17;14;10;5;1;7;2;33; +*01RM+~~~55BR~~-2B;;;;0026;-1-1;8066;;1;6;5;1;762;;32;5;10;22;17;14;10;5;1;7;2;33; +*14EQ#KMC~2D~~~-2;;;;4364;-1-1;-1-1;;1;6;5;1;763;;32;5;10;22;17;14;10;5;1;7;2;33; +*05AQ#X1~38BH2~-2F;;;;4455;5451;6646;;1;6;5;1;764;;32;5;10;22;17;14;10;5;1;7;2;33; +a07BQ=~~~~3C~~~+2;;;;4649;-1-1;-1-1;;1;6;5;1;764;;32;5;10;22;17;14;10;5;1;7;2;33; +*p03:04;;;;4479;-1-1;;;1;6;5;1;764;;32;5;10;22;17;14;10;5;1;7;2;33; +*P14;;;;;;;;1;5;5;1;781;;5;10;22;17;14;32;10;5;1;7;2;33; +*z5;;;;;;;;1;5;5;1;781;;5;10;22;17;14;32;10;5;1;7;2;33; +aP02;;;;;;;;1;5;5;1;781;;5;10;22;17;14;32;10;5;1;7;2;33; +az5;;;;;;;;1;5;5;1;781;;5;10;22;17;14;32;10;5;1;7;2;33; +*05ST-~~~78A~~~-1;;;;0436;-1-1;7548;;1;5;5;1;781;;5;10;22;17;14;32;10;5;1;7;2;33; +a33RT+~~~58AW~~+1B;;;;0436;-1-1;7548;;1;5;5;1;782;;5;10;22;17;14;32;10;5;1;7;2;33; +a02ET#~~~~3A~~~+1;;;;4352;-1-1;-1-1;;1;5;5;1;783;;5;10;22;17;14;32;10;5;1;7;2;33; +a01AT-X5~41CP2~+1F;;;;4317;5624;7936;;1;5;5;1;785;;5;10;22;17;14;32;10;5;1;7;2;33; +*17BT+~~~~2C~~~-1;;;;4476;-1-1;-1-1;;1;5;5;1;785;;5;10;22;17;14;32;10;5;1;7;2;33; +*32DT#~~~46CB~~-1B;;;;4317;5624;8351;;1;5;5;1;785;;5;10;22;17;14;32;10;5;1;7;2;33; +*14ET#KMF~2D~~~-1;;;;4263;-1-1;-1-1;;1;5;5;1;787;;5;10;22;17;14;32;10;5;1;7;2;33; +*22AT/X5~41BH1~-1F;;;;4421;5720;8018;;1;5;5;1;788;;5;10;22;17;14;32;10;5;1;7;2;33; +a05BT#~~~~2D~~~+1;;;;4380;-1-1;-1-1;;1;5;5;1;788;;5;10;22;17;14;32;10;5;1;7;2;33; +ap03:05;;;;2988;-1-1;;;1;5;5;1;789;;5;10;22;17;14;32;10;5;1;7;2;33; +ac05:04;;;;1010;-1-1;9666;;1;0;0;1;812;; +aP02;;;;;;;;1;5;4;1;812;;5;10;22;17;14;32;4;1;7;2;33;10; +az4;;;;;;;;1;5;4;1;812;;5;10;22;17;14;32;4;1;7;2;33;10; +*P14;;;;;;;;1;5;4;1;812;;5;10;22;17;14;32;4;1;7;2;33;10; +*z5;;;;;;;;1;5;4;1;812;;5;10;22;17;14;32;4;1;7;2;33;10; +a04SM-~~~71C~~~+2;;;;0434;-1-1;8124;;1;5;4;1;812;;5;10;22;17;14;32;4;1;7;2;33;10; +*01RM+~~~51CW~~-2B;;;;0434;-1-1;8124;;1;5;4;1;813;;5;10;22;17;14;32;4;1;7;2;33;10; +*14EQ#KMC~2C~~~-2;;;;4665;-1-1;-1-1;;1;5;4;1;814;;5;10;22;17;14;32;4;1;7;2;33;10; +*17AQ#XM~35CH1~-2F;;;;4351;-1-1;8183;;1;5;4;1;814;;5;10;22;17;14;32;4;1;7;2;33;10; +*p04:05;;;;1917;-1-1;;;1;5;4;1;815;;5;10;22;17;14;32;4;1;7;2;33;10; +*c10:18;;;;1010;-1-1;9932;;1;0;0;1;838;; +*P14;;;;;;;;1;4;4;1;838;;18;22;17;14;32;5;4;1;7;2;33;10; +*z4;;;;;;;;1;4;4;1;838;;18;22;17;14;32;5;4;1;7;2;33;10; +aP02;;;;;;;;1;4;4;1;838;;18;22;17;14;32;5;4;1;7;2;33;10; +az4;;;;;;;;1;4;4;1;838;;18;22;17;14;32;5;4;1;7;2;33;10; +*18SM-~~~98D~~~-1;;;;0168;-1-1;7353;;1;4;4;1;838;;18;22;17;14;32;5;4;1;7;2;33;10; +a08RM+~~~18DR~~+1B;;;;0168;-1-1;7353;;1;4;4;1;839;;18;22;17;14;32;5;4;1;7;2;33;10; +a02EN#KSC~3D~~~+1;;;;4246;-1-1;-1-1;;1;4;4;1;841;;18;22;17;14;32;5;4;1;7;2;33;10; +a07AN=CF~27DH4~+1F;;;;4481;-1-1;7487;;1;4;4;1;842;;18;22;17;14;32;5;4;1;7;2;33;10; +*p05:05;;;;2613;-1-1;;;1;4;4;1;842;;18;22;17;14;32;5;4;1;7;2;33;10; +*P14;;;;;;;;1;4;4;1;859;;18;22;17;14;32;5;4;1;7;2;33;10; +*z4;;;;;;;;1;4;4;1;859;;18;22;17;14;32;5;4;1;7;2;33;10; +aP02;;;;;;;;1;4;4;1;859;;18;22;17;14;32;5;4;1;7;2;33;10; +az4;;;;;;;;1;4;4;1;859;;18;22;17;14;32;5;4;1;7;2;33;10; +*18SM!~~~97A~~~00;;;;0269;-1-1;7569;;1;4;4;1;859;;18;22;17;14;32;5;4;1;7;2;33;10; +a01RM!~~~17AR~~00F;;;;0269;-1-1;7569;;1;4;4;1;860;;18;22;17;14;32;5;4;1;7;2;33;10; +a02EM#~~~~3D~~~00;;;;3739;-1-1;-1-1;;1;4;4;1;862;;18;22;17;14;32;5;4;1;7;2;33;10; +a33AM#XP~87BH4~00B;;;;3356;5462;6966;;1;4;4;1;863;;18;22;17;14;32;5;4;1;7;2;33;10; +*17BM!~~~~3C~~~00;;;;4638;-1-1;-1-1;;1;4;4;1;863;;18;22;17;14;32;5;4;1;7;2;33;10; +*17DM=~~~83CB~~00F;;;;3356;5462;5362;;1;4;4;1;864;;18;22;17;14;32;5;4;1;7;2;33;10; +ap05:06;;;;4329;-1-1;;;1;4;4;1;865;;18;22;17;14;32;5;4;1;7;2;33;10; +aP02;;;;;;;;1;4;3;1;886;;18;22;17;14;32;5;1;7;2;33;10;4; +az3;;;;;;;;1;4;3;1;886;;18;22;17;14;32;5;1;7;2;33;10;4; +*P14;;;;;;;;1;4;3;1;886;;18;22;17;14;32;5;1;7;2;33;10;4; +*z4;;;;;;;;1;4;3;1;886;;18;22;17;14;32;5;1;7;2;33;10;4; +a01SQ-~~~17A~~~+1;;;;0377;-1-1;7666;;1;4;3;1;886;;18;22;17;14;32;5;1;7;2;33;10;4; +*32RQ+~~~17AL~~-1B;;;;0377;-1-1;7666;;1;4;3;1;887;;18;22;17;14;32;5;1;7;2;33;10;4; +*14EM#~~~~3D~~~-1;;;;4346;-1-1;-1-1;;1;4;3;1;889;;18;22;17;14;32;5;1;7;2;33;10;4; +*17AM-X4~25BH1~-1F;;;;4378;5475;7968;;1;4;3;1;890;;18;22;17;14;32;5;1;7;2;33;10;4; +a33BM+~~~~4B~~~+1;;;;4625;-1-1;-1-1;;1;4;3;1;890;;18;22;17;14;32;5;1;7;2;33;10;4; +a01DM#~~~26BB~~+1B;;;;4378;5475;8249;;1;4;3;1;890;;18;22;17;14;32;5;1;7;2;33;10;4; +a02ET#KBF~2D~~~+1;;;;4068;-1-1;-1-1;;1;4;3;1;892;;18;22;17;14;32;5;1;7;2;33;10;4; +a33AT-X5~46BT2~+1F;;;;4415;5522;8040;;1;4;3;1;893;;18;22;17;14;32;5;1;7;2;33;10;4; +*17BT+~~~~2C~~~-1;;;;4578;-1-1;-1-1;;1;4;3;1;893;;18;22;17;14;32;5;1;7;2;33;10;4; +*18DT#~~~49DB~~-1B;;;;4415;5522;7031;;1;4;3;1;894;;18;22;17;14;32;5;1;7;2;33;10;4; +*14ET#~~~~3D~~~-1;;;;4246;-1-1;-1-1;;1;4;3;1;896;;18;22;17;14;32;5;1;7;2;33;10;4; +*22AT#X5~46BH4~-1F;;;;4514;5722;8139;;1;4;3;1;897;;18;22;17;14;32;5;1;7;2;33;10;4; +a07BT=~~~~2D~~~+1;;;;4378;-1-1;-1-1;;1;4;3;1;897;;18;22;17;14;32;5;1;7;2;33;10;4; +*p06:06;;;;0008;-1-1;;;1;4;3;1;898;;18;22;17;14;32;5;1;7;2;33;10;4; +*c32:77;;;;1010;-1-1;9922;;1;0;0;1;913;; +*P14;;;;;;;;1;3;3;1;913;;22;17;14;77;5;18;1;7;2;33;10;4; +*z3;;;;;;;;1;3;3;1;913;;22;17;14;77;5;18;1;7;2;33;10;4; +aP02;;;;;;;;1;3;3;1;913;;22;17;14;77;5;18;1;7;2;33;10;4; +az3;;;;;;;;1;3;3;1;913;;22;17;14;77;5;18;1;7;2;33;10;4; +*22SH=~~~13C~~~00;;;;0178;-1-1;4641;;1;3;3;1;913;;22;17;14;77;5;18;1;7;2;33;10;4; +ap06:07;;;;4641;-1-1;;;1;3;3;1;914;;22;17;14;77;5;18;1;7;2;33;10;4; +aP02;;;;;;;;1;3;2;1;934;;22;17;14;77;5;18;7;2;33;10;4;1; +az2;;;;;;;;1;3;2;1;934;;22;17;14;77;5;18;7;2;33;10;4;1; +*P14;;;;;;;;1;3;2;1;934;;22;17;14;77;5;18;7;2;33;10;4;1; +*z3;;;;;;;;1;3;2;1;934;;22;17;14;77;5;18;7;2;33;10;4;1; +a07SM!~~~55B~~~+1;;;;0425;-1-1;8171;;1;3;2;1;934;;22;17;14;77;5;18;7;2;33;10;4;1; +*01RM!~~~55BL~~-1B;;;;0425;-1-1;8171;;1;3;2;1;935;;22;17;14;77;5;18;7;2;33;10;4;1; +*14EM#K2P~4A~~~-1;;;;3933;-1-1;-1-1;;1;3;2;1;937;;22;17;14;77;5;18;7;2;33;10;4;1; +*22AM#XP~88AH4~-1B;;;;3247;-1-1;7638;;1;3;2;1;938;;22;17;14;77;5;18;7;2;33;10;4;1; +a01DM=~~~88AS~~+1B;;;;3247;-1-1;7638;;1;3;2;1;938;;22;17;14;77;5;18;7;2;33;10;4;1; +*p07:07;;;;2987;-1-1;;;1;3;2;1;940;;22;17;14;77;5;18;7;2;33;10;4;1; +*P14;;;;;;;;1;2;2;1;956;;17;14;77;5;18;22;7;2;33;10;4;1; +*z2;;;;;;;;1;2;2;1;956;;17;14;77;5;18;22;7;2;33;10;4;1; +aP02;;;;;;;;1;2;2;1;956;;17;14;77;5;18;22;7;2;33;10;4;1; +az2;;;;;;;;1;2;2;1;956;;17;14;77;5;18;22;7;2;33;10;4;1; +*01SM+~~~97A~~~00;;;;0559;-1-1;7664;;1;2;2;1;956;;17;14;77;5;18;22;7;2;33;10;4;1; +a33RM-~~~67AR~~00F;;;;0559;-1-1;7664;;1;2;2;1;956;;17;14;77;5;18;22;7;2;33;10;4;1; +a02ET#K7B~8B~~~00;;;;3357;-1-1;-1-1;;1;2;2;1;958;;17;14;77;5;18;22;7;2;33;10;4;1; +a04AT-X8~97BH1~00B;;;;3279;5478;6877;;1;2;2;1;959;;17;14;77;5;18;22;7;2;33;10;4;1; +*77BT+~~~~4B~~~00;;;;4622;-1-1;-1-1;;1;2;2;1;959;;17;14;77;5;18;22;7;2;33;10;4;1; +*01DT#~~~95CB~~00B;;;;3279;5478;7888;;1;2;2;1;961;;17;14;77;5;18;22;7;2;33;10;4;1; +*14EM#K7P~9C~~~00;;;;3677;-1-1;-1-1;;1;2;2;1;962;;17;14;77;5;18;22;7;2;33;10;4;1; +*22AM-XP~89CT2~00B;;;;3056;-1-1;6422;;1;2;2;1;964;;17;14;77;5;18;22;7;2;33;10;4;1; +a02DM+~~~89CS~~00F;;;;3056;-1-1;6422;;1;2;2;1;965;;17;14;77;5;18;22;7;2;33;10;4;1; +a04EH#~~~~8C~~~00;;;;3239;-1-1;-1-1;;1;2;2;1;966;;17;14;77;5;18;22;7;2;33;10;4;1; +a33AH#V5~49AH2~00F;;;;4117;-1-1;7518;;1;2;2;1;968;;17;14;77;5;18;22;7;2;33;10;4;1; +*18DH=~~~49AS~~00B;;;;4117;-1-1;7518;;1;2;2;1;968;;17;14;77;5;18;22;7;2;33;10;4;1; +ap07:08;;;;0087;-1-1;;;1;2;2;1;969;;17;14;77;5;18;22;7;2;33;10;4;1; +ac04:05;;;;1010;-1-1;9623;;1;0;0;1;991;; +aP02;;;;;;;;1;2;1;1;991;;17;14;77;5;18;22;2;33;10;5;1;7; +az1;;;;;;;;1;2;1;1;991;;17;14;77;5;18;22;2;33;10;5;1;7; +*P14;;;;;;;;1;2;1;1;991;;17;14;77;5;18;22;2;33;10;5;1;7; +*z2;;;;;;;;1;2;1;1;991;;17;14;77;5;18;22;2;33;10;5;1;7; +a02SM!~~~17A~~~+1;;;;0477;-1-1;7670;;1;2;1;1;991;;17;14;77;5;18;22;2;33;10;5;1;7; +*77RM!~~~17AO~~-1F;;;;0477;-1-1;7670;;1;2;1;1;992;;17;14;77;5;18;22;2;33;10;5;1;7; +*14EM#K1F~3D~~~-1;;;;4145;-1-1;-1-1;;1;2;1;1;993;;17;14;77;5;18;22;2;33;10;5;1;7; +*77AM=X9~41BT2~-1F;;;;4328;-1-1;7713;;1;2;1;1;994;;17;14;77;5;18;22;2;33;10;5;1;7; +ap07:09;;;;2387;-1-1;;;1;2;1;1;995;;17;14;77;5;18;22;2;33;10;5;1;7; +aP02;;;;;;;;1;2;1;1;1084;;17;14;77;5;18;22;2;33;10;5;1;7; +az1;;;;;;;;1;2;1;1;1084;;17;14;77;5;18;22;2;33;10;5;1;7; +*P14;;;;;;;;1;2;1;1;1084;;17;14;77;5;18;22;2;33;10;5;1;7; +*z2;;;;;;;;1;2;1;1;1084;;17;14;77;5;18;22;2;33;10;5;1;7; +a02SM-~~~95B~~~+2;;;;0172;-1-1;7763;;1;2;1;1;1084;;17;14;77;5;18;22;2;33;10;5;1;7; +*18RM+~~~15BL~~-2B;;;;0172;-1-1;7763;;1;2;1;1;1086;;17;14;77;5;18;22;2;33;10;5;1;7; +*14ET#KMB~2D~~~-2;;;;4263;-1-1;-1-1;;1;2;1;1;1087;;17;14;77;5;18;22;2;33;10;5;1;7; +*22AT#X8~98CH2~-2B;;;;3279;5364;6853;;1;2;1;1;1088;;17;14;77;5;18;22;2;33;10;5;1;7; +a10BT=~~~~4B~~~+2;;;;4736;-1-1;-1-1;;1;2;1;1;1088;;17;14;77;5;18;22;2;33;10;5;1;7; +*p08:09;;;;1577;-1-1;;;1;2;1;1;1089;;17;14;77;5;18;22;2;33;10;5;1;7; +*c18:10;;;;1010;-1-1;9828;;1;0;0;1;1106;; +*P14;;;;;;;;1;1;1;1;1106;;14;77;5;10;22;17;2;33;10;5;1;7; +*z1;;;;;;;;1;1;1;1;1106;;14;77;5;10;22;17;2;33;10;5;1;7; +aP02;;;;;;;;1;1;1;1;1106;;14;77;5;10;22;17;2;33;10;5;1;7; +az1;;;;;;;;1;1;1;1;1106;;14;77;5;10;22;17;2;33;10;5;1;7; +*14SM#~~~91C~~~-1;;;;0272;-1-1;8730;;1;1;1;1;1106;;14;77;5;10;22;17;2;33;10;5;1;7; +a33RM=~~~11CR~~+1F;;;;0272;-1-1;8730;;1;1;1;1;1108;;14;77;5;10;22;17;2;33;10;5;1;7; +*p09:09;;;;1370;-1-1;;;1;1;1;1;1108;;14;77;5;10;22;17;2;33;10;5;1;7; +*P14;;;;;;;;1;1;1;1;1123;;14;77;5;10;22;17;2;33;10;5;1;7; +*z1;;;;;;;;1;1;1;1;1123;;14;77;5;10;22;17;2;33;10;5;1;7; +aP02;;;;;;;;1;1;1;1;1123;;14;77;5;10;22;17;2;33;10;5;1;7; +az1;;;;;;;;1;1;1;1;1123;;14;77;5;10;22;17;2;33;10;5;1;7; +*14SM-~~~19D~~~00;;;;0178;-1-1;7636;;1;1;1;1;1123;;14;77;5;10;22;17;2;33;10;5;1;7; +a08RM+~~~19DL~~00B;;;;0178;-1-1;7636;;1;1;1;1;1124;;14;77;5;10;22;17;2;33;10;5;1;7; +a02EN#KBC~3C~~~00;;;;4637;-1-1;-1-1;;1;1;1;1;1126;;14;77;5;10;22;17;2;33;10;5;1;7; +a10AN-CF~28CH2~00F;;;;4151;5255;6459;;1;1;1;1;1126;;14;77;5;10;22;17;2;33;10;5;1;7; +*77BN+~~~~3C~~~00;;;;4845;-1-1;-1-1;;1;1;1;1;1126;;14;77;5;10;22;17;2;33;10;5;1;7; +*01DN#~~~35BB~~00B;;;;4151;5255;7768;;1;1;1;1;1128;;14;77;5;10;22;17;2;33;10;5;1;7; +*14EQ#K1C~3B~~~00;;;;4558;-1-1;-1-1;;1;1;1;1;1130;;14;77;5;10;22;17;2;33;10;5;1;7; +*05AQ#X1~34DH4~00F;;;;4546;-1-1;6389;;1;1;1;1;1130;;14;77;5;10;22;17;2;33;10;5;1;7; +*p10:09;;;;3711;-1-1;;;1;1;1;1;1130;;14;77;5;10;22;17;2;33;10;5;1;7; +*P14;;;;;;;;1;1;1;1;1147;;14;77;5;10;22;17;2;33;10;5;1;7; +*z1;;;;;;;;1;1;1;1;1147;;14;77;5;10;22;17;2;33;10;5;1;7; +aP02;;;;;;;;1;1;1;1;1147;;14;77;5;10;22;17;2;33;10;5;1;7; +az1;;;;;;;;1;1;1;1;1147;;14;77;5;10;22;17;2;33;10;5;1;7; +*14SM!~~~11C~~~+1;;;;0076;-1-1;7832;;1;1;1;1;1147;;14;77;5;10;22;17;2;33;10;5;1;7; +a33RM!~~~11CO~~-1F;;;;0076;-1-1;7832;;1;1;1;1;1148;;14;77;5;10;22;17;2;33;10;5;1;7; +a02ET#KMB~3A~~~-1;;;;3762;-1-1;-1-1;;1;1;1;1;1150;;14;77;5;10;22;17;2;33;10;5;1;7; +a05AT+X6~26BH2~-1F;;;;4480;-1-1;7940;;1;1;1;1;1151;;14;77;5;10;22;17;2;33;10;5;1;7; +*22DT-~~~26BS~~+1B;;;;4480;-1-1;7940;;1;1;1;1;1152;;14;77;5;10;22;17;2;33;10;5;1;7; +a08FH#~~~65B~~~-1B;;;;2160;;7966;;1;1;1;1;1154;;14;77;5;10;22;17;2;33;10;5;1;7; +a02ET#K1F~3B~~~-1;;;;4552;-1-1;-1-1;;1;1;1;1;1156;;14;77;5;10;22;17;2;33;10;5;1;7; +a33AT/X5~41CH1~-1F;;;;4112;5722;7735;;1;1;1;1;1157;;14;77;5;10;22;17;2;33;10;5;1;7; +*10BT#~~~~2D~~~+1;;;;4378;-1-1;-1-1;;1;1;1;1;1157;;14;77;5;10;22;17;2;33;10;5;1;7; +*p11:09;;;;4616;-1-1;;;1;1;1;1;1157;;14;77;5;10;22;17;2;33;10;5;1;7; +*P14;;;;;;;;1;1;1;1;1175;;14;77;5;10;22;17;2;33;10;5;1;7; +*z1;;;;;;;;1;1;1;1;1175;;14;77;5;10;22;17;2;33;10;5;1;7; +aP02;;;;;;;;1;1;1;1;1175;;14;77;5;10;22;17;2;33;10;5;1;7; +az1;;;;;;;;1;1;1;1;1175;;14;77;5;10;22;17;2;33;10;5;1;7; +*14SM+~~~11C~~~+2;;;;0380;-1-1;7929;;1;1;1;1;1175;;14;77;5;10;22;17;2;33;10;5;1;7; +a33RM-~~~11CM~~-2F;;;;0380;-1-1;7929;;1;1;1;1;1176;;14;77;5;10;22;17;2;33;10;5;1;7; +a02ET#KMB~8B~~~-2;;;;3461;-1-1;-1-1;;1;1;1;1;1178;;14;77;5;10;22;17;2;33;10;5;1;7; +a33AT-X6~24AT2~-2F;;;;4285;-1-1;6176;;1;1;1;1;1179;;14;77;5;10;22;17;2;33;10;5;1;7; +*01DT+~~~24AS~~+2B;;;;4285;-1-1;6176;;1;1;1;1;1180;;14;77;5;10;22;17;2;33;10;5;1;7; +*14EH#~~~~4A~~~+2;;;;4033;-1-1;-1-1;;1;1;1;1;1181;;14;77;5;10;22;17;2;33;10;5;1;7; +*77AH-V5~47AH2~+2F;;;;4515;-1-1;7574;;1;1;1;1;1183;;14;77;5;10;22;17;2;33;10;5;1;7; +a08DH+~~~47AS~~-2B;;;;4515;-1-1;7574;;1;1;1;1;1183;;14;77;5;10;22;17;2;33;10;5;1;7; +a02ET#~~~~8C~~~-2;;;;3247;-1-1;-1-1;;1;1;1;1;1185;;14;77;5;10;22;17;2;33;10;5;1;7; +a05AT-X5~46BT2~-2F;;;;4311;5523;7846;;1;1;1;1;1187;;14;77;5;10;22;17;2;33;10;5;1;7; +*05BT+~~~~2C~~~+2;;;;4577;-1-1;-1-1;;1;1;1;1;1187;;14;77;5;10;22;17;2;33;10;5;1;7; +*22DT#~~~48AB~~+2B;;;;4311;5523;7648;;1;1;1;1;1188;;14;77;5;10;22;17;2;33;10;5;1;7; +*14EM#K1P~3B~~~+2;;;;4455;-1-1;-1-1;;1;1;1;1;1190;;14;77;5;10;22;17;2;33;10;5;1;7; +*22AM#XR~85BH4~+2B;;;;3135;-1-1;8567;;1;1;1;1;1190;;14;77;5;10;22;17;2;33;10;5;1;7; +*p12:09;;;;1533;-1-1;;;1;1;1;1;1191;;14;77;5;10;22;17;2;33;10;5;1;7; +*P14;;;;;;;;1;1;1;1;1316;;14;77;5;10;22;17;2;33;10;5;1;7; +*z1;;;;;;;;1;1;1;1;1316;;14;77;5;10;22;17;2;33;10;5;1;7; +aP02;;;;;;;;1;1;1;1;1316;;14;77;5;10;22;17;2;33;10;5;1;7; +az1;;;;;;;;1;1;1;1;1316;;14;77;5;10;22;17;2;33;10;5;1;7; +*14SM!~~~96C~~~+3;;;;0273;-1-1;7855;;1;1;1;1;1316;;14;77;5;10;22;17;2;33;10;5;1;7; +a08RM!~~~16CL~~-3B;;;;0273;-1-1;7855;;1;1;1;1;1317;;14;77;5;10;22;17;2;33;10;5;1;7; +a02ET#KMB~2D~~~-3;;;;3967;-1-1;-1-1;;1;1;1;1;1319;;14;77;5;10;22;17;2;33;10;5;1;7; +a05AT#X6~25BH1~-3F;;;;4383;-1-1;7773;;1;1;1;1;1320;;14;77;5;10;22;17;2;33;10;5;1;7; +ap12:10;;;;2327;-1-1;;;1;1;1;1;1321;;14;77;5;10;22;17;2;33;10;5;1;7; +aP02;;;;;;;;1;1;6;1;1341;;14;77;5;10;22;17;33;10;5;1;7;2; +az6;;;;;;;;1;1;6;1;1341;;14;77;5;10;22;17;33;10;5;1;7;2; +*P14;;;;;;;;1;1;6;1;1341;;14;77;5;10;22;17;33;10;5;1;7;2; +*z1;;;;;;;;1;1;6;1;1341;;14;77;5;10;22;17;33;10;5;1;7;2; +a33SQ/~~~95B~~~-2;;;;0573;-1-1;7967;;1;1;6;1;1341;;14;77;5;10;22;17;33;10;5;1;7;2; +*01RQ/~~~15BL~~+2B;;;;0573;-1-1;7967;;1;1;6;1;1342;;14;77;5;10;22;17;33;10;5;1;7;2; +a33FH-~~~41C~~~-2B;;;;4428;;8528;;1;1;6;1;1345;;14;77;5;10;22;17;33;10;5;1;7;2; +a02ET#K7F~8B~~~-2;;;;3159;-1-1;-1-1;;1;1;6;1;1347;;14;77;5;10;22;17;33;10;5;1;7;2; +a01AT-X5~46CH2~-2F;;;;4616;5626;8152;;1;1;6;1;1348;;14;77;5;10;22;17;33;10;5;1;7;2; +*05BT+~~~~2C~~~+2;;;;4474;-1-1;-1-1;;1;1;6;1;1348;;14;77;5;10;22;17;33;10;5;1;7;2; +*01DT+~~~47AB~~+2B;;;;4616;5626;7567;;1;1;6;1;1349;;14;77;5;10;22;17;33;10;5;1;7;2; +*14EH#K7P~8B~~~+2;;;;3260;-1-1;-1-1;;1;1;6;1;1351;;14;77;5;10;22;17;33;10;5;1;7;2; +*22AH+VR~88CH3~+2B;;;;3240;5551;6857;;1;1;6;1;1352;;14;77;5;10;22;17;33;10;5;1;7;2; +a10BH-~~~~3C~~~-2;;;;4549;-1-1;-1-1;;1;1;6;1;1352;;14;77;5;10;22;17;33;10;5;1;7;2; +a02DH-~~~89AB~~-2B;;;;3240;5551;7515;;1;1;6;1;1353;;14;77;5;10;22;17;33;10;5;1;7;2; +a10AO-~~~38AP1~-2F;;;;4350;-1-1;7545;;1;1;6;1;1354;;14;77;5;10;22;17;33;10;5;1;7;2; +*22DO+~~~38AS~~+2B;;;;4350;-1-1;7545;;1;1;6;1;1355;;14;77;5;10;22;17;33;10;5;1;7;2; +*14EO#~~~~8A~~~+2;;;;2959;-1-1;-1-1;;1;1;6;1;1357;;14;77;5;10;22;17;33;10;5;1;7;2; +*10AO=~~~46DP2~+2F;;;;3831;-1-1;9752;;1;1;6;1;1359;;14;77;5;10;22;17;33;10;5;1;7;2; +ap12:11;;;;0348;-1-1;;;1;1;6;1;1359;;14;77;5;10;22;17;33;10;5;1;7;2; +aP02;;;;;;;;1;1;6;1;1380;;14;77;5;10;22;17;33;10;5;1;7;2; +az6;;;;;;;;1;1;6;1;1380;;14;77;5;10;22;17;33;10;5;1;7;2; +*P14;;;;;;;;1;1;6;1;1380;;14;77;5;10;22;17;33;10;5;1;7;2; +*z1;;;;;;;;1;1;6;1;1380;;14;77;5;10;22;17;33;10;5;1;7;2; +a33SQ=~~~93B~~~-1;;;;0071;-1-1;4960;;1;1;6;1;1380;;14;77;5;10;22;17;33;10;5;1;7;2; +*p13:11;;;;4960;-1-1;;;1;1;6;1;1381;;14;77;5;10;22;17;33;10;5;1;7;2; +*c77:32;;;;1010;-1-1;9927;;1;0;0;1;1402;; +*P14;;;;;;;;1;6;6;1;1402;;32;5;10;22;17;14;33;10;5;1;7;2; +*z6;;;;;;;;1;6;6;1;1402;;32;5;10;22;17;14;33;10;5;1;7;2; +aP02;;;;;;;;1;6;6;1;1402;;32;5;10;22;17;14;33;10;5;1;7;2; +az6;;;;;;;;1;6;6;1;1402;;32;5;10;22;17;14;33;10;5;1;7;2; +*32SM=~~~95A~~~+2;;;;0173;-1-1;9866;;1;6;6;1;1402;;32;5;10;22;17;14;33;10;5;1;7;2; +ap13:12;;;;0234;-1-1;;;1;6;6;1;1403;;32;5;10;22;17;14;33;10;5;1;7;2; +aP02;;;;;;;;1;6;5;1;1419;;32;5;10;22;17;14;10;5;1;7;2;33; +az5;;;;;;;;1;6;5;1;1419;;32;5;10;22;17;14;10;5;1;7;2;33; +*P14;;;;;;;;1;6;5;1;1419;;32;5;10;22;17;14;10;5;1;7;2;33; +*z6;;;;;;;;1;6;5;1;1419;;32;5;10;22;17;14;10;5;1;7;2;33; +a08SM-~~~56C~~~-1;;;;0423;-1-1;8061;;1;6;5;1;1419;;32;5;10;22;17;14;10;5;1;7;2;33; +*01RM+~~~56CM~~+1B;;;;0423;-1-1;8061;;1;6;5;1;1421;;32;5;10;22;17;14;10;5;1;7;2;33; +*14ET#K7F~3C~~~+1;;;;4542;-1-1;-1-1;;1;6;5;1;1422;;32;5;10;22;17;14;10;5;1;7;2;33; +*22AT#X5~45BH1~+1F;;;;4317;-1-1;7770;;1;6;5;1;1423;;32;5;10;22;17;14;10;5;1;7;2;33; +a08DT=~~~45BS~~-1B;;;;4317;-1-1;7770;;1;6;5;1;1424;;32;5;10;22;17;14;10;5;1;7;2;33; +*p14:12;;;;2687;-1-1;;;1;6;5;1;1426;;32;5;10;22;17;14;10;5;1;7;2;33; +*P14;;;;;;;;1;5;5;1;1442;;5;10;22;17;14;32;10;5;1;7;2;33; +*z5;;;;;;;;1;5;5;1;1442;;5;10;22;17;14;32;10;5;1;7;2;33; +aP02;;;;;;;;1;5;5;1;1442;;5;10;22;17;14;32;10;5;1;7;2;33; +az5;;;;;;;;1;5;5;1;1442;;5;10;22;17;14;32;10;5;1;7;2;33; +*05ST-~~~75B~~~+2;;;;0243;-1-1;7974;;1;5;5;1;1442;;5;10;22;17;14;32;10;5;1;7;2;33; +a01RT+~~~65BR~~-2F;;;;0243;-1-1;7974;;1;5;5;1;1443;;5;10;22;17;14;32;10;5;1;7;2;33; +a02ET#K7B~3A~~~-2;;;;4357;-1-1;-1-1;;1;5;5;1;1445;;5;10;22;17;14;32;10;5;1;7;2;33; +a05AT#X6~27BT4~-2F;;;;4282;-1-1;6777;;1;5;5;1;1446;;5;10;22;17;14;32;10;5;1;7;2;33; +ap14:13;;;;3323;-1-1;;;1;5;5;1;1447;;5;10;22;17;14;32;10;5;1;7;2;33; +ac05:04;;;;1010;-1-1;9090;;1;0;0;1;1469;; +ac02:15;;;;1010;-1-1;9771;;1;0;0;1;1469;; +aP15;;;;;;;;1;5;4;1;1469;;5;10;22;17;14;32;4;1;7;15;33;10; +az4;;;;;;;;1;5;4;1;1469;;5;10;22;17;14;32;4;1;7;15;33;10; +*P14;;;;;;;;1;5;4;1;1469;;5;10;22;17;14;32;4;1;7;15;33;10; +*z5;;;;;;;;1;5;4;1;1469;;5;10;22;17;14;32;4;1;7;15;33;10; +a04SM+~~~76B~~~-1;;;;0329;-1-1;7743;;1;5;4;1;1469;;5;10;22;17;14;32;4;1;7;15;33;10; +*01RM-~~~56BL~~+1B;;;;0329;-1-1;7743;;1;5;4;1;1471;;5;10;22;17;14;32;4;1;7;15;33;10; +*10EO#~~~~1B~~~+1;;;;2291;-1-1;-1-1;;1;5;4;1;1472;;5;10;22;17;14;32;4;1;7;15;33;10; +*22AO-~~~49CP4~+1F;;;;4231;-1-1;6928;;1;5;4;1;1474;;5;10;22;17;14;32;4;1;7;15;33;10; +a33DO+~~~49CS~~-1B;;;;4231;-1-1;6928;;1;5;4;1;1475;;5;10;22;17;14;32;4;1;7;15;33;10; +a08EH#~~~~8A~~~-1;;;;2656;-1-1;-1-1;;1;5;4;1;1477;;5;10;22;17;14;32;4;1;7;15;33;10; +a01AH#V5~41BH2~-1F;;;;4318;-1-1;7817;;1;5;4;1;1478;;5;10;22;17;14;32;4;1;7;15;33;10; +ap14:14;;;;2283;-1-1;;;1;5;4;1;1479;;5;10;22;17;14;32;4;1;7;15;33;10; +aP15;;;;;;;;1;5;4;1;1498;;5;10;22;17;14;32;4;1;7;15;33;10; +az4;;;;;;;;1;5;4;1;1498;;5;10;22;17;14;32;4;1;7;15;33;10; +*P14;;;;;;;;1;5;4;1;1498;;5;10;22;17;14;32;4;1;7;15;33;10; +*z5;;;;;;;;1;5;4;1;1498;;5;10;22;17;14;32;4;1;7;15;33;10; +a04SM!~~~71C~~~00;;;;0130;-1-1;8035;;1;5;4;1;1498;;5;10;22;17;14;32;4;1;7;15;33;10; +*01RM!~~~51CR~~00B;;;;0130;-1-1;8035;;1;5;4;1;1499;;5;10;22;17;14;32;4;1;7;15;33;10; +*14ET#~~~~4A~~~00;;;;4033;-1-1;-1-1;;1;5;4;1;1501;;5;10;22;17;14;32;4;1;7;15;33;10; +*22AT-X5~49CP2~00F;;;;4413;-1-1;6928;;1;5;4;1;1502;;5;10;22;17;14;32;4;1;7;15;33;10; +a04DT+~~~49CS~~00B;;;;4413;-1-1;6928;;1;5;4;1;1503;;5;10;22;17;14;32;4;1;7;15;33;10; +a08EH#~~~~3D~~~00;;;;4140;-1-1;-1-1;;1;5;4;1;1504;;5;10;22;17;14;32;4;1;7;15;33;10; +a15AH/V5~41CP2~00F;;;;4217;5522;7831;;1;5;4;1;1506;;5;10;22;17;14;32;4;1;7;15;33;10; +*17BH#~~~~2C~~~00;;;;4578;-1-1;-1-1;;1;5;4;1;1506;;5;10;22;17;14;32;4;1;7;15;33;10; +*p15:14;;;;3733;-1-1;;;1;5;4;1;1506;;5;10;22;17;14;32;4;1;7;15;33;10; +*c10:18;;;;1010;-1-1;9090;;1;0;0;1;1531;; +ac15:02;;;;1010;-1-1;9722;;1;0;0;1;1531;; +*P14;;;;;;;;1;4;4;1;1531;;18;22;17;14;32;5;4;1;7;2;33;10; +*z4;;;;;;;;1;4;4;1;1531;;18;22;17;14;32;5;4;1;7;2;33;10; +aP02;;;;;;;;1;4;4;1;1531;;18;22;17;14;32;5;4;1;7;2;33;10; +az4;;;;;;;;1;4;4;1;1531;;18;22;17;14;32;5;4;1;7;2;33;10; +*18SM+~~~15B~~~+1;;;;0378;-1-1;7766;;1;4;4;1;1531;;18;22;17;14;32;5;4;1;7;2;33;10; +a02RM-~~~15BR~~-1F;;;;0378;-1-1;7766;;1;4;4;1;1532;;18;22;17;14;32;5;4;1;7;2;33;10; +a04EH#KBP~8B~~~-1;;;;3360;-1-1;-1-1;;1;4;4;1;1534;;18;22;17;14;32;5;4;1;7;2;33;10; +a33AH#VP~88BH4~-1B;;;;3145;5243;6741;;1;4;4;1;1535;;18;22;17;14;32;5;4;1;7;2;33;10; +*14BH=~~~~3B~~~+1;;;;4857;-1-1;-1-1;;1;4;4;1;1535;;18;22;17;14;32;5;4;1;7;2;33;10; +ap15:15;;;;2918;-1-1;;;1;4;4;1;1536;;18;22;17;14;32;5;4;1;7;2;33;10; +ac02:15;;;;1010;-1-1;9528;;1;0;0;1;1557;; +aP15;;;;;;;;1;4;3;1;1557;;18;22;17;14;32;5;1;7;15;33;10;4; +az3;;;;;;;;1;4;3;1;1557;;18;22;17;14;32;5;1;7;15;33;10;4; +*P14;;;;;;;;1;4;3;1;1557;;18;22;17;14;32;5;1;7;15;33;10;4; +*z4;;;;;;;;1;4;3;1;1557;;18;22;17;14;32;5;1;7;15;33;10;4; +a01SQ/~~~95B~~~00;;;;0572;-1-1;7972;;1;4;3;1;1557;;18;22;17;14;32;5;1;7;15;33;10;4; +*22RQ/~~~15BR~~00F;;;;0572;-1-1;7972;;1;4;3;1;1558;;18;22;17;14;32;5;1;7;15;33;10;4; +a07AO-~~~36CT1~00F;;;;4659;5857;8153;;1;4;3;1;1560;;18;22;17;14;32;5;1;7;15;33;10;4; +*14BO+~~~~3D~~~00;;;;4243;-1-1;-1-1;;1;4;3;1;1560;;18;22;17;14;32;5;1;7;15;33;10;4; +*01DO#~~~37BB~~00B;;;;4659;5857;6864;;1;4;3;1;1561;;18;22;17;14;32;5;1;7;15;33;10;4; +*14ET#~~~~4B~~~00;;;;4535;-1-1;-1-1;;1;4;3;1;1562;;18;22;17;14;32;5;1;7;15;33;10;4; +*17AT#X6~25BH1~00F;;;;4582;5776;8163;;1;4;3;1;1563;;18;22;17;14;32;5;1;7;15;33;10;4; +a33BT=~~~~4A~~~00;;;;4324;-1-1;-1-1;;1;4;3;1;1563;;18;22;17;14;32;5;1;7;15;33;10;4; +*p16:15;;;;0350;-1-1;;;1;4;3;1;1564;;18;22;17;14;32;5;1;7;15;33;10;4; +ac15:02;;;;1010;-1-1;9090;;1;0;0;1;1581;; +*c32:77;;;;1010;-1-1;9726;;1;0;0;1;1581;; +*P14;;;;;;;;1;3;3;1;1581;;22;17;14;77;5;18;1;7;2;33;10;4; +*z3;;;;;;;;1;3;3;1;1581;;22;17;14;77;5;18;1;7;2;33;10;4; +aP02;;;;;;;;1;3;3;1;1581;;22;17;14;77;5;18;1;7;2;33;10;4; +az3;;;;;;;;1;3;3;1;1581;;22;17;14;77;5;18;1;7;2;33;10;4; +*22SH!~~~98D~~~+1;;;;0374;-1-1;7356;;1;3;3;1;1581;;22;17;14;77;5;18;1;7;2;33;10;4; +a08RH!~~~18DW~~-1B;;;;0374;-1-1;7356;;1;3;3;1;1583;;22;17;14;77;5;18;1;7;2;33;10;4; +a04ET#KBF~3A~~~-1;;;;3860;-1-1;-1-1;;1;3;3;1;1584;;22;17;14;77;5;18;1;7;2;33;10;4; +a33AT-X5~46BH2~-1F;;;;4415;5724;8039;;1;3;3;1;1585;;22;17;14;77;5;18;1;7;2;33;10;4; +*17BT+~~~~2D~~~+1;;;;4376;-1-1;-1-1;;1;3;3;1;1585;;22;17;14;77;5;18;1;7;2;33;10;4; +*77DT+~~~44AB~~+1F;;;;4415;5724;5879;;1;3;3;1;1586;;22;17;14;77;5;18;1;7;2;33;10;4; +*22EH#~~~~5B~~~+1;;;;2023;-1-1;-1-1;;1;3;3;1;1587;;22;17;14;77;5;18;1;7;2;33;10;4; +*77AH+V5~49BP4~+1F;;;;4417;-1-1;6718;;1;3;3;1;1589;;22;17;14;77;5;18;1;7;2;33;10;4; +a04DH-~~~49BS~~-1B;;;;4417;-1-1;6718;;1;3;3;1;1590;;22;17;14;77;5;18;1;7;2;33;10;4; +a02AO+~~~25BT1~-1F;;;;4675;5873;8268;;1;3;3;1;1591;;22;17;14;77;5;18;1;7;2;33;10;4; +*77BO-~~~~4A~~~+1;;;;4227;-1-1;-1-1;;1;3;3;1;1591;;22;17;14;77;5;18;1;7;2;33;10;4; +a07DO+~~~23BD~~-1F;;;;4675;5873;5438;;1;3;3;1;1592;;22;17;14;77;5;18;1;7;2;33;10;4; +a04EO-~~~~9D~~~-1;;;;2668;;;;1;3;3;1;1593;;22;17;14;77;5;18;1;7;2;33;10;4; +*18FH+~~~49B~~~+1B;;;;4313;;6515;;1;3;3;1;1596;;22;17;14;77;5;18;1;7;2;33;10;4; +*14ET#~~~~3D~~~+1;;;;4147;-1-1;-1-1;;1;3;3;1;1598;;22;17;14;77;5;18;1;7;2;33;10;4; +*77AT-X5~49CT2~+1F;;;;4218;-1-1;6419;;1;3;3;1;1598;;22;17;14;77;5;18;1;7;2;33;10;4; +a33DT+~~~49CS~~-1F;;;;4218;-1-1;6419;;1;3;3;1;1599;;22;17;14;77;5;18;1;7;2;33;10;4; +a04EH#~~~~2D~~~-1;;;;4366;-1-1;-1-1;;1;3;3;1;1601;;22;17;14;77;5;18;1;7;2;33;10;4; +a01AH+VP~86CH1~-1B;;;;3358;-1-1;7954;;1;3;3;1;1602;;22;17;14;77;5;18;1;7;2;33;10;4; +*22DH-~~~86CS~~+1B;;;;3358;-1-1;7954;;1;3;3;1;1603;;22;17;14;77;5;18;1;7;2;33;10;4; +a08FH#~~~66C~~~-1B;;;;2347;;7858;;1;3;3;1;1609;;22;17;14;77;5;18;1;7;2;33;10;4; +a04ET#KBF~3A~~~-1;;;;4355;-1-1;-1-1;;1;3;3;1;1610;;22;17;14;77;5;18;1;7;2;33;10;4; +a33AT=X5~41BH2~-1F;;;;4517;-1-1;8408;;1;3;3;1;1611;;22;17;14;77;5;18;1;7;2;33;10;4; +*p17:15;;;;1692;-1-1;;;1;3;3;1;1612;;22;17;14;77;5;18;1;7;2;33;10;4; +*P14;;;;;;;;1;3;3;1;1629;;22;17;14;77;5;18;1;7;2;33;10;4; +*z3;;;;;;;;1;3;3;1;1629;;22;17;14;77;5;18;1;7;2;33;10;4; +aP02;;;;;;;;1;3;3;1;1629;;22;17;14;77;5;18;1;7;2;33;10;4; +az3;;;;;;;;1;3;3;1;1629;;22;17;14;77;5;18;1;7;2;33;10;4; +*22SH+~~~18D~~~+2;;;;0278;-1-1;7350;;1;3;3;1;1629;;22;17;14;77;5;18;1;7;2;33;10;4; +a08RH-~~~18DO~~-2B;;;;0278;-1-1;7350;;1;3;3;1;1630;;22;17;14;77;5;18;1;7;2;33;10;4; +a04EH#~~~~8D~~~-2;;;;2940;-1-1;-1-1;;1;3;3;1;1632;;22;17;14;77;5;18;1;7;2;33;10;4; +a33AH-V5~45BH2~-2F;;;;4208;-1-1;8269;;1;3;3;1;1634;;22;17;14;77;5;18;1;7;2;33;10;4; +*01DH+~~~45BS~~+2B;;;;4208;-1-1;8269;;1;3;3;1;1634;;22;17;14;77;5;18;1;7;2;33;10;4; +*22EH#~~~~6C~~~+2;;;;2346;-1-1;-1-1;;1;3;3;1;1635;;22;17;14;77;5;18;1;7;2;33;10;4; +*77AH-V5~45BH2~+2F;;;;4213;-1-1;8075;;1;3;3;1;1637;;22;17;14;77;5;18;1;7;2;33;10;4; +a08DH+~~~45BS~~-2B;;;;4213;-1-1;8075;;1;3;3;1;1638;;22;17;14;77;5;18;1;7;2;33;10;4; +a04EH#~~~~9D~~~-2;;;;2481;-1-1;-1-1;;1;3;3;1;1639;;22;17;14;77;5;18;1;7;2;33;10;4; +a33AH+V5~42DT2~-2F;;;;4521;-1-1;6124;;1;3;3;1;1641;;22;17;14;77;5;18;1;7;2;33;10;4; +*18DH-~~~42DS~~+2B;;;;4521;-1-1;6124;;1;3;3;1;1642;;22;17;14;77;5;18;1;7;2;33;10;4; +a01FH!~~~26B~~~-2B;;;;3976;;7748;;1;3;3;1;1643;;22;17;14;77;5;18;1;7;2;33;10;4; +a04EM#~~~~2D~~~-2;;;;4372;-1-1;-1-1;;1;3;3;1;1645;;22;17;14;77;5;18;1;7;2;33;10;4; +a01AM=XP~81BH1~-2B;;;;2955;-1-1;8407;;1;3;3;1;1646;;22;17;14;77;5;18;1;7;2;33;10;4; +*p18:15;;;;1693;-1-1;;;1;3;3;1;1647;;22;17;14;77;5;18;1;7;2;33;10;4; +*P14;;;;;;;;1;3;3;1;1767;;22;17;14;77;5;18;1;7;2;33;10;4; +*z3;;;;;;;;1;3;3;1;1767;;22;17;14;77;5;18;1;7;2;33;10;4; +aP02;;;;;;;;1;3;3;1;1767;;22;17;14;77;5;18;1;7;2;33;10;4; +az3;;;;;;;;1;3;3;1;1767;;22;17;14;77;5;18;1;7;2;33;10;4; +*22SH=~~~13C~~~+3;;;;0378;-1-1;4850;;1;3;3;1;1767;;22;17;14;77;5;18;1;7;2;33;10;4; +ap18:16;;;;4850;-1-1;;;1;3;3;1;1768;;22;17;14;77;5;18;1;7;2;33;10;4; +ac02:15;;;;1010;-1-1;9578;;1;0;0;1;1789;; +aP15;;;;;;;;1;3;2;1;1789;;22;17;14;77;5;18;7;15;33;10;4;1; +az2;;;;;;;;1;3;2;1;1789;;22;17;14;77;5;18;7;15;33;10;4;1; +*P14;;;;;;;;1;3;2;1;1789;;22;17;14;77;5;18;7;15;33;10;4;1; +*z3;;;;;;;;1;3;2;1;1789;;22;17;14;77;5;18;7;15;33;10;4;1; +a07SM-~~~55B~~~-2;;;;0522;-1-1;8168;;1;3;2;1;1789;;22;17;14;77;5;18;7;15;33;10;4;1; +*01RM+~~~55BM~~+2B;;;;0522;-1-1;8168;;1;3;2;1;1790;;22;17;14;77;5;18;7;15;33;10;4;1; +*14ET#K2B~3D~~~+2;;;;4247;-1-1;-1-1;;1;3;2;1;1791;;22;17;14;77;5;18;7;15;33;10;4;1; +*17AT=X6~27DH2~+2F;;;;4181;-1-1;7493;;1;3;2;1;1792;;22;17;14;77;5;18;7;15;33;10;4;1; +ap18:17;;;;2607;-1-1;;;1;3;2;1;1793;;22;17;14;77;5;18;7;15;33;10;4;1; +aP15;;;;;;;;1;3;2;1;1810;;22;17;14;77;5;18;7;15;33;10;4;1; +az2;;;;;;;;1;3;2;1;1810;;22;17;14;77;5;18;7;15;33;10;4;1; +*P14;;;;;;;;1;3;2;1;1810;;22;17;14;77;5;18;7;15;33;10;4;1; +*z3;;;;;;;;1;3;2;1;1810;;22;17;14;77;5;18;7;15;33;10;4;1; +a07SM=~~~72C~~~-1;;;;0027;-1-1;5063;;1;3;2;1;1810;;22;17;14;77;5;18;7;15;33;10;4;1; +*p19:17;;;;5063;-1-1;;;1;3;2;1;1811;;22;17;14;77;5;18;7;15;33;10;4;1; +ac15:02;;;;1010;-1-1;9626;;1;0;0;1;1832;; +*P14;;;;;;;;1;2;2;1;1832;;17;14;77;5;18;22;7;2;33;10;4;1; +*z2;;;;;;;;1;2;2;1;1832;;17;14;77;5;18;22;7;2;33;10;4;1; +aP02;;;;;;;;1;2;2;1;1832;;17;14;77;5;18;22;7;2;33;10;4;1; +az2;;;;;;;;1;2;2;1;1832;;17;14;77;5;18;22;7;2;33;10;4;1; +*01SM-~~~97A~~~+2;;;;0474;-1-1;7473;;1;2;2;1;1832;;17;14;77;5;18;22;7;2;33;10;4;1; +a33RM+~~~17AR~~-2F;;;;0474;-1-1;7473;;1;2;2;1;1833;;17;14;77;5;18;22;7;2;33;10;4;1; +a04EQ#KMC~3D~~~-2;;;;4341;-1-1;-1-1;;1;2;2;1;1835;;17;14;77;5;18;22;7;2;33;10;4;1; +a10AQ-X1~38BH4~-2F;;;;4335;5536;6638;;1;2;2;1;1835;;17;14;77;5;18;22;7;2;33;10;4;1; +*05BQ+~~~~2C~~~+2;;;;4564;-1-1;-1-1;;1;2;2;1;1835;;17;14;77;5;18;22;7;2;33;10;4;1; +*18DQ#~~~49CB~~+2B;;;;4335;5536;6832;;1;2;2;1;1836;;17;14;77;5;18;22;7;2;33;10;4;1; +*77EO-~~~~4B~~~+2;;;;4434;-1-1;-1-1;;1;2;2;1;1837;;17;14;77;5;18;22;7;2;33;10;4;1; +a10AO#~~~31CP1~-2F;;;;4561;-1-1;8236;;1;2;2;1;1838;;17;14;77;5;18;22;7;2;33;10;4;1; +*22DO=~~~31CS~~+2B;;;;4561;-1-1;8236;;1;2;2;1;1839;;17;14;77;5;18;22;7;2;33;10;4;1; +ap19:18;;;;2893;-1-1;;;1;2;2;1;1840;;17;14;77;5;18;22;7;2;33;10;4;1; +ac04:05;;;;1010;-1-1;9526;;1;0;0;1;1862;; +aP02;;;;;;;;1;2;1;1;1862;;17;14;77;5;18;22;2;33;10;5;1;7; +az1;;;;;;;;1;2;1;1;1862;;17;14;77;5;18;22;2;33;10;5;1;7; +*P14;;;;;;;;1;2;1;1;1862;;17;14;77;5;18;22;2;33;10;5;1;7; +*z2;;;;;;;;1;2;1;1;1862;;17;14;77;5;18;22;2;33;10;5;1;7; +a02SM-~~~95B~~~-1;;;;0574;-1-1;7780;;1;2;1;1;1862;;17;14;77;5;18;22;2;33;10;5;1;7; +*77RM+~~~15BO~~+1F;;;;0574;-1-1;7780;;1;2;1;1;1863;;17;14;77;5;18;22;2;33;10;5;1;7; +*14ET#K1B~3D~~~+1;;;;4337;-1-1;-1-1;;1;2;1;1;1864;;17;14;77;5;18;22;2;33;10;5;1;7; +*22AT-X8~95BP0~+1B;;;;3384;-1-1;7874;;1;2;1;1;1865;;17;14;77;5;18;22;2;33;10;5;1;7; +a08DT+~~~95BS~~-1B;;;;3384;-1-1;7874;;1;2;1;1;1866;;17;14;77;5;18;22;2;33;10;5;1;7; +a02EQ#KMC~8B~~~-1;;;;3158;-1-1;-1-1;;1;2;1;1;1868;;17;14;77;5;18;22;2;33;10;5;1;7; +a10AQ+XM~35BH1~-1F;;;;4141;-1-1;8264;;1;2;1;1;1869;;17;14;77;5;18;22;2;33;10;5;1;7; +*22DQ-~~~35BS~~+1B;;;;4141;-1-1;8264;;1;2;1;1;1869;;17;14;77;5;18;22;2;33;10;5;1;7; +ap19:19;;;;4131;-1-1;;;1;2;1;1;1870;;17;14;77;5;18;22;2;33;10;5;1;7; +aP02;;;;;;;;1;2;1;1;1891;;17;14;77;5;18;22;2;33;10;5;1;7; +az1;;;;;;;;1;2;1;1;1891;;17;14;77;5;18;22;2;33;10;5;1;7; +*P14;;;;;;;;1;2;1;1;1891;;17;14;77;5;18;22;2;33;10;5;1;7; +*z2;;;;;;;;1;2;1;1;1891;;17;14;77;5;18;22;2;33;10;5;1;7; +a02SM-~~~96C~~~00;;;;0171;-1-1;8059;;1;2;1;1;1891;;17;14;77;5;18;22;2;33;10;5;1;7; +*18RM#~~~16CL~~00B;;;;0171;-1-1;8059;;1;2;1;1;1893;;17;14;77;5;18;22;2;33;10;5;1;7; +*14ET#KMB~3B~~~00;;;;4557;-1-1;-1-1;;1;2;1;1;1894;;17;14;77;5;18;22;2;33;10;5;1;7; +*22AT#X8~95BH2~00B;;;;3285;-1-1;8279;;1;2;1;1;1895;;17;14;77;5;18;22;2;33;10;5;1;7; +a08DT=~~~95BS~~00B;;;;3285;-1-1;8279;;1;2;1;1;1895;;17;14;77;5;18;22;2;33;10;5;1;7; +*p20:19;;;;0362;-1-1;;;1;2;1;1;1896;;17;14;77;5;18;22;2;33;10;5;1;7; +*c18:10;;;;1010;-1-1;9725;;1;0;0;1;1914;; +*P14;;;;;;;;1;1;1;1;1914;;14;77;5;10;22;17;2;33;10;5;1;7; +*z1;;;;;;;;1;1;1;1;1914;;14;77;5;10;22;17;2;33;10;5;1;7; +aP02;;;;;;;;1;1;1;1;1914;;14;77;5;10;22;17;2;33;10;5;1;7; +az1;;;;;;;;1;1;1;1;1914;;14;77;5;10;22;17;2;33;10;5;1;7; +*14SM-~~~16B~~~+1;;;;0375;-1-1;7739;;1;1;1;1;1914;;14;77;5;10;22;17;2;33;10;5;1;7; +a08RM+~~~16BW~~-1B;;;;0375;-1-1;7739;;1;1;1;1;1915;;14;77;5;10;22;17;2;33;10;5;1;7; +a02ET#KMB~3A~~~-1;;;;4057;-1-1;-1-1;;1;1;1;1;1917;;14;77;5;10;22;17;2;33;10;5;1;7; +a05AT-X6~26BH2~-1F;;;;4085;-1-1;8244;;1;1;1;1;1918;;14;77;5;10;22;17;2;33;10;5;1;7; +*22DT+~~~26BS~~+1B;;;;4085;-1-1;8244;;1;1;1;1;1918;;14;77;5;10;22;17;2;33;10;5;1;7; +*05EO-~~~~4A~~~+1;;;;4126;;;;1;1;1;1;1919;;14;77;5;10;22;17;2;33;10;5;1;7; +a33FH-~~~28B~~~-1F;;;;4082;;6939;;1;1;1;1;1922;;14;77;5;10;22;17;2;33;10;5;1;7; +a08EH#~~~~5B~~~-1;;;;2034;-1-1;-1-1;;1;1;1;1;1923;;14;77;5;10;22;17;2;33;10;5;1;7; +a05AH-V5~46BH2~-1F;;;;4215;5323;7841;;1;1;1;1;1925;;14;77;5;10;22;17;2;33;10;5;1;7; +*05BH+~~~~2C~~~+1;;;;4777;-1-1;-1-1;;1;1;1;1;1925;;14;77;5;10;22;17;2;33;10;5;1;7; +*22DH#~~~46CB~~+1B;;;;4215;5323;8155;;1;1;1;1;1926;;14;77;5;10;22;17;2;33;10;5;1;7; +*14EQ#K1C~3C~~~+1;;;;4447;-1-1;-1-1;;1;1;1;1;1927;;14;77;5;10;22;17;2;33;10;5;1;7; +*05AQ-X1~37BH4~+1F;;;;4433;5548;6763;;1;1;1;1;1928;;14;77;5;10;22;17;2;33;10;5;1;7; +a05BQ+~~~~3B~~~-1;;;;4552;-1-1;-1-1;;1;1;1;1;1928;;14;77;5;10;22;17;2;33;10;5;1;7; +a10DQ+~~~43AB~~-1F;;;;4433;5548;6045;;1;1;1;1;1929;;14;77;5;10;22;17;2;33;10;5;1;7; +a02EH#~~~~9D~~~-1;;;;2580;-1-1;-1-1;;1;1;1;1;1930;;14;77;5;10;22;17;2;33;10;5;1;7; +a33AH-V6~22DT1~-1F;;;;3982;-1-1;6333;;1;1;1;1;1932;;14;77;5;10;22;17;2;33;10;5;1;7; +*10DH#~~~22DS~~+1F;;;;3982;-1-1;6333;;1;1;1;1;1932;;14;77;5;10;22;17;2;33;10;5;1;7; +*14EM#KMP~2C~~~+1;;;;4481;-1-1;-1-1;;1;1;1;1;1934;;14;77;5;10;22;17;2;33;10;5;1;7; +*22AM+XP~89CH3~+1B;;;;3445;5634;6928;;1;1;1;1;1935;;14;77;5;10;22;17;2;33;10;5;1;7; +a33BM/~~~~2C~~~-1;;;;4466;-1-1;-1-1;;1;1;1;1;1936;;14;77;5;10;22;17;2;33;10;5;1;7; +*01DM#~~~84AC~~+1B;;;;6655;5634;4028;;1;1;1;1;1936;;14;77;5;10;22;17;2;33;10;5;1;7; +*14ET#~~~~4A~~~+1;;;;4336;-1-1;-1-1;;1;1;1;1;1938;;14;77;5;10;22;17;2;33;10;5;1;7; +*77AT/X5~41CH2~+1F;;;;4318;5422;7931;;1;1;1;1;1939;;14;77;5;10;22;17;2;33;10;5;1;7; +a10BT#~~~~2C~~~-1;;;;4678;-1-1;-1-1;;1;1;1;1;1939;;14;77;5;10;22;17;2;33;10;5;1;7; +ap20:20;;;;3935;-1-1;;;1;1;1;1;1940;;14;77;5;10;22;17;2;33;10;5;1;7; +aP02;;;;;;;;1;1;6;1;1971;;14;77;5;10;22;17;33;10;5;1;7;2; +az6;;;;;;;;1;1;6;1;1971;;14;77;5;10;22;17;33;10;5;1;7;2; +*P14;;;;;;;;1;1;6;1;1971;;14;77;5;10;22;17;33;10;5;1;7;2; +*z1;;;;;;;;1;1;6;1;1971;;14;77;5;10;22;17;33;10;5;1;7;2; +a33SQ=~~~95A~~~00;;;;0070;-1-1;9977;;1;1;6;1;1971;;14;77;5;10;22;17;33;10;5;1;7;2; +*p21:20;;;;0123;-1-1;;;1;1;6;1;1973;;14;77;5;10;22;17;33;10;5;1;7;2; +*c77:32;;;;1010;-1-1;9922;;1;0;0;1;1994;; +*P14;;;;;;;;1;6;6;1;1994;;32;5;10;22;17;14;33;10;5;1;7;2; +*z6;;;;;;;;1;6;6;1;1994;;32;5;10;22;17;14;33;10;5;1;7;2; +aP02;;;;;;;;1;6;6;1;1994;;32;5;10;22;17;14;33;10;5;1;7;2; +az6;;;;;;;;1;6;6;1;1994;;32;5;10;22;17;14;33;10;5;1;7;2; +*32SM+~~~11C~~~+1;;;;0178;-1-1;7725;;1;6;6;1;1994;;32;5;10;22;17;14;33;10;5;1;7;2; +a33RM-~~~11CR~~-1B;;;;0178;-1-1;7725;;1;6;6;1;1995;;32;5;10;22;17;14;33;10;5;1;7;2; +a02EO-~~~~8C~~~-1;;;;3141;;;;1;6;6;1;1996;;32;5;10;22;17;14;33;10;5;1;7;2; +*22FH#~~~47A~~~+1F;;;;3717;;7163;;1;6;6;1;1999;;32;5;10;22;17;14;33;10;5;1;7;2; +*14ET#K1B~3B~~~+1;;;;4555;-1-1;-1-1;;1;6;6;1;2000;;32;5;10;22;17;14;33;10;5;1;7;2; +*10AT/X6~27AH2~+1F;;;;4089;5782;7675;;1;6;6;1;2001;;32;5;10;22;17;14;33;10;5;1;7;2; +a10BT#~~~~4D~~~-1;;;;4318;-1-1;-1-1;;1;6;6;1;2001;;32;5;10;22;17;14;33;10;5;1;7;2; +*05DT=~~~23AC~~+1F;;;;6011;5782;4352;;1;6;6;1;2001;;32;5;10;22;17;14;33;10;5;1;7;2; +ap21:21;;;;0252;-1-1;;;1;6;6;1;2004;;32;5;10;22;17;14;33;10;5;1;7;2; +aP02;;;;;;;;1;6;5;1;2023;;32;5;10;22;17;14;10;5;1;7;2;33; +az5;;;;;;;;1;6;5;1;2023;;32;5;10;22;17;14;10;5;1;7;2;33; +*P14;;;;;;;;1;6;5;1;2023;;32;5;10;22;17;14;10;5;1;7;2;33; +*z6;;;;;;;;1;6;5;1;2023;;32;5;10;22;17;14;10;5;1;7;2;33; +a08SM+~~~56B~~~00;;;;0424;-1-1;8146;;1;6;5;1;2023;;32;5;10;22;17;14;10;5;1;7;2;33; +*32RM-~~~56BL~~00B;;;;0424;-1-1;8146;;1;6;5;1;2024;;32;5;10;22;17;14;10;5;1;7;2;33; +*14ET#K7F~8A~~~00;;;;3059;-1-1;-1-1;;1;6;5;1;2026;;32;5;10;22;17;14;10;5;1;7;2;33; +*22AT#X5~45CH2~00F;;;;4320;-1-1;8687;;1;6;5;1;2027;;32;5;10;22;17;14;10;5;1;7;2;33; +*p22:21;;;;1413;-1-1;;;1;6;5;1;2028;;32;5;10;22;17;14;10;5;1;7;2;33; +*P14;;;;;;;;1;5;5;1;2045;;5;10;22;17;14;32;10;5;1;7;2;33; +*z5;;;;;;;;1;5;5;1;2045;;5;10;22;17;14;32;10;5;1;7;2;33; +aP02;;;;;;;;1;5;5;1;2045;;5;10;22;17;14;32;10;5;1;7;2;33; +az5;;;;;;;;1;5;5;1;2045;;5;10;22;17;14;32;10;5;1;7;2;33; +*05ST!~~~76C~~~+1;;;;0338;-1-1;7851;;1;5;5;1;2045;;5;10;22;17;14;32;10;5;1;7;2;33; +a33RT!~~~66CL~~-1B;;;;0338;-1-1;7851;;1;5;5;1;2046;;5;10;22;17;14;32;10;5;1;7;2;33; +a02ET#~~~~4A~~~-1;;;;4332;-1-1;-1-1;;1;5;5;1;2048;;5;10;22;17;14;32;10;5;1;7;2;33; +a01AT=X5~41BP2~-1F;;;;4419;-1-1;8107;;1;5;5;1;2049;;5;10;22;17;14;32;10;5;1;7;2;33; +*p23:21;;;;1993;-1-1;;;1;5;5;1;2050;;5;10;22;17;14;32;10;5;1;7;2;33; +*P14;;;;;;;;1;5;5;1;2067;;5;10;22;17;14;32;10;5;1;7;2;33; +*z5;;;;;;;;1;5;5;1;2067;;5;10;22;17;14;32;10;5;1;7;2;33; +aP02;;;;;;;;1;5;5;1;2067;;5;10;22;17;14;32;10;5;1;7;2;33; +az5;;;;;;;;1;5;5;1;2067;;5;10;22;17;14;32;10;5;1;7;2;33; +*05ST!~~~78D~~~+2;;;;0342;-1-1;7460;;1;5;5;1;2067;;5;10;22;17;14;32;10;5;1;7;2;33; +a33RT!~~~68DL~~-2B;;;;0342;-1-1;7460;;1;5;5;1;2068;;5;10;22;17;14;32;10;5;1;7;2;33; +a02ET#KMB~2D~~~-2;;;;3763;-1-1;-1-1;;1;5;5;1;2070;;5;10;22;17;14;32;10;5;1;7;2;33; +a05AT+X6~25BH4~-2F;;;;4383;5781;7877;;1;5;5;1;2071;;5;10;22;17;14;32;10;5;1;7;2;33; +*17BT-~~~~4A~~~+2;;;;4319;-1-1;-1-1;;1;5;5;1;2071;;5;10;22;17;14;32;10;5;1;7;2;33; +*10DT-~~~22DC~~+2F;;;;5717;4319;4276;;1;5;5;1;2072;;5;10;22;17;14;32;10;5;1;7;2;33; +*14ET#K1F~3D~~~+2;;;;4348;-1-1;-1-1;;1;5;5;1;2073;;5;10;22;17;14;32;10;5;1;7;2;33; +*22AT-X5~46BH2~+2F;;;;4119;-1-1;7943;;1;5;5;1;2075;;5;10;22;17;14;32;10;5;1;7;2;33; +a33DT+~~~46BS~~-2B;;;;4119;-1-1;7943;;1;5;5;1;2075;;5;10;22;17;14;32;10;5;1;7;2;33; +a02ET#~~~~6B~~~-2;;;;3387;;;;1;5;5;1;2077;;5;10;22;17;14;32;10;5;1;7;2;33; +a05AT#X6~28DT0~-2F;;;;3388;-1-1;7461;;1;5;5;1;2078;;5;10;22;17;14;32;10;5;1;7;2;33; +ap23:22;;;;2639;-1-1;;;1;5;5;1;2079;;5;10;22;17;14;32;10;5;1;7;2;33; +ac05:04;;;;1010;-1-1;9090;;1;0;0;1;2108;; +ac02:15;;;;1010;-1-1;10068;;1;0;0;1;2108;; +aP15;;;;;;;;1;5;4;1;2108;;5;10;22;17;14;32;4;1;7;15;33;10; +az4;;;;;;;;1;5;4;1;2108;;5;10;22;17;14;32;4;1;7;15;33;10; +*P14;;;;;;;;1;5;4;1;2108;;5;10;22;17;14;32;4;1;7;15;33;10; +*z5;;;;;;;;1;5;4;1;2108;;5;10;22;17;14;32;4;1;7;15;33;10; +a04SM-~~~76B~~~-1;;;;0032;-1-1;8448;;1;5;4;1;2108;;5;10;22;17;14;32;4;1;7;15;33;10; +*32RM+~~~56BR~~+1B;;;;0032;-1-1;8448;;1;5;4;1;2109;;5;10;22;17;14;32;4;1;7;15;33;10; +*14ET#K1F~3A~~~+1;;;;4252;-1-1;-1-1;;1;5;4;1;2111;;5;10;22;17;14;32;4;1;7;15;33;10; +*22AT#X5~41CH2~+1F;;;;4418;5518;8019;;1;5;4;1;2112;;5;10;22;17;14;32;4;1;7;15;33;10; +a15BT=~~~~2B~~~-1;;;;4582;-1-1;-1-1;;1;5;4;1;2112;;5;10;22;17;14;32;4;1;7;15;33;10; +*p24:22;;;;4387;-1-1;;;1;5;4;1;2112;;5;10;22;17;14;32;4;1;7;15;33;10; +ac15:02;;;;1010;-1-1;9090;;1;0;0;1;2134;; +*c10:19;;;;1010;-1-1;9859;;1;0;0;1;2134;; +*P14;;;;;;;;1;4;4;1;2134;;19;22;17;14;32;5;4;1;7;2;33;10; +*z4;;;;;;;;1;4;4;1;2134;;19;22;17;14;32;5;4;1;7;2;33;10; +aP02;;;;;;;;1;4;4;1;2134;;19;22;17;14;32;5;4;1;7;2;33;10; +az4;;;;;;;;1;4;4;1;2134;;19;22;17;14;32;5;4;1;7;2;33;10; +*19SM-~~~77A~~~+2;;;;0241;-1-1;7480;;1;4;4;1;2134;;19;22;17;14;32;5;4;1;7;2;33;10; +a01RM+~~~67AM~~-2F;;;;0241;-1-1;7480;;1;4;4;1;2136;;19;22;17;14;32;5;4;1;7;2;33;10; +a02ET#~~~~3D~~~-2;;;;4245;-1-1;-1-1;;1;4;4;1;2137;;19;22;17;14;32;5;4;1;7;2;33;10; +a01AT-X5~46BH2~-2F;;;;4616;5623;8141;;1;4;4;1;2138;;19;22;17;14;32;5;4;1;7;2;33;10; +*17BT+~~~~2C~~~+2;;;;4477;-1-1;-1-1;;1;4;4;1;2138;;19;22;17;14;32;5;4;1;7;2;33;10; +*32DT+~~~46BB~~+2B;;;;4616;5623;8041;;1;4;4;1;2140;;19;22;17;14;32;5;4;1;7;2;33;10; +*14EO=~~~~8B~~~+2;;;;3258;;;;1;4;4;1;2141;;19;22;17;14;32;5;4;1;7;2;33;10; +ap24:23;;;;3259;-1-1;;;1;4;4;1;2141;;19;22;17;14;32;5;4;1;7;2;33;10; +*c19:18;;;;1010;-1-1;9722;;1;0;0;1;2172;; +aP02;;;;;;;;1;4;3;1;2172;;18;22;17;14;32;5;1;7;2;33;10;4; +az3;;;;;;;;1;4;3;1;2172;;18;22;17;14;32;5;1;7;2;33;10;4; +*P14;;;;;;;;1;4;3;1;2172;;18;22;17;14;32;5;1;7;2;33;10;4; +*z4;;;;;;;;1;4;3;1;2172;;18;22;17;14;32;5;1;7;2;33;10;4; +a01SQ-~~~18D~~~-1;;;;0378;-1-1;7556;;1;4;3;1;2172;;18;22;17;14;32;5;1;7;2;33;10;4; +*01RQ+~~~18DL~~+1B;;;;0378;-1-1;7556;;1;4;3;1;2173;;18;22;17;14;32;5;1;7;2;33;10;4; +*14ET#K2F~3D~~~+1;;;;4338;-1-1;-1-1;;1;4;3;1;2174;;18;22;17;14;32;5;1;7;2;33;10;4; +*22AT#X5~47CH2~+1F;;;;4110;-1-1;6586;;1;4;3;1;2175;;18;22;17;14;32;5;1;7;2;33;10;4; +*p25:23;;;;3514;-1-1;;;1;4;3;1;2176;;18;22;17;14;32;5;1;7;2;33;10;4; +**1set;;;;;;;;2;4;3;1;2176;;18;22;17;14;32;5;1;7;2;33;10;4; +aP02>LUp;;;;;;;;2;1;1;1;2420;;14;77;5;10;22;17;2;33;10;5;1;7; +az1>LUp;;;;;;;;2;1;1;1;2420;;14;77;5;10;22;17;2;33;10;5;1;7; +*P14>LUp;;;;;;;;2;1;1;1;2420;;14;77;5;10;22;17;2;33;10;5;1;7; +*z1>LUp;;;;;;;;2;1;1;1;2420;;14;77;5;10;22;17;2;33;10;5;1;7; +a02SM+~~~98A~~~00;;;;0173;-1-1;7541;;2;1;1;1;2420;;14;77;5;10;22;17;2;33;10;5;1;7; +*01RM-~~~18AW~~00B;;;;0173;-1-1;7541;;2;1;1;1;2421;;14;77;5;10;22;17;2;33;10;5;1;7; +*14EH#K1P~8B~~~00;;;;3355;-1-1;-1-1;;2;1;1;1;2422;;14;77;5;10;22;17;2;33;10;5;1;7; +*22AH#VR~88BH4~00B;;;;3037;5242;6545;;2;1;1;1;2423;;14;77;5;10;22;17;2;33;10;5;1;7; +a10BH!~~~~3B~~~00;;;;4858;-1-1;-1-1;;2;1;1;1;2423;;14;77;5;10;22;17;2;33;10;5;1;7; +a02DH=~~~79DB~~00B;;;;3037;5242;7624;;2;1;1;1;2424;;14;77;5;10;22;17;2;33;10;5;1;7; +*p01:00;;;;0589;-1-1;;;2;1;1;1;2424;;14;77;5;10;22;17;2;33;10;5;1;7; +*c77:32;;;;1010;-1-1;9924;;2;0;0;1;2444;; +*P14;;;;;;;;2;6;1;1;2444;;32;5;10;22;17;14;2;33;10;5;1;7; +*z6;;;;;;;;2;6;1;1;2444;;32;5;10;22;17;14;2;33;10;5;1;7; +aP02;;;;;;;;2;6;1;1;2444;;32;5;10;22;17;14;2;33;10;5;1;7; +az1;;;;;;;;2;6;1;1;2444;;32;5;10;22;17;14;2;33;10;5;1;7; +*32SM+~~~18A~~~+1;;;;0176;-1-1;7537;;2;6;1;1;2444;;32;5;10;22;17;14;2;33;10;5;1;7; +a33RM-~~~18AL~~-1F;;;;0176;-1-1;7537;;2;6;1;1;2445;;32;5;10;22;17;14;2;33;10;5;1;7; +a02EH#~~~~2D~~~-1;;;;3771;-1-1;-1-1;;2;6;1;1;2448;;32;5;10;22;17;14;2;33;10;5;1;7; +a05AH/V5~46BT1~-1F;;;;4515;5623;8039;;2;6;1;1;2449;;32;5;10;22;17;14;2;33;10;5;1;7; +*10BH#~~~~2C~~~+1;;;;4477;-1-1;-1-1;;2;6;1;1;2449;;32;5;10;22;17;14;2;33;10;5;1;7; +*p02:00;;;;4230;-1-1;;;2;6;1;1;2450;;32;5;10;22;17;14;2;33;10;5;1;7; +*P14;;;;;;;;2;6;1;1;2468;;32;5;10;22;17;14;2;33;10;5;1;7; +*z6;;;;;;;;2;6;1;1;2468;;32;5;10;22;17;14;2;33;10;5;1;7; +aP02;;;;;;;;2;6;1;1;2468;;32;5;10;22;17;14;2;33;10;5;1;7; +az1;;;;;;;;2;6;1;1;2468;;32;5;10;22;17;14;2;33;10;5;1;7; +*32SM-~~~16B~~~+2;;;;0175;-1-1;7845;;2;6;1;1;2468;;32;5;10;22;17;14;2;33;10;5;1;7; +a08RM+~~~16BM~~-2B;;;;0175;-1-1;7845;;2;6;1;1;2470;;32;5;10;22;17;14;2;33;10;5;1;7; +a02ET#K2F~3C~~~-2;;;;4738;-1-1;-1-1;;2;6;1;1;2471;;32;5;10;22;17;14;2;33;10;5;1;7; +a05AT-X5~41CH4~-2F;;;;4316;5518;7923;;2;6;1;1;2472;;32;5;10;22;17;14;2;33;10;5;1;7; +*10BT+~~~~2B~~~+2;;;;4582;-1-1;-1-1;;2;6;1;1;2472;;32;5;10;22;17;14;2;33;10;5;1;7; +*14DT+~~~41CB~~+2B;;;;4316;5518;8521;;2;6;1;1;2473;;32;5;10;22;17;14;2;33;10;5;1;7; +*01EH#~~~~8D~~~+2;;;;3042;-1-1;-1-1;;2;6;1;1;2474;;32;5;10;22;17;14;2;33;10;5;1;7; +*22AH=V5~45AH2~+2F;;;;4317;-1-1;9777;;2;6;1;1;2476;;32;5;10;22;17;14;2;33;10;5;1;7; +ap02:01;;;;0323;-1-1;;;2;6;1;1;2477;;32;5;10;22;17;14;2;33;10;5;1;7; +aP02;;;;;;;;2;6;6;1;2500;;32;5;10;22;17;14;33;10;5;1;7;2; +az6;;;;;;;;2;6;6;1;2500;;32;5;10;22;17;14;33;10;5;1;7;2; +*P14;;;;;;;;2;6;6;1;2500;;32;5;10;22;17;14;33;10;5;1;7;2; +*z6;;;;;;;;2;6;6;1;2500;;32;5;10;22;17;14;33;10;5;1;7;2; +a33SQ-~~~99D~~~-1;;;;0373;-1-1;7233;;2;6;6;1;2500;;32;5;10;22;17;14;33;10;5;1;7;2; +*32RQ+~~~19DR~~+1B;;;;0373;-1-1;7233;;2;6;6;1;2501;;32;5;10;22;17;14;33;10;5;1;7;2; +*14ET#K1F~3D~~~+1;;;;4048;-1-1;-1-1;;2;6;6;1;2503;;32;5;10;22;17;14;33;10;5;1;7;2; +*22AT#X5~45BH2~+1F;;;;4316;-1-1;7871;;2;6;6;1;2504;;32;5;10;22;17;14;33;10;5;1;7;2; +*p03:01;;;;2229;-1-1;;;2;6;6;1;2504;;32;5;10;22;17;14;33;10;5;1;7;2; +*P14;;;;;;;;2;5;6;1;2523;;5;10;22;17;14;32;33;10;5;1;7;2; +*z5;;;;;;;;2;5;6;1;2523;;5;10;22;17;14;32;33;10;5;1;7;2; +aP02;;;;;;;;2;5;6;1;2523;;5;10;22;17;14;32;33;10;5;1;7;2; +az6;;;;;;;;2;5;6;1;2523;;5;10;22;17;14;32;33;10;5;1;7;2; +*05SM-~~~96C~~~+2;;;;0358;-1-1;8255;;2;5;6;1;2523;;5;10;22;17;14;32;33;10;5;1;7;2; +a08RM#~~~66CM~~-2B;;;;0358;-1-1;8255;;2;5;6;1;2524;;5;10;22;17;14;32;33;10;5;1;7;2; +a02EQ#K1C~3B~~~-2;;;;4461;-1-1;-1-1;;2;5;6;1;2525;;5;10;22;17;14;32;33;10;5;1;7;2; +a10AQ#X1~31CH2~-2F;;;;4253;-1-1;8531;;2;5;6;1;2526;;5;10;22;17;14;32;33;10;5;1;7;2; +ap03:02;;;;1569;-1-1;;;2;5;6;1;2526;;5;10;22;17;14;32;33;10;5;1;7;2; +aP02;;;;;;;;2;5;5;1;2544;;5;10;22;17;14;32;10;5;1;7;2;33; +az5;;;;;;;;2;5;5;1;2544;;5;10;22;17;14;32;10;5;1;7;2;33; +*P14;;;;;;;;2;5;5;1;2544;;5;10;22;17;14;32;10;5;1;7;2;33; +*z5;;;;;;;;2;5;5;1;2544;;5;10;22;17;14;32;10;5;1;7;2;33; +a08SM-~~~51C~~~-1;;;;0023;-1-1;7931;;2;5;5;1;2544;;5;10;22;17;14;32;10;5;1;7;2;33; +*01RM#~~~51CM~~+1B;;;;0023;-1-1;7931;;2;5;5;1;2545;;5;10;22;17;14;32;10;5;1;7;2;33; +*14ET#K1F~3A~~~+1;;;;4352;-1-1;-1-1;;2;5;5;1;2546;;5;10;22;17;14;32;10;5;1;7;2;33; +*22AT+X5~42DH2~+1F;;;;4612;-1-1;5828;;2;5;5;1;2547;;5;10;22;17;14;32;10;5;1;7;2;33; +a07DT-~~~42DS~~-1F;;;;4612;-1-1;5828;;2;5;5;1;2547;;5;10;22;17;14;32;10;5;1;7;2;33; +ap03:03;;;;2531;-1-1;;;2;5;5;1;2548;;5;10;22;17;14;32;10;5;1;7;2;33; +aP02;;;;;;;;2;5;5;1;2565;;5;10;22;17;14;32;10;5;1;7;2;33; +az5;;;;;;;;2;5;5;1;2565;;5;10;22;17;14;32;10;5;1;7;2;33; +*P14;;;;;;;;2;5;5;1;2565;;5;10;22;17;14;32;10;5;1;7;2;33; +*z5;;;;;;;;2;5;5;1;2565;;5;10;22;17;14;32;10;5;1;7;2;33; +a08SM-~~~59D~~~00;;;;0322;-1-1;7533;;2;5;5;1;2565;;5;10;22;17;14;32;10;5;1;7;2;33; +*01RM+~~~59DW~~00B;;;;0322;-1-1;7533;;2;5;5;1;2566;;5;10;22;17;14;32;10;5;1;7;2;33; +*14ET#K2F~3D~~~00;;;;4243;-1-1;-1-1;;2;5;5;1;2567;;5;10;22;17;14;32;10;5;1;7;2;33; +*22AT-X5~41CH2~00F;;;;4317;5319;7824;;2;5;5;1;2568;;5;10;22;17;14;32;10;5;1;7;2;33; +a05BT+~~~~2C~~~00;;;;4781;-1-1;-1-1;;2;5;5;1;2568;;5;10;22;17;14;32;10;5;1;7;2;33; +a02DT+~~~41CB~~00B;;;;4317;5319;8124;;2;5;5;1;2569;;5;10;22;17;14;32;10;5;1;7;2;33; +a08EH#~~~~8A~~~00;;;;2456;-1-1;-1-1;;2;5;5;1;2571;;5;10;22;17;14;32;10;5;1;7;2;33; +a01AH-V5~46BT2~00F;;;;4328;5633;7840;;2;5;5;1;2572;;5;10;22;17;14;32;10;5;1;7;2;33; +*17BH+~~~~2C~~~00;;;;4467;-1-1;-1-1;;2;5;5;1;2572;;5;10;22;17;14;32;10;5;1;7;2;33; +*22DH+~~~43DB~~00F;;;;4328;5633;6057;;2;5;5;1;2573;;5;10;22;17;14;32;10;5;1;7;2;33; +*14ET#K1B~9C~~~00;;;;3365;-1-1;-1-1;;2;5;5;1;2575;;5;10;22;17;14;32;10;5;1;7;2;33; +*10AT-X6~28DH2~00F;;;;4083;5571;7654;;2;5;5;1;2576;;5;10;22;17;14;32;10;5;1;7;2;33; +a07BT+~~~~4B~~~00;;;;4529;-1-1;-1-1;;2;5;5;1;2577;;5;10;22;17;14;32;10;5;1;7;2;33; +a33DT#~~~26BB~~00B;;;;4083;5571;8448;;2;5;5;1;2577;;5;10;22;17;14;32;10;5;1;7;2;33; +a02EQ#K1C~3A~~~00;;;;4155;-1-1;-1-1;;2;5;5;1;2579;;5;10;22;17;14;32;10;5;1;7;2;33; +a07AQ+X1~38BT1~00F;;;;4444;5644;6643;;2;5;5;1;2579;;5;10;22;17;14;32;10;5;1;7;2;33; +*17BQ-~~~~3B~~~00;;;;4456;-1-1;-1-1;;2;5;5;1;2579;;5;10;22;17;14;32;10;5;1;7;2;33; +*01DQ-~~~37BB~~00B;;;;4444;5644;6964;;2;5;5;1;2580;;5;10;22;17;14;32;10;5;1;7;2;33; +a08FH+~~~95B~~~00B;;;;2886;;7971;;2;5;5;1;2584;;5;10;22;17;14;32;10;5;1;7;2;33; +a02ET#K7B~3A~~~00;;;;4362;-1-1;-1-1;;2;5;5;1;2585;;5;10;22;17;14;32;10;5;1;7;2;33; +a05AT-X6~25BH4~00F;;;;4286;5681;7873;;2;5;5;1;2587;;5;10;22;17;14;32;10;5;1;7;2;33; +*22BT+~~~~4B~~~00;;;;4419;-1-1;-1-1;;2;5;5;1;2587;;5;10;22;17;14;32;10;5;1;7;2;33; +*10DT+~~~29AB~~00F;;;;4286;5681;7112;;2;5;5;1;2587;;5;10;22;17;14;32;10;5;1;7;2;33; +*14EQ#K1C~8C~~~00;;;;3141;-1-1;-1-1;;2;5;5;1;2590;;5;10;22;17;14;32;10;5;1;7;2;33; +*17AQ+X7~42DH4~00F;;;;4329;-1-1;5734;;2;5;5;1;2590;;5;10;22;17;14;32;10;5;1;7;2;33; +a07DQ-~~~42DS~~00F;;;;4329;-1-1;5734;;2;5;5;1;2590;;5;10;22;17;14;32;10;5;1;7;2;33; +*17FH-~~~24B~~~00F;;;;4366;;5568;;2;5;5;1;2591;;5;10;22;17;14;32;10;5;1;7;2;33; +*32EH#~~~~6B~~~00;;;;1959;-1-1;-1-1;;2;5;5;1;2592;;5;10;22;17;14;32;10;5;1;7;2;33; +*22AH-V5~45BH2~00F;;;;4315;-1-1;8277;;2;5;5;1;2594;;5;10;22;17;14;32;10;5;1;7;2;33; +a08DH+~~~45BS~~00B;;;;4315;-1-1;8277;;2;5;5;1;2594;;5;10;22;17;14;32;10;5;1;7;2;33; +a02EH#~~~~1C~~~00;;;;2372;-1-1;-1-1;;2;5;5;1;2597;;5;10;22;17;14;32;10;5;1;7;2;33; +a01AH-V5~46BT4~00F;;;;4225;5632;7844;;2;5;5;1;2598;;5;10;22;17;14;32;10;5;1;7;2;33; +*17BH+~~~~2C~~~00;;;;4468;-1-1;-1-1;;2;5;5;1;2599;;5;10;22;17;14;32;10;5;1;7;2;33; +*22DH#~~~48DB~~00F;;;;4225;5632;7354;;2;5;5;1;2599;;5;10;22;17;14;32;10;5;1;7;2;33; +*14EQ#K1C~3D~~~00;;;;4348;-1-1;-1-1;;2;5;5;1;2601;;5;10;22;17;14;32;10;5;1;7;2;33; +*17AQ-X1~38BP2~00F;;;;4235;5639;6442;;2;5;5;1;2602;;5;10;22;17;14;32;10;5;1;7;2;33; +a07BQ+~~~~3B~~~00;;;;4461;-1-1;-1-1;;2;5;5;1;2602;;5;10;22;17;14;32;10;5;1;7;2;33; +a33DQ+~~~46BB~~00B;;;;4235;5639;8346;;2;5;5;1;2602;;5;10;22;17;14;32;10;5;1;7;2;33; +a02EH#~~~~8D~~~00;;;;3039;-1-1;-1-1;;2;5;5;1;2604;;5;10;22;17;14;32;10;5;1;7;2;33; +a01AH#V5~41CH2~00F;;;;4319;5625;7834;;2;5;5;1;2605;;5;10;22;17;14;32;10;5;1;7;2;33; +*17BH=~~~~2C~~~00;;;;4475;-1-1;-1-1;;2;5;5;1;2605;;5;10;22;17;14;32;10;5;1;7;2;33; +ap03:04;;;;2207;-1-1;;;2;5;5;1;2606;;5;10;22;17;14;32;10;5;1;7;2;33; +aP02;;;;;;;;2;5;5;1;2628;;5;10;22;17;14;32;10;5;1;7;2;33; +az5;;;;;;;;2;5;5;1;2628;;5;10;22;17;14;32;10;5;1;7;2;33; +*P14;;;;;;;;2;5;5;1;2628;;5;10;22;17;14;32;10;5;1;7;2;33; +*z5;;;;;;;;2;5;5;1;2628;;5;10;22;17;14;32;10;5;1;7;2;33; +a08SM-~~~51C~~~+1;;;;0322;-1-1;8123;;2;5;5;1;2628;;5;10;22;17;14;32;10;5;1;7;2;33; +*01RM+~~~51CR~~-1B;;;;0322;-1-1;8123;;2;5;5;1;2629;;5;10;22;17;14;32;10;5;1;7;2;33; +*14EQ#K1C~3A~~~-1;;;;4356;-1-1;-1-1;;2;5;5;1;2631;;5;10;22;17;14;32;10;5;1;7;2;33; +*17AQ#X1~38AH1~-1F;;;;4446;-1-1;7449;;2;5;5;1;2631;;5;10;22;17;14;32;10;5;1;7;2;33; +*p04:04;;;;2651;-1-1;;;2;5;5;1;2631;;5;10;22;17;14;32;10;5;1;7;2;33; +*c10:18;;;;1010;-1-1;9726;;2;0;0;1;2655;; +*P14;;;;;;;;2;4;5;1;2655;;18;22;17;14;32;5;10;5;1;7;2;33; +*z4;;;;;;;;2;4;5;1;2655;;18;22;17;14;32;5;10;5;1;7;2;33; +aP02;;;;;;;;2;4;5;1;2655;;18;22;17;14;32;5;10;5;1;7;2;33; +az5;;;;;;;;2;4;5;1;2655;;18;22;17;14;32;5;10;5;1;7;2;33; +*18SM!~~~97B~~~00;;;;0374;-1-1;6468;;2;4;5;1;2655;;18;22;17;14;32;5;10;5;1;7;2;33; +a07RM!~~~17BM~~00F;;;;0374;-1-1;6468;;2;4;5;1;2656;;18;22;17;14;32;5;10;5;1;7;2;33; +a02ET#K7B~2D~~~00;;;;3765;-1-1;-1-1;;2;4;5;1;2658;;18;22;17;14;32;5;10;5;1;7;2;33; +a05AT/X6~25BH2~00F;;;;4188;5583;7774;;2;4;5;1;2659;;18;22;17;14;32;5;10;5;1;7;2;33; +*22BT#~~~~4C~~~00;;;;4517;-1-1;-1-1;;2;4;5;1;2659;;18;22;17;14;32;5;10;5;1;7;2;33; +a08DT=~~~29CC~~00B;;;;5912;5583;3573;;2;4;5;1;2660;;18;22;17;14;32;5;10;5;1;7;2;33; +*p05:04;;;;2641;-1-1;;;2;4;5;1;2663;;18;22;17;14;32;5;10;5;1;7;2;33; +*P14;;;;;;;;2;4;5;1;2682;;18;22;17;14;32;5;10;5;1;7;2;33; +*z4;;;;;;;;2;4;5;1;2682;;18;22;17;14;32;5;10;5;1;7;2;33; +aP02;;;;;;;;2;4;5;1;2682;;18;22;17;14;32;5;10;5;1;7;2;33; +az5;;;;;;;;2;4;5;1;2682;;18;22;17;14;32;5;10;5;1;7;2;33; +*18SM-~~~14A~~~+1;;;;0477;-1-1;6271;;2;4;5;1;2682;;18;22;17;14;32;5;10;5;1;7;2;33; +a07RM+~~~14AM~~-1F;;;;0477;-1-1;6271;;2;4;5;1;2684;;18;22;17;14;32;5;10;5;1;7;2;33; +a02ET#K7F~2D~~~-1;;;;4363;-1-1;-1-1;;2;4;5;1;2685;;18;22;17;14;32;5;10;5;1;7;2;33; +a01AT#X5~41CH2~-1F;;;;4325;5426;7828;;2;4;5;1;2686;;18;22;17;14;32;5;10;5;1;7;2;33; +*17BT=~~~~2C~~~+1;;;;4674;-1-1;-1-1;;2;4;5;1;2686;;18;22;17;14;32;5;10;5;1;7;2;33; +ap05:05;;;;3307;-1-1;;;2;4;5;1;2688;;18;22;17;14;32;5;10;5;1;7;2;33; +ac05:04;;;;1010;-1-1;9575;;2;0;0;1;2709;; +aP02;;;;;;;;2;4;4;1;2709;;18;22;17;14;32;5;4;1;7;2;33;10; +az4;;;;;;;;2;4;4;1;2709;;18;22;17;14;32;5;4;1;7;2;33;10; +*P14;;;;;;;;2;4;4;1;2709;;18;22;17;14;32;5;4;1;7;2;33;10; +*z4;;;;;;;;2;4;4;1;2709;;18;22;17;14;32;5;4;1;7;2;33;10; +a04SM-~~~51C~~~00;;;;0525;-1-1;7834;;2;4;4;1;2709;;18;22;17;14;32;5;4;1;7;2;33;10; +*18RM#~~~51CO~~00B;;;;0525;-1-1;7834;;2;4;4;1;2710;;18;22;17;14;32;5;4;1;7;2;33;10; +*14ET#K7F~3B~~~00;;;;4759;-1-1;-1-1;;2;4;4;1;2711;;18;22;17;14;32;5;4;1;7;2;33;10; +*22AT+X5~42DH2~00F;;;;4120;-1-1;5725;;2;4;4;1;2712;;18;22;17;14;32;5;4;1;7;2;33;10; +a02DT-~~~42DS~~00F;;;;4120;-1-1;5725;;2;4;4;1;2712;;18;22;17;14;32;5;4;1;7;2;33;10; +ap05:06;;;;2853;-1-1;;;2;4;4;1;2713;;18;22;17;14;32;5;4;1;7;2;33;10; +aP02;;;;;;;;2;4;4;1;2732;;18;22;17;14;32;5;4;1;7;2;33;10; +az4;;;;;;;;2;4;4;1;2732;;18;22;17;14;32;5;4;1;7;2;33;10; +*P14;;;;;;;;2;4;4;1;2732;;18;22;17;14;32;5;4;1;7;2;33;10; +*z4;;;;;;;;2;4;4;1;2732;;18;22;17;14;32;5;4;1;7;2;33;10; +a04SM!~~~59D~~~+1;;;;0225;-1-1;7531;;2;4;4;1;2732;;18;22;17;14;32;5;4;1;7;2;33;10; +*18RM!~~~59DW~~-1B;;;;0225;-1-1;7531;;2;4;4;1;2734;;18;22;17;14;32;5;4;1;7;2;33;10; +*14EO#K1S~2D~~~-1;;;;3975;-1-1;-1-1;;2;4;4;1;2735;;18;22;17;14;32;5;4;1;7;2;33;10; +*14AO-PP~38B~~~-1F;;;;3975;-1-1;6438;;2;4;4;1;2735;;18;22;17;14;32;5;4;1;7;2;33;10; +a04DO+~~~28BS~~+1B;;;;3975;-1-1;6438;;2;4;4;1;2736;;18;22;17;14;32;5;4;1;7;2;33;10; +a08EO-~~~~8D~~~+1;;;;3043;;;;2;4;4;1;2737;;18;22;17;14;32;5;4;1;7;2;33;10; +*18FH+~~~29C~~~-1B;;;;4275;;6931;;2;4;4;1;2740;;18;22;17;14;32;5;4;1;7;2;33;10; +*14EQ#K1C~2D~~~-1;;;;4264;-1-1;-1-1;;2;4;4;1;2741;;18;22;17;14;32;5;4;1;7;2;33;10; +*17AQ+X1~38CH2~-1F;;;;4355;5557;6560;;2;4;4;1;2742;;18;22;17;14;32;5;4;1;7;2;33;10; +a01BQ/~~~~3C~~~+1;;;;4543;-1-1;-1-1;;2;4;4;1;2742;;18;22;17;14;32;5;4;1;7;2;33;10; +*18DQ+~~~39DC~~-1B;;;;5745;4543;7632;;2;4;4;1;2743;;18;22;17;14;32;5;4;1;7;2;33;10; +*14ET#~~~~8A~~~-1;;;;2852;-1-1;-1-1;;2;4;4;1;2744;;18;22;17;14;32;5;4;1;7;2;33;10; +*22AT-X5~47AH2~-1F;;;;4419;-1-1;7280;;2;4;4;1;2745;;18;22;17;14;32;5;4;1;7;2;33;10; +a08DT#~~~47AS~~+1B;;;;4419;-1-1;7280;;2;4;4;1;2746;;18;22;17;14;32;5;4;1;7;2;33;10; +a02EM#~~~~3A~~~+1;;;;4059;-1-1;-1-1;;2;4;4;1;2748;;18;22;17;14;32;5;4;1;7;2;33;10; +a33AM=XP~81BH2~+1B;;;;3149;-1-1;7813;;2;4;4;1;2749;;18;22;17;14;32;5;4;1;7;2;33;10; +*p06:06;;;;2287;-1-1;;;2;4;4;1;2749;;18;22;17;14;32;5;4;1;7;2;33;10; +*c32:77;;;;1010;-1-1;9928;;2;0;0;1;2767;; +*P14;;;;;;;;2;3;4;1;2767;;22;17;14;77;5;18;4;1;7;2;33;10; +*z3;;;;;;;;2;3;4;1;2767;;22;17;14;77;5;18;4;1;7;2;33;10; +aP02;;;;;;;;2;3;4;1;2767;;22;17;14;77;5;18;4;1;7;2;33;10; +az4;;;;;;;;2;3;4;1;2767;;22;17;14;77;5;18;4;1;7;2;33;10; +*22SH+~~~96C~~~00;;;;0172;-1-1;7961;;2;3;4;1;2767;;22;17;14;77;5;18;4;1;7;2;33;10; +a08RH-~~~16CO~~00B;;;;0172;-1-1;7961;;2;3;4;1;2769;;22;17;14;77;5;18;4;1;7;2;33;10; +a04EH#~~~~9C~~~00;;;;3266;-1-1;-1-1;;2;3;4;1;2770;;22;17;14;77;5;18;4;1;7;2;33;10; +a01AH#V5~47AH2~00F;;;;4522;-1-1;7174;;2;3;4;1;2772;;22;17;14;77;5;18;4;1;7;2;33;10; +ap06:07;;;;2926;-1-1;;;2;3;4;1;2772;;22;17;14;77;5;18;4;1;7;2;33;10; +aP02;;;;;;;;2;3;3;1;2797;;22;17;14;77;5;18;1;7;2;33;10;4; +az3;;;;;;;;2;3;3;1;2797;;22;17;14;77;5;18;1;7;2;33;10;4; +*P14;;;;;;;;2;3;3;1;2797;;22;17;14;77;5;18;1;7;2;33;10;4; +*z3;;;;;;;;2;3;3;1;2797;;22;17;14;77;5;18;1;7;2;33;10;4; +a01SQ+~~~15B~~~+1;;;;0176;-1-1;7766;;2;3;3;1;2797;;22;17;14;77;5;18;1;7;2;33;10;4; +*77RQ-~~~15BM~~-1F;;;;0176;-1-1;7766;;2;3;3;1;2797;;22;17;14;77;5;18;1;7;2;33;10;4; +*22ET#~~~~1D~~~-1;;;;0475;-1-1;-1-1;;2;3;3;1;2799;;22;17;14;77;5;18;1;7;2;33;10;4; +*77AT-X5~46BP0~-1F;;;;2514;-1-1;8048;;2;3;3;1;2800;;22;17;14;77;5;18;1;7;2;33;10;4; +a01DT#~~~76BS~~+1B;;;;2514;-1-1;8048;;2;3;3;1;2801;;22;17;14;77;5;18;1;7;2;33;10;4; +a02EN#KSC~3A~~~+1;;;;4352;-1-1;-1-1;;2;3;3;1;2803;;22;17;14;77;5;18;1;7;2;33;10;4; +a07AN#CF~27CH4~+1F;;;;4682;5682;6982;;2;3;3;1;2804;;22;17;14;77;5;18;1;7;2;33;10;4; +*77BN=~~~~4C~~~-1;;;;4418;-1-1;-1-1;;2;3;3;1;2804;;22;17;14;77;5;18;1;7;2;33;10;4; +ap06:08;;;;2325;-1-1;;;2;3;3;1;2805;;22;17;14;77;5;18;1;7;2;33;10;4; +aP02;;;;;;;;2;3;3;1;2829;;22;17;14;77;5;18;1;7;2;33;10;4; +az3;;;;;;;;2;3;3;1;2829;;22;17;14;77;5;18;1;7;2;33;10;4; +*P14;;;;;;;;2;3;3;1;2829;;22;17;14;77;5;18;1;7;2;33;10;4; +*z3;;;;;;;;2;3;3;1;2829;;22;17;14;77;5;18;1;7;2;33;10;4; +a01SQ=~~~15D~~~+2;;;;0076;-1-1;9583;;2;3;3;1;2829;;22;17;14;77;5;18;1;7;2;33;10;4; +*p07:08;;;;0517;-1-1;;;2;3;3;1;2830;;22;17;14;77;5;18;1;7;2;33;10;4; +*P14;;;;;;;;2;2;3;1;2850;;17;14;77;5;18;22;1;7;2;33;10;4; +*z2;;;;;;;;2;2;3;1;2850;;17;14;77;5;18;22;1;7;2;33;10;4; +aP02;;;;;;;;2;2;3;1;2850;;17;14;77;5;18;22;1;7;2;33;10;4; +az3;;;;;;;;2;2;3;1;2850;;17;14;77;5;18;22;1;7;2;33;10;4; +*01SM=~~~95C~~~-1;;;;0368;-1-1;8387;;2;2;3;1;2850;;17;14;77;5;18;22;1;7;2;33;10;4; +ap07:09;;;;1713;-1-1;;;2;2;3;1;2852;;17;14;77;5;18;22;1;7;2;33;10;4; +aP02;;;;;;;;2;2;2;1;2872;;17;14;77;5;18;22;7;2;33;10;4;1; +az2;;;;;;;;2;2;2;1;2872;;17;14;77;5;18;22;7;2;33;10;4;1; +*P14;;;;;;;;2;2;2;1;2872;;17;14;77;5;18;22;7;2;33;10;4;1; +*z2;;;;;;;;2;2;2;1;2872;;17;14;77;5;18;22;7;2;33;10;4;1; +a07SM-~~~78D~~~+2;;;;0526;-1-1;7560;;2;2;2;1;2872;;17;14;77;5;18;22;7;2;33;10;4;1; +*77RM+~~~58DM~~-2F;;;;0526;-1-1;7560;;2;2;2;1;2873;;17;14;77;5;18;22;7;2;33;10;4;1; +*14EQ#K1C~3D~~~-2;;;;4250;-1-1;-1-1;;2;2;2;1;2875;;17;14;77;5;18;22;7;2;33;10;4;1; +*05AQ#X7~48BH1~-2F;;;;4336;5539;6542;;2;2;2;1;2875;;17;14;77;5;18;22;7;2;33;10;4;1; +a10BQ=~~~~3B~~~+2;;;;4561;-1-1;-1-1;;2;2;2;1;2875;;17;14;77;5;18;22;7;2;33;10;4;1; +*p08:09;;;;2449;-1-1;;;2;2;2;1;2876;;17;14;77;5;18;22;7;2;33;10;4;1; +*c18:10;;;;1010;-1-1;9624;;2;0;0;1;2895;; +*P14;;;;;;;;2;1;2;1;2895;;14;77;5;10;22;17;7;2;33;10;4;1; +*z1;;;;;;;;2;1;2;1;2895;;14;77;5;10;22;17;7;2;33;10;4;1; +aP02;;;;;;;;2;1;2;1;2895;;14;77;5;10;22;17;7;2;33;10;4;1; +az2;;;;;;;;2;1;2;1;2895;;14;77;5;10;22;17;7;2;33;10;4;1; +*14SM-~~~15B~~~-1;;;;0476;-1-1;7871;;2;1;2;1;2895;;14;77;5;10;22;17;7;2;33;10;4;1; +a33RM+~~~15BO~~+1F;;;;0476;-1-1;7871;;2;1;2;1;2896;;14;77;5;10;22;17;7;2;33;10;4;1; +a02EQ#KMC~2D~~~+1;;;;4266;-1-1;-1-1;;2;1;2;1;2897;;14;77;5;10;22;17;7;2;33;10;4;1; +a10AQ+XM~37AT2~+1F;;;;4351;-1-1;7475;;2;1;2;1;2898;;14;77;5;10;22;17;7;2;33;10;4;1; +*01DQ-~~~37AS~~-1B;;;;4351;-1-1;7475;;2;1;2;1;2899;;14;77;5;10;22;17;7;2;33;10;4;1; +a08FH#~~~78C~~~+1B;;;;2625;;6457;;2;1;2;1;2900;;14;77;5;10;22;17;7;2;33;10;4;1; +a02EQ#KMC~3B~~~+1;;;;4562;-1-1;-1-1;;2;1;2;1;2902;;14;77;5;10;22;17;7;2;33;10;4;1; +a10AQ#XM~38DH4~+1F;;;;4348;-1-1;7156;;2;1;2;1;2902;;14;77;5;10;22;17;7;2;33;10;4;1; +ap08:10;;;;2944;-1-1;;;2;1;2;1;2903;;14;77;5;10;22;17;7;2;33;10;4;1; +ac04:05;;;;1010;-1-1;9925;;2;0;0;1;2924;; +aP02;;;;;;;;2;1;1;1;2924;;14;77;5;10;22;17;2;33;10;5;1;7; +az1;;;;;;;;2;1;1;1;2924;;14;77;5;10;22;17;2;33;10;5;1;7; +*P14;;;;;;;;2;1;1;1;2924;;14;77;5;10;22;17;2;33;10;5;1;7; +*z1;;;;;;;;2;1;1;1;2924;;14;77;5;10;22;17;2;33;10;5;1;7; +a02SM#~~~19D~~~+2;;;;0175;-1-1;7633;;2;1;1;1;2924;;14;77;5;10;22;17;2;33;10;5;1;7; +*77RM=~~~19DO~~-2F;;;;0175;-1-1;7633;;2;1;1;1;2925;;14;77;5;10;22;17;2;33;10;5;1;7; +ap08:11;;;;3277;-1-1;;;2;1;1;1;2926;;14;77;5;10;22;17;2;33;10;5;1;7; +aP02;;;;;;;;2;1;1;1;2946;;14;77;5;10;22;17;2;33;10;5;1;7; +az1;;;;;;;;2;1;1;1;2946;;14;77;5;10;22;17;2;33;10;5;1;7; +*P14;;;;;;;;2;1;1;1;2946;;14;77;5;10;22;17;2;33;10;5;1;7; +*z1;;;;;;;;2;1;1;1;2946;;14;77;5;10;22;17;2;33;10;5;1;7; +a02SM+~~~11C~~~+3;;;;0376;-1-1;8027;;2;1;1;1;2946;;14;77;5;10;22;17;2;33;10;5;1;7; +*77RM-~~~11CL~~-3F;;;;0376;-1-1;8027;;2;1;1;1;2947;;14;77;5;10;22;17;2;33;10;5;1;7; +*14ET#K1B~8A~~~-3;;;;2660;-1-1;-1-1;;2;1;1;1;2949;;14;77;5;10;22;17;2;33;10;5;1;7; +*77AT/X6~25BH4~-3F;;;;4381;5776;7967;;2;1;1;1;2950;;14;77;5;10;22;17;2;33;10;5;1;7; +a05BT#~~~~4A~~~+3;;;;4324;-1-1;-1-1;;2;1;1;1;2950;;14;77;5;10;22;17;2;33;10;5;1;7; +*77DT=~~~22DC~~-3F;;;;5719;4324;5823;;2;1;1;1;2951;;14;77;5;10;22;17;2;33;10;5;1;7; +ap08:12;;;;4560;-1-1;;;2;1;1;1;2953;;14;77;5;10;22;17;2;33;10;5;1;7; +aP02;;;;;;;;2;1;1;1;3075;;14;77;5;10;22;17;2;33;10;5;1;7; +az1;;;;;;;;2;1;1;1;3075;;14;77;5;10;22;17;2;33;10;5;1;7; +*P14;;;;;;;;2;1;1;1;3075;;14;77;5;10;22;17;2;33;10;5;1;7; +*z1;;;;;;;;2;1;1;1;3075;;14;77;5;10;22;17;2;33;10;5;1;7; +a02SM=~~~11D~~~+4;;;;0276;-1-1;9929;;2;1;1;1;3075;;14;77;5;10;22;17;2;33;10;5;1;7; +*p09:12;;;;0171;-1-1;;;2;1;1;1;3076;;14;77;5;10;22;17;2;33;10;5;1;7; +*c77:32;;;;1010;-1-1;9626;;2;0;0;1;3097;; +*P14;;;;;;;;2;6;1;1;3097;;32;5;10;22;17;14;2;33;10;5;1;7; +*z6;;;;;;;;2;6;1;1;3097;;32;5;10;22;17;14;2;33;10;5;1;7; +aP02;;;;;;;;2;6;1;1;3097;;32;5;10;22;17;14;2;33;10;5;1;7; +az1;;;;;;;;2;6;1;1;3097;;32;5;10;22;17;14;2;33;10;5;1;7; +*32SM!~~~91C~~~-3;;;;0474;-1-1;8131;;2;6;1;1;3097;;32;5;10;22;17;14;2;33;10;5;1;7; +a33RM!~~~11CM~~+3F;;;;0474;-1-1;8131;;2;6;1;1;3098;;32;5;10;22;17;14;2;33;10;5;1;7; +a02EM#KMF~2D~~~+3;;;;3765;-1-1;-1-1;;2;6;1;1;3099;;32;5;10;22;17;14;2;33;10;5;1;7; +a05AM+X9~41BH2~+3F;;;;4321;-1-1;7818;;2;6;1;1;3101;;32;5;10;22;17;14;2;33;10;5;1;7; +*14DM-~~~41BS~~-3B;;;;4321;-1-1;7818;;2;6;1;1;3101;;32;5;10;22;17;14;2;33;10;5;1;7; +a08FH+~~~57A~~~+3B;;;;1908;;7669;;2;6;1;1;3107;;32;5;10;22;17;14;2;33;10;5;1;7; +a02EQ#K1C~3A~~~+3;;;;4253;-1-1;-1-1;;2;6;1;1;3108;;32;5;10;22;17;14;2;33;10;5;1;7; +a10AQ#X1~38AH2~+3F;;;;4546;-1-1;7439;;2;6;1;1;3108;;32;5;10;22;17;14;2;33;10;5;1;7; +ap09:13;;;;2661;-1-1;;;2;6;1;1;3109;;32;5;10;22;17;14;2;33;10;5;1;7; +aP02;;;;;;;;2;6;6;1;3131;;32;5;10;22;17;14;33;10;5;1;7;2; +az6;;;;;;;;2;6;6;1;3131;;32;5;10;22;17;14;33;10;5;1;7;2; +*P14;;;;;;;;2;6;6;1;3131;;32;5;10;22;17;14;33;10;5;1;7;2; +*z6;;;;;;;;2;6;6;1;3131;;32;5;10;22;17;14;33;10;5;1;7;2; +a33SQ!~~~95B~~~+4;;;;0170;-1-1;7968;;2;6;6;1;3131;;32;5;10;22;17;14;33;10;5;1;7;2; +*22RQ!~~~15BM~~-4F;;;;0170;-1-1;7968;;2;6;6;1;3132;;32;5;10;22;17;14;33;10;5;1;7;2; +*14EQ#K7C~3A~~~-4;;;;3961;-1-1;-1-1;;2;6;6;1;3134;;32;5;10;22;17;14;33;10;5;1;7;2; +*05AQ#XM~39CH4~-4F;;;;4541;5536;6730;;2;6;6;1;3134;;32;5;10;22;17;14;33;10;5;1;7;2; +a05BQ=~~~~2C~~~+4;;;;4564;-1-1;-1-1;;2;6;6;1;3134;;32;5;10;22;17;14;33;10;5;1;7;2; +*p10:13;;;;4587;-1-1;;;2;6;6;1;3135;;32;5;10;22;17;14;33;10;5;1;7;2; +*P14;;;;;;;;2;5;6;1;3152;;5;10;22;17;14;32;33;10;5;1;7;2; +*z5;;;;;;;;2;5;6;1;3152;;5;10;22;17;14;32;33;10;5;1;7;2; +aP02;;;;;;;;2;5;6;1;3152;;5;10;22;17;14;32;33;10;5;1;7;2; +az6;;;;;;;;2;5;6;1;3152;;5;10;22;17;14;32;33;10;5;1;7;2; +*05ST-~~~69D~~~-3;;;;0348;-1-1;7536;;2;5;6;1;3152;;5;10;22;17;14;32;33;10;5;1;7;2; +a33RT#~~~69DR~~+3B;;;;0348;-1-1;7536;;2;5;6;1;3153;;5;10;22;17;14;32;33;10;5;1;7;2; +a02EQ#K1C~3B~~~+3;;;;4558;-1-1;-1-1;;2;5;6;1;3155;;5;10;22;17;14;32;33;10;5;1;7;2; +a10AQ#X1~33DH2~+3F;;;;4450;-1-1;5758;;2;5;6;1;3155;;5;10;22;17;14;32;33;10;5;1;7;2; +*22DQ=~~~33DS~~-3F;;;;4450;-1-1;5758;;2;5;6;1;3156;;5;10;22;17;14;32;33;10;5;1;7;2; +ap10:14;;;;4541;-1-1;;;2;5;6;1;3156;;5;10;22;17;14;32;33;10;5;1;7;2; +aP02;;;;;;;;2;5;5;1;3174;;5;10;22;17;14;32;10;5;1;7;2;33; +az5;;;;;;;;2;5;5;1;3174;;5;10;22;17;14;32;10;5;1;7;2;33; +*P14;;;;;;;;2;5;5;1;3174;;5;10;22;17;14;32;10;5;1;7;2;33; +*z5;;;;;;;;2;5;5;1;3174;;5;10;22;17;14;32;10;5;1;7;2;33; +a08SM-~~~59C~~~+4;;;;0422;-1-1;6935;;2;5;5;1;3174;;5;10;22;17;14;32;10;5;1;7;2;33; +*01RM+~~~59CM~~-4B;;;;0422;-1-1;6935;;2;5;5;1;3175;;5;10;22;17;14;32;10;5;1;7;2;33; +*14ET#K1F~2D~~~-4;;;;4264;-1-1;-1-1;;2;5;5;1;3176;;5;10;22;17;14;32;10;5;1;7;2;33; +*22AT-X5~45BH4~-4F;;;;4613;-1-1;8269;;2;5;5;1;3177;;5;10;22;17;14;32;10;5;1;7;2;33; +a08DT+~~~45BS~~+4B;;;;4613;-1-1;8269;;2;5;5;1;3178;;5;10;22;17;14;32;10;5;1;7;2;33; +a02EH#~~~~1C~~~+4;;;;2374;-1-1;-1-1;;2;5;5;1;3180;;5;10;22;17;14;32;10;5;1;7;2;33; +a01AH+V5~42DH2~+4F;;;;4223;-1-1;5735;;2;5;5;1;3182;;5;10;22;17;14;32;10;5;1;7;2;33; +*17DH-~~~42DS~~-4F;;;;4223;-1-1;5735;;2;5;5;1;3182;;5;10;22;17;14;32;10;5;1;7;2;33; +*p11:14;;;;4550;-1-1;;;2;5;5;1;3182;;5;10;22;17;14;32;10;5;1;7;2;33; +*c10:18;;;;1010;-1-1;9521;;2;0;0;1;3206;; +*P14;;;;;;;;2;4;5;1;3206;;18;22;17;14;32;5;10;5;1;7;2;33; +*z4;;;;;;;;2;4;5;1;3206;;18;22;17;14;32;5;10;5;1;7;2;33; +aP02;;;;;;;;2;4;5;1;3206;;18;22;17;14;32;5;10;5;1;7;2;33; +az5;;;;;;;;2;4;5;1;3206;;18;22;17;14;32;5;10;5;1;7;2;33; +*18SM-~~~17B~~~-3;;;;0579;-1-1;6471;;2;4;5;1;3206;;18;22;17;14;32;5;10;5;1;7;2;33; +a07RM+~~~17BM~~+3F;;;;0579;-1-1;6471;;2;4;5;1;3207;;18;22;17;14;32;5;10;5;1;7;2;33; +a02ET#K7B~2C~~~+3;;;;4465;-1-1;-1-1;;2;4;5;1;3209;;18;22;17;14;32;5;10;5;1;7;2;33; +a05AT#X6~25BH2~+3F;;;;4390;5684;7874;;2;4;5;1;3210;;18;22;17;14;32;5;10;5;1;7;2;33; +*17BT!~~~~4C~~~-3;;;;4416;-1-1;-1-1;;2;4;5;1;3210;;18;22;17;14;32;5;10;5;1;7;2;33; +*01DT=~~~25BB~~-3B;;;;4390;5684;7771;;2;4;5;1;3211;;18;22;17;14;32;5;10;5;1;7;2;33; +ap11:15;;;;0289;-1-1;;;2;4;5;1;3212;;18;22;17;14;32;5;10;5;1;7;2;33; +ac05:04;;;;1010;-1-1;9777;;2;0;0;1;3234;; +aP02;;;;;;;;2;4;4;1;3234;;18;22;17;14;32;5;4;1;7;2;33;10; +az4;;;;;;;;2;4;4;1;3234;;18;22;17;14;32;5;4;1;7;2;33;10; +*P14;;;;;;;;2;4;4;1;3234;;18;22;17;14;32;5;4;1;7;2;33;10; +*z4;;;;;;;;2;4;4;1;3234;;18;22;17;14;32;5;4;1;7;2;33;10; +a04SM-~~~51C~~~+4;;;;0323;-1-1;7825;;2;4;4;1;3234;;18;22;17;14;32;5;4;1;7;2;33;10; +*18RM+~~~51CM~~-4B;;;;0323;-1-1;7825;;2;4;4;1;3235;;18;22;17;14;32;5;4;1;7;2;33;10; +*14EO#K1S~2D~~~-4;;;;4367;-1-1;-1-1;;2;4;4;1;3237;;18;22;17;14;32;5;4;1;7;2;33;10; +*14AO-PP~35B~~~-4F;;;;4367;5566;7866;;2;4;4;1;3237;;18;22;17;14;32;5;4;1;7;2;33;10; +a01BO+~~~~4B~~~+4;;;;4534;-1-1;-1-1;;2;4;4;1;3237;;18;22;17;14;32;5;4;1;7;2;33;10; +a08DO+~~~27AB~~+4B;;;;4367;5566;7074;;2;4;4;1;3238;;18;22;17;14;32;5;4;1;7;2;33;10; +a02EO#~~~~7A~~~+4;;;;4466;;;;2;4;4;1;3240;;18;22;17;14;32;5;4;1;7;2;33;10; +a07AO-~~~35BT2~+4F;;;;4337;-1-1;7970;;2;4;4;1;3241;;18;22;17;14;32;5;4;1;7;2;33;10; +*01DO+~~~35BS~~-4B;;;;4337;-1-1;7970;;2;4;4;1;3242;;18;22;17;14;32;5;4;1;7;2;33;10; +*18EH#~~~~9D~~~-4;;;;2768;-1-1;-1-1;;2;4;4;1;3243;;18;22;17;14;32;5;4;1;7;2;33;10; +*22AH-V5~46BH2~-4F;;;;4314;5425;7848;;2;4;4;1;3245;;18;22;17;14;32;5;4;1;7;2;33;10; +a07BH+~~~~2C~~~+4;;;;4675;-1-1;-1-1;;2;4;4;1;3245;;18;22;17;14;32;5;4;1;7;2;33;10; +a08DH#~~~47AB~~+4B;;;;4314;5425;7379;;2;4;4;1;3245;;18;22;17;14;32;5;4;1;7;2;33;10; +a02EO#~~~~3A~~~+4;;;;4352;-1-1;-1-1;;2;4;4;1;3247;;18;22;17;14;32;5;4;1;7;2;33;10; +a01AO-~~~42DT2~+4F;;;;4422;-1-1;6336;;2;4;4;1;3248;;18;22;17;14;32;5;4;1;7;2;33;10; +*22DO+~~~42DS~~-4F;;;;4422;-1-1;6336;;2;4;4;1;3249;;18;22;17;14;32;5;4;1;7;2;33;10; +*01EO-~~~~7A~~~-4;;;;2429;;;;2;4;4;1;3251;;18;22;17;14;32;5;4;1;7;2;33;10; +a08FH+~~~97A~~~+4B;;;;3175;;7663;;2;4;4;1;3254;;18;22;17;14;32;5;4;1;7;2;33;10; +a02EO-K1~~3A~~~+4;;;;4057;;;;2;4;4;1;3256;;18;22;17;14;32;5;4;1;7;2;33;10; +*22BO-~~~~4B~~~-4;;;;4423;-1-1;-1-1;;2;4;4;1;3257;;18;22;17;14;32;5;4;1;7;2;33;10; +a10AO+~~~22DH1~+4B;;;;4284;-1-1;5828;;2;4;4;1;3257;;18;22;17;14;32;5;4;1;7;2;33;10; +a33DO-~~~22DC~~+4B;;;;5816;1418;4272;;2;4;4;1;3258;;18;22;17;14;32;5;4;1;7;2;33;10; +a02EH#~~~~2B~~~+4;;;;4585;-1-1;-1-1;;2;4;4;1;3260;;18;22;17;14;32;5;4;1;7;2;33;10; +a15AH/V8~95BH2~+4M;;;;4371;5774;7879;;2;4;4;1;3261;;18;22;17;14;32;5;4;1;7;2;33;10; +*22BH#~~~~4A~~~-4;;;;4326;-1-1;-1-1;;2;4;4;1;3261;;18;22;17;14;32;5;4;1;7;2;33;10; +a15DH=~~~22CC~~+4M;;;;5729;5774;4571;;2;4;4;1;3262;;18;22;17;14;32;5;4;1;7;2;33;10; +*p12:15;;;;4355;-1-1;;;2;4;4;1;3262;;18;22;17;14;32;5;4;1;7;2;33;10; +*c32:77;;;;1010;-1-1;9926;;2;0;0;1;3287;; +*P14;;;;;;;;2;3;4;1;3287;;22;17;14;77;5;18;4;1;7;2;33;10; +*z3;;;;;;;;2;3;4;1;3287;;22;17;14;77;5;18;4;1;7;2;33;10; +aP02;;;;;;;;2;3;4;1;3287;;22;17;14;77;5;18;4;1;7;2;33;10; +az4;;;;;;;;2;3;4;1;3287;;22;17;14;77;5;18;4;1;7;2;33;10; +*22SH+~~~96B~~~-3;;;;0174;-1-1;7939;;2;3;4;1;3287;;22;17;14;77;5;18;4;1;7;2;33;10; +a04RH-~~~16BM~~+3B;;;;0174;-1-1;7939;;2;3;4;1;3289;;22;17;14;77;5;18;4;1;7;2;33;10; +a02EO-~~~~7B~~~+3;;;;3332;;;;2;3;4;1;3290;;22;17;14;77;5;18;4;1;7;2;33;10; +*01FH!~~~45B~~~-3B;;;;4019;;7767;;2;3;4;1;3293;;22;17;14;77;5;18;4;1;7;2;33;10; +*14ET#K1F~3D~~~-3;;;;3950;-1-1;-1-1;;2;3;4;1;3294;;22;17;14;77;5;18;4;1;7;2;33;10; +*77AT#X5~41CH2~-3F;;;;4420;5525;8035;;2;3;4;1;3295;;22;17;14;77;5;18;4;1;7;2;33;10; +a07BT=~~~~2C~~~+3;;;;4575;-1-1;-1-1;;2;3;4;1;3295;;22;17;14;77;5;18;4;1;7;2;33;10; +*p13:15;;;;2342;-1-1;;;2;3;4;1;3296;;22;17;14;77;5;18;4;1;7;2;33;10; +*P14;;;;;;;;2;3;4;1;3315;;22;17;14;77;5;18;4;1;7;2;33;10; +*z3;;;;;;;;2;3;4;1;3315;;22;17;14;77;5;18;4;1;7;2;33;10; +aP02;;;;;;;;2;3;4;1;3315;;22;17;14;77;5;18;4;1;7;2;33;10; +az4;;;;;;;;2;3;4;1;3315;;22;17;14;77;5;18;4;1;7;2;33;10; +*22SH-~~~96C~~~-2;;;;-173;-1-1;8053;;2;3;4;1;3315;;22;17;14;77;5;18;4;1;7;2;33;10; +a08RH+~~~~6CM~~+2B;;;;-173;-1-1;8053;;2;3;4;1;3317;;22;17;14;77;5;18;4;1;7;2;33;10; +a02ET#KBF~3D~~~+2;;;;4342;-1-1;-1-1;;2;3;4;1;3318;;22;17;14;77;5;18;4;1;7;2;33;10; +a01AT-X5~41CH2~+2F;;;;4314;5420;7932;;2;3;4;1;3319;;22;17;14;77;5;18;4;1;7;2;33;10; +*17BT+~~~~2C~~~-2;;;;4680;-1-1;-1-1;;2;3;4;1;3319;;22;17;14;77;5;18;4;1;7;2;33;10; +*01DT#~~~47AB~~-2B;;;;4314;5420;7568;;2;3;4;1;3320;;22;17;14;77;5;18;4;1;7;2;33;10; +*14ET#K2F~3A~~~-2;;;;4059;-1-1;-1-1;;2;3;4;1;3322;;22;17;14;77;5;18;4;1;7;2;33;10; +*77AT-X5~41CT2~-2F;;;;4322;5426;7835;;2;3;4;1;3323;;22;17;14;77;5;18;4;1;7;2;33;10; +a02BT+~~~~2C~~~+2;;;;4674;-1-1;-1-1;;2;3;4;1;3323;;22;17;14;77;5;18;4;1;7;2;33;10; +a04DT+~~~49DB~~+2B;;;;4322;5426;7029;;2;3;4;1;3324;;22;17;14;77;5;18;4;1;7;2;33;10; +a02EH#~~~~3B~~~+2;;;;4561;-1-1;-1-1;;2;3;4;1;3325;;22;17;14;77;5;18;4;1;7;2;33;10; +a01AH-V5~41CH2~+2F;;;;4326;5424;7921;;2;3;4;1;3327;;22;17;14;77;5;18;4;1;7;2;33;10; +*17BH+~~~~2C~~~-2;;;;4676;-1-1;-1-1;;2;3;4;1;3327;;22;17;14;77;5;18;4;1;7;2;33;10; +*22DH+~~~41CB~~-2B;;;;4326;5424;8821;;2;3;4;1;3328;;22;17;14;77;5;18;4;1;7;2;33;10; +*14EH#~~~~8C~~~-2;;;;3540;-1-1;-1-1;;2;3;4;1;3330;;22;17;14;77;5;18;4;1;7;2;33;10; +*77AH-V5~46BH2~-2F;;;;4316;-1-1;8443;;2;3;4;1;3331;;22;17;14;77;5;18;4;1;7;2;33;10; +a33DH+~~~46BS~~+2B;;;;4316;-1-1;8443;;2;3;4;1;3332;;22;17;14;77;5;18;4;1;7;2;33;10; +a02EH#~~~~7B~~~+2;;;;3135;-1-1;-1-1;;2;3;4;1;3334;;22;17;14;77;5;18;4;1;7;2;33;10; +a01AH#V5~46BH2~+2F;;;;4322;5731;7946;;2;3;4;1;3335;;22;17;14;77;5;18;4;1;7;2;33;10; +*17BH!~~~~2D~~~-2;;;;4369;-1-1;-1-1;;2;3;4;1;3336;;22;17;14;77;5;18;4;1;7;2;33;10; +*01DH=~~~47AB~~-2B;;;;4322;5731;7377;;2;3;4;1;3336;;22;17;14;77;5;18;4;1;7;2;33;10; +ap13:16;;;;3715;-1-1;;;2;3;4;1;3336;;22;17;14;77;5;18;4;1;7;2;33;10; +ac02:15;;;;1010;-1-1;9524;;2;0;0;1;3361;; +aP15;;;;;;;;2;3;3;1;3361;;22;17;14;77;5;18;1;7;15;33;10;4; +az3;;;;;;;;2;3;3;1;3361;;22;17;14;77;5;18;1;7;15;33;10;4; +*P14;;;;;;;;2;3;3;1;3361;;22;17;14;77;5;18;1;7;15;33;10;4; +*z3;;;;;;;;2;3;3;1;3361;;22;17;14;77;5;18;1;7;15;33;10;4; +a01SQ+~~~11C~~~+3;;;;0576;-1-1;7730;;2;3;3;1;3361;;22;17;14;77;5;18;1;7;15;33;10;4; +*18RQ-~~~11CM~~-3B;;;;0576;-1-1;7730;;2;3;3;1;3362;;22;17;14;77;5;18;1;7;15;33;10;4; +*14EH#~~~~8D~~~-3;;;;2944;-1-1;-1-1;;2;3;3;1;3363;;22;17;14;77;5;18;1;7;15;33;10;4; +*22AH+VP~88BH4~-3B;;;;2957;5152;6549;;2;3;3;1;3364;;22;17;14;77;5;18;1;7;15;33;10;4; +a07BH-~~~~3C~~~+3;;;;4948;-1-1;-1-1;;2;3;3;1;3365;;22;17;14;77;5;18;1;7;15;33;10;4; +a01DH-~~~86CB~~+3B;;;;2957;5152;8154;;2;3;3;1;3365;;22;17;14;77;5;18;1;7;15;33;10;4; +*77AO-~~~49CH0~-3F;;;;4523;-1-1;6426;;2;3;3;1;3367;;22;17;14;77;5;18;1;7;15;33;10;4; +a04DO+~~~49CS~~+3B;;;;4523;-1-1;6426;;2;3;3;1;3367;;22;17;14;77;5;18;1;7;15;33;10;4; +a01EH#~~~~6B~~~+3;;;;1951;-1-1;-1-1;;2;3;3;1;3368;;22;17;14;77;5;18;1;7;15;33;10;4; +a33AH-V5~41CT2~+3F;;;;4420;6020;7920;;2;3;3;1;3370;;22;17;14;77;5;18;1;7;15;33;10;4; +*14BH+~~~~2D~~~-3;;;;4080;-1-1;-1-1;;2;3;3;1;3370;;22;17;14;77;5;18;1;7;15;33;10;4; +*18DH+~~~49DB~~-3B;;;;4420;6020;7221;;2;3;3;1;3370;;22;17;14;77;5;18;1;7;15;33;10;4; +*01EH#~~~~5B~~~-3;;;;2332;-1-1;-1-1;;2;3;3;1;3372;;22;17;14;77;5;18;1;7;15;33;10;4; +*77AH-V5~46CH2~-3F;;;;4127;5536;7752;;2;3;3;1;3374;;22;17;14;77;5;18;1;7;15;33;10;4; +a07BH+~~~~2C~~~+3;;;;4564;-1-1;-1-1;;2;3;3;1;3374;;22;17;14;77;5;18;1;7;15;33;10;4; +a08DH+~~~45BB~~+3B;;;;4127;5536;8172;;2;3;3;1;3374;;22;17;14;77;5;18;1;7;15;33;10;4; +a33EO=~~~~4D~~~+3;;;;3812;;;;2;3;3;1;3376;;22;17;14;77;5;18;1;7;15;33;10;4; +*p14:16;;;;3711;-1-1;;;2;3;3;1;3377;;22;17;14;77;5;18;1;7;15;33;10;4; +ac15:02;;;;1010;-1-1;9531;;2;0;0;1;3396;; +*P14;;;;;;;;2;2;3;1;3396;;17;14;77;5;18;22;1;7;2;33;10;4; +*z2;;;;;;;;2;2;3;1;3396;;17;14;77;5;18;22;1;7;2;33;10;4; +aP02;;;;;;;;2;2;3;1;3396;;17;14;77;5;18;22;1;7;2;33;10;4; +az3;;;;;;;;2;2;3;1;3396;;17;14;77;5;18;22;1;7;2;33;10;4; +*01SM!~~~95B~~~-2;;;;0569;-1-1;8275;;2;2;3;1;3396;;17;14;77;5;18;22;1;7;2;33;10;4; +a33RM!~~~15BM~~+2F;;;;0569;-1-1;8275;;2;2;3;1;3397;;17;14;77;5;18;22;1;7;2;33;10;4; +a04EO-K1~~2A~~~+2;;;;4282;;;;2;2;3;1;3398;;17;14;77;5;18;22;1;7;2;33;10;4; +*18FH#~~~29C~~~-2B;;;;4371;;6819;;2;2;3;1;3401;;17;14;77;5;18;22;1;7;2;33;10;4; +*14ET#K1B~3B~~~-2;;;;4461;-1-1;-1-1;;2;2;3;1;3402;;17;14;77;5;18;22;1;7;2;33;10;4; +*22AT#X8~96BH1~-2B;;;;3174;-1-1;8440;;2;2;3;1;3403;;17;14;77;5;18;22;1;7;2;33;10;4; +*p15:16;;;;1660;-1-1;;;2;2;3;1;3404;;17;14;77;5;18;22;1;7;2;33;10;4; +*P14;;;;;;;;2;2;3;1;3521;;17;14;77;5;18;22;1;7;2;33;10;4; +*z2;;;;;;;;2;2;3;1;3521;;17;14;77;5;18;22;1;7;2;33;10;4; +aP02;;;;;;;;2;2;3;1;3521;;17;14;77;5;18;22;1;7;2;33;10;4; +az3;;;;;;;;2;2;3;1;3521;;17;14;77;5;18;22;1;7;2;33;10;4; +*01SM-~~~95B~~~-1;;;;0072;-1-1;7773;;2;2;3;1;3521;;17;14;77;5;18;22;1;7;2;33;10;4; +a33RM+~~~15BO~~+1F;;;;0072;-1-1;7773;;2;2;3;1;3522;;17;14;77;5;18;22;1;7;2;33;10;4; +a04EN#KSC~3C~~~+1;;;;4444;-1-1;-1-1;;2;2;3;1;3524;;17;14;77;5;18;22;1;7;2;33;10;4; +a07AN+CF~27BH4~+1F;;;;4383;5579;6676;;2;2;3;1;3525;;17;14;77;5;18;22;1;7;2;33;10;4; +*77BN/~~~~4B~~~-1;;;;4521;-1-1;-1-1;;2;2;3;1;3525;;17;14;77;5;18;22;1;7;2;33;10;4; +a33DN#~~~24AC~~+1F;;;;5717;5579;4333;;2;2;3;1;3526;;17;14;77;5;18;22;1;7;2;33;10;4; +a04EM#KBP~3D~~~+1;;;;4348;-1-1;-1-1;;2;2;3;1;3528;;17;14;77;5;18;22;1;7;2;33;10;4; +a01AM-XP~88AT4~+1B;;;;3056;-1-1;7039;;2;2;3;1;3529;;17;14;77;5;18;22;1;7;2;33;10;4; +*14DM+~~~88AS~~-1F;;;;3056;-1-1;7039;;2;2;3;1;3530;;17;14;77;5;18;22;1;7;2;33;10;4; +*01EH#~~~~8D~~~-1;;;;2644;-1-1;-1-1;;2;2;3;1;3531;;17;14;77;5;18;22;1;7;2;33;10;4; +*77AH-V5~46BH2~-1F;;;;4213;5522;7838;;2;2;3;1;3533;;17;14;77;5;18;22;1;7;2;33;10;4; +a02BH+~~~~2C~~~+1;;;;4578;-1-1;-1-1;;2;2;3;1;3533;;17;14;77;5;18;22;1;7;2;33;10;4; +a01DH+~~~46BB~~+1B;;;;4213;5522;8038;;2;2;3;1;3534;;17;14;77;5;18;22;1;7;2;33;10;4; +a08EH#~~~~7A~~~+1;;;;2930;-1-1;-1-1;;2;2;3;1;3535;;17;14;77;5;18;22;1;7;2;33;10;4; +a33AH+V5~42DH2~+1F;;;;4521;-1-1;5822;;2;2;3;1;3537;;17;14;77;5;18;22;1;7;2;33;10;4; +*14DH-~~~42DS~~-1F;;;;4521;-1-1;5822;;2;2;3;1;3537;;17;14;77;5;18;22;1;7;2;33;10;4; +a07FH!~~~23D~~~+1F;;;;4278;;6057;;2;2;3;1;3538;;17;14;77;5;18;22;1;7;2;33;10;4; +a04EH#~~~~7B~~~+1;;;;3534;-1-1;-1-1;;2;2;3;1;3540;;17;14;77;5;18;22;1;7;2;33;10;4; +a33AH-V5~46BH2~+1F;;;;4515;5724;8143;;2;2;3;1;3541;;17;14;77;5;18;22;1;7;2;33;10;4; +*05BH+~~~~2D~~~-1;;;;4376;-1-1;-1-1;;2;2;3;1;3541;;17;14;77;5;18;22;1;7;2;33;10;4; +*77DH#~~~47BB~~-1F;;;;4515;5724;6772;;2;2;3;1;3542;;17;14;77;5;18;22;1;7;2;33;10;4; +*14EQ#K1C~3D~~~-1;;;;4049;-1-1;-1-1;;2;2;3;1;3544;;17;14;77;5;18;22;1;7;2;33;10;4; +*05AQ#X1~31CH2~-1F;;;;4236;-1-1;7719;;2;2;3;1;3544;;17;14;77;5;18;22;1;7;2;33;10;4; +a04DQ=~~~41CS~~+1B;;;;4236;-1-1;7719;;2;2;3;1;3545;;17;14;77;5;18;22;1;7;2;33;10;4; +*p16:16;;;;2893;-1-1;;;2;2;3;1;3546;;17;14;77;5;18;22;1;7;2;33;10;4; +*P14;;;;;;;;2;2;3;1;3563;;17;14;77;5;18;22;1;7;2;33;10;4; +*z2;;;;;;;;2;2;3;1;3563;;17;14;77;5;18;22;1;7;2;33;10;4; +aP02;;;;;;;;2;2;3;1;3563;;17;14;77;5;18;22;1;7;2;33;10;4; +az3;;;;;;;;2;2;3;1;3563;;17;14;77;5;18;22;1;7;2;33;10;4; +*01SM+~~~95C~~~00;;;;0468;-1-1;7982;;2;2;3;1;3563;;17;14;77;5;18;22;1;7;2;33;10;4; +a33RM-~~~15CL~~00F;;;;0468;-1-1;7982;;2;2;3;1;3564;;17;14;77;5;18;22;1;7;2;33;10;4; +a04ET#~~~~7B~~~00;;;;3619;-1-1;-1-1;;2;2;3;1;3566;;17;14;77;5;18;22;1;7;2;33;10;4; +a33AT#X5~41CH2~00F;;;;4513;5720;8134;;2;2;3;1;3567;;17;14;77;5;18;22;1;7;2;33;10;4; +*05BT!~~~~2D~~~00;;;;4380;-1-1;-1-1;;2;2;3;1;3567;;17;14;77;5;18;22;1;7;2;33;10;4; +*22DT=~~~48DB~~00B;;;;4513;5720;7558;;2;2;3;1;3568;;17;14;77;5;18;22;1;7;2;33;10;4; +ap16:17;;;;2152;-1-1;;;2;2;3;1;3568;;17;14;77;5;18;22;1;7;2;33;10;4; +ac02:15;;;;1010;-1-1;9778;;2;0;0;1;3590;; +aP15;;;;;;;;2;2;2;1;3590;;17;14;77;5;18;22;7;15;33;10;4;1; +az2;;;;;;;;2;2;2;1;3590;;17;14;77;5;18;22;7;15;33;10;4;1; +*P14;;;;;;;;2;2;2;1;3590;;17;14;77;5;18;22;7;15;33;10;4;1; +*z2;;;;;;;;2;2;2;1;3590;;17;14;77;5;18;22;7;15;33;10;4;1; +a07SM=~~~55A~~~+1;;;;0322;-1-1;9774;;2;2;2;1;3590;;17;14;77;5;18;22;7;15;33;10;4;1; +*p17:17;;;;0326;-1-1;;;2;2;2;1;3591;;17;14;77;5;18;22;7;15;33;10;4;1; +ac15:02;;;;1010;-1-1;9090;;2;0;0;1;3609;; +*c18:10;;;;1010;-1-1;9724;;2;0;0;1;3609;; +*P14;;;;;;;;2;1;2;1;3609;;14;77;5;10;22;17;7;2;33;10;4;1; +*z1;;;;;;;;2;1;2;1;3609;;14;77;5;10;22;17;7;2;33;10;4;1; +aP02;;;;;;;;2;1;2;1;3609;;14;77;5;10;22;17;7;2;33;10;4;1; +az2;;;;;;;;2;1;2;1;3609;;14;77;5;10;22;17;7;2;33;10;4;1; +*14SM!~~~16C~~~00;;;;0376;-1-1;8062;;2;1;2;1;3609;;14;77;5;10;22;17;7;2;33;10;4;1; +a33RM!~~~16CW~~00F;;;;0376;-1-1;8062;;2;1;2;1;3610;;14;77;5;10;22;17;7;2;33;10;4;1; +a04ET#K2F~4A~~~00;;;;4334;-1-1;-1-1;;2;1;2;1;3612;;14;77;5;10;22;17;7;2;33;10;4;1; +a33AT-X5~41CH2~00F;;;;4321;5523;7828;;2;1;2;1;3613;;14;77;5;10;22;17;7;2;33;10;4;1; +*10BT+~~~~2C~~~00;;;;4577;-1-1;-1-1;;2;1;2;1;3613;;14;77;5;10;22;17;7;2;33;10;4;1; +*22DT+~~~41CB~~00B;;;;4321;5523;8736;;2;1;2;1;3613;;14;77;5;10;22;17;7;2;33;10;4;1; +*14EH#~~~~9A~~~00;;;;2489;-1-1;-1-1;;2;1;2;1;3615;;14;77;5;10;22;17;7;2;33;10;4;1; +*77AH-V5~45BH2~00F;;;;4324;-1-1;8174;;2;1;2;1;3617;;14;77;5;10;22;17;7;2;33;10;4;1; +a08DH+~~~45BS~~00B;;;;4324;-1-1;8174;;2;1;2;1;3617;;14;77;5;10;22;17;7;2;33;10;4;1; +a04EH#~~~~1C~~~00;;;;2365;-1-1;-1-1;;2;1;2;1;3619;;14;77;5;10;22;17;7;2;33;10;4;1; +a33AH+V5~42CT2~00F;;;;4221;-1-1;5623;;2;1;2;1;3621;;14;77;5;10;22;17;7;2;33;10;4;1; +*10AO-~~~23DT0~00F;;;;4477;-1-1;6363;;2;1;2;1;3621;;14;77;5;10;22;17;7;2;33;10;4;1; +a08DO#~~~23DS~~00B;;;;4477;-1-1;6363;;2;1;2;1;3623;;14;77;5;10;22;17;7;2;33;10;4;1; +a04EQ#K1C~3A~~~00;;;;4355;-1-1;-1-1;;2;1;2;1;3624;;14;77;5;10;22;17;7;2;33;10;4;1; +a10AQ-X1~37BT2~00F;;;;4547;-1-1;6579;;2;1;2;1;3624;;14;77;5;10;22;17;7;2;33;10;4;1; +*01DQ+~~~37BS~~00B;;;;4547;-1-1;6579;;2;1;2;1;3625;;14;77;5;10;22;17;7;2;33;10;4;1; +*14EH#~~~~9C~~~00;;;;3375;-1-1;-1-1;;2;1;2;1;3627;;14;77;5;10;22;17;7;2;33;10;4;1; +*22AH#VP~87BH2~00B;;;;3052;5459;6663;;2;1;2;1;3628;;14;77;5;10;22;17;7;2;33;10;4;1; +a33BH!~~~~3C~~~00;;;;4641;-1-1;-1-1;;2;1;2;1;3628;;14;77;5;10;22;17;7;2;33;10;4;1; +a01DH=~~~85BB~~00B;;;;3052;5459;8163;;2;1;2;1;3628;;14;77;5;10;22;17;7;2;33;10;4;1; +*p18:17;;;;3427;-1-1;;;2;1;2;1;3630;;14;77;5;10;22;17;7;2;33;10;4;1; +*P14;;;;;;;;2;1;2;1;3655;;14;77;5;10;22;17;7;2;33;10;4;1; +*z1;;;;;;;;2;1;2;1;3655;;14;77;5;10;22;17;7;2;33;10;4;1; +aP02;;;;;;;;2;1;2;1;3655;;14;77;5;10;22;17;7;2;33;10;4;1; +az2;;;;;;;;2;1;2;1;3655;;14;77;5;10;22;17;7;2;33;10;4;1; +*14SM-~~~15B~~~+1;;;;0477;-1-1;7980;;2;1;2;1;3655;;14;77;5;10;22;17;7;2;33;10;4;1; +a33RM#~~~15BL~~-1F;;;;0477;-1-1;7980;;2;1;2;1;3656;;14;77;5;10;22;17;7;2;33;10;4;1; +a04ET#K1F~3C~~~-1;;;;4448;-1-1;-1-1;;2;1;2;1;3657;;14;77;5;10;22;17;7;2;33;10;4;1; +a33AT+X5~41CH2~-1F;;;;4527;5526;8124;;2;1;2;1;3658;;14;77;5;10;22;17;7;2;33;10;4;1; +*10BT-~~~~2C~~~+1;;;;4574;-1-1;-1-1;;2;1;2;1;3658;;14;77;5;10;22;17;7;2;33;10;4;1; +*10AO-~~~24AP0~+1F;;;;4384;-1-1;6179;;2;1;2;1;3660;;14;77;5;10;22;17;7;2;33;10;4;1; +a04DO+~~~24AS~~-1B;;;;4384;-1-1;6179;;2;1;2;1;3660;;14;77;5;10;22;17;7;2;33;10;4;1; +a08EO-~~~~7A~~~-1;;;;3032;-1-1;-1-1;;2;1;2;1;3661;;14;77;5;10;22;17;7;2;33;10;4;1; +*77AO=~~~31BT2~+1F;;;;4539;-1-1;8208;;2;1;2;1;3663;;14;77;5;10;22;17;7;2;33;10;4;1; +ap18:18;;;;1892;-1-1;;;2;1;2;1;3664;;14;77;5;10;22;17;7;2;33;10;4;1; +ac04:05;;;;1010;-1-1;9826;;2;0;0;1;3686;; +aP02;;;;;;;;2;1;1;1;3686;;14;77;5;10;22;17;2;33;10;5;1;7; +az1;;;;;;;;2;1;1;1;3686;;14;77;5;10;22;17;2;33;10;5;1;7; +*P14;;;;;;;;2;1;1;1;3686;;14;77;5;10;22;17;2;33;10;5;1;7; +*z1;;;;;;;;2;1;1;1;3686;;14;77;5;10;22;17;2;33;10;5;1;7; +a02SM!~~~96C~~~00;;;;0274;-1-1;8050;;2;1;1;1;3686;;14;77;5;10;22;17;2;33;10;5;1;7; +*01RM!~~~16CM~~00B;;;;0274;-1-1;8050;;2;1;1;1;3687;;14;77;5;10;22;17;2;33;10;5;1;7; +*14EM#K2P~3D~~~00;;;;3843;-1-1;-1-1;;2;1;1;1;3689;;14;77;5;10;22;17;2;33;10;5;1;7; +*22AM-XR~82DT2~00B;;;;3130;-1-1;6232;;2;1;1;1;3690;;14;77;5;10;22;17;2;33;10;5;1;7; +a02DM+~~~72DS~~00B;;;;3130;-1-1;6232;;2;1;1;1;3691;;14;77;5;10;22;17;2;33;10;5;1;7; +a08EH#~~~~7B~~~00;;;;3526;-1-1;-1-1;;2;1;1;1;3693;;14;77;5;10;22;17;2;33;10;5;1;7; +a05AH=V5~41DH2~00F;;;;4225;-1-1;9621;;2;1;1;1;3694;;14;77;5;10;22;17;2;33;10;5;1;7; +*p19:18;;;;0479;-1-1;;;2;1;1;1;3695;;14;77;5;10;22;17;2;33;10;5;1;7; +*c77:32;;;;1010;-1-1;9926;;2;0;0;1;3714;; +*P14;;;;;;;;2;6;1;1;3714;;32;5;10;22;17;14;2;33;10;5;1;7; +*z6;;;;;;;;2;6;1;1;3714;;32;5;10;22;17;14;2;33;10;5;1;7; +aP02;;;;;;;;2;6;1;1;3714;;32;5;10;22;17;14;2;33;10;5;1;7; +az1;;;;;;;;2;6;1;1;3714;;32;5;10;22;17;14;2;33;10;5;1;7; +*32SM-~~~96B~~~+1;;;;0174;-1-1;7938;;2;6;1;1;3714;;32;5;10;22;17;14;2;33;10;5;1;7; +a08RM+~~~16BR~~-1B;;;;0174;-1-1;7938;;2;6;1;1;3715;;32;5;10;22;17;14;2;33;10;5;1;7; +a02EQ#K7C~3A~~~-1;;;;4055;-1-1;-1-1;;2;6;1;1;3717;;32;5;10;22;17;14;2;33;10;5;1;7; +a10AQ-X7~48BH1~-1F;;;;4533;5537;6842;;2;6;1;1;3717;;32;5;10;22;17;14;2;33;10;5;1;7; +*05BQ+~~~~2C~~~+1;;;;4563;-1-1;-1-1;;2;6;1;1;3717;;32;5;10;22;17;14;2;33;10;5;1;7; +*01DQ+~~~45BB~~+1B;;;;4533;5537;7866;;2;6;1;1;3718;;32;5;10;22;17;14;2;33;10;5;1;7; +*14ET#K1F~8A~~~+1;;;;2856;-1-1;-1-1;;2;6;1;1;3720;;32;5;10;22;17;14;2;33;10;5;1;7; +*22AT#X5~45BH2~+1F;;;;4312;-1-1;8272;;2;6;1;1;3721;;32;5;10;22;17;14;2;33;10;5;1;7; +*p20:18;;;;1828;-1-1;;;2;6;1;1;3721;;32;5;10;22;17;14;2;33;10;5;1;7; +*P14;;;;;;;;2;6;1;1;3833;;32;5;10;22;17;14;2;33;10;5;1;7; +*z6;;;;;;;;2;6;1;1;3833;;32;5;10;22;17;14;2;33;10;5;1;7; +aP02;;;;;;;;2;6;1;1;3833;;32;5;10;22;17;14;2;33;10;5;1;7; +az1;;;;;;;;2;6;1;1;3833;;32;5;10;22;17;14;2;33;10;5;1;7; +*32SM!~~~11C~~~+2;;;;0477;-1-1;8036;;2;6;1;1;3833;;32;5;10;22;17;14;2;33;10;5;1;7; +a08RM!~~~11CW~~-2B;;;;0477;-1-1;8036;;2;6;1;1;3835;;32;5;10;22;17;14;2;33;10;5;1;7; +a02ET#K7B~8B~~~-2;;;;3663;-1-1;-1-1;;2;6;1;1;3836;;32;5;10;22;17;14;2;33;10;5;1;7; +a33AT#X6~29BH2~-2F;;;;4582;-1-1;6414;;2;6;1;1;3837;;32;5;10;22;17;14;2;33;10;5;1;7; +ap20:19;;;;3686;-1-1;;;2;6;1;1;3838;;32;5;10;22;17;14;2;33;10;5;1;7; +aP02;;;;;;;;2;6;6;1;3859;;32;5;10;22;17;14;33;10;5;1;7;2; +az6;;;;;;;;2;6;6;1;3859;;32;5;10;22;17;14;33;10;5;1;7;2; +*P14;;;;;;;;2;6;6;1;3859;;32;5;10;22;17;14;33;10;5;1;7;2; +*z6;;;;;;;;2;6;6;1;3859;;32;5;10;22;17;14;33;10;5;1;7;2; +a33SQ!~~~16C~~~-1;;;;0375;-1-1;7761;;2;6;6;1;3859;;32;5;10;22;17;14;33;10;5;1;7;2; +*01RQ!~~~16CM~~+1B;;;;0375;-1-1;7761;;2;6;6;1;3860;;32;5;10;22;17;14;33;10;5;1;7;2; +*14ET#K1F~2D~~~+1;;;;3866;-1-1;-1-1;;2;6;6;1;3861;;32;5;10;22;17;14;33;10;5;1;7;2; +*22AT#X5~46BH4~+1F;;;;4413;5524;7948;;2;6;6;1;3862;;32;5;10;22;17;14;33;10;5;1;7;2; +a10BT!~~~~2C~~~-1;;;;4576;-1-1;-1-1;;2;6;6;1;3862;;32;5;10;22;17;14;33;10;5;1;7;2; +a33DT=~~~45BB~~-1B;;;;4413;5524;8069;;2;6;6;1;3863;;32;5;10;22;17;14;33;10;5;1;7;2; +*p21:19;;;;1540;-1-1;;;2;6;6;1;3863;;32;5;10;22;17;14;33;10;5;1;7;2; +*P14;;;;;;;;2;5;6;1;3883;;5;10;22;17;14;32;33;10;5;1;7;2; +*z5;;;;;;;;2;5;6;1;3883;;5;10;22;17;14;32;33;10;5;1;7;2; +aP02;;;;;;;;2;5;6;1;3883;;5;10;22;17;14;32;33;10;5;1;7;2; +az6;;;;;;;;2;5;6;1;3883;;5;10;22;17;14;32;33;10;5;1;7;2; +*05ST-~~~61C~~~+2;;;;0554;-1-1;8131;;2;5;6;1;3883;;5;10;22;17;14;32;33;10;5;1;7;2; +a33RT+~~~61CM~~-2B;;;;0554;-1-1;8131;;2;5;6;1;3884;;5;10;22;17;14;32;33;10;5;1;7;2; +a02EQ#K1C~3C~~~-2;;;;4443;-1-1;-1-1;;2;5;6;1;3886;;5;10;22;17;14;32;33;10;5;1;7;2; +a10AQ+X1~32DT4~-2F;;;;4436;-1-1;5737;;2;5;6;1;3886;;5;10;22;17;14;32;33;10;5;1;7;2; +*17AO-~~~22DT0~+2F;;;;4363;-1-1;6033;;2;5;6;1;3887;;5;10;22;17;14;32;33;10;5;1;7;2; +a02DO+~~~22DS~~-2B;;;;4363;-1-1;6033;;2;5;6;1;3887;;5;10;22;17;14;32;33;10;5;1;7;2; +a08EH#~~~~7B~~~-2;;;;3528;-1-1;-1-1;;2;5;6;1;3889;;5;10;22;17;14;32;33;10;5;1;7;2; +a01AH#V5~41CT2~-2F;;;;4420;5624;7931;;2;5;6;1;3891;;5;10;22;17;14;32;33;10;5;1;7;2; +*10BH=~~~~2C~~~+2;;;;4476;-1-1;-1-1;;2;5;6;1;3891;;5;10;22;17;14;32;33;10;5;1;7;2; +ap21:20;;;;4581;-1-1;;;2;5;6;1;3891;;5;10;22;17;14;32;33;10;5;1;7;2; +aP02;;;;;;;;2;5;5;1;3912;;5;10;22;17;14;32;10;5;1;7;2;33; +az5;;;;;;;;2;5;5;1;3912;;5;10;22;17;14;32;10;5;1;7;2;33; +*P14;;;;;;;;2;5;5;1;3912;;5;10;22;17;14;32;10;5;1;7;2;33; +*z5;;;;;;;;2;5;5;1;3912;;5;10;22;17;14;32;10;5;1;7;2;33; +a08SM!~~~78A~~~-1;;;;0228;-1-1;7639;;2;5;5;1;3912;;5;10;22;17;14;32;10;5;1;7;2;33; +*01RM!~~~58AM~~+1B;;;;0228;-1-1;7639;;2;5;5;1;3913;;5;10;22;17;14;32;10;5;1;7;2;33; +*14ET#K1F~2C~~~+1;;;;4476;-1-1;-1-1;;2;5;5;1;3915;;5;10;22;17;14;32;10;5;1;7;2;33; +*22AT-X5~46BH2~+1F;;;;4318;5525;7838;;2;5;5;1;3916;;5;10;22;17;14;32;10;5;1;7;2;33; +a07BT+~~~~2C~~~-1;;;;4575;-1-1;-1-1;;2;5;5;1;3916;;5;10;22;17;14;32;10;5;1;7;2;33; +*32DT-~~~44AC~~+1B;;;;5782;4575;5768;;2;5;5;1;3917;;5;10;22;17;14;32;10;5;1;7;2;33; +a07AO-~~~38CP1~-1F;;;;4659;-1-1;6760;;2;5;5;1;3917;;5;10;22;17;14;32;10;5;1;7;2;33; +*01DO+~~~38CS~~+1B;;;;4659;-1-1;6760;;2;5;5;1;3918;;5;10;22;17;14;32;10;5;1;7;2;33; +*14ET#~~~~9C~~~+1;;;;3273;-1-1;-1-1;;2;5;5;1;3919;;5;10;22;17;14;32;10;5;1;7;2;33; +*22AT#X5~45BH2~+1F;;;;4119;-1-1;7870;;2;5;5;1;3921;;5;10;22;17;14;32;10;5;1;7;2;33; +a08DT=~~~45BS~~-1B;;;;4119;-1-1;7870;;2;5;5;1;3921;;5;10;22;17;14;32;10;5;1;7;2;33; +*p22:20;;;;2813;-1-1;;;2;5;5;1;3922;;5;10;22;17;14;32;10;5;1;7;2;33; +*c10:19;;;;1010;-1-1;9647;;2;0;0;1;3941;; +*P14;;;;;;;;2;4;5;1;3941;;19;22;17;14;32;5;10;5;1;7;2;33; +*z4;;;;;;;;2;4;5;1;3941;;19;22;17;14;32;5;10;5;1;7;2;33; +aP02;;;;;;;;2;4;5;1;3941;;19;22;17;14;32;5;10;5;1;7;2;33; +az5;;;;;;;;2;4;5;1;3941;;19;22;17;14;32;5;10;5;1;7;2;33; +*19SM-~~~66C~~~+2;;;;0453;-1-1;8160;;2;4;5;1;3941;;19;22;17;14;32;5;10;5;1;7;2;33; +a33RM+~~~66CM~~-2B;;;;0453;-1-1;8160;;2;4;5;1;3942;;19;22;17;14;32;5;10;5;1;7;2;33; +a02ET#KMB~2D~~~-2;;;;4264;-1-1;-1-1;;2;4;5;1;3944;;19;22;17;14;32;5;10;5;1;7;2;33; +a05AT+X6~26CT2~-2F;;;;4387;5381;7961;;2;4;5;1;3945;;19;22;17;14;32;5;10;5;1;7;2;33; +*22BT/~~~~4B~~~+2;;;;4719;-1-1;-1-1;;2;4;5;1;3945;;19;22;17;14;32;5;10;5;1;7;2;33; +a33DT#~~~28AC~~-2B;;;;5713;5381;2652;;2;4;5;1;3946;;19;22;17;14;32;5;10;5;1;7;2;33; +a02ET#K1F~3B~~~-2;;;;4455;-1-1;-1-1;;2;4;5;1;3947;;19;22;17;14;32;5;10;5;1;7;2;33; +a01AT/X5~41CH2~-2F;;;;4319;5524;7935;;2;4;5;1;3948;;19;22;17;14;32;5;10;5;1;7;2;33; +*17BT#~~~~2C~~~+2;;;;4576;-1-1;-1-1;;2;4;5;1;3949;;19;22;17;14;32;5;10;5;1;7;2;33; +*p23:20;;;;3637;-1-1;;;2;4;5;1;3949;;19;22;17;14;32;5;10;5;1;7;2;33; +*P14;;;;;;;;2;4;5;1;3966;;19;22;17;14;32;5;10;5;1;7;2;33; +*z4;;;;;;;;2;4;5;1;3966;;19;22;17;14;32;5;10;5;1;7;2;33; +aP02;;;;;;;;2;4;5;1;3966;;19;22;17;14;32;5;10;5;1;7;2;33; +az5;;;;;;;;2;4;5;1;3966;;19;22;17;14;32;5;10;5;1;7;2;33; +*19SM!~~~66C~~~+3;;;;0553;-1-1;8757;;2;4;5;1;3966;;19;22;17;14;32;5;10;5;1;7;2;33; +a33RM!~~~66CO~~-3B;;;;0553;-1-1;8757;;2;4;5;1;3967;;19;22;17;14;32;5;10;5;1;7;2;33; +a07EH#K2F~4A~~~-3;;;;3930;-1-1;-1-1;;2;4;5;1;3968;;19;22;17;14;32;5;10;5;1;7;2;33; +a01AH-V5~41CT4~-3F;;;;4415;-1-1;7726;;2;4;5;1;3970;;19;22;17;14;32;5;10;5;1;7;2;33; +*19DH#~~~41CS~~+3B;;;;4415;-1-1;7726;;2;4;5;1;3970;;19;22;17;14;32;5;10;5;1;7;2;33; +*14ET#K1F~3D~~~+3;;;;3850;-1-1;-1-1;;2;4;5;1;3972;;19;22;17;14;32;5;10;5;1;7;2;33; +*22AT+X5~42DH2~+3F;;;;4216;-1-1;5720;;2;4;5;1;3973;;19;22;17;14;32;5;10;5;1;7;2;33; +a05DT-~~~42DS~~-3F;;;;4216;-1-1;5720;;2;4;5;1;3973;;19;22;17;14;32;5;10;5;1;7;2;33; +ap23:21;;;;4331;-1-1;;;2;4;5;1;3974;;19;22;17;14;32;5;10;5;1;7;2;33; +ac05:04;;;;1010;-1-1;9090;;2;0;0;1;4002;; +ac02:15;;;;1010;-1-1;9090;;2;0;0;1;4002;; +*c19:18;;;;1010;-1-1;9971;;2;0;0;1;4002;; +aP15;;;;;;;;2;4;4;1;4002;;18;22;17;14;32;5;4;1;7;15;33;10; +az4;;;;;;;;2;4;4;1;4002;;18;22;17;14;32;5;4;1;7;15;33;10; +*P14;;;;;;;;2;4;4;1;4002;;18;22;17;14;32;5;4;1;7;15;33;10; +*z4;;;;;;;;2;4;4;1;4002;;18;22;17;14;32;5;4;1;7;15;33;10; +a04SM-~~~78A~~~-2;;;;0129;-1-1;7540;;2;4;4;1;4002;;18;22;17;14;32;5;4;1;7;15;33;10; +*01RM+~~~58AW~~+2B;;;;0129;-1-1;7540;;2;4;4;1;4003;;18;22;17;14;32;5;4;1;7;15;33;10; +*14ET#K1F~2D~~~+2;;;;4170;-1-1;-1-1;;2;4;4;1;4004;;18;22;17;14;32;5;4;1;7;15;33;10; +*22AT=X5~43CH2~+2F;;;;4623;-1-1;5455;;2;4;4;1;4005;;18;22;17;14;32;5;4;1;7;15;33;10; +ap23:22;;;;4645;-1-1;;;2;4;4;1;4005;;18;22;17;14;32;5;4;1;7;15;33;10; +aP15;;;;;;;;2;4;4;1;4024;;18;22;17;14;32;5;4;1;7;15;33;10; +az4;;;;;;;;2;4;4;1;4024;;18;22;17;14;32;5;4;1;7;15;33;10; +*P14;;;;;;;;2;4;4;1;4024;;18;22;17;14;32;5;4;1;7;15;33;10; +*z4;;;;;;;;2;4;4;1;4024;;18;22;17;14;32;5;4;1;7;15;33;10; +a04SM!~~~51C~~~-1;;;;0318;-1-1;8034;;2;4;4;1;4024;;18;22;17;14;32;5;4;1;7;15;33;10; +*18RM!~~~51CL~~+1B;;;;0318;-1-1;8034;;2;4;4;1;4025;;18;22;17;14;32;5;4;1;7;15;33;10; +*14EO#K2S~2D~~~+1;;;;4373;-1-1;-1-1;;2;4;4;1;4026;;18;22;17;14;32;5;4;1;7;15;33;10; +*14AO#PP~38C~~~+1F;;;;4373;-1-1;6861;;2;4;4;1;4026;;18;22;17;14;32;5;4;1;7;15;33;10; +*p24:22;;;;3239;-1-1;;;2;4;4;1;4027;;18;22;17;14;32;5;4;1;7;15;33;10; +*c32:77;;;;1010;-1-1;10126;;2;0;0;1;4049;; +*P14;;;;;;;;2;3;4;1;4049;;22;17;14;77;5;18;4;1;7;15;33;10; +*z3;;;;;;;;2;3;4;1;4049;;22;17;14;77;5;18;4;1;7;15;33;10; +aP15;;;;;;;;2;3;4;1;4049;;22;17;14;77;5;18;4;1;7;15;33;10; +az4;;;;;;;;2;3;4;1;4049;;22;17;14;77;5;18;4;1;7;15;33;10; +*22SH=~~~95A~~~+2;;;;-174;-1-1;10078;;2;3;4;1;4049;;22;17;14;77;5;18;4;1;7;15;33;10; +ap24:23;;;;0022;-1-1;;;2;3;4;1;4051;;22;17;14;77;5;18;4;1;7;15;33;10; +aP15;;;;;;;;2;3;3;1;4073;;22;17;14;77;5;18;1;7;15;33;10;4; +az3;;;;;;;;2;3;3;1;4073;;22;17;14;77;5;18;1;7;15;33;10;4; +*P14;;;;;;;;2;3;3;1;4073;;22;17;14;77;5;18;1;7;15;33;10;4; +*z3;;;;;;;;2;3;3;1;4073;;22;17;14;77;5;18;1;7;15;33;10;4; +a01SQ=~~~11D~~~-1;;;;0279;-1-1;9733;;2;3;3;1;4073;;22;17;14;77;5;18;1;7;15;33;10;4; +*p25:23;;;;0367;-1-1;;;2;3;3;1;4074;;22;17;14;77;5;18;1;7;15;33;10;4; +**2set;;;;;;;;3;3;3;1;4074;;22;17;14;77;5;18;1;7;15;33;10;4; +*P14>LUp;;;;;;;;3;1;2;1;4428;;14;77;5;10;22;17;7;2;33;10;4;1; +*z1>LUp;;;;;;;;3;1;2;1;4428;;14;77;5;10;22;17;7;2;33;10;4;1; +aP02>LUp;;;;;;;;3;1;2;1;4428;;14;77;5;10;22;17;7;2;33;10;4;1; +az2>LUp;;;;;;;;3;1;2;1;4428;;14;77;5;10;22;17;7;2;33;10;4;1; +*14SM!~~~98D~~~00;;;;0472;-1-1;7659;;3;1;2;1;4428;;14;77;5;10;22;17;7;2;33;10;4;1; +a01RM!~~~18DL~~00B;;;;0472;-1-1;7659;;3;1;2;1;4429;;14;77;5;10;22;17;7;2;33;10;4;1; +a02EQ#KMC~8B~~~00;;;;3563;-1-1;-1-1;;3;1;2;1;4431;;14;77;5;10;22;17;7;2;33;10;4;1; +a10AQ-X7~49CT1~00F;;;;4437;-1-1;6831;;3;1;2;1;4431;;14;77;5;10;22;17;7;2;33;10;4;1; +*14DQ+~~~39CS~~00B;;;;4437;-1-1;6831;;3;1;2;1;4432;;14;77;5;10;22;17;7;2;33;10;4;1; +*01EH#~~~~8C~~~00;;;;3339;-1-1;-1-1;;3;1;2;1;4434;;14;77;5;10;22;17;7;2;33;10;4;1; +*77AH-V5~46BH2~00F;;;;4320;5426;7838;;3;1;2;1;4436;;14;77;5;10;22;17;7;2;33;10;4;1; +a10BH+~~~~2C~~~00;;;;4674;-1-1;-1-1;;3;1;2;1;4436;;14;77;5;10;22;17;7;2;33;10;4;1; +a08DH#~~~47AB~~00B;;;;4320;5426;7563;;3;1;2;1;4437;;14;77;5;10;22;17;7;2;33;10;4;1; +a02EH#K1P~8B~~~00;;;;3562;-1-1;-1-1;;3;1;2;1;4438;;14;77;5;10;22;17;7;2;33;10;4;1; +a01AH#VP~86CH2~00B;;;;3050;-1-1;7862;;3;1;2;1;4439;;14;77;5;10;22;17;7;2;33;10;4;1; +*22DH=~~~86CS~~00B;;;;3050;-1-1;7862;;3;1;2;1;4440;;14;77;5;10;22;17;7;2;33;10;4;1; +ap00:01;;;;4627;-1-1;;;3;1;2;1;4443;;14;77;5;10;22;17;7;2;33;10;4;1; +ac04:05;;;;1010;-1-1;10026;;3;0;0;1;4465;; +aP02;;;;;;;;3;1;1;1;4465;;14;77;5;10;22;17;2;33;10;5;1;7; +az1;;;;;;;;3;1;1;1;4465;;14;77;5;10;22;17;2;33;10;5;1;7; +*P14;;;;;;;;3;1;1;1;4465;;14;77;5;10;22;17;2;33;10;5;1;7; +*z1;;;;;;;;3;1;1;1;4465;;14;77;5;10;22;17;2;33;10;5;1;7; +a02SM-~~~91C~~~+1;;;;0074;-1-1;8133;;3;1;1;1;4465;;14;77;5;10;22;17;2;33;10;5;1;7; +*77RM+~~~11CM~~-1F;;;;0074;-1-1;8133;;3;1;1;1;4466;;14;77;5;10;22;17;2;33;10;5;1;7; +*14EM#K1P~3A~~~-1;;;;4059;-1-1;-1-1;;3;1;1;1;4468;;14;77;5;10;22;17;2;33;10;5;1;7; +*22AM=XR~85DH2~-1B;;;;3132;-1-1;9682;;3;1;1;1;4469;;14;77;5;10;22;17;2;33;10;5;1;7; +ap00:02;;;;0418;-1-1;;;3;1;1;1;4469;;14;77;5;10;22;17;2;33;10;5;1;7; +aP02;;;;;;;;3;1;1;1;4494;;14;77;5;10;22;17;2;33;10;5;1;7; +az1;;;;;;;;3;1;1;1;4494;;14;77;5;10;22;17;2;33;10;5;1;7; +*P14;;;;;;;;3;1;1;1;4494;;14;77;5;10;22;17;2;33;10;5;1;7; +*z1;;;;;;;;3;1;1;1;4494;;14;77;5;10;22;17;2;33;10;5;1;7; +a02SM/~~~19D~~~+2;;;;0375;-1-1;7530;;3;1;1;1;4494;;14;77;5;10;22;17;2;33;10;5;1;7; +*77RM/~~~19DO~~-2F;;;;0375;-1-1;7530;;3;1;1;1;4495;;14;77;5;10;22;17;2;33;10;5;1;7; +a33FH+~~~79C~~~+2F;;;;3334;;6631;;3;1;1;1;4501;;14;77;5;10;22;17;2;33;10;5;1;7; +a02EQ#K1C~3A~~~+2;;;;4257;-1-1;-1-1;;3;1;1;1;4502;;14;77;5;10;22;17;2;33;10;5;1;7; +a10AQ-X1~38CH1~+2F;;;;4445;5649;6651;;3;1;1;1;4502;;14;77;5;10;22;17;2;33;10;5;1;7; +*05BQ+~~~~3B~~~-2;;;;4451;-1-1;-1-1;;3;1;1;1;4502;;14;77;5;10;22;17;2;33;10;5;1;7; +*01DQ#~~~35BB~~-2B;;;;4445;5649;7865;;3;1;1;1;4503;;14;77;5;10;22;17;2;33;10;5;1;7; +*14EQ#K2C~4B~~~-2;;;;4531;-1-1;-1-1;;3;1;1;1;4505;;14;77;5;10;22;17;2;33;10;5;1;7; +*05AQ+X2~25BH1~-2F;;;;4538;-1-1;8070;;3;1;1;1;4506;;14;77;5;10;22;17;2;33;10;5;1;7; +a08DQ-~~~35BS~~+2B;;;;4538;-1-1;8070;;3;1;1;1;4506;;14;77;5;10;22;17;2;33;10;5;1;7; +a33AO-~~~25BT1~+2F;;;;4370;-1-1;7767;;3;1;1;1;4507;;14;77;5;10;22;17;2;33;10;5;1;7; +*01DO#~~~25BS~~-2B;;;;4370;-1-1;7767;;3;1;1;1;4508;;14;77;5;10;22;17;2;33;10;5;1;7; +*14EM#K1P~3A~~~-2;;;;4353;-1-1;-1-1;;3;1;1;1;4510;;14;77;5;10;22;17;2;33;10;5;1;7; +*22AM#XR~83AH4~-2B;;;;3237;-1-1;5739;;3;1;1;1;4511;;14;77;5;10;22;17;2;33;10;5;1;7; +a10DM=~~~73AS~~+2F;;;;3237;-1-1;5739;;3;1;1;1;4511;;14;77;5;10;22;17;2;33;10;5;1;7; +*p01:02;;;;0068;-1-1;;;3;1;1;1;4512;;14;77;5;10;22;17;2;33;10;5;1;7; +*c77:32;;;;1010;-1-1;9520;;3;0;0;1;4531;; +*P14;;;;;;;;3;6;1;1;4531;;32;5;10;22;17;14;2;33;10;5;1;7; +*z6;;;;;;;;3;6;1;1;4531;;32;5;10;22;17;14;2;33;10;5;1;7; +aP02;;;;;;;;3;6;1;1;4531;;32;5;10;22;17;14;2;33;10;5;1;7; +az1;;;;;;;;3;6;1;1;4531;;32;5;10;22;17;14;2;33;10;5;1;7; +*32SM-~~~11C~~~-1;;;;0580;-1-1;7725;;3;6;1;1;4531;;32;5;10;22;17;14;2;33;10;5;1;7; +a33RM+~~~11CL~~+1F;;;;0580;-1-1;7725;;3;6;1;1;4532;;32;5;10;22;17;14;2;33;10;5;1;7; +a02ET#K1B~2D~~~+1;;;;4166;-1-1;-1-1;;3;6;1;1;4534;;32;5;10;22;17;14;2;33;10;5;1;7; +a33AT#X6~25BH2~+1F;;;;4783;5581;8274;;3;6;1;1;4535;;32;5;10;22;17;14;2;33;10;5;1;7; +*22BT=~~~~4B~~~-1;;;;4519;-1-1;-1-1;;3;6;1;1;4535;;32;5;10;22;17;14;2;33;10;5;1;7; +ap01:03;;;;2713;-1-1;;;3;6;1;1;4536;;32;5;10;22;17;14;2;33;10;5;1;7; +aP02;;;;;;;;3;6;6;1;4556;;32;5;10;22;17;14;33;10;5;1;7;2; +az6;;;;;;;;3;6;6;1;4556;;32;5;10;22;17;14;33;10;5;1;7;2; +*P14;;;;;;;;3;6;6;1;4556;;32;5;10;22;17;14;33;10;5;1;7;2; +*z6;;;;;;;;3;6;6;1;4556;;32;5;10;22;17;14;33;10;5;1;7;2; +a33SQ-~~~96C~~~+2;;;;0374;-1-1;8262;;3;6;6;1;4556;;32;5;10;22;17;14;33;10;5;1;7;2; +*01RQ+~~~16CW~~-2B;;;;0374;-1-1;8262;;3;6;6;1;4556;;32;5;10;22;17;14;33;10;5;1;7;2; +*14EQ#KMC~2C~~~-2;;;;4463;-1-1;-1-1;;3;6;6;1;4558;;32;5;10;22;17;14;33;10;5;1;7;2; +*05AQ#XM~33AT2~-2F;;;;4448;-1-1;6347;;3;6;6;1;4558;;32;5;10;22;17;14;33;10;5;1;7;2; +*p02:03;;;;3753;-1-1;;;3;6;6;1;4559;;32;5;10;22;17;14;33;10;5;1;7;2; +*P14;;;;;;;;3;5;6;1;4578;;5;10;22;17;14;32;33;10;5;1;7;2; +*z5;;;;;;;;3;5;6;1;4578;;5;10;22;17;14;32;33;10;5;1;7;2; +aP02;;;;;;;;3;5;6;1;4578;;5;10;22;17;14;32;33;10;5;1;7;2; +az6;;;;;;;;3;5;6;1;4578;;5;10;22;17;14;32;33;10;5;1;7;2; +*05SM!~~~69D~~~-1;;;;0351;-1-1;7434;;3;5;6;1;4578;;5;10;22;17;14;32;33;10;5;1;7;2; +a33RM!~~~69DL~~+1B;;;;0351;-1-1;7434;;3;5;6;1;4579;;5;10;22;17;14;32;33;10;5;1;7;2; +a02ET#K2F~8B~~~+1;;;;3661;-1-1;-1-1;;3;5;6;1;4581;;5;10;22;17;14;32;33;10;5;1;7;2; +a01AT#X5~42DT2~+1F;;;;4417;-1-1;5830;;3;5;6;1;4582;;5;10;22;17;14;32;33;10;5;1;7;2; +ap02:04;;;;4270;-1-1;;;3;5;6;1;4583;;5;10;22;17;14;32;33;10;5;1;7;2; +aP02;;;;;;;;3;5;5;1;4601;;5;10;22;17;14;32;10;5;1;7;2;33; +az5;;;;;;;;3;5;5;1;4601;;5;10;22;17;14;32;10;5;1;7;2;33; +*P14;;;;;;;;3;5;5;1;4601;;5;10;22;17;14;32;10;5;1;7;2;33; +*z5;;;;;;;;3;5;5;1;4601;;5;10;22;17;14;32;10;5;1;7;2;33; +a08SM/~~~56B~~~+2;;;;0223;-1-1;7948;;3;5;5;1;4601;;5;10;22;17;14;32;10;5;1;7;2;33; +*01RM/~~~56BM~~-2B;;;;0223;-1-1;7948;;3;5;5;1;4602;;5;10;22;17;14;32;10;5;1;7;2;33; +a01AO#~~~37AH1~+2F;;;;4445;-1-1;7165;;3;5;5;1;4603;;5;10;22;17;14;32;10;5;1;7;2;33; +ap02:05;;;;2935;-1-1;;;3;5;5;1;4604;;5;10;22;17;14;32;10;5;1;7;2;33; +aP02;;;;;;;;3;5;5;1;4620;;5;10;22;17;14;32;10;5;1;7;2;33; +az5;;;;;;;;3;5;5;1;4620;;5;10;22;17;14;32;10;5;1;7;2;33; +*P14;;;;;;;;3;5;5;1;4620;;5;10;22;17;14;32;10;5;1;7;2;33; +*z5;;;;;;;;3;5;5;1;4620;;5;10;22;17;14;32;10;5;1;7;2;33; +a08SM-~~~71C~~~+3;;;;0530;-1-1;7733;;3;5;5;1;4620;;5;10;22;17;14;32;10;5;1;7;2;33; +*01RM#~~~51CO~~-3B;;;;0530;-1-1;7733;;3;5;5;1;4621;;5;10;22;17;14;32;10;5;1;7;2;33; +*14EQ#K1C~3B~~~-3;;;;4558;-1-1;-1-1;;3;5;5;1;4622;;5;10;22;17;14;32;10;5;1;7;2;33; +*17AQ=X1~31BH4~-3F;;;;4647;-1-1;8713;;3;5;5;1;4623;;5;10;22;17;14;32;10;5;1;7;2;33; +ap02:06;;;;1387;-1-1;;;3;5;5;1;4623;;5;10;22;17;14;32;10;5;1;7;2;33; +aP02;;;;;;;;3;5;5;1;4833;;5;10;22;17;14;32;10;5;1;7;2;33; +az5;;;;;;;;3;5;5;1;4833;;5;10;22;17;14;32;10;5;1;7;2;33; +*P14;;;;;;;;3;5;5;1;4833;;5;10;22;17;14;32;10;5;1;7;2;33; +*z5;;;;;;;;3;5;5;1;4833;;5;10;22;17;14;32;10;5;1;7;2;33; +a08SM-~~~51C~~~+4;;;;0422;-1-1;8030;;3;5;5;1;4833;;5;10;22;17;14;32;10;5;1;7;2;33; +*01RM#~~~51CW~~-4B;;;;0422;-1-1;8030;;3;5;5;1;4834;;5;10;22;17;14;32;10;5;1;7;2;33; +*14ET#K1B~3B~~~-4;;;;4456;-1-1;-1-1;;3;5;5;1;4835;;5;10;22;17;14;32;10;5;1;7;2;33; +*10AT-X6~26BH4~-4F;;;;4483;5470;7938;;3;5;5;1;4836;;5;10;22;17;14;32;10;5;1;7;2;33; +a07BT+~~~~4B~~~+4;;;;4630;-1-1;-1-1;;3;5;5;1;4837;;5;10;22;17;14;32;10;5;1;7;2;33; +*01DT-~~~29CC~~-4B;;;;5617;5470;3270;;3;5;5;1;4838;;5;10;22;17;14;32;10;5;1;7;2;33; +a33FH+~~~21C~~~+4B;;;;4469;;8233;;3;5;5;1;4842;;5;10;22;17;14;32;10;5;1;7;2;33; +a02ET#K1B~3A~~~+4;;;;4362;-1-1;-1-1;;3;5;5;1;4844;;5;10;22;17;14;32;10;5;1;7;2;33; +a05AT#X6~28AH4~+4F;;;;4383;-1-1;7444;;3;5;5;1;4845;;5;10;22;17;14;32;10;5;1;7;2;33; +ap02:07;;;;2656;-1-1;;;3;5;5;1;4845;;5;10;22;17;14;32;10;5;1;7;2;33; +aP02;;;;;;;;3;5;5;1;4864;;5;10;22;17;14;32;10;5;1;7;2;33; +az5;;;;;;;;3;5;5;1;4864;;5;10;22;17;14;32;10;5;1;7;2;33; +*P14;;;;;;;;3;5;5;1;4864;;5;10;22;17;14;32;10;5;1;7;2;33; +*z5;;;;;;;;3;5;5;1;4864;;5;10;22;17;14;32;10;5;1;7;2;33; +a08SM-~~~71C~~~+5;;;;0427;-1-1;7933;;3;5;5;1;4864;;5;10;22;17;14;32;10;5;1;7;2;33; +*01RM+~~~51CM~~-5B;;;;0427;-1-1;7933;;3;5;5;1;4865;;5;10;22;17;14;32;10;5;1;7;2;33; +*14ET#K2F~3D~~~-5;;;;4237;-1-1;-1-1;;3;5;5;1;4867;;5;10;22;17;14;32;10;5;1;7;2;33; +*22AT+X5~42DT2~-5F;;;;4517;-1-1;6321;;3;5;5;1;4868;;5;10;22;17;14;32;10;5;1;7;2;33; +a02DT-~~~42DS~~+5B;;;;4517;-1-1;6321;;3;5;5;1;4869;;5;10;22;17;14;32;10;5;1;7;2;33; +a08ET#~~~~~~~~~+5;;;;3959;;;;3;5;5;1;4870;;5;10;22;17;14;32;10;5;1;7;2;33; +a33AH-~~~82B~~~+5;;;;2946;-1-1;5514;;3;5;5;1;4871;;5;10;22;17;14;32;10;5;1;7;2;33; +*10DH+~~~82B~~~-5F;;;;2946;-1-1;5514;;3;5;5;1;4871;;5;10;22;17;14;32;10;5;1;7;2;33; +*14EO=K1~~8B~~~-5;;;;3163;;;;3;5;5;1;4873;;5;10;22;17;14;32;10;5;1;7;2;33; +ap02:08;;;;3065;-1-1;;;3;5;5;1;4873;;5;10;22;17;14;32;10;5;1;7;2;33; +aP02;;;;;;;;3;5;5;1;4994;;5;10;22;17;14;32;10;5;1;7;2;33; +az5;;;;;;;;3;5;5;1;4994;;5;10;22;17;14;32;10;5;1;7;2;33; +*P14;;;;;;;;3;5;5;1;4994;;5;10;22;17;14;32;10;5;1;7;2;33; +*z5;;;;;;;;3;5;5;1;4994;;5;10;22;17;14;32;10;5;1;7;2;33; +a08SM=~~~54C~~~+6;;;;0424;-1-1;4917;;3;5;5;1;4994;;5;10;22;17;14;32;10;5;1;7;2;33; +*p03:08;;;;4917;-1-1;;;3;5;5;1;4995;;5;10;22;17;14;32;10;5;1;7;2;33; +*c10:19;;;;1010;-1-1;9090;;3;0;0;1;5015;; +ac05:04;;;;1010;-1-1;9768;;3;0;0;1;5015;; +*P14;;;;;;;;3;4;5;1;5015;;19;22;17;14;32;5;10;4;1;7;2;33; +*z4;;;;;;;;3;4;5;1;5015;;19;22;17;14;32;5;10;4;1;7;2;33; +aP02;;;;;;;;3;4;5;1;5015;;19;22;17;14;32;5;10;4;1;7;2;33; +az5;;;;;;;;3;4;5;1;5015;;19;22;17;14;32;5;10;4;1;7;2;33; +*19SM-~~~76B~~~-5;;;;0332;-1-1;7847;;3;4;5;1;5015;;19;22;17;14;32;5;10;4;1;7;2;33; +a33RM+~~~56BW~~+5B;;;;0332;-1-1;7847;;3;4;5;1;5016;;19;22;17;14;32;5;10;4;1;7;2;33; +a02ET#K7F~2D~~~+5;;;;4368;-1-1;-1-1;;3;4;5;1;5017;;19;22;17;14;32;5;10;4;1;7;2;33; +a01AT-X5~45BH4~+5F;;;;4315;-1-1;8174;;3;4;5;1;5018;;19;22;17;14;32;5;10;4;1;7;2;33; +*01DT+~~~45BS~~-5B;;;;4315;-1-1;8174;;3;4;5;1;5019;;19;22;17;14;32;5;10;4;1;7;2;33; +*14EO=~~~~8B~~~-5;;;;3454;;;;3;4;5;1;5021;;19;22;17;14;32;5;10;4;1;7;2;33; +ap03:09;;;;3250;-1-1;;;3;4;5;1;5021;;19;22;17;14;32;5;10;4;1;7;2;33; +aP02;;;;;;;;3;4;4;1;5047;;19;22;17;14;32;5;4;1;7;2;33;10; +az4;;;;;;;;3;4;4;1;5047;;19;22;17;14;32;5;4;1;7;2;33;10; +*P14;;;;;;;;3;4;4;1;5047;;19;22;17;14;32;5;4;1;7;2;33;10; +*z4;;;;;;;;3;4;4;1;5047;;19;22;17;14;32;5;4;1;7;2;33;10; +a04SM-~~~71C~~~+6;;;;0530;-1-1;8037;;3;4;4;1;5047;;19;22;17;14;32;5;4;1;7;2;33;10; +*18RM+~~~51CR~~-6M;;;;0530;-1-1;8037;;3;4;4;1;5049;;19;22;17;14;32;5;4;1;7;2;33;10; +*14ET#~~~~3D~~~-6;;;;4339;-1-1;-1-1;;3;4;4;1;5050;;19;22;17;14;32;5;4;1;7;2;33;10; +*17AT/X6~25BH1~-6F;;;;4381;5579;7875;;3;4;4;1;5052;;19;22;17;14;32;5;4;1;7;2;33;10; +a01BT#~~~~4B~~~+6;;;;4521;-1-1;-1-1;;3;4;4;1;5052;;19;22;17;14;32;5;4;1;7;2;33;10; +ap03:10;;;;4281;-1-1;;;3;4;4;1;5052;;19;22;17;14;32;5;4;1;7;2;33;10; +aP02;;;;;;;;3;4;4;1;5071;;19;22;17;14;32;5;4;1;7;2;33;10; +az4;;;;;;;;3;4;4;1;5071;;19;22;17;14;32;5;4;1;7;2;33;10; +*P14;;;;;;;;3;4;4;1;5071;;19;22;17;14;32;5;4;1;7;2;33;10; +*z4;;;;;;;;3;4;4;1;5071;;19;22;17;14;32;5;4;1;7;2;33;10; +a04SM-~~~79D~~~+7;;;;0330;-1-1;7535;;3;4;4;1;5071;;19;22;17;14;32;5;4;1;7;2;33;10; +*18RM+~~~59DL~~-7M;;;;0330;-1-1;7535;;3;4;4;1;5072;;19;22;17;14;32;5;4;1;7;2;33;10; +*14EO#K2S~2C~~~-7;;;;4567;-1-1;-1-1;;3;4;4;1;5074;;19;22;17;14;32;5;4;1;7;2;33;10; +*14AO#PP~33B~~~-7F;;;;4567;-1-1;5545;;3;4;4;1;5074;;19;22;17;14;32;5;4;1;7;2;33;10; +*p04:10;;;;4555;-1-1;;;3;4;4;1;5074;;19;22;17;14;32;5;4;1;7;2;33;10; +*c32:77;;;;1010;-1-1;9822;;3;0;0;1;5098;; +*P14;;;;;;;;3;3;4;1;5098;;22;17;14;77;5;19;4;1;7;2;33;10; +*z3;;;;;;;;3;3;4;1;5098;;22;17;14;77;5;19;4;1;7;2;33;10; +aP02;;;;;;;;3;3;4;1;5098;;22;17;14;77;5;19;4;1;7;2;33;10; +az4;;;;;;;;3;3;4;1;5098;;22;17;14;77;5;19;4;1;7;2;33;10; +*22SH+~~~16B~~~-6;;;;0278;-1-1;7938;;3;3;4;1;5098;;22;17;14;77;5;19;4;1;7;2;33;10; +a08RH-~~~16BR~~+6B;;;;0278;-1-1;7938;;3;3;4;1;5100;;22;17;14;77;5;19;4;1;7;2;33;10; +a02EN#KSC~8A~~~+6;;;;2856;-1-1;-1-1;;3;3;4;1;5101;;22;17;14;77;5;19;4;1;7;2;33;10; +a07AN=CF~25CH4~+6F;;;;4678;-1-1;8487;;3;3;4;1;5102;;22;17;14;77;5;19;4;1;7;2;33;10; +*p05:10;;;;1613;-1-1;;;3;3;4;1;5103;;22;17;14;77;5;19;4;1;7;2;33;10; +*P14;;;;;;;;3;3;4;1;5118;;22;17;14;77;5;19;4;1;7;2;33;10; +*z3;;;;;;;;3;3;4;1;5118;;22;17;14;77;5;19;4;1;7;2;33;10; +aP02;;;;;;;;3;3;4;1;5118;;22;17;14;77;5;19;4;1;7;2;33;10; +az4;;;;;;;;3;3;4;1;5118;;22;17;14;77;5;19;4;1;7;2;33;10; +*22SH!~~~18A~~~-5;;;;0278;-1-1;7449;;3;3;4;1;5118;;22;17;14;77;5;19;4;1;7;2;33;10; +a08RH!~~~18AM~~+5B;;;;0278;-1-1;7449;;3;3;4;1;5120;;22;17;14;77;5;19;4;1;7;2;33;10; +a02ET#KBF~7B~~~+5;;;;3637;-1-1;-1-1;;3;3;4;1;5121;;22;17;14;77;5;19;4;1;7;2;33;10; +a01AT-X5~46BH2~+5F;;;;4312;5422;7845;;3;3;4;1;5122;;22;17;14;77;5;19;4;1;7;2;33;10; +*14BT+~~~~2C~~~-5;;;;4678;-1-1;-1-1;;3;3;4;1;5123;;22;17;14;77;5;19;4;1;7;2;33;10; +*77DT#~~~44AB~~-5F;;;;4312;5422;5980;;3;3;4;1;5124;;22;17;14;77;5;19;4;1;7;2;33;10; +*14ET#~~~~2D~~~-5;;;;4268;-1-1;-1-1;;3;3;4;1;5126;;22;17;14;77;5;19;4;1;7;2;33;10; +*77AT-X5~49CT1~-5F;;;;4525;-1-1;6422;;3;3;4;1;5127;;22;17;14;77;5;19;4;1;7;2;33;10; +a02DT#~~~49CS~~+5F;;;;4525;-1-1;6422;;3;3;4;1;5127;;22;17;14;77;5;19;4;1;7;2;33;10; +a04EH#~~~~8B~~~+5;;;;3451;-1-1;-1-1;;3;3;4;1;5129;;22;17;14;77;5;19;4;1;7;2;33;10; +a01AH-V5~41CH4~+5F;;;;4319;5622;7927;;3;3;4;1;5131;;22;17;14;77;5;19;4;1;7;2;33;10; +*14BH+~~~~2C~~~-5;;;;4478;-1-1;-1-1;;3;3;4;1;5131;;22;17;14;77;5;19;4;1;7;2;33;10; +*22DH#~~~46BB~~-5B;;;;4319;5622;8238;;3;3;4;1;5132;;22;17;14;77;5;19;4;1;7;2;33;10; +*14EO#KBS~3B~~~-5;;;;4554;-1-1;-1-1;;3;3;4;1;5133;;22;17;14;77;5;19;4;1;7;2;33;10; +*14AO#PP~31C~~~-5F;;;;4554;-1-1;7727;;3;3;4;1;5133;;22;17;14;77;5;19;4;1;7;2;33;10; +*p06:10;;;;2373;-1-1;;;3;3;4;1;5134;;22;17;14;77;5;19;4;1;7;2;33;10; +*P14;;;;;;;;3;3;4;1;5149;;22;17;14;77;5;19;4;1;7;2;33;10; +*z3;;;;;;;;3;3;4;1;5149;;22;17;14;77;5;19;4;1;7;2;33;10; +aP02;;;;;;;;3;3;4;1;5149;;22;17;14;77;5;19;4;1;7;2;33;10; +az4;;;;;;;;3;3;4;1;5149;;22;17;14;77;5;19;4;1;7;2;33;10; +*22SH-~~~18D~~~-4;;;;0278;-1-1;7555;;3;3;4;1;5149;;22;17;14;77;5;19;4;1;7;2;33;10; +a08RH+~~~18DO~~+4B;;;;0278;-1-1;7555;;3;3;4;1;5151;;22;17;14;77;5;19;4;1;7;2;33;10; +a02EM#KBP~3D~~~+4;;;;4150;-1-1;-1-1;;3;3;4;1;5152;;22;17;14;77;5;19;4;1;7;2;33;10; +a33AM#XR~85BH1~+4B;;;;3137;-1-1;7773;;3;3;4;1;5153;;22;17;14;77;5;19;4;1;7;2;33;10; +*01DM=~~~75BS~~-4B;;;;3137;-1-1;7773;;3;3;4;1;5154;;22;17;14;77;5;19;4;1;7;2;33;10; +ap06:11;;;;2912;-1-1;;;3;3;4;1;5155;;22;17;14;77;5;19;4;1;7;2;33;10; +aP02;;;;;;;;3;3;3;1;5177;;22;17;14;77;5;19;1;7;2;33;10;4; +az3;;;;;;;;3;3;3;1;5177;;22;17;14;77;5;19;1;7;2;33;10;4; +*P14;;;;;;;;3;3;3;1;5177;;22;17;14;77;5;19;1;7;2;33;10;4; +*z3;;;;;;;;3;3;3;1;5177;;22;17;14;77;5;19;1;7;2;33;10;4; +a01SQ-~~~11C~~~+5;;;;0375;-1-1;7934;;3;3;3;1;5177;;22;17;14;77;5;19;1;7;2;33;10;4; +*18RQ#~~~11CM~~-5M;;;;0375;-1-1;7934;;3;3;3;1;5178;;22;17;14;77;5;19;1;7;2;33;10;4; +*14EM#K1P~3B~~~-5;;;;4558;-1-1;-1-1;;3;3;3;1;5179;;22;17;14;77;5;19;1;7;2;33;10;4; +*22AM-XP~87AH2~-5B;;;;3143;-1-1;7471;;3;3;3;1;5180;;22;17;14;77;5;19;1;7;2;33;10;4; +a08DM+~~~87AS~~+5B;;;;3143;-1-1;7471;;3;3;3;1;5180;;22;17;14;77;5;19;1;7;2;33;10;4; +a02EM#~~~~8D~~~+5;;;;2844;-1-1;-1-1;;3;3;3;1;5182;;22;17;14;77;5;19;1;7;2;33;10;4; +a33AM-X9~42DT0~+5F;;;;4330;-1-1;6235;;3;3;3;1;5184;;22;17;14;77;5;19;1;7;2;33;10;4; +*17DM#~~~42DS~~-5F;;;;4330;-1-1;6235;;3;3;3;1;5185;;22;17;14;77;5;19;1;7;2;33;10;4; +*14ET#K2F~3C~~~-5;;;;4543;-1-1;-1-1;;3;3;3;1;5186;;22;17;14;77;5;19;1;7;2;33;10;4; +*77AT#X5~41BH2~-5F;;;;4317;5417;7916;;3;3;3;1;5187;;22;17;14;77;5;19;1;7;2;33;10;4; +a02BT=~~~~2B~~~+5;;;;4683;-1-1;-1-1;;3;3;3;1;5187;;22;17;14;77;5;19;1;7;2;33;10;4; +*p07:11;;;;3589;-1-1;;;3;3;3;1;5188;;22;17;14;77;5;19;1;7;2;33;10;4; +*P14;;;;;;;;3;2;3;1;5210;;17;14;77;5;19;22;1;7;2;33;10;4; +*z2;;;;;;;;3;2;3;1;5210;;17;14;77;5;19;22;1;7;2;33;10;4; +aP02;;;;;;;;3;2;3;1;5210;;17;14;77;5;19;22;1;7;2;33;10;4; +az3;;;;;;;;3;2;3;1;5210;;17;14;77;5;19;22;1;7;2;33;10;4; +*01SM+~~~97A~~~-4;;;;0569;-1-1;7676;;3;2;3;1;5210;;17;14;77;5;19;22;1;7;2;33;10;4; +a33RM-~~~17AO~~+4F;;;;0569;-1-1;7676;;3;2;3;1;5211;;17;14;77;5;19;22;1;7;2;33;10;4; +a08EH#~~~~5B~~~+4;;;;1537;-1-1;-1-1;;3;2;3;1;5213;;17;14;77;5;19;22;1;7;2;33;10;4; +a33AH+V5~41CT2~+4F;;;;4313;5618;7926;;3;2;3;1;5215;;17;14;77;5;19;22;1;7;2;33;10;4; +*14BH/~~~~2B~~~-4;;;;4482;-1-1;-1-1;;3;2;3;1;5215;;17;14;77;5;19;22;1;7;2;33;10;4; +a33DH#~~~44AC~~+4F;;;;5787;4482;5778;;3;2;3;1;5216;;17;14;77;5;19;22;1;7;2;33;10;4; +a02EM#~~~~3A~~~+4;;;;3762;-1-1;-1-1;;3;2;3;1;5217;;17;14;77;5;19;22;1;7;2;33;10;4; +a01AM+XP~84AT1~+4B;;;;3356;-1-1;6079;;3;2;3;1;5219;;17;14;77;5;19;22;1;7;2;33;10;4; +*01DM-~~~84AS~~-4B;;;;3356;-1-1;6079;;3;2;3;1;5219;;17;14;77;5;19;22;1;7;2;33;10;4; +ap07:12;;;;0281;-1-1;;;3;2;3;1;5223;;17;14;77;5;19;22;1;7;2;33;10;4; +aP02;;;;;;;;3;2;2;1;5267;;17;14;77;5;19;22;7;2;33;10;4;1; +az2;;;;;;;;3;2;2;1;5267;;17;14;77;5;19;22;7;2;33;10;4;1; +*P14;;;;;;;;3;2;2;1;5267;;17;14;77;5;19;22;7;2;33;10;4;1; +*z2;;;;;;;;3;2;2;1;5267;;17;14;77;5;19;22;7;2;33;10;4;1; +a07SM=~~~53B~~~+5;;;;0524;-1-1;4861;;3;2;2;1;5267;;17;14;77;5;19;22;7;2;33;10;4;1; +*p08:12;;;;4861;-1-1;;;3;2;2;1;5268;;17;14;77;5;19;22;7;2;33;10;4;1; +*P14;;;;;;;;3;1;2;1;5287;;14;77;5;19;22;17;7;2;33;10;4;1; +*z1;;;;;;;;3;1;2;1;5287;;14;77;5;19;22;17;7;2;33;10;4;1; +aP02;;;;;;;;3;1;2;1;5287;;14;77;5;19;22;17;7;2;33;10;4;1; +az2;;;;;;;;3;1;2;1;5287;;14;77;5;19;22;17;7;2;33;10;4;1; +*14SM-~~~15B~~~-4;;;;0279;-1-1;7874;;3;1;2;1;5287;;14;77;5;19;22;17;7;2;33;10;4;1; +a33RM+~~~15BL~~+4F;;;;0279;-1-1;7874;;3;1;2;1;5288;;14;77;5;19;22;17;7;2;33;10;4;1; +a02ET#K7B~3A~~~+4;;;;4062;-1-1;-1-1;;3;1;2;1;5290;;14;77;5;19;22;17;7;2;33;10;4;1; +a04AT+X8~91CH2~+4B;;;;3181;-1-1;8225;;3;1;2;1;5291;;14;77;5;19;22;17;7;2;33;10;4;1; +*14DT-~~~91CS~~-4B;;;;3181;-1-1;8225;;3;1;2;1;5291;;14;77;5;19;22;17;7;2;33;10;4;1; +a04FH!~~~41C~~~+4B;;;;3731;;8023;;3;1;2;1;5296;;14;77;5;19;22;17;7;2;33;10;4;1; +a02EQ#K1C~3A~~~+4;;;;3855;-1-1;-1-1;;3;1;2;1;5298;;14;77;5;19;22;17;7;2;33;10;4;1; +a10AQ+X1~36CH2~+4F;;;;4445;-1-1;8659;;3;1;2;1;5298;;14;77;5;19;22;17;7;2;33;10;4;1; +*22DQ-~~~36CS~~-4B;;;;4445;-1-1;8659;;3;1;2;1;5299;;14;77;5;19;22;17;7;2;33;10;4;1; +*05AO+~~~33AT1~-4F;;;;4540;-1-1;5738;;3;1;2;1;5301;;14;77;5;19;22;17;7;2;33;10;4;1; +a10DO-~~~33AS~~+4F;;;;4540;-1-1;5738;;3;1;2;1;5301;;14;77;5;19;22;17;7;2;33;10;4;1; +*05FH-~~~33D~~~-4F;;;;4362;;5962;;3;1;2;1;5301;;14;77;5;19;22;17;7;2;33;10;4;1; +*22EH#~~~~7B~~~-4;;;;3434;-1-1;-1-1;;3;1;2;1;5302;;14;77;5;19;22;17;7;2;33;10;4;1; +*77AH-V5~41CP2~-4F;;;;4216;-1-1;7724;;3;1;2;1;5304;;14;77;5;19;22;17;7;2;33;10;4;1; +a04DH+~~~41CS~~+4B;;;;4216;-1-1;7724;;3;1;2;1;5305;;14;77;5;19;22;17;7;2;33;10;4;1; +a02ET#~~~~8B~~~+4;;;;3453;-1-1;-1-1;;3;1;2;1;5307;;14;77;5;19;22;17;7;2;33;10;4;1; +a33AT#X5~41CP2~+4F;;;;4419;5722;8028;;3;1;2;1;5308;;14;77;5;19;22;17;7;2;33;10;4;1; +*10BT!~~~~2D~~~-4;;;;4378;-1-1;-1-1;;3;1;2;1;5308;;14;77;5;19;22;17;7;2;33;10;4;1; +*22DT=~~~41CB~~-4B;;;;4419;5722;7733;;3;1;2;1;5309;;14;77;5;19;22;17;7;2;33;10;4;1; +ap08:13;;;;1166;-1-1;;;3;1;2;1;5309;;14;77;5;19;22;17;7;2;33;10;4;1; +ac04:05;;;;1010;-1-1;9090;;3;0;0;1;5331;; +*c19:10;;;;1010;-1-1;9529;;3;0;0;1;5331;; +aP02;;;;;;;;3;1;1;1;5331;;14;77;5;10;22;17;2;33;10;5;1;7; +az1;;;;;;;;3;1;1;1;5331;;14;77;5;10;22;17;2;33;10;5;1;7; +*P14;;;;;;;;3;1;1;1;5331;;14;77;5;10;22;17;2;33;10;5;1;7; +*z1;;;;;;;;3;1;1;1;5331;;14;77;5;10;22;17;2;33;10;5;1;7; +a02SM-~~~91C~~~+5;;;;0571;-1-1;7732;;3;1;1;1;5331;;14;77;5;10;22;17;2;33;10;5;1;7; +*77RM+~~~11CO~~-5F;;;;0571;-1-1;7732;;3;1;1;1;5333;;14;77;5;10;22;17;2;33;10;5;1;7; +*14EQ#K1C~3A~~~-5;;;;4256;-1-1;-1-1;;3;1;1;1;5334;;14;77;5;10;22;17;2;33;10;5;1;7; +*05AQ#X1~38BH4~-5F;;;;4542;5443;6746;;3;1;1;1;5334;;14;77;5;10;22;17;2;33;10;5;1;7; +a10BQ=~~~~3B~~~+5;;;;4657;-1-1;-1-1;;3;1;1;1;5334;;14;77;5;10;22;17;2;33;10;5;1;7; +*p09:13;;;;4149;-1-1;;;3;1;1;1;5335;;14;77;5;10;22;17;2;33;10;5;1;7; +*c77:32;;;;1010;-1-1;9825;;3;0;0;1;5356;; +*P14;;;;;;;;3;6;1;1;5356;;32;5;10;22;17;14;2;33;10;5;1;7; +*z6;;;;;;;;3;6;1;1;5356;;32;5;10;22;17;14;2;33;10;5;1;7; +aP02;;;;;;;;3;6;1;1;5356;;32;5;10;22;17;14;2;33;10;5;1;7; +az1;;;;;;;;3;6;1;1;5356;;32;5;10;22;17;14;2;33;10;5;1;7; +*32SM+~~~11C~~~-4;;;;0275;-1-1;7837;;3;6;1;1;5356;;32;5;10;22;17;14;2;33;10;5;1;7; +a08RM-~~~11CR~~+4B;;;;0275;-1-1;7837;;3;6;1;1;5357;;32;5;10;22;17;14;2;33;10;5;1;7; +a02ET#KMB~9D~~~+4;;;;2977;-1-1;-1-1;;3;6;1;1;5359;;32;5;10;22;17;14;2;33;10;5;1;7; +a33AT=X6~23BH2~+4F;;;;4384;-1-1;5440;;3;6;1;1;5360;;32;5;10;22;17;14;2;33;10;5;1;7; +*p10:13;;;;4660;-1-1;;;3;6;1;1;5361;;32;5;10;22;17;14;2;33;10;5;1;7; +*P14;;;;;;;;3;6;1;1;5481;;32;5;10;22;17;14;2;33;10;5;1;7; +*z6;;;;;;;;3;6;1;1;5481;;32;5;10;22;17;14;2;33;10;5;1;7; +aP02;;;;;;;;3;6;1;1;5481;;32;5;10;22;17;14;2;33;10;5;1;7; +az1;;;;;;;;3;6;1;1;5481;;32;5;10;22;17;14;2;33;10;5;1;7; +*32SM-~~~99D~~~-3;;;;0273;-1-1;7635;;3;6;1;1;5481;;32;5;10;22;17;14;2;33;10;5;1;7; +a08RM+~~~19DM~~+3B;;;;0273;-1-1;7635;;3;6;1;1;5482;;32;5;10;22;17;14;2;33;10;5;1;7; +a02EQ#K7C~2D~~~+3;;;;4165;-1-1;-1-1;;3;6;1;1;5484;;32;5;10;22;17;14;2;33;10;5;1;7; +a10AQ-X7~48CH2~+3F;;;;4537;5343;6754;;3;6;1;1;5484;;32;5;10;22;17;14;2;33;10;5;1;7; +*05BQ+~~~~3B~~~-3;;;;4757;-1-1;-1-1;;3;6;1;1;5484;;32;5;10;22;17;14;2;33;10;5;1;7; +*01DQ+~~~35BB~~-3B;;;;4537;5343;7867;;3;6;1;1;5485;;32;5;10;22;17;14;2;33;10;5;1;7; +*14ET#K1F~8C~~~-3;;;;3347;-1-1;-1-1;;3;6;1;1;5487;;32;5;10;22;17;14;2;33;10;5;1;7; +*22AT/X5~46CH2~-3F;;;;4516;5425;8153;;3;6;1;1;5488;;32;5;10;22;17;14;2;33;10;5;1;7; +a33BT#~~~~2C~~~+3;;;;4675;-1-1;-1-1;;3;6;1;1;5488;;32;5;10;22;17;14;2;33;10;5;1;7; +ap10:14;;;;4227;-1-1;;;3;6;1;1;5488;;32;5;10;22;17;14;2;33;10;5;1;7; +aP02;;;;;;;;3;6;6;1;5509;;32;5;10;22;17;14;33;10;5;1;7;2; +az6;;;;;;;;3;6;6;1;5509;;32;5;10;22;17;14;33;10;5;1;7;2; +*P14;;;;;;;;3;6;6;1;5509;;32;5;10;22;17;14;33;10;5;1;7;2; +*z6;;;;;;;;3;6;6;1;5509;;32;5;10;22;17;14;33;10;5;1;7;2; +a33SQ-~~~96C~~~+4;;;;0073;-1-1;8060;;3;6;6;1;5509;;32;5;10;22;17;14;33;10;5;1;7;2; +*01RQ+~~~16CM~~-4B;;;;0073;-1-1;8060;;3;6;6;1;5510;;32;5;10;22;17;14;33;10;5;1;7;2; +*14ET#K1F~3A~~~-4;;;;4056;-1-1;-1-1;;3;6;6;1;5511;;32;5;10;22;17;14;33;10;5;1;7;2; +*22AT#X5~41CH2~-4F;;;;4319;-1-1;8020;;3;6;6;1;5512;;32;5;10;22;17;14;33;10;5;1;7;2; +a02DT=~~~41CS~~+4B;;;;4319;-1-1;8020;;3;6;6;1;5513;;32;5;10;22;17;14;33;10;5;1;7;2; +*p11:14;;;;1387;-1-1;;;3;6;6;1;5514;;32;5;10;22;17;14;33;10;5;1;7;2; +*P14;;;;;;;;3;5;6;1;5530;;5;10;22;17;14;32;33;10;5;1;7;2; +*z5;;;;;;;;3;5;6;1;5530;;5;10;22;17;14;32;33;10;5;1;7;2; +aP02;;;;;;;;3;5;6;1;5530;;5;10;22;17;14;32;33;10;5;1;7;2; +az6;;;;;;;;3;5;6;1;5530;;5;10;22;17;14;32;33;10;5;1;7;2; +*05SM-~~~77A~~~-3;;;;0536;-1-1;7266;;3;5;6;1;5530;;5;10;22;17;14;32;33;10;5;1;7;2; +a01RM#~~~57AO~~+3F;;;;0536;-1-1;7266;;3;5;6;1;5532;;5;10;22;17;14;32;33;10;5;1;7;2; +a02EO-K1~~3B~~~+3;;;;4457;;;;3;5;6;1;5533;;5;10;22;17;14;32;33;10;5;1;7;2; +*05FH#~~~47B~~~-3B;;;;4230;;6969;;3;5;6;1;5536;;5;10;22;17;14;32;33;10;5;1;7;2; +*14EQ#K1C~3B~~~-3;;;;4452;-1-1;-1-1;;3;5;6;1;5537;;5;10;22;17;14;32;33;10;5;1;7;2; +*17AQ/X1~38BH4~-3F;;;;4343;5641;6539;;3;5;6;1;5537;;5;10;22;17;14;32;33;10;5;1;7;2; +a10BQ#~~~~3B~~~+3;;;;4459;-1-1;-1-1;;3;5;6;1;5537;;5;10;22;17;14;32;33;10;5;1;7;2; +ap11:15;;;;4664;-1-1;;;3;5;6;1;5538;;5;10;22;17;14;32;33;10;5;1;7;2; +aP02;;;;;;;;3;5;5;1;5556;;5;10;22;17;14;32;10;5;1;7;2;33; +az5;;;;;;;;3;5;5;1;5556;;5;10;22;17;14;32;10;5;1;7;2;33; +*P14;;;;;;;;3;5;5;1;5556;;5;10;22;17;14;32;10;5;1;7;2;33; +*z5;;;;;;;;3;5;5;1;5556;;5;10;22;17;14;32;10;5;1;7;2;33; +a08SM#~~~51C~~~+4;;;;0424;-1-1;8035;;3;5;5;1;5556;;5;10;22;17;14;32;10;5;1;7;2;33; +*01RM=~~~51CW~~-4B;;;;0424;-1-1;8035;;3;5;5;1;5558;;5;10;22;17;14;32;10;5;1;7;2;33; +ap11:16;;;;4512;-1-1;;;3;5;5;1;5559;;5;10;22;17;14;32;10;5;1;7;2;33; +aP02;;;;;;;;3;5;5;1;5575;;5;10;22;17;14;32;10;5;1;7;2;33; +az5;;;;;;;;3;5;5;1;5575;;5;10;22;17;14;32;10;5;1;7;2;33; +*P14;;;;;;;;3;5;5;1;5575;;5;10;22;17;14;32;10;5;1;7;2;33; +*z5;;;;;;;;3;5;5;1;5575;;5;10;22;17;14;32;10;5;1;7;2;33; +a08SM-~~~51C~~~+5;;;;0425;-1-1;8333;;3;5;5;1;5575;;5;10;22;17;14;32;10;5;1;7;2;33; +*01RM#~~~51CM~~-5B;;;;0425;-1-1;8333;;3;5;5;1;5576;;5;10;22;17;14;32;10;5;1;7;2;33; +*14ET#K1F~3A~~~-5;;;;4355;-1-1;-1-1;;3;5;5;1;5577;;5;10;22;17;14;32;10;5;1;7;2;33; +*22AT#X5~44BH2~-5F;;;;4320;-1-1;5264;;3;5;5;1;5578;;5;10;22;17;14;32;10;5;1;7;2;33; +*p12:16;;;;4836;-1-1;;;3;5;5;1;5578;;5;10;22;17;14;32;10;5;1;7;2;33; +*c10:19;;;;1010;-1-1;9637;;3;0;0;1;5600;; +*P14;;;;;;;;3;4;5;1;5600;;19;22;17;14;32;5;10;5;1;7;2;33; +*z4;;;;;;;;3;4;5;1;5600;;19;22;17;14;32;5;10;5;1;7;2;33; +aP02;;;;;;;;3;4;5;1;5600;;19;22;17;14;32;5;10;5;1;7;2;33; +az5;;;;;;;;3;4;5;1;5600;;19;22;17;14;32;5;10;5;1;7;2;33; +*19SM-~~~97A~~~-4;;;;0463;-1-1;7468;;3;4;5;1;5600;;19;22;17;14;32;5;10;5;1;7;2;33; +a01RM+~~~17AR~~+4F;;;;0463;-1-1;7468;;3;4;5;1;5601;;19;22;17;14;32;5;10;5;1;7;2;33; +a02EO#K1S~4B~~~+4;;;;4435;-1-1;-1-1;;3;4;5;1;5603;;19;22;17;14;32;5;10;5;1;7;2;33; +a02AO#PP~31C~~~+4B;;;;4435;5334;7932;;3;4;5;1;5603;;19;22;17;14;32;5;10;5;1;7;2;33; +*17BO=~~~~2C~~~-4;;;;4766;-1-1;-1-1;;3;4;5;1;5603;;19;22;17;14;32;5;10;5;1;7;2;33; +ap12:17;;;;4865;-1-1;;;3;4;5;1;5603;;19;22;17;14;32;5;10;5;1;7;2;33; +ac05:04;;;;1010;-1-1;9090;;3;0;0;1;5630;; +ac02:15;;;;1010;-1-1;9090;;3;0;0;1;5630;; +*c19:18;;;;1010;-1-1;9574;;3;0;0;1;5630;; +aP15;;;;;;;;3;4;4;1;5630;;18;22;17;14;32;5;4;1;7;15;33;10; +az4;;;;;;;;3;4;4;1;5630;;18;22;17;14;32;5;4;1;7;15;33;10; +*P14;;;;;;;;3;4;4;1;5630;;18;22;17;14;32;5;4;1;7;15;33;10; +*z4;;;;;;;;3;4;4;1;5630;;18;22;17;14;32;5;4;1;7;15;33;10; +a04SM-~~~71C~~~+5;;;;0526;-1-1;7733;;3;4;4;1;5630;;18;22;17;14;32;5;4;1;7;15;33;10; +*18RM+~~~51CM~~-5B;;;;0526;-1-1;7733;;3;4;4;1;5631;;18;22;17;14;32;5;4;1;7;15;33;10; +*14ET#K2F~2C~~~-5;;;;4764;-1-1;-1-1;;3;4;4;1;5633;;18;22;17;14;32;5;4;1;7;15;33;10; +*22AT+X5~41CH2~-5F;;;;4321;5626;7835;;3;4;4;1;5634;;18;22;17;14;32;5;4;1;7;15;33;10; +a07BT/~~~~2C~~~+5;;;;4474;-1-1;-1-1;;3;4;4;1;5634;;18;22;17;14;32;5;4;1;7;15;33;10; +*01DT#~~~47BC~~-5B;;;;5779;5626;3537;;3;4;4;1;5634;;18;22;17;14;32;5;4;1;7;15;33;10; +*14EO#~~~~2D~~~-5;;;;4270;-1-1;-1-1;;3;4;4;1;5636;;18;22;17;14;32;5;4;1;7;15;33;10; +*14AO#PP~35C~~~-5F;;;;4270;-1-1;8684;;3;4;4;1;5636;;18;22;17;14;32;5;4;1;7;15;33;10; +*p13:17;;;;1416;-1-1;;;3;4;4;1;5638;;18;22;17;14;32;5;4;1;7;15;33;10; +ac15:02;;;;1010;-1-1;9090;;3;0;0;1;5658;; +*c32:77;;;;1010;-1-1;9824;;3;0;0;1;5658;; +*P14;;;;;;;;3;3;4;1;5659;;22;17;14;77;5;18;4;1;7;2;33;10; +*z3;;;;;;;;3;3;4;1;5659;;22;17;14;77;5;18;4;1;7;2;33;10; +aP02;;;;;;;;3;3;4;1;5659;;22;17;14;77;5;18;4;1;7;2;33;10; +az4;;;;;;;;3;3;4;1;5659;;22;17;14;77;5;18;4;1;7;2;33;10; +*22SH+~~~18A~~~-4;;;;0276;-1-1;7338;;3;3;4;1;5659;;22;17;14;77;5;18;4;1;7;2;33;10; +a08RH-~~~18AW~~+4B;;;;0276;-1-1;7338;;3;3;4;1;5660;;22;17;14;77;5;18;4;1;7;2;33;10; +a02EH#~~~~8B~~~+4;;;;3560;-1-1;-1-1;;3;3;4;1;5661;;22;17;14;77;5;18;4;1;7;2;33;10; +a01AH#V5~46BH4~+4F;;;;4322;-1-1;8041;;3;3;4;1;5663;;22;17;14;77;5;18;4;1;7;2;33;10; +*22DH=~~~46BS~~-4B;;;;4322;-1-1;8041;;3;3;4;1;5663;;22;17;14;77;5;18;4;1;7;2;33;10; +ap13:18;;;;0091;-1-1;;;3;3;4;1;5665;;22;17;14;77;5;18;4;1;7;2;33;10; +ac02:15;;;;1010;-1-1;9521;;3;0;0;1;5687;; +aP15;;;;;;;;3;3;3;1;5687;;22;17;14;77;5;18;1;7;15;33;10;4; +az3;;;;;;;;3;3;3;1;5687;;22;17;14;77;5;18;1;7;15;33;10;4; +*P14;;;;;;;;3;3;3;1;5687;;22;17;14;77;5;18;1;7;15;33;10;4; +*z3;;;;;;;;3;3;3;1;5687;;22;17;14;77;5;18;1;7;15;33;10;4; +a01SQ!~~~16B~~~+5;;;;0579;-1-1;7939;;3;3;3;1;5687;;22;17;14;77;5;18;1;7;15;33;10;4; +*18RQ!~~~16BM~~-5B;;;;0579;-1-1;7939;;3;3;3;1;5688;;22;17;14;77;5;18;1;7;15;33;10;4; +*14ET#K2F~7B~~~-5;;;;3631;-1-1;-1-1;;3;3;3;1;5690;;22;17;14;77;5;18;1;7;15;33;10;4; +*77AT#X5~41CH2~-5F;;;;4313;5922;7832;;3;3;3;1;5691;;22;17;14;77;5;18;1;7;15;33;10;4; +a07BT!~~~~2D~~~+5;;;;4178;-1-1;-1-1;;3;3;3;1;5691;;22;17;14;77;5;18;1;7;15;33;10;4; +a08DT=~~~45BB~~+5B;;;;4313;5922;8166;;3;3;3;1;5692;;22;17;14;77;5;18;1;7;15;33;10;4; +*p14:18;;;;-270;-1-1;;;3;3;3;1;5693;;22;17;14;77;5;18;1;7;15;33;10;4; +*P14;;;;;;;;3;2;3;1;5712;;17;14;77;5;18;22;1;7;15;33;10;4; +*z2;;;;;;;;3;2;3;1;5712;;17;14;77;5;18;22;1;7;15;33;10;4; +aP15;;;;;;;;3;2;3;1;5712;;17;14;77;5;18;22;1;7;15;33;10;4; +az3;;;;;;;;3;2;3;1;5712;;17;14;77;5;18;22;1;7;15;33;10;4; +*01SM+~~~95B~~~-4;;;;0270;-1-1;8072;;3;2;3;1;5712;;17;14;77;5;18;22;1;7;15;33;10;4; +a33RM-~~~15BO~~+4F;;;;0270;-1-1;8072;;3;2;3;1;5713;;17;14;77;5;18;22;1;7;15;33;10;4; +a04ET#KBF~8A~~~+4;;;;2652;-1-1;-1-1;;3;2;3;1;5715;;17;14;77;5;18;22;1;7;15;33;10;4; +a33AT#X5~41CH2~+4F;;;;4416;-1-1;7720;;3;2;3;1;5716;;17;14;77;5;18;22;1;7;15;33;10;4; +*18DT=~~~41CS~~-4B;;;;4416;-1-1;7720;;3;2;3;1;5716;;17;14;77;5;18;22;1;7;15;33;10;4; +ap14:19;;;;0087;-1-1;;;3;2;3;1;5717;;17;14;77;5;18;22;1;7;15;33;10;4; +aP15;;;;;;;;3;2;2;1;5737;;17;14;77;5;18;22;7;15;33;10;4;1; +az2;;;;;;;;3;2;2;1;5737;;17;14;77;5;18;22;7;15;33;10;4;1; +*P14;;;;;;;;3;2;2;1;5737;;17;14;77;5;18;22;7;15;33;10;4;1; +*z2;;;;;;;;3;2;2;1;5737;;17;14;77;5;18;22;7;15;33;10;4;1; +a07SM+~~~55B~~~+5;;;;0524;-1-1;7969;;3;2;2;1;5737;;17;14;77;5;18;22;7;15;33;10;4;1; +*77RM-~~~55BM~~-5F;;;;0524;-1-1;7969;;3;2;2;1;5738;;17;14;77;5;18;22;7;15;33;10;4;1; +*14EH#~~~~8C~~~-5;;;;3346;-1-1;-1-1;;3;2;2;1;5739;;17;14;77;5;18;22;7;15;33;10;4;1; +*77AH-V5~41CP2~-5F;;;;4317;5620;7926;;3;2;2;1;5741;;17;14;77;5;18;22;7;15;33;10;4;1; +a10BH+~~~~2C~~~+5;;;;4480;-1-1;-1-1;;3;2;2;1;5741;;17;14;77;5;18;22;7;15;33;10;4;1; +a01DH+~~~41CB~~+5B;;;;4317;5620;7837;;3;2;2;1;5742;;17;14;77;5;18;22;7;15;33;10;4;1; +a04ET#~~~~8D~~~+5;;;;2938;-1-1;-1-1;;3;2;2;1;5743;;17;14;77;5;18;22;7;15;33;10;4;1; +a33AT-X5~41CH2~+5F;;;;4416;5522;7936;;3;2;2;1;5745;;17;14;77;5;18;22;7;15;33;10;4;1; +*05BT+~~~~2C~~~-5;;;;4578;-1-1;-1-1;;3;2;2;1;5745;;17;14;77;5;18;22;7;15;33;10;4;1; +*22DT+~~~46BB~~-5B;;;;4416;5522;8440;;3;2;2;1;5745;;17;14;77;5;18;22;7;15;33;10;4;1; +*05EH#~~~~4A~~~-5;;;;3933;-1-1;-1-1;;3;2;2;1;5747;;17;14;77;5;18;22;7;15;33;10;4;1; +*77AH-V5~46BP1~-5F;;;;4113;-1-1;7939;;3;2;2;1;5749;;17;14;77;5;18;22;7;15;33;10;4;1; +a01DH#~~~46BS~~+5B;;;;4113;-1-1;7939;;3;2;2;1;5750;;17;14;77;5;18;22;7;15;33;10;4;1; +a04ET#K1F~2D~~~+5;;;;3765;-1-1;-1-1;;3;2;2;1;5752;;17;14;77;5;18;22;7;15;33;10;4;1; +a33AT-X5~41CP4~+5F;;;;4312;-1-1;7821;;3;2;2;1;5753;;17;14;77;5;18;22;7;15;33;10;4;1; +*18DT#~~~41CS~~-5B;;;;4312;-1-1;7821;;3;2;2;1;5754;;17;14;77;5;18;22;7;15;33;10;4;1; +*14ET#K1B~3A~~~-5;;;;4358;-1-1;-1-1;;3;2;2;1;5756;;17;14;77;5;18;22;7;15;33;10;4;1; +*22AT=X8~91DH2~-5B;;;;3274;-1-1;10033;;3;2;2;1;5757;;17;14;77;5;18;22;7;15;33;10;4;1; +ap14:20;;;;0067;-1-1;;;3;2;2;1;5757;;17;14;77;5;18;22;7;15;33;10;4;1; +aP15;;;;;;;;3;2;2;1;5778;;17;14;77;5;18;22;7;15;33;10;4;1; +az2;;;;;;;;3;2;2;1;5778;;17;14;77;5;18;22;7;15;33;10;4;1; +*P14;;;;;;;;3;2;2;1;5778;;17;14;77;5;18;22;7;15;33;10;4;1; +*z2;;;;;;;;3;2;2;1;5778;;17;14;77;5;18;22;7;15;33;10;4;1; +a07SM=~~~55C~~~+6;;;;0021;-1-1;8287;;3;2;2;1;5778;;17;14;77;5;18;22;7;15;33;10;4;1; +*p15:20;;;;1813;-1-1;;;3;2;2;1;5780;;17;14;77;5;18;22;7;15;33;10;4;1; +ac15:02;;;;1010;-1-1;9090;;3;0;0;1;5800;; +*c18:10;;;;1010;-1-1;9523;;3;0;0;1;5800;; +*P14;;;;;;;;3;1;2;1;5800;;14;77;5;10;22;17;7;2;33;10;4;1; +*z1;;;;;;;;3;1;2;1;5800;;14;77;5;10;22;17;7;2;33;10;4;1; +aP02;;;;;;;;3;1;2;1;5800;;14;77;5;10;22;17;7;2;33;10;4;1; +az2;;;;;;;;3;1;2;1;5800;;14;77;5;10;22;17;7;2;33;10;4;1; +*14SM-~~~16C~~~-5;;;;0577;-1-1;7954;;3;1;2;1;5800;;14;77;5;10;22;17;7;2;33;10;4;1; +a01RM+~~~16CR~~+5B;;;;0577;-1-1;7954;;3;1;2;1;5801;;14;77;5;10;22;17;7;2;33;10;4;1; +a02EO#K1S~3A~~~+5;;;;4151;-1-1;-1-1;;3;1;2;1;5803;;14;77;5;10;22;17;7;2;33;10;4;1; +a02AO+PP~36B~~~+5F;;;;4151;5649;7747;;3;1;2;1;5803;;14;77;5;10;22;17;7;2;33;10;4;1; +*05BO/~~~~3B~~~-5;;;;4451;-1-1;-1-1;;3;1;2;1;5803;;14;77;5;10;22;17;7;2;33;10;4;1; +a02DO+~~~33DC~~+5F;;;;5949;4451;5750;;3;1;2;1;5803;;14;77;5;10;22;17;7;2;33;10;4;1; +a04ET#~~~~7A~~~+5;;;;3032;-1-1;-1-1;;3;1;2;1;5805;;14;77;5;10;22;17;7;2;33;10;4;1; +a33AT-X5~46BH2~+5F;;;;4317;5527;7947;;3;1;2;1;5806;;14;77;5;10;22;17;7;2;33;10;4;1; +*05BT+~~~~2C~~~-5;;;;4573;-1-1;-1-1;;3;1;2;1;5807;;14;77;5;10;22;17;7;2;33;10;4;1; +*22DT#~~~46CB~~-5B;;;;4317;5527;7953;;3;1;2;1;5808;;14;77;5;10;22;17;7;2;33;10;4;1; +*14EQ#K1C~3D~~~-5;;;;4147;-1-1;-1-1;;3;1;2;1;5809;;14;77;5;10;22;17;7;2;33;10;4;1; +*05AQ-X1~38BT1~-5F;;;;4538;5439;6739;;3;1;2;1;5810;;14;77;5;10;22;17;7;2;33;10;4;1; +a10BQ+~~~~3B~~~+5;;;;4661;-1-1;-1-1;;3;1;2;1;5810;;14;77;5;10;22;17;7;2;33;10;4;1; +a33DQ+~~~33DB~~+5F;;;;4538;5439;6062;;3;1;2;1;5810;;14;77;5;10;22;17;7;2;33;10;4;1; +a02EM#~~~~2A~~~+5;;;;4286;-1-1;-1-1;;3;1;2;1;5812;;14;77;5;10;22;17;7;2;33;10;4;1; +a01AM+XP~81CH2~+5B;;;;3159;-1-1;7829;;3;1;2;1;5813;;14;77;5;10;22;17;7;2;33;10;4;1; +*14DM-~~~81CS~~-5B;;;;3159;-1-1;7829;;3;1;2;1;5814;;14;77;5;10;22;17;7;2;33;10;4;1; +ap15:21;;;;3938;-1-1;;;3;1;2;1;5816;;14;77;5;10;22;17;7;2;33;10;4;1; +ac04:05;;;;1010;-1-1;9090;;3;0;0;1;5844;; +*c10:04;;;;1010;-1-1;9528;;3;0;0;1;5844;; +aP02;;;;;;;;3;1;1;1;5844;;14;77;5;4;22;17;2;33;10;5;1;7; +az1;;;;;;;;3;1;1;1;5844;;14;77;5;4;22;17;2;33;10;5;1;7; +*P14;;;;;;;;3;1;1;1;5844;;14;77;5;4;22;17;2;33;10;5;1;7; +*z1;;;;;;;;3;1;1;1;5844;;14;77;5;4;22;17;2;33;10;5;1;7; +a02SM!~~~98A~~~+6;;;;0572;-1-1;7648;;3;1;1;1;5844;;14;77;5;4;22;17;2;33;10;5;1;7; +*01RM!~~~18AM~~-6B;;;;0572;-1-1;7648;;3;1;1;1;5846;;14;77;5;4;22;17;2;33;10;5;1;7; +*14EH#K1P~8C~~~-6;;;;3542;-1-1;-1-1;;3;1;1;1;5847;;14;77;5;4;22;17;2;33;10;5;1;7; +*22AH#VR~88AH2~-6B;;;;3631;-1-1;7443;;3;1;1;1;5848;;14;77;5;4;22;17;2;33;10;5;1;7; +*p16:21;;;;2657;-1-1;;;3;1;1;1;5849;;14;77;5;4;22;17;2;33;10;5;1;7; +*c77:32;;;;1010;-1-1;9622;;3;0;0;1;5870;; +*P14;;;;;;;;3;6;1;1;5870;;32;5;4;22;17;14;2;33;10;5;1;7; +*z6;;;;;;;;3;6;1;1;5870;;32;5;4;22;17;14;2;33;10;5;1;7; +aP02;;;;;;;;3;6;1;1;5870;;32;5;4;22;17;14;2;33;10;5;1;7; +az1;;;;;;;;3;6;1;1;5870;;32;5;4;22;17;14;2;33;10;5;1;7; +*32SM!~~~11C~~~-5;;;;0478;-1-1;7833;;3;6;1;1;5870;;32;5;4;22;17;14;2;33;10;5;1;7; +a08RM!~~~11CM~~+5B;;;;0478;-1-1;7833;;3;6;1;1;5871;;32;5;4;22;17;14;2;33;10;5;1;7; +a02EQ#K1C~3D~~~+5;;;;3746;-1-1;-1-1;;3;6;1;1;5873;;32;5;4;22;17;14;2;33;10;5;1;7; +a10AQ/X1~38BT4~+5F;;;;4633;5636;6840;;3;6;1;1;5874;;32;5;4;22;17;14;2;33;10;5;1;7; +*05BQ#~~~~2C~~~-5;;;;4464;-1-1;-1-1;;3;6;1;1;5874;;32;5;4;22;17;14;2;33;10;5;1;7; +*p17:21;;;;4450;-1-1;;;3;6;1;1;5874;;32;5;4;22;17;14;2;33;10;5;1;7; +*P14;;;;;;;;3;6;1;1;5889;;32;5;4;22;17;14;2;33;10;5;1;7; +*z6;;;;;;;;3;6;1;1;5889;;32;5;4;22;17;14;2;33;10;5;1;7; +aP02;;;;;;;;3;6;1;1;5889;;32;5;4;22;17;14;2;33;10;5;1;7; +az1;;;;;;;;3;6;1;1;5889;;32;5;4;22;17;14;2;33;10;5;1;7; +*32SM-~~~11C~~~-4;;;;0279;-1-1;7732;;3;6;1;1;5889;;32;5;4;22;17;14;2;33;10;5;1;7; +a33RM+~~~11CW~~+4F;;;;0279;-1-1;7732;;3;6;1;1;5890;;32;5;4;22;17;14;2;33;10;5;1;7; +a02ET#KMF~2D~~~+4;;;;4065;-1-1;-1-1;;3;6;1;1;5892;;32;5;4;22;17;14;2;33;10;5;1;7; +a05AT#X5~49CP2~+4F;;;;4218;-1-1;6932;;3;6;1;1;5893;;32;5;4;22;17;14;2;33;10;5;1;7; +*32DT=~~~49CS~~-4B;;;;4218;-1-1;6932;;3;6;1;1;5894;;32;5;4;22;17;14;2;33;10;5;1;7; +ap17:22;;;;3292;-1-1;;;3;6;1;1;5896;;32;5;4;22;17;14;2;33;10;5;1;7; +aP02;;;;;;;;3;6;6;1;5918;;32;5;4;22;17;14;33;10;5;1;7;2; +az6;;;;;;;;3;6;6;1;5918;;32;5;4;22;17;14;33;10;5;1;7;2; +*P14;;;;;;;;3;6;6;1;5918;;32;5;4;22;17;14;33;10;5;1;7;2; +*z6;;;;;;;;3;6;6;1;5918;;32;5;4;22;17;14;33;10;5;1;7;2; +a33SQ-~~~97B~~~+5;;;;0572;-1-1;6664;;3;6;6;1;5918;;32;5;4;22;17;14;33;10;5;1;7;2; +*01RQ+~~~17BM~~-5B;;;;0572;-1-1;6664;;3;6;6;1;5919;;32;5;4;22;17;14;33;10;5;1;7;2; +*14ET#K2F~3A~~~-5;;;;4362;-1-1;-1-1;;3;6;6;1;5920;;32;5;4;22;17;14;33;10;5;1;7;2; +*22AT-X5~41CH2~-5F;;;;4522;5521;8120;;3;6;6;1;5921;;32;5;4;22;17;14;33;10;5;1;7;2; +a05BT+~~~~2C~~~+5;;;;4579;-1-1;-1-1;;3;6;6;1;5921;;32;5;4;22;17;14;33;10;5;1;7;2; +a01DT#~~~44AB~~+5F;;;;4522;5521;6368;;3;6;6;1;5923;;32;5;4;22;17;14;33;10;5;1;7;2; +a02ET#K1B~3A~~~+5;;;;4162;-1-1;-1-1;;3;6;6;1;5924;;32;5;4;22;17;14;33;10;5;1;7;2; +a05AT-X6~26CH2~+5F;;;;4482;5576;8061;;3;6;6;1;5925;;32;5;4;22;17;14;33;10;5;1;7;2; +*05BT+~~~~4B~~~-5;;;;4524;-1-1;-1-1;;3;6;6;1;5926;;32;5;4;22;17;14;33;10;5;1;7;2; +a02DT-~~~29CC~~+5B;;;;5618;4524;6626;;3;6;6;1;5926;;32;5;4;22;17;14;33;10;5;1;7;2; +a08EO=~~~~6C~~~+5;;;;1950;;;;3;6;6;1;5927;;32;5;4;22;17;14;33;10;5;1;7;2; +*p18:22;;;;2149;-1-1;;;3;6;6;1;5927;;32;5;4;22;17;14;33;10;5;1;7;2; +*P14;;;;;;;;3;5;6;1;5946;;5;4;22;17;14;32;33;10;5;1;7;2; +*z5;;;;;;;;3;5;6;1;5946;;5;4;22;17;14;32;33;10;5;1;7;2; +aP02;;;;;;;;3;5;6;1;5946;;5;4;22;17;14;32;33;10;5;1;7;2; +az6;;;;;;;;3;5;6;1;5946;;5;4;22;17;14;32;33;10;5;1;7;2; +*05SM-~~~79D~~~-4;;;;0330;-1-1;7529;;3;5;6;1;5946;;5;4;22;17;14;32;33;10;5;1;7;2; +a33RM+~~~59DW~~+4B;;;;0330;-1-1;7529;;3;5;6;1;5947;;5;4;22;17;14;32;33;10;5;1;7;2; +a02ET#K1F~2D~~~+4;;;;4365;-1-1;-1-1;;3;5;6;1;5949;;5;4;22;17;14;32;33;10;5;1;7;2; +a01AT=X5~46AH2~+4F;;;;4320;-1-1;9848;;3;5;6;1;5950;;5;4;22;17;14;32;33;10;5;1;7;2; +*p19:22;;;;0252;-1-1;;;3;5;6;1;5951;;5;4;22;17;14;32;33;10;5;1;7;2; +*P14;;;;;;;;3;5;6;1;5974;;5;4;22;17;14;32;33;10;5;1;7;2; +*z5;;;;;;;;3;5;6;1;5974;;5;4;22;17;14;32;33;10;5;1;7;2; +aP02;;;;;;;;3;5;6;1;5974;;5;4;22;17;14;32;33;10;5;1;7;2; +az6;;;;;;;;3;5;6;1;5974;;5;4;22;17;14;32;33;10;5;1;7;2; +*05SM-~~~78A~~~-3;;;;0331;-1-1;7444;;3;5;6;1;5974;;5;4;22;17;14;32;33;10;5;1;7;2; +a08RM+~~~58AM~~+3B;;;;0331;-1-1;7444;;3;5;6;1;5975;;5;4;22;17;14;32;33;10;5;1;7;2; +a02EQ#K1C~3A~~~+3;;;;4160;-1-1;-1-1;;3;5;6;1;5977;;5;4;22;17;14;32;33;10;5;1;7;2; +a10AQ+XM~38CP2~+3F;;;;4446;5649;6651;;3;5;6;1;5977;;5;4;22;17;14;32;33;10;5;1;7;2; +*17BQ/~~~~3B~~~-3;;;;4451;-1-1;-1-1;;3;5;6;1;5978;;5;4;22;17;14;32;33;10;5;1;7;2; +a02DQ+~~~33BC~~+3B;;;;5654;4451;5540;;3;5;6;1;5978;;5;4;22;17;14;32;33;10;5;1;7;2; +a08EH#~~~~7A~~~+3;;;;3028;-1-1;-1-1;;3;5;6;1;5980;;5;4;22;17;14;32;33;10;5;1;7;2; +a05AH=V6~22CP2~+3F;;;;4083;-1-1;5523;;3;5;6;1;5982;;5;4;22;17;14;32;33;10;5;1;7;2; +*p20:22;;;;4577;-1-1;;;3;5;6;1;5982;;5;4;22;17;14;32;33;10;5;1;7;2; +*P14;;;;;;;;3;5;6;1;6097;;5;4;22;17;14;32;33;10;5;1;7;2; +*z5;;;;;;;;3;5;6;1;6097;;5;4;22;17;14;32;33;10;5;1;7;2; +aP02;;;;;;;;3;5;6;1;6097;;5;4;22;17;14;32;33;10;5;1;7;2; +az6;;;;;;;;3;5;6;1;6097;;5;4;22;17;14;32;33;10;5;1;7;2; +*05SM-~~~79D~~~-2;;;;0135;-1-1;7428;;3;5;6;1;6097;;5;4;22;17;14;32;33;10;5;1;7;2; +a33RM#~~~59DM~~+2B;;;;0135;-1-1;7428;;3;5;6;1;6098;;5;4;22;17;14;32;33;10;5;1;7;2; +a02ET#K7F~3B~~~+2;;;;4461;-1-1;-1-1;;3;5;6;1;6100;;5;4;22;17;14;32;33;10;5;1;7;2; +a01AT#X5~46BH2~+2F;;;;4317;5626;7841;;3;5;6;1;6101;;5;4;22;17;14;32;33;10;5;1;7;2; +*17BT!~~~~2C~~~-2;;;;4474;-1-1;-1-1;;3;5;6;1;6101;;5;4;22;17;14;32;33;10;5;1;7;2; +*32DT=~~~48AB~~-2B;;;;4317;5626;7638;;3;5;6;1;6102;;5;4;22;17;14;32;33;10;5;1;7;2; +ap20:23;;;;-156;-1-1;;;3;5;6;1;6102;;5;4;22;17;14;32;33;10;5;1;7;2; +aP02;;;;;;;;3;5;5;1;6118;;5;4;22;17;14;32;10;5;1;7;2;33; +az5;;;;;;;;3;5;5;1;6118;;5;4;22;17;14;32;10;5;1;7;2;33; +*P14;;;;;;;;3;5;5;1;6118;;5;4;22;17;14;32;10;5;1;7;2;33; +*z5;;;;;;;;3;5;5;1;6118;;5;4;22;17;14;32;10;5;1;7;2;33; +a08SM=~~~54B~~~+3;;;;0423;-1-1;4936;;3;5;5;1;6118;;5;4;22;17;14;32;10;5;1;7;2;33; +*p21:23;;;;4936;-1-1;;;3;5;5;1;6119;;5;4;22;17;14;32;10;5;1;7;2;33; +*c04:18;;;;1010;-1-1;9527;;3;0;0;1;6142;; +*P14;;;;;;;;3;4;5;1;6142;;18;22;17;14;32;5;10;5;1;7;2;33; +*z4;;;;;;;;3;4;5;1;6142;;18;22;17;14;32;5;10;5;1;7;2;33; +aP02;;;;;;;;3;4;5;1;6142;;18;22;17;14;32;5;10;5;1;7;2;33; +az5;;;;;;;;3;4;5;1;6142;;18;22;17;14;32;5;10;5;1;7;2;33; +*18SM+~~~96B~~~-2;;;;0573;-1-1;7945;;3;4;5;1;6142;;18;22;17;14;32;5;10;5;1;7;2;33; +a33RM-~~~16BR~~+2B;;;;0573;-1-1;7945;;3;4;5;1;6143;;18;22;17;14;32;5;10;5;1;7;2;33; +a02ET#K1F~8B~~~+2;;;;3259;-1-1;-1-1;;3;4;5;1;6144;;18;22;17;14;32;5;10;5;1;7;2;33; +a01AT-X5~46BH2~+2F;;;;4317;5625;7940;;3;4;5;1;6146;;18;22;17;14;32;5;10;5;1;7;2;33; +*17BT+~~~~2C~~~-2;;;;4475;-1-1;-1-1;;3;4;5;1;6146;;18;22;17;14;32;5;10;5;1;7;2;33; +*01DT#~~~47BB~~-2B;;;;4317;5625;6771;;3;4;5;1;6147;;18;22;17;14;32;5;10;5;1;7;2;33; +*14ET#K1F~3A~~~-2;;;;4358;-1-1;-1-1;;3;4;5;1;6149;;18;22;17;14;32;5;10;5;1;7;2;33; +*22AT=X5~45DH2~-2F;;;;4615;-1-1;9093;;3;4;5;1;6150;;18;22;17;14;32;5;10;5;1;7;2;33; +ap21:24;;;;1007;-1-1;;;3;4;5;1;6150;;18;22;17;14;32;5;10;5;1;7;2;33; +ac05:04;;;;1010;-1-1;9090;;3;0;0;1;6175;; +ac02:15;;;;1010;-1-1;9672;;3;0;0;1;6175;; +aP15;;;;;;;;3;4;4;1;6175;;18;22;17;14;32;5;4;1;7;15;33;10; +az4;;;;;;;;3;4;4;1;6175;;18;22;17;14;32;5;4;1;7;15;33;10; +*P14;;;;;;;;3;4;4;1;6175;;18;22;17;14;32;5;4;1;7;15;33;10; +*z4;;;;;;;;3;4;4;1;6175;;18;22;17;14;32;5;4;1;7;15;33;10; +a04SM/~~~76B~~~+3;;;;0428;-1-1;8047;;3;4;4;1;6175;;18;22;17;14;32;5;4;1;7;15;33;10; +*01RM/~~~56BW~~-3B;;;;0428;-1-1;8047;;3;4;4;1;6176;;18;22;17;14;32;5;4;1;7;15;33;10; +a08FH+~~~67A~~~+3B;;;;2053;;7268;;3;4;4;1;6178;;18;22;17;14;32;5;4;1;7;15;33;10; +a04ET#KMF~2D~~~+3;;;;4168;-1-1;-1-1;;3;4;4;1;6179;;18;22;17;14;32;5;4;1;7;15;33;10; +a01AT#X5~45BH2~+3F;;;;4222;-1-1;8078;;3;4;4;1;6181;;18;22;17;14;32;5;4;1;7;15;33;10; +ap21:25;;;;2022;-1-1;;;3;4;4;1;6181;;18;22;17;14;32;5;4;1;7;15;33;10; +**3set;;;;;;;;4;4;4;1;6181;;18;22;17;14;32;5;4;1;7;15;33;10; +aP02>LUp;;;;;;;;4;6;1;1;6442;;32;5;10;22;17;14;2;33;10;5;1;7; +az1>LUp;;;;;;;;4;6;1;1;6442;;32;5;10;22;17;14;2;33;10;5;1;7; +*P14>LUp;;;;;;;;4;6;1;1;6442;;32;5;10;22;17;14;2;33;10;5;1;7; +*z6>LUp;;;;;;;;4;6;1;1;6442;;32;5;10;22;17;14;2;33;10;5;1;7; +a02SM#~~~91C~~~00;;;;0374;-1-1;8330;;4;6;1;1;6442;;32;5;10;22;17;14;2;33;10;5;1;7; +*32RM=~~~11CO~~00B;;;;0374;-1-1;8330;;4;6;1;1;6443;;32;5;10;22;17;14;2;33;10;5;1;7; +ap00:01;;;;0272;-1-1;;;4;6;1;1;6444;;32;5;10;22;17;14;2;33;10;5;1;7; +aP02;;;;;;;;4;6;1;1;6463;;32;5;10;22;17;14;2;33;10;5;1;7; +az1;;;;;;;;4;6;1;1;6463;;32;5;10;22;17;14;2;33;10;5;1;7; +*P14;;;;;;;;4;6;1;1;6463;;32;5;10;22;17;14;2;33;10;5;1;7; +*z6;;;;;;;;4;6;1;1;6463;;32;5;10;22;17;14;2;33;10;5;1;7; +a02SM!~~~91C~~~+1;;;;0371;-1-1;8031;;4;6;1;1;6463;;32;5;10;22;17;14;2;33;10;5;1;7; +*32RM!~~~11CL~~-1B;;;;0371;-1-1;8031;;4;6;1;1;6464;;32;5;10;22;17;14;2;33;10;5;1;7; +*14ET#K1F~2C~~~-1;;;;4574;-1-1;-1-1;;4;6;1;1;6466;;32;5;10;22;17;14;2;33;10;5;1;7; +*22AT-X5~41CH4~-1F;;;;4320;-1-1;7919;;4;6;1;1;6467;;32;5;10;22;17;14;2;33;10;5;1;7; +a02DT+~~~41CS~~+1B;;;;4320;-1-1;7919;;4;6;1;1;6467;;32;5;10;22;17;14;2;33;10;5;1;7; +a08EH#~~~~7B~~~+1;;;;3330;-1-1;-1-1;;4;6;1;1;6469;;32;5;10;22;17;14;2;33;10;5;1;7; +a05AH#V5~47AH2~+1F;;;;4217;-1-1;7670;;4;6;1;1;6471;;32;5;10;22;17;14;2;33;10;5;1;7; +*01DH=~~~47AS~~-1B;;;;4217;-1-1;7670;;4;6;1;1;6471;;32;5;10;22;17;14;2;33;10;5;1;7; +ap00:02;;;;0209;-1-1;;;4;6;1;1;6472;;32;5;10;22;17;14;2;33;10;5;1;7; +aP02;;;;;;;;4;6;1;1;6493;;32;5;10;22;17;14;2;33;10;5;1;7; +az1;;;;;;;;4;6;1;1;6493;;32;5;10;22;17;14;2;33;10;5;1;7; +*P14;;;;;;;;4;6;1;1;6493;;32;5;10;22;17;14;2;33;10;5;1;7; +*z6;;;;;;;;4;6;1;1;6493;;32;5;10;22;17;14;2;33;10;5;1;7; +a02SM-~~~99D~~~+2;;;;0370;-1-1;7431;;4;6;1;1;6493;;32;5;10;22;17;14;2;33;10;5;1;7; +*32RM#~~~19DO~~-2B;;;;0370;-1-1;7431;;4;6;1;1;6494;;32;5;10;22;17;14;2;33;10;5;1;7; +*14EQ#K1C~3A~~~-2;;;;4354;-1-1;-1-1;;4;6;1;1;6495;;32;5;10;22;17;14;2;33;10;5;1;7; +*05AQ-X7~49CT2~-2F;;;;4335;-1-1;6635;;4;6;1;1;6496;;32;5;10;22;17;14;2;33;10;5;1;7; +a02DQ+~~~49CS~~+2B;;;;4335;-1-1;6635;;4;6;1;1;6496;;32;5;10;22;17;14;2;33;10;5;1;7; +a08EH#~~~~7B~~~+2;;;;3235;-1-1;-1-1;;4;6;1;1;6498;;32;5;10;22;17;14;2;33;10;5;1;7; +a33AH-V6~25BT2~+2F;;;;4279;5578;7876;;4;6;1;1;6500;;32;5;10;22;17;14;2;33;10;5;1;7; +*22BH+~~~~4B~~~-2;;;;4522;-1-1;-1-1;;4;6;1;1;6500;;32;5;10;22;17;14;2;33;10;5;1;7; +*01DH+~~~24DB~~-2B;;;;4279;5578;6382;;4;6;1;1;6501;;32;5;10;22;17;14;2;33;10;5;1;7; +*05ET#~~~~4B~~~-2;;;;4519;-1-1;-1-1;;4;6;1;1;6502;;32;5;10;22;17;14;2;33;10;5;1;7; +*22AT+X5~42CT2~-2F;;;;4410;-1-1;5422;;4;6;1;1;6503;;32;5;10;22;17;14;2;33;10;5;1;7; +a10AO-~~~23DT0~+2F;;;;4678;-1-1;5863;;4;6;1;1;6503;;32;5;10;22;17;14;2;33;10;5;1;7; +*05DO#~~~23DS~~-2F;;;;4678;-1-1;5863;;4;6;1;1;6504;;32;5;10;22;17;14;2;33;10;5;1;7; +*14EQ#K1C~2D~~~-2;;;;3768;-1-1;-1-1;;4;6;1;1;6506;;32;5;10;22;17;14;2;33;10;5;1;7; +*05AQ+X1~31CH1~-2F;;;;4453;-1-1;8436;;4;6;1;1;6507;;32;5;10;22;17;14;2;33;10;5;1;7; +a02DQ-~~~31CS~~+2B;;;;4453;-1-1;8436;;4;6;1;1;6507;;32;5;10;22;17;14;2;33;10;5;1;7; +*10AO#~~~24AT1~-2F;;;;4675;-1-1;6081;;4;6;1;1;6508;;32;5;10;22;17;14;2;33;10;5;1;7; +*p01:02;;;;4019;-1-1;;;4;6;1;1;6509;;32;5;10;22;17;14;2;33;10;5;1;7; +*P14;;;;;;;;4;5;1;1;6537;;5;10;22;17;14;32;2;33;10;5;1;7; +*z5;;;;;;;;4;5;1;1;6537;;5;10;22;17;14;32;2;33;10;5;1;7; +aP02;;;;;;;;4;5;1;1;6537;;5;10;22;17;14;32;2;33;10;5;1;7; +az1;;;;;;;;4;5;1;1;6537;;5;10;22;17;14;32;2;33;10;5;1;7; +*05SM!~~~96C~~~-1;;;;0162;-1-1;8060;;4;5;1;1;6537;;5;10;22;17;14;32;2;33;10;5;1;7; +a01RM!~~~66CR~~+1B;;;;0162;-1-1;8060;;4;5;1;1;6538;;5;10;22;17;14;32;2;33;10;5;1;7; +a02EH#K1F~8B~~~+1;;;;3460;-1-1;-1-1;;4;5;1;1;6540;;5;10;22;17;14;32;2;33;10;5;1;7; +a05AH-V5~46CH2~+1F;;;;4123;-1-1;7854;;4;5;1;1;6541;;5;10;22;17;14;32;2;33;10;5;1;7; +*32DH+~~~46CS~~-1B;;;;4123;-1-1;7854;;4;5;1;1;6542;;5;10;22;17;14;32;2;33;10;5;1;7; +*14EH#~~~~6C~~~-1;;;;4467;;;;4;5;1;1;6543;;5;10;22;17;14;32;2;33;10;5;1;7; +*10AT=X6~22CT0~-1F;;;;4385;-1-1;5222;;4;5;1;1;6545;;5;10;22;17;14;32;2;33;10;5;1;7; +ap01:03;;;;4878;-1-1;;;4;5;1;1;6545;;5;10;22;17;14;32;2;33;10;5;1;7; +aP02;;;;;;;;4;5;6;1;6568;;5;10;22;17;14;32;33;10;5;1;7;2; +az6;;;;;;;;4;5;6;1;6568;;5;10;22;17;14;32;33;10;5;1;7;2; +*P14;;;;;;;;4;5;6;1;6568;;5;10;22;17;14;32;33;10;5;1;7;2; +*z5;;;;;;;;4;5;6;1;6568;;5;10;22;17;14;32;33;10;5;1;7;2; +a33SQ=~~~11D~~~+2;;;;0577;-1-1;9930;;4;5;6;1;6568;;5;10;22;17;14;32;33;10;5;1;7;2; +*p02:03;;;;0170;-1-1;;;4;5;6;1;6569;;5;10;22;17;14;32;33;10;5;1;7;2; +*c10:18;;;;1010;-1-1;9626;;4;0;0;1;6594;; +*P14;;;;;;;;4;4;6;1;6594;;18;22;17;14;32;5;33;10;5;1;7;2; +*z4;;;;;;;;4;4;6;1;6594;;18;22;17;14;32;5;33;10;5;1;7;2; +aP02;;;;;;;;4;4;6;1;6594;;18;22;17;14;32;5;33;10;5;1;7;2; +az6;;;;;;;;4;4;6;1;6594;;18;22;17;14;32;5;33;10;5;1;7;2; +*18SM-~~~97B~~~-1;;;;0474;-1-1;6873;;4;4;6;1;6594;;18;22;17;14;32;5;33;10;5;1;7;2; +a01RM+~~~17BW~~+1F;;;;0474;-1-1;6873;;4;4;6;1;6595;;18;22;17;14;32;5;33;10;5;1;7;2; +a02EQ#KMC~2D~~~+1;;;;4269;-1-1;-1-1;;4;4;6;1;6597;;18;22;17;14;32;5;33;10;5;1;7;2; +a10AQ#XM~37BT4~+1F;;;;4351;5456;6663;;4;4;6;1;6598;;18;22;17;14;32;5;33;10;5;1;7;2; +*22BQ=~~~~3C~~~-1;;;;4644;-1-1;-1-1;;4;4;6;1;6598;;18;22;17;14;32;5;33;10;5;1;7;2; +ap02:04;;;;2541;-1-1;;;4;4;6;1;6598;;18;22;17;14;32;5;33;10;5;1;7;2; +aP02;;;;;;;;4;4;5;1;6619;;18;22;17;14;32;5;10;5;1;7;2;33; +az5;;;;;;;;4;4;5;1;6619;;18;22;17;14;32;5;10;5;1;7;2;33; +*P14;;;;;;;;4;4;5;1;6619;;18;22;17;14;32;5;10;5;1;7;2;33; +*z4;;;;;;;;4;4;5;1;6619;;18;22;17;14;32;5;10;5;1;7;2;33; +a08SM-~~~76B~~~+2;;;;0329;-1-1;8040;;4;4;5;1;6619;;18;22;17;14;32;5;10;5;1;7;2;33; +*01RM+~~~56BM~~-2B;;;;0329;-1-1;8040;;4;4;5;1;6620;;18;22;17;14;32;5;10;5;1;7;2;33; +*14ET#K2F~4A~~~-2;;;;4236;-1-1;-1-1;;4;4;5;1;6622;;18;22;17;14;32;5;10;5;1;7;2;33; +*22AT-X5~49AT2~-2F;;;;4418;-1-1;7214;;4;4;5;1;6623;;18;22;17;14;32;5;10;5;1;7;2;33; +a02DT+~~~49AS~~+2B;;;;4418;-1-1;7214;;4;4;5;1;6623;;18;22;17;14;32;5;10;5;1;7;2;33; +a08EH#~~~~7B~~~+2;;;;3537;-1-1;-1-1;;4;4;5;1;6625;;18;22;17;14;32;5;10;5;1;7;2;33; +a01AH-V5~47CH2~+2F;;;;4418;-1-1;6885;;4;4;5;1;6627;;18;22;17;14;32;5;10;5;1;7;2;33; +*01DH+~~~47CS~~-2B;;;;4418;-1-1;6885;;4;4;5;1;6627;;18;22;17;14;32;5;10;5;1;7;2;33; +*14ET#~~~~8B~~~-2;;;;3356;-1-1;-1-1;;4;4;5;1;6629;;18;22;17;14;32;5;10;5;1;7;2;33; +*22AT-X5~48CP2~-2F;;;;4415;-1-1;6555;;4;4;5;1;6630;;18;22;17;14;32;5;10;5;1;7;2;33; +a01DT#~~~48CS~~+2F;;;;4415;-1-1;6555;;4;4;5;1;6631;;18;22;17;14;32;5;10;5;1;7;2;33; +a02ET#~~~~9C~~~+2;;;;3471;-1-1;-1-1;;4;4;5;1;6633;;18;22;17;14;32;5;10;5;1;7;2;33; +a05AT#X6~25BH2~+2F;;;;4483;-1-1;8770;;4;4;5;1;6634;;18;22;17;14;32;5;10;5;1;7;2;33; +ap02:05;;;;1330;-1-1;;;4;4;5;1;6635;;18;22;17;14;32;5;10;5;1;7;2;33; +aP02;;;;;;;;4;4;5;1;6766;;18;22;17;14;32;5;10;5;1;7;2;33; +az5;;;;;;;;4;4;5;1;6766;;18;22;17;14;32;5;10;5;1;7;2;33; +*P14;;;;;;;;4;4;5;1;6766;;18;22;17;14;32;5;10;5;1;7;2;33; +*z4;;;;;;;;4;4;5;1;6766;;18;22;17;14;32;5;10;5;1;7;2;33; +a08SM-~~~51C~~~+3;;;;0023;-1-1;7734;;4;4;5;1;6766;;18;22;17;14;32;5;10;5;1;7;2;33; +*18RM#~~~51CM~~-3B;;;;0023;-1-1;7734;;4;4;5;1;6767;;18;22;17;14;32;5;10;5;1;7;2;33; +*14ET#K1F~3B~~~-3;;;;4453;-1-1;-1-1;;4;4;5;1;6769;;18;22;17;14;32;5;10;5;1;7;2;33; +*22AT#X5~49AH2~-3F;;;;4316;-1-1;7413;;4;4;5;1;6770;;18;22;17;14;32;5;10;5;1;7;2;33; +*p03:05;;;;2687;-1-1;;;4;4;5;1;6770;;18;22;17;14;32;5;10;5;1;7;2;33; +*c32:77;;;;1010;-1-1;10128;;4;0;0;1;6788;; +*P14;;;;;;;;4;3;5;1;6788;;22;17;14;77;5;18;10;5;1;7;2;33; +*z3;;;;;;;;4;3;5;1;6788;;22;17;14;77;5;18;10;5;1;7;2;33; +aP02;;;;;;;;4;3;5;1;6788;;22;17;14;77;5;18;10;5;1;7;2;33; +az5;;;;;;;;4;3;5;1;6788;;22;17;14;77;5;18;10;5;1;7;2;33; +*22SH+~~~97A~~~-2;;;;-172;-1-1;7463;;4;3;5;1;6788;;22;17;14;77;5;18;10;5;1;7;2;33; +a33RH-~~~~7AW~~+2B;;;;-172;-1-1;7463;;4;3;5;1;6789;;22;17;14;77;5;18;10;5;1;7;2;33; +a08EH#~~~~9C~~~+2;;;;3473;-1-1;-1-1;;4;3;5;1;6790;;22;17;14;77;5;18;10;5;1;7;2;33; +a01AH-V5~46BH2~+2F;;;;4315;5727;7843;;4;3;5;1;6792;;22;17;14;77;5;18;10;5;1;7;2;33; +*17BH+~~~~2D~~~-2;;;;4373;-1-1;-1-1;;4;3;5;1;6792;;22;17;14;77;5;18;10;5;1;7;2;33; +*22DH#~~~46BB~~-2B;;;;4315;5727;8243;;4;3;5;1;6793;;22;17;14;77;5;18;10;5;1;7;2;33; +*14EQ#K1C~2D~~~-2;;;;3965;-1-1;-1-1;;4;3;5;1;6794;;22;17;14;77;5;18;10;5;1;7;2;33; +*17AQ-XM~33AT2~-2F;;;;4050;5549;6249;;4;3;5;1;6795;;22;17;14;77;5;18;10;5;1;7;2;33; +a01BQ+~~~~3B~~~+2;;;;4551;-1-1;-1-1;;4;3;5;1;6795;;22;17;14;77;5;18;10;5;1;7;2;33; +*17DQ!~~~33AC~~-2F;;;;6050;4551;5846;;4;3;5;1;6796;;22;17;14;77;5;18;10;5;1;7;2;33; +*18EQ#~~~~3A~~~-2;;;;3987;;;;4;3;5;1;6797;;22;17;14;77;5;18;10;5;1;7;2;33; +*77AO-~~~45BH2~-2F;;;;4433;-1-1;7870;;4;3;5;1;6799;;22;17;14;77;5;18;10;5;1;7;2;33; +a08DO+~~~45BS~~+2B;;;;4433;-1-1;7870;;4;3;5;1;6800;;22;17;14;77;5;18;10;5;1;7;2;33; +a02EH#~~~~3D~~~+2;;;;3849;-1-1;-1-1;;4;3;5;1;6801;;22;17;14;77;5;18;10;5;1;7;2;33; +a01AH-V5~41CH2~+2F;;;;4314;5521;7835;;4;3;5;1;6803;;22;17;14;77;5;18;10;5;1;7;2;33; +*14BH+~~~~2C~~~-2;;;;4579;-1-1;-1-1;;4;3;5;1;6803;;22;17;14;77;5;18;10;5;1;7;2;33; +*22DH#~~~46CB~~-2B;;;;4314;5521;8562;;4;3;5;1;6804;;22;17;14;77;5;18;10;5;1;7;2;33; +*14ET#K1F~3A~~~-2;;;;4062;-1-1;-1-1;;4;3;5;1;6806;;22;17;14;77;5;18;10;5;1;7;2;33; +*77AT+X5~42DT2~-2F;;;;4317;-1-1;5721;;4;3;5;1;6807;;22;17;14;77;5;18;10;5;1;7;2;33; +a05DT-~~~42DS~~+2F;;;;4317;-1-1;5721;;4;3;5;1;6807;;22;17;14;77;5;18;10;5;1;7;2;33; +*77FH/~~~24A~~~-2F;;;;4379;;5777;;4;3;5;1;6808;;22;17;14;77;5;18;10;5;1;7;2;33; +a07AO+~~~32DP1~+2F;;;;4562;-1-1;5835;;4;3;5;1;6809;;22;17;14;77;5;18;10;5;1;7;2;33; +*14DO-~~~32DS~~-2F;;;;4562;-1-1;5835;;4;3;5;1;6809;;22;17;14;77;5;18;10;5;1;7;2;33; +*18EO#~~~~~~~~~-2;;;;3481;;;;4;3;5;1;6810;;22;17;14;77;5;18;10;5;1;7;2;33; +*77AH=~~~73B~~~-2;;;;3508;-1-1;5143;;4;3;5;1;6812;;22;17;14;77;5;18;10;5;1;7;2;33; +ap03:06;;;;4957;-1-1;;;4;3;5;1;6813;;22;17;14;77;5;18;10;5;1;7;2;33; +ac05:04;;;;1010;-1-1;10025;;4;0;0;1;6836;; +aP02;;;;;;;;4;3;4;1;6836;;22;17;14;77;5;18;4;1;7;2;33;10; +az4;;;;;;;;4;3;4;1;6836;;22;17;14;77;5;18;4;1;7;2;33;10; +*P14;;;;;;;;4;3;4;1;6836;;22;17;14;77;5;18;4;1;7;2;33;10; +*z3;;;;;;;;4;3;4;1;6836;;22;17;14;77;5;18;4;1;7;2;33;10; +a04SM-~~~15B~~~+3;;;;0075;-1-1;8073;;4;3;4;1;6836;;22;17;14;77;5;18;4;1;7;2;33;10; +*77RM+~~~15BO~~-3F;;;;0075;-1-1;8073;;4;3;4;1;6837;;22;17;14;77;5;18;4;1;7;2;33;10; +*14EM#K1P~3A~~~-3;;;;4059;-1-1;-1-1;;4;3;4;1;6839;;22;17;14;77;5;18;4;1;7;2;33;10; +*22AM=XR~83BT1~-3B;;;;4339;-1-1;5141;;4;3;4;1;6839;;22;17;14;77;5;18;4;1;7;2;33;10; +ap03:07;;;;4959;-1-1;;;4;3;4;1;6840;;22;17;14;77;5;18;4;1;7;2;33;10; +aP02;;;;;;;;4;3;4;1;6861;;22;17;14;77;5;18;4;1;7;2;33;10; +az4;;;;;;;;4;3;4;1;6861;;22;17;14;77;5;18;4;1;7;2;33;10; +*P14;;;;;;;;4;3;4;1;6861;;22;17;14;77;5;18;4;1;7;2;33;10; +*z3;;;;;;;;4;3;4;1;6861;;22;17;14;77;5;18;4;1;7;2;33;10; +a04SM!~~~95B~~~+4;;;;0269;-1-1;8171;;4;3;4;1;6861;;22;17;14;77;5;18;4;1;7;2;33;10; +*77RM!~~~15BW~~-4F;;;;0269;-1-1;8171;;4;3;4;1;6863;;22;17;14;77;5;18;4;1;7;2;33;10; +*14EM#K1P~2D~~~-4;;;;4073;-1-1;-1-1;;4;3;4;1;6864;;22;17;14;77;5;18;4;1;7;2;33;10; +*22AM#XP~81CH2~-4B;;;;3154;-1-1;8133;;4;3;4;1;6865;;22;17;14;77;5;18;4;1;7;2;33;10; +a04DM=~~~81CS~~+4B;;;;3154;-1-1;8133;;4;3;4;1;6865;;22;17;14;77;5;18;4;1;7;2;33;10; +*p04:07;;;;2056;-1-1;;;4;3;4;1;6866;;22;17;14;77;5;18;4;1;7;2;33;10; +*P14;;;;;;;;4;2;4;1;6882;;17;14;77;5;18;22;4;1;7;2;33;10; +*z2;;;;;;;;4;2;4;1;6882;;17;14;77;5;18;22;4;1;7;2;33;10; +aP02;;;;;;;;4;2;4;1;6882;;17;14;77;5;18;22;4;1;7;2;33;10; +az4;;;;;;;;4;2;4;1;6882;;17;14;77;5;18;22;4;1;7;2;33;10; +*01SM+~~~91C~~~-3;;;;0371;-1-1;7829;;4;2;4;1;6882;;17;14;77;5;18;22;4;1;7;2;33;10; +a04RM-~~~11CR~~+3B;;;;0371;-1-1;7829;;4;2;4;1;6883;;17;14;77;5;18;22;4;1;7;2;33;10; +a08EH#~~~~7B~~~+3;;;;3124;-1-1;-1-1;;4;2;4;1;6885;;17;14;77;5;18;22;4;1;7;2;33;10; +a01AH#V5~47AH4~+3F;;;;4317;-1-1;7477;;4;2;4;1;6886;;17;14;77;5;18;22;4;1;7;2;33;10; +ap04:08;;;;2623;-1-1;;;4;2;4;1;6887;;17;14;77;5;18;22;4;1;7;2;33;10; +aP02;;;;;;;;4;2;3;1;6910;;17;14;77;5;18;22;1;7;2;33;10;4; +az3;;;;;;;;4;2;3;1;6910;;17;14;77;5;18;22;1;7;2;33;10;4; +*P14;;;;;;;;4;2;3;1;6910;;17;14;77;5;18;22;1;7;2;33;10;4; +*z2;;;;;;;;4;2;3;1;6910;;17;14;77;5;18;22;1;7;2;33;10;4; +a01SQ=~~~13B~~~+4;;;;0376;-1-1;4858;;4;2;3;1;6910;;17;14;77;5;18;22;1;7;2;33;10;4; +*p05:08;;;;4858;-1-1;;;4;2;3;1;6910;;17;14;77;5;18;22;1;7;2;33;10;4; +*c18:10;;;;1010;-1-1;9620;;4;0;0;1;6929;; +*P14;;;;;;;;4;1;3;1;6929;;14;77;5;10;22;17;1;7;2;33;10;4; +*z1;;;;;;;;4;1;3;1;6929;;14;77;5;10;22;17;1;7;2;33;10;4; +aP02;;;;;;;;4;1;3;1;6929;;14;77;5;10;22;17;1;7;2;33;10;4; +az3;;;;;;;;4;1;3;1;6929;;14;77;5;10;22;17;1;7;2;33;10;4; +*14SM#~~~17A~~~-3;;;;0480;-1-1;7163;;4;1;3;1;6929;;14;77;5;10;22;17;1;7;2;33;10;4; +a08RM=~~~17AL~~+3B;;;;0480;-1-1;7163;;4;1;3;1;6930;;14;77;5;10;22;17;1;7;2;33;10;4; +*p06:08;;;;3788;-1-1;;;4;1;3;1;6932;;14;77;5;10;22;17;1;7;2;33;10;4; +*P14;;;;;;;;4;1;3;1;6947;;14;77;5;10;22;17;1;7;2;33;10;4; +*z1;;;;;;;;4;1;3;1;6947;;14;77;5;10;22;17;1;7;2;33;10;4; +aP02;;;;;;;;4;1;3;1;6947;;14;77;5;10;22;17;1;7;2;33;10;4; +az3;;;;;;;;4;1;3;1;6947;;14;77;5;10;22;17;1;7;2;33;10;4; +*14SM!~~~95B~~~-2;;;;0470;-1-1;8271;;4;1;3;1;6947;;14;77;5;10;22;17;1;7;2;33;10;4; +a33RM!~~~15BM~~+2F;;;;0470;-1-1;8271;;4;1;3;1;6948;;14;77;5;10;22;17;1;7;2;33;10;4; +a02EH#~~~~8B~~~+2;;;;3555;-1-1;-1-1;;4;1;3;1;6949;;14;77;5;10;22;17;1;7;2;33;10;4; +a33AH#V5~46BH2~+2F;;;;4523;5427;8139;;4;1;3;1;6951;;14;77;5;10;22;17;1;7;2;33;10;4; +*10BH=~~~~2C~~~-2;;;;4673;-1-1;-1-1;;4;1;3;1;6951;;14;77;5;10;22;17;1;7;2;33;10;4; +ap06:09;;;;4187;-1-1;;;4;1;3;1;6952;;14;77;5;10;22;17;1;7;2;33;10;4; +aP02;;;;;;;;4;1;2;1;6971;;14;77;5;10;22;17;7;2;33;10;4;1; +az2;;;;;;;;4;1;2;1;6971;;14;77;5;10;22;17;7;2;33;10;4;1; +*P14;;;;;;;;4;1;2;1;6971;;14;77;5;10;22;17;7;2;33;10;4;1; +*z1;;;;;;;;4;1;2;1;6971;;14;77;5;10;22;17;7;2;33;10;4;1; +a07SM+~~~56B~~~+3;;;;0119;-1-1;7746;;4;1;2;1;6971;;14;77;5;10;22;17;7;2;33;10;4;1; +*01RM-~~~56BM~~-3B;;;;0119;-1-1;7746;;4;1;2;1;6972;;14;77;5;10;22;17;7;2;33;10;4;1; +*14EH#~~~~2A~~~-3;;;;3987;-1-1;-1-1;;4;1;2;1;6973;;14;77;5;10;22;17;7;2;33;10;4;1; +*77AH-V6~25BP0~-3F;;;;3078;-1-1;7874;;4;1;2;1;6975;;14;77;5;10;22;17;7;2;33;10;4;1; +a07DH#~~~95BS~~+3B;;;;3078;-1-1;7874;;4;1;2;1;6976;;14;77;5;10;22;17;7;2;33;10;4;1; +a02EQ#KMC~2D~~~+3;;;;4069;-1-1;-1-1;;4;1;2;1;6978;;14;77;5;10;22;17;7;2;33;10;4;1; +a10AQ-XM~37AT4~+3F;;;;4547;-1-1;7467;;4;1;2;1;6978;;14;77;5;10;22;17;7;2;33;10;4;1; +*01DQ+~~~37AS~~-3B;;;;4547;-1-1;7467;;4;1;2;1;6979;;14;77;5;10;22;17;7;2;33;10;4;1; +*14EQ#K1C~8D~~~-3;;;;2840;-1-1;-1-1;;4;1;2;1;6981;;14;77;5;10;22;17;7;2;33;10;4;1; +*05AQ=X1~33BT1~-3F;;;;4433;-1-1;5062;;4;1;2;1;6982;;14;77;5;10;22;17;7;2;33;10;4;1; +ap06:10;;;;5062;-1-1;;;4;1;2;1;6982;;14;77;5;10;22;17;7;2;33;10;4;1; +aP02;;;;;;;;4;1;2;1;7006;;14;77;5;10;22;17;7;2;33;10;4;1; +az2;;;;;;;;4;1;2;1;7006;;14;77;5;10;22;17;7;2;33;10;4;1; +*P14;;;;;;;;4;1;2;1;7006;;14;77;5;10;22;17;7;2;33;10;4;1; +*z1;;;;;;;;4;1;2;1;7006;;14;77;5;10;22;17;7;2;33;10;4;1; +a07SM=~~~51D~~~+4;;;;0325;-1-1;9832;;4;1;2;1;7006;;14;77;5;10;22;17;7;2;33;10;4;1; +*p07:10;;;;0268;-1-1;;;4;1;2;1;7007;;14;77;5;10;22;17;7;2;33;10;4;1; +*c77:32;;;;1010;-1-1;9623;;4;0;0;1;7028;; +*P14;;;;;;;;4;6;2;1;7028;;32;5;10;22;17;14;7;2;33;10;4;1; +*z6;;;;;;;;4;6;2;1;7028;;32;5;10;22;17;14;7;2;33;10;4;1; +aP02;;;;;;;;4;6;2;1;7028;;32;5;10;22;17;14;7;2;33;10;4;1; +az2;;;;;;;;4;6;2;1;7028;;32;5;10;22;17;14;7;2;33;10;4;1; +*32SM-~~~15B~~~-3;;;;0477;-1-1;7966;;4;6;2;1;7028;;32;5;10;22;17;14;7;2;33;10;4;1; +a33RM#~~~15BM~~+3F;;;;0477;-1-1;7966;;4;6;2;1;7029;;32;5;10;22;17;14;7;2;33;10;4;1; +a02EQ#K7C~3D~~~+3;;;;4349;-1-1;-1-1;;4;6;2;1;7030;;32;5;10;22;17;14;7;2;33;10;4;1; +a10AQ=X7~45CH4~+3F;;;;4727;-1-1;8092;;4;6;2;1;7031;;32;5;10;22;17;14;7;2;33;10;4;1; +*p08:10;;;;2008;-1-1;;;4;6;2;1;7031;;32;5;10;22;17;14;7;2;33;10;4;1; +*P14;;;;;;;;4;6;2;1;7047;;32;5;10;22;17;14;7;2;33;10;4;1; +*z6;;;;;;;;4;6;2;1;7047;;32;5;10;22;17;14;7;2;33;10;4;1; +aP02;;;;;;;;4;6;2;1;7047;;32;5;10;22;17;14;7;2;33;10;4;1; +az2;;;;;;;;4;6;2;1;7047;;32;5;10;22;17;14;7;2;33;10;4;1; +*32SM-~~~95B~~~-2;;;;0373;-1-1;8163;;4;6;2;1;7047;;32;5;10;22;17;14;7;2;33;10;4;1; +a04RM#~~~15BM~~+2B;;;;0373;-1-1;8163;;4;6;2;1;7048;;32;5;10;22;17;14;7;2;33;10;4;1; +a02ET#KMF~3B~~~+2;;;;4459;-1-1;-1-1;;4;6;2;1;7050;;32;5;10;22;17;14;7;2;33;10;4;1; +a33AT#X5~48CH4~+2F;;;;4618;-1-1;6750;;4;6;2;1;7051;;32;5;10;22;17;14;7;2;33;10;4;1; +*22DT=~~~48CS~~-2F;;;;4618;-1-1;6750;;4;6;2;1;7052;;32;5;10;22;17;14;7;2;33;10;4;1; +ap08:11;;;;2507;-1-1;;;4;6;2;1;7053;;32;5;10;22;17;14;7;2;33;10;4;1; +ac04:05;;;;1010;-1-1;9724;;4;0;0;1;7073;; +aP02;;;;;;;;4;6;1;1;7073;;32;5;10;22;17;14;2;33;10;5;1;7; +az1;;;;;;;;4;6;1;1;7073;;32;5;10;22;17;14;2;33;10;5;1;7; +*P14;;;;;;;;4;6;1;1;7073;;32;5;10;22;17;14;2;33;10;5;1;7; +*z6;;;;;;;;4;6;1;1;7073;;32;5;10;22;17;14;2;33;10;5;1;7; +a02SM-~~~19D~~~+3;;;;0376;-1-1;7435;;4;6;1;1;7073;;32;5;10;22;17;14;2;33;10;5;1;7; +*32RM+~~~19DO~~-3B;;;;0376;-1-1;7435;;4;6;1;1;7074;;32;5;10;22;17;14;2;33;10;5;1;7; +*14EQ#K7C~3A~~~-3;;;;4259;-1-1;-1-1;;4;6;1;1;7075;;32;5;10;22;17;14;2;33;10;5;1;7; +*05AQ+X7~49AP4~-3F;;;;4336;-1-1;7013;;4;6;1;1;7076;;32;5;10;22;17;14;2;33;10;5;1;7; +a02FH-~~~49A~~~+3B;;;;4336;;7013;;4;6;1;1;7077;;32;5;10;22;17;14;2;33;10;5;1;7; +a08EH#~~~~8C~~~+3;;;;3544;-1-1;-1-1;;4;6;1;1;7079;;32;5;10;22;17;14;2;33;10;5;1;7; +a33AH#V6~24AH2~+3F;;;;4482;-1-1;5877;;4;6;1;1;7080;;32;5;10;22;17;14;2;33;10;5;1;7; +*22DH=~~~24AS~~-3F;;;;4482;-1-1;5877;;4;6;1;1;7080;;32;5;10;22;17;14;2;33;10;5;1;7; +ap08:12;;;;4107;-1-1;;;4;6;1;1;7081;;32;5;10;22;17;14;2;33;10;5;1;7; +aP02;;;;;;;;4;6;1;1;7099;;32;5;10;22;17;14;2;33;10;5;1;7; +az1;;;;;;;;4;6;1;1;7099;;32;5;10;22;17;14;2;33;10;5;1;7; +*P14;;;;;;;;4;6;1;1;7099;;32;5;10;22;17;14;2;33;10;5;1;7; +*z6;;;;;;;;4;6;1;1;7099;;32;5;10;22;17;14;2;33;10;5;1;7; +a02SM-~~~11C~~~+4;;;;0176;-1-1;8127;;4;6;1;1;7099;;32;5;10;22;17;14;2;33;10;5;1;7; +*32RM+~~~11CO~~-4B;;;;0176;-1-1;8127;;4;6;1;1;7101;;32;5;10;22;17;14;2;33;10;5;1;7; +*14ET#K1F~3A~~~-4;;;;4058;-1-1;-1-1;;4;6;1;1;7102;;32;5;10;22;17;14;2;33;10;5;1;7; +*22AT#X5~45BH2~-4F;;;;3920;-1-1;8175;;4;6;1;1;7103;;32;5;10;22;17;14;2;33;10;5;1;7; +a08DT=~~~45BS~~+4B;;;;3920;-1-1;8175;;4;6;1;1;7103;;32;5;10;22;17;14;2;33;10;5;1;7; +*p09:12;;;;2692;-1-1;;;4;6;1;1;7104;;32;5;10;22;17;14;2;33;10;5;1;7; +*P14;;;;;;;;4;5;1;1;7124;;5;10;22;17;14;32;2;33;10;5;1;7; +*z5;;;;;;;;4;5;1;1;7124;;5;10;22;17;14;32;2;33;10;5;1;7; +aP02;;;;;;;;4;5;1;1;7124;;5;10;22;17;14;32;2;33;10;5;1;7; +az1;;;;;;;;4;5;1;1;7124;;5;10;22;17;14;32;2;33;10;5;1;7; +*05SM-~~~66B~~~-3;;;;0049;-1-1;7948;;4;5;1;1;7124;;5;10;22;17;14;32;2;33;10;5;1;7; +a08RM#~~~66BM~~+3B;;;;0049;-1-1;7948;;4;5;1;1;7125;;5;10;22;17;14;32;2;33;10;5;1;7; +a02EO#KMS~3B~~~+3;;;;4562;-1-1;-1-1;;4;5;1;1;7126;;5;10;22;17;14;32;2;33;10;5;1;7; +a02AO+PP~33A~~~+3B;;;;4562;-1-1;5846;;4;5;1;1;7126;;5;10;22;17;14;32;2;33;10;5;1;7; +*17AO-~~~38CT0~-3F;;;;4254;-1-1;6456;;4;5;1;1;7127;;5;10;22;17;14;32;2;33;10;5;1;7; +a08DO+~~~38CS~~+3B;;;;4254;-1-1;6456;;4;5;1;1;7128;;5;10;22;17;14;32;2;33;10;5;1;7; +a02EH#~~~~3A~~~+3;;;;3858;-1-1;-1-1;;4;5;1;1;7129;;5;10;22;17;14;32;2;33;10;5;1;7; +a05AH=V5~45DH2~+3F;;;;4217;-1-1;9987;;4;5;1;1;7130;;5;10;22;17;14;32;2;33;10;5;1;7; +*p10:12;;;;0113;-1-1;;;4;5;1;1;7131;;5;10;22;17;14;32;2;33;10;5;1;7; +*P14;;;;;;;;4;5;1;1;7160;;5;10;22;17;14;32;2;33;10;5;1;7; +*z5;;;;;;;;4;5;1;1;7160;;5;10;22;17;14;32;2;33;10;5;1;7; +aP02;;;;;;;;4;5;1;1;7160;;5;10;22;17;14;32;2;33;10;5;1;7; +az1;;;;;;;;4;5;1;1;7160;;5;10;22;17;14;32;2;33;10;5;1;7; +*05SM!~~~95B~~~-2;;;;0457;-1-1;7871;;4;5;1;1;7160;;5;10;22;17;14;32;2;33;10;5;1;7; +a01RM!~~~65BM~~+2B;;;;0457;-1-1;7871;;4;5;1;1;7161;;5;10;22;17;14;32;2;33;10;5;1;7; +a02ET#KMB~9C~~~+2;;;;3670;-1-1;-1-1;;4;5;1;1;7163;;5;10;22;17;14;32;2;33;10;5;1;7; +a33AT#X6~25BH2~+2F;;;;4486;-1-1;8581;;4;5;1;1;7164;;5;10;22;17;14;32;2;33;10;5;1;7; +ap10:13;;;;1519;-1-1;;;4;5;1;1;7165;;5;10;22;17;14;32;2;33;10;5;1;7; +aP02;;;;;;;;4;5;6;1;7186;;5;10;22;17;14;32;33;10;5;1;7;2; +az6;;;;;;;;4;5;6;1;7186;;5;10;22;17;14;32;33;10;5;1;7;2; +*P14;;;;;;;;4;5;6;1;7186;;5;10;22;17;14;32;33;10;5;1;7;2; +*z5;;;;;;;;4;5;6;1;7186;;5;10;22;17;14;32;33;10;5;1;7;2; +a33SQ!~~~96C~~~+3;;;;0571;-1-1;7752;;4;5;6;1;7186;;5;10;22;17;14;32;33;10;5;1;7;2; +*32RQ!~~~16CW~~-3B;;;;0571;-1-1;7752;;4;5;6;1;7187;;5;10;22;17;14;32;33;10;5;1;7;2; +*14ET#K1F~2D~~~-3;;;;4072;-1-1;-1-1;;4;5;6;1;7188;;5;10;22;17;14;32;33;10;5;1;7;2; +*22AT-X5~46BH2~-3F;;;;4510;5722;8043;;4;5;6;1;7189;;5;10;22;17;14;32;33;10;5;1;7;2; +a05BT+~~~~2D~~~+3;;;;4378;-1-1;-1-1;;4;5;6;1;7190;;5;10;22;17;14;32;33;10;5;1;7;2; +a02DT+~~~49AB~~+3B;;;;4510;5722;7512;;4;5;6;1;7190;;5;10;22;17;14;32;33;10;5;1;7;2; +a08EH#~~~~2D~~~+3;;;;3870;-1-1;-1-1;;4;5;6;1;7193;;5;10;22;17;14;32;33;10;5;1;7;2; +a01AH+V5~42DH2~+3F;;;;4423;-1-1;5725;;4;5;6;1;7194;;5;10;22;17;14;32;33;10;5;1;7;2; +*17DH-~~~42DS~~-3F;;;;4423;-1-1;5725;;4;5;6;1;7194;;5;10;22;17;14;32;33;10;5;1;7;2; +a10FH=~~~24A~~~+3F;;;;4375;;5969;;4;5;6;1;7195;;5;10;22;17;14;32;33;10;5;1;7;2; +*p11:13;;;;4143;-1-1;;;4;5;6;1;7196;;5;10;22;17;14;32;33;10;5;1;7;2; +*c10:18;;;;1010;-1-1;9527;;4;0;0;1;7219;; +*P14;;;;;;;;4;4;6;1;7219;;18;22;17;14;32;5;33;10;5;1;7;2; +*z4;;;;;;;;4;4;6;1;7219;;18;22;17;14;32;5;33;10;5;1;7;2; +aP02;;;;;;;;4;4;6;1;7219;;18;22;17;14;32;5;33;10;5;1;7;2; +az6;;;;;;;;4;4;6;1;7219;;18;22;17;14;32;5;33;10;5;1;7;2; +*18SM-~~~98A~~~-2;;;;0573;-1-1;7439;;4;4;6;1;7219;;18;22;17;14;32;5;33;10;5;1;7;2; +a33RM+~~~18AM~~+2B;;;;0573;-1-1;7439;;4;4;6;1;7221;;18;22;17;14;32;5;33;10;5;1;7;2; +a02ET#K1B~2D~~~+2;;;;3965;-1-1;-1-1;;4;4;6;1;7222;;18;22;17;14;32;5;33;10;5;1;7;2; +a05AT#X6~24AH2~+2F;;;;4285;-1-1;5780;;4;4;6;1;7223;;18;22;17;14;32;5;33;10;5;1;7;2; +*22DT=~~~24AS~~-2F;;;;4285;-1-1;5780;;4;4;6;1;7223;;18;22;17;14;32;5;33;10;5;1;7;2; +ap11:14;;;;4292;-1-1;;;4;4;6;1;7223;;18;22;17;14;32;5;33;10;5;1;7;2; +aP02;;;;;;;;4;4;5;1;7242;;18;22;17;14;32;5;10;5;1;7;2;33; +az5;;;;;;;;4;4;5;1;7242;;18;22;17;14;32;5;10;5;1;7;2;33; +*P14;;;;;;;;4;4;5;1;7242;;18;22;17;14;32;5;10;5;1;7;2;33; +*z4;;;;;;;;4;4;5;1;7242;;18;22;17;14;32;5;10;5;1;7;2;33; +a08SM-~~~78D~~~+3;;;;0327;-1-1;7356;;4;4;5;1;7242;;18;22;17;14;32;5;10;5;1;7;2;33; +*01RM#~~~58DL~~-3B;;;;0327;-1-1;7356;;4;4;5;1;7244;;18;22;17;14;32;5;10;5;1;7;2;33; +*14ET#K1F~3D~~~-3;;;;4350;-1-1;-1-1;;4;4;5;1;7245;;18;22;17;14;32;5;10;5;1;7;2;33; +*22AT-X5~44AH1~-3F;;;;4518;-1-1;6074;;4;4;5;1;7246;;18;22;17;14;32;5;10;5;1;7;2;33; +a08DT+~~~44AS~~+3B;;;;4518;-1-1;6074;;4;4;5;1;7247;;18;22;17;14;32;5;10;5;1;7;2;33; +a33EO-~~~~7D~~~+3;;;;2418;;;;4;4;5;1;7248;;18;22;17;14;32;5;10;5;1;7;2;33; +*01FH+~~~47B~~~-3B;;;;4430;;6875;;4;4;5;1;7252;;18;22;17;14;32;5;10;5;1;7;2;33; +*14ET#K1F~3A~~~-3;;;;4259;-1-1;-1-1;;4;4;5;1;7253;;18;22;17;14;32;5;10;5;1;7;2;33; +*22AT#X5~46CH2~-3F;;;;4613;5826;8152;;4;4;5;1;7254;;18;22;17;14;32;5;10;5;1;7;2;33; +a07BT!~~~~2D~~~+3;;;;4274;-1-1;-1-1;;4;4;5;1;7254;;18;22;17;14;32;5;10;5;1;7;2;33; +a33DT=~~~45BB~~+3B;;;;4613;5826;7963;;4;4;5;1;7255;;18;22;17;14;32;5;10;5;1;7;2;33; +*p12:14;;;;1912;-1-1;;;4;4;5;1;7255;;18;22;17;14;32;5;10;5;1;7;2;33; +*c32:77;;;;1010;-1-1;9922;;4;0;0;1;7291;; +*P14;;;;;;;;4;3;5;1;7291;;22;17;14;77;5;18;10;5;1;7;2;33; +*z3;;;;;;;;4;3;5;1;7291;;22;17;14;77;5;18;10;5;1;7;2;33; +aP02;;;;;;;;4;3;5;1;7291;;22;17;14;77;5;18;10;5;1;7;2;33; +az5;;;;;;;;4;3;5;1;7291;;22;17;14;77;5;18;10;5;1;7;2;33; +*22SH-~~~16B~~~-2;;;;0178;-1-1;8345;;4;3;5;1;7291;;22;17;14;77;5;18;10;5;1;7;2;33; +a33RH+~~~16BW~~+2B;;;;0178;-1-1;8345;;4;3;5;1;7293;;22;17;14;77;5;18;10;5;1;7;2;33; +a02ET#K7F~3A~~~+2;;;;4360;-1-1;-1-1;;4;3;5;1;7294;;22;17;14;77;5;18;10;5;1;7;2;33; +a01AT-X5~46BH2~+2F;;;;4216;5624;7839;;4;3;5;1;7295;;22;17;14;77;5;18;10;5;1;7;2;33; +*17BT+~~~~2C~~~-2;;;;4476;-1-1;-1-1;;4;3;5;1;7295;;22;17;14;77;5;18;10;5;1;7;2;33; +a07DT-~~~43DC~~+2F;;;;5884;5624;4337;;4;3;5;1;7296;;22;17;14;77;5;18;10;5;1;7;2;33; +a33EO-~~~~7B~~~+2;;;;3132;;;;4;3;5;1;7297;;22;17;14;77;5;18;10;5;1;7;2;33; +*18FH+~~~49D~~~-2B;;;;4031;;7028;;4;3;5;1;7300;;22;17;14;77;5;18;10;5;1;7;2;33; +*14ET#K1F~2C~~~-2;;;;4665;-1-1;-1-1;;4;3;5;1;7301;;22;17;14;77;5;18;10;5;1;7;2;33; +*77AT#X5~49CT2~-2F;;;;4616;-1-1;6421;;4;3;5;1;7302;;22;17;14;77;5;18;10;5;1;7;2;33; +*p13:14;;;;3679;-1-1;;;4;3;5;1;7303;;22;17;14;77;5;18;10;5;1;7;2;33; +*P14;;;;;;;;4;3;5;1;7329;;22;17;14;77;5;18;10;5;1;7;2;33; +*z3;;;;;;;;4;3;5;1;7329;;22;17;14;77;5;18;10;5;1;7;2;33; +aP02;;;;;;;;4;3;5;1;7329;;22;17;14;77;5;18;10;5;1;7;2;33; +az5;;;;;;;;4;3;5;1;7329;;22;17;14;77;5;18;10;5;1;7;2;33; +*22SH!~~~15B~~~-1;;;;-178;-1-1;8463;;4;3;5;1;7329;;22;17;14;77;5;18;10;5;1;7;2;33; +a33RH!~~~~5BW~~+1B;;;;-178;-1-1;8463;;4;3;5;1;7330;;22;17;14;77;5;18;10;5;1;7;2;33; +a02EQ#K1C~4A~~~+1;;;;4333;-1-1;-1-1;;4;3;5;1;7332;;22;17;14;77;5;18;10;5;1;7;2;33; +a07AQ+X1~39CT1~+1F;;;;4531;5533;6834;;4;3;5;1;7332;;22;17;14;77;5;18;10;5;1;7;2;33; +*17BQ-~~~~2C~~~-1;;;;4567;-1-1;-1-1;;4;3;5;1;7333;;22;17;14;77;5;18;10;5;1;7;2;33; +*17AO#~~~39DT0~-1F;;;;4459;-1-1;7135;;4;3;5;1;7333;;22;17;14;77;5;18;10;5;1;7;2;33; +*p14:14;;;;2965;-1-1;;;4;3;5;1;7334;;22;17;14;77;5;18;10;5;1;7;2;33; +*P14;;;;;;;;4;3;5;1;7451;;22;17;14;77;5;18;10;5;1;7;2;33; +*z3;;;;;;;;4;3;5;1;7451;;22;17;14;77;5;18;10;5;1;7;2;33; +aP02;;;;;;;;4;3;5;1;7451;;22;17;14;77;5;18;10;5;1;7;2;33; +az5;;;;;;;;4;3;5;1;7451;;22;17;14;77;5;18;10;5;1;7;2;33; +*22SH-~~~15B~~~00;;;;0375;-1-1;8075;;4;3;5;1;7451;;22;17;14;77;5;18;10;5;1;7;2;33; +a01RH+~~~15BM~~00F;;;;0375;-1-1;8075;;4;3;5;1;7452;;22;17;14;77;5;18;10;5;1;7;2;33; +a02ET#KMB~2D~~~00;;;;4367;-1-1;-1-1;;4;3;5;1;7454;;22;17;14;77;5;18;10;5;1;7;2;33; +a05AT-X6~29AH4~00F;;;;4284;-1-1;7314;;4;3;5;1;7455;;22;17;14;77;5;18;10;5;1;7;2;33; +*18DT#~~~29AS~~00B;;;;4284;-1-1;7314;;4;3;5;1;7456;;22;17;14;77;5;18;10;5;1;7;2;33; +*14EM#KMP~2D~~~00;;;;4276;-1-1;-1-1;;4;3;5;1;7457;;22;17;14;77;5;18;10;5;1;7;2;33; +*22AM-XP~88CH2~00B;;;;3246;5253;6758;;4;3;5;1;7458;;22;17;14;77;5;18;10;5;1;7;2;33; +a15BM+~~~~3C~~~00;;;;4847;-1-1;-1-1;;4;3;5;1;7458;;22;17;14;77;5;18;10;5;1;7;2;33; +a33DM+~~~88DB~~00B;;;;3246;5253;7658;;4;3;5;1;7459;;22;17;14;77;5;18;10;5;1;7;2;33; +a02EH#~~~~9C~~~00;;;;3381;-1-1;-1-1;;4;3;5;1;7461;;22;17;14;77;5;18;10;5;1;7;2;33; +a01AH#V5~42DT2~00F;;;;4528;-1-1;5730;;4;3;5;1;7463;;22;17;14;77;5;18;10;5;1;7;2;33; +*17DH=~~~42DS~~00F;;;;4528;-1-1;5730;;4;3;5;1;7464;;22;17;14;77;5;18;10;5;1;7;2;33; +ap14:15;;;;4367;-1-1;;;4;3;5;1;7464;;22;17;14;77;5;18;10;5;1;7;2;33; +ac02:34;;;;1010;-1-1;9090;;4;0;0;1;7490;; +ac05:04;;;;1010;-1-1;9090;;4;0;0;1;7490;; +ac07:15;;;;1010;-1-1;9527;;4;0;0;1;7490;; +aP34;;;;;;;;4;3;4;1;7490;;22;17;14;77;5;18;4;1;15;34;33;10; +az4;;;;;;;;4;3;4;1;7490;;22;17;14;77;5;18;4;1;15;34;33;10; +*P14;;;;;;;;4;3;4;1;7490;;22;17;14;77;5;18;4;1;15;34;33;10; +*z3;;;;;;;;4;3;4;1;7490;;22;17;14;77;5;18;4;1;15;34;33;10; +a04SM-~~~95B~~~+1;;;;0573;-1-1;8163;;4;3;4;1;7490;;22;17;14;77;5;18;4;1;15;34;33;10; +*01RM#~~~15BL~~-1B;;;;0573;-1-1;8163;;4;3;4;1;7491;;22;17;14;77;5;18;4;1;15;34;33;10; +*14EO#K2S~3C~~~-1;;;;4448;-1-1;-1-1;;4;3;4;1;7493;;22;17;14;77;5;18;4;1;15;34;33;10; +*14AO-PP~35B~~~-1F;;;;4448;-1-1;7967;;4;3;4;1;7493;;22;17;14;77;5;18;4;1;15;34;33;10; +a08DO#~~~35BS~~+1B;;;;4448;-1-1;7967;;4;3;4;1;7494;;22;17;14;77;5;18;4;1;15;34;33;10; +a04EH#K7F~8B~~~+1;;;;3457;-1-1;-1-1;;4;3;4;1;7495;;22;17;14;77;5;18;4;1;15;34;33;10; +a01AH#V5~47AH2~+1F;;;;4324;-1-1;7179;;4;3;4;1;7497;;22;17;14;77;5;18;4;1;15;34;33;10; +*01DH=~~~47AS~~-1B;;;;4324;-1-1;7179;;4;3;4;1;7497;;22;17;14;77;5;18;4;1;15;34;33;10; +ap14:16;;;;3107;-1-1;;;4;3;4;1;7499;;22;17;14;77;5;18;4;1;15;34;33;10; +aP34;;;;;;;;4;3;4;1;7517;;22;17;14;77;5;18;4;1;15;34;33;10; +az4;;;;;;;;4;3;4;1;7517;;22;17;14;77;5;18;4;1;15;34;33;10; +*P14;;;;;;;;4;3;4;1;7517;;22;17;14;77;5;18;4;1;15;34;33;10; +*z3;;;;;;;;4;3;4;1;7517;;22;17;14;77;5;18;4;1;15;34;33;10; +a04SM-~~~95B~~~+2;;;;0468;-1-1;7979;;4;3;4;1;7517;;22;17;14;77;5;18;4;1;15;34;33;10; +*77RM+~~~15BM~~-2F;;;;0468;-1-1;7979;;4;3;4;1;7518;;22;17;14;77;5;18;4;1;15;34;33;10; +*14EM#~~~~3D~~~-2;;;;4337;-1-1;-1-1;;4;3;4;1;7520;;22;17;14;77;5;18;4;1;15;34;33;10; +*22AM#XP~85CH3~-2B;;;;3350;-1-1;8785;;4;3;4;1;7521;;22;17;14;77;5;18;4;1;15;34;33;10; +*p15:16;;;;1315;-1-1;;;4;3;4;1;7521;;22;17;14;77;5;18;4;1;15;34;33;10; +ac34:02;;;;1010;-1-1;9629;;4;0;0;1;7540;; +*P14;;;;;;;;4;2;4;1;7540;;17;14;77;5;18;22;4;1;15;2;33;10; +*z2;;;;;;;;4;2;4;1;7540;;17;14;77;5;18;22;4;1;15;2;33;10; +aP02;;;;;;;;4;2;4;1;7540;;17;14;77;5;18;22;4;1;15;2;33;10; +az4;;;;;;;;4;2;4;1;7540;;17;14;77;5;18;22;4;1;15;2;33;10; +*01SM+~~~94A~~~-1;;;;0471;-1-1;6171;;4;2;4;1;7540;;17;14;77;5;18;22;4;1;15;2;33;10; +a01RM-~~~14AW~~+1F;;;;0471;-1-1;6171;;4;2;4;1;7541;;17;14;77;5;18;22;4;1;15;2;33;10; +a02EH#~~~~3C~~~+1;;;;4639;-1-1;-1-1;;4;2;4;1;7543;;17;14;77;5;18;22;4;1;15;2;33;10; +a33AH-VR~82DT4~+1B;;;;3239;-1-1;5723;;4;2;4;1;7544;;17;14;77;5;18;22;4;1;15;2;33;10; +*14DH+~~~82DS~~-1F;;;;3239;-1-1;5723;;4;2;4;1;7545;;17;14;77;5;18;22;4;1;15;2;33;10; +*01EH#~~~~8C~~~-1;;;;3150;-1-1;-1-1;;4;2;4;1;7547;;17;14;77;5;18;22;4;1;15;2;33;10; +*77AH#V5~49DH2~-1F;;;;4019;5625;7533;;4;2;4;1;7549;;17;14;77;5;18;22;4;1;15;2;33;10; +a15BH!~~~~2C~~~+1;;;;4475;-1-1;-1-1;;4;2;4;1;7549;;17;14;77;5;18;22;4;1;15;2;33;10; +a01DH=~~~43DB~~+1F;;;;4019;5625;5762;;4;2;4;1;7549;;17;14;77;5;18;22;4;1;15;2;33;10; +*p16:16;;;;2937;-1-1;;;4;2;4;1;7551;;17;14;77;5;18;22;4;1;15;2;33;10; +*P14;;;;;;;;4;2;4;1;7569;;17;14;77;5;18;22;4;1;15;2;33;10; +*z2;;;;;;;;4;2;4;1;7569;;17;14;77;5;18;22;4;1;15;2;33;10; +aP02;;;;;;;;4;2;4;1;7569;;17;14;77;5;18;22;4;1;15;2;33;10; +az4;;;;;;;;4;2;4;1;7569;;17;14;77;5;18;22;4;1;15;2;33;10; +*01SM=~~~96A~~~00;;;;0468;-1-1;9646;;4;2;4;1;7569;;17;14;77;5;18;22;4;1;15;2;33;10; +ap16:17;;;;0454;-1-1;;;4;2;4;1;7570;;17;14;77;5;18;22;4;1;15;2;33;10; +ac02:34;;;;1010;-1-1;9527;;4;0;0;1;7595;; +aP34;;;;;;;;4;2;3;1;7595;;17;14;77;5;18;22;1;15;34;33;10;4; +az3;;;;;;;;4;2;3;1;7595;;17;14;77;5;18;22;1;15;34;33;10;4; +*P14;;;;;;;;4;2;3;1;7595;;17;14;77;5;18;22;1;15;34;33;10;4; +*z2;;;;;;;;4;2;3;1;7595;;17;14;77;5;18;22;1;15;34;33;10;4; +a01SQ!~~~96B~~~+1;;;;0573;-1-1;7947;;4;2;3;1;7595;;17;14;77;5;18;22;1;15;34;33;10;4; +*18RQ!~~~16BM~~-1B;;;;0573;-1-1;7947;;4;2;3;1;7596;;17;14;77;5;18;22;1;15;34;33;10;4; +*14EQ#K1C~2D~~~-1;;;;4271;-1-1;-1-1;;4;2;3;1;7597;;17;14;77;5;18;22;1;15;34;33;10;4; +*05AQ/XM~38BT2~-1F;;;;4453;5549;6646;;4;2;3;1;7598;;17;14;77;5;18;22;1;15;34;33;10;4; +a34BQ#~~~~3B~~~+1;;;;4551;-1-1;-1-1;;4;2;3;1;7598;;17;14;77;5;18;22;1;15;34;33;10;4; +*05DQ=~~~33BC~~-1F;;;;5647;4551;5647;;4;2;3;1;7598;;17;14;77;5;18;22;1;15;34;33;10;4; +ap16:18;;;;4653;-1-1;;;4;2;3;1;7599;;17;14;77;5;18;22;1;15;34;33;10;4; +aP34;;;;;;;;4;2;3;1;7623;;17;14;77;5;18;22;1;15;34;33;10;4; +az3;;;;;;;;4;2;3;1;7623;;17;14;77;5;18;22;1;15;34;33;10;4; +*P14;;;;;;;;4;2;3;1;7623;;17;14;77;5;18;22;1;15;34;33;10;4; +*z2;;;;;;;;4;2;3;1;7623;;17;14;77;5;18;22;1;15;34;33;10;4; +a01SQ+~~~15B~~~+2;;;;0277;-1-1;7970;;4;2;3;1;7623;;17;14;77;5;18;22;1;15;34;33;10;4; +*77RQ-~~~15BL~~-2F;;;;0277;-1-1;7970;;4;2;3;1;7624;;17;14;77;5;18;22;1;15;34;33;10;4; +*14EH#K1P~8C~~~-2;;;;3243;-1-1;-1-1;;4;2;3;1;7625;;17;14;77;5;18;22;1;15;34;33;10;4; +*22AH#VB~87BH4~-2B;;;;3168;5664;6663;;4;2;3;1;7627;;17;14;77;5;18;22;1;15;34;33;10;4; +a33BH=~~~~4B~~~+2;;;;4436;-1-1;-1-1;;4;2;3;1;7627;;17;14;77;5;18;22;1;15;34;33;10;4; +*p17:18;;;;4584;-1-1;;;4;2;3;1;7628;;17;14;77;5;18;22;1;15;34;33;10;4; +*c18:10;;;;1010;-1-1;9625;;4;0;0;1;7646;; +*P14;;;;;;;;4;1;3;1;7646;;14;77;5;10;22;17;1;15;34;33;10;4; +*z1;;;;;;;;4;1;3;1;7646;;14;77;5;10;22;17;1;15;34;33;10;4; +aP34;;;;;;;;4;1;3;1;7646;;14;77;5;10;22;17;1;15;34;33;10;4; +az3;;;;;;;;4;1;3;1;7646;;14;77;5;10;22;17;1;15;34;33;10;4; +*14SM-~~~16B~~~-1;;;;0475;-1-1;7941;;4;1;3;1;7646;;14;77;5;10;22;17;1;15;34;33;10;4; +a04RM+~~~16BW~~+1B;;;;0475;-1-1;7941;;4;1;3;1;7647;;14;77;5;10;22;17;1;15;34;33;10;4; +a02EQ#K1C~2D~~~+1;;;;4363;-1-1;-1-1;;4;1;3;1;7649;;14;77;5;10;22;17;1;15;34;33;10;4; +a15AQ+XM~33AH4~+1F;;;;4344;-1-1;5740;;4;1;3;1;7649;;14;77;5;10;22;17;1;15;34;33;10;4; +*05DQ-~~~33AS~~-1F;;;;4344;-1-1;5740;;4;1;3;1;7650;;14;77;5;10;22;17;1;15;34;33;10;4; +*p18:18;;;;4758;-1-1;;;4;1;3;1;7650;;14;77;5;10;22;17;1;15;34;33;10;4; +*P14;;;;;;;;4;1;3;1;7668;;14;77;5;10;22;17;1;15;34;33;10;4; +*z1;;;;;;;;4;1;3;1;7668;;14;77;5;10;22;17;1;15;34;33;10;4; +aP34;;;;;;;;4;1;3;1;7668;;14;77;5;10;22;17;1;15;34;33;10;4; +az3;;;;;;;;4;1;3;1;7668;;14;77;5;10;22;17;1;15;34;33;10;4; +*14SM-~~~14A~~~00;;;;0576;-1-1;6178;;4;1;3;1;7668;;14;77;5;10;22;17;1;15;34;33;10;4; +a33RM+~~~14AW~~00F;;;;0576;-1-1;6178;;4;1;3;1;7669;;14;77;5;10;22;17;1;15;34;33;10;4; +a02EO#K1S~3C~~~00;;;;4446;-1-1;-1-1;;4;1;3;1;7670;;14;77;5;10;22;17;1;15;34;33;10;4; +a02AO-PP~36B~~~00M;;;;4446;5644;8040;;4;1;3;1;7670;;14;77;5;10;22;17;1;15;34;33;10;4; +*05BO+~~~~3B~~~00;;;;4456;-1-1;-1-1;;4;1;3;1;7671;;14;77;5;10;22;17;1;15;34;33;10;4; +*05DO+~~~33AB~~00F;;;;4446;5644;5744;;4;1;3;1;7671;;14;77;5;10;22;17;1;15;34;33;10;4; +*14EH#~~~~2D~~~00;;;;3964;-1-1;-1-1;;4;1;3;1;7672;;14;77;5;10;22;17;1;15;34;33;10;4; +*77AH#V5~49DH2~00F;;;;4015;5624;7534;;4;1;3;1;7674;;14;77;5;10;22;17;1;15;34;33;10;4; +a02BH!~~~~2C~~~00;;;;4476;-1-1;-1-1;;4;1;3;1;7674;;14;77;5;10;22;17;1;15;34;33;10;4; +a04DH=~~~49DB~~00B;;;;4015;5624;7428;;4;1;3;1;7675;;14;77;5;10;22;17;1;15;34;33;10;4; +*p19:18;;;;0229;-1-1;;;4;1;3;1;7676;;14;77;5;10;22;17;1;15;34;33;10;4; +*P14;;;;;;;;4;1;3;1;7694;;14;77;5;10;22;17;1;15;34;33;10;4; +*z1;;;;;;;;4;1;3;1;7694;;14;77;5;10;22;17;1;15;34;33;10;4; +aP34;;;;;;;;4;1;3;1;7694;;14;77;5;10;22;17;1;15;34;33;10;4; +az3;;;;;;;;4;1;3;1;7694;;14;77;5;10;22;17;1;15;34;33;10;4; +*14SM-~~~17B~~~+1;;;;0075;-1-1;6972;;4;1;3;1;7694;;14;77;5;10;22;17;1;15;34;33;10;4; +a33RM#~~~17BO~~-1F;;;;0075;-1-1;6972;;4;1;3;1;7696;;14;77;5;10;22;17;1;15;34;33;10;4; +a02ET#KBF~3D~~~-1;;;;4350;-1-1;-1-1;;4;1;3;1;7697;;14;77;5;10;22;17;1;15;34;33;10;4; +a33AT#X5~41CH2~-1F;;;;4218;-1-1;7922;;4;1;3;1;7698;;14;77;5;10;22;17;1;15;34;33;10;4; +*14DT=~~~41CS~~+1B;;;;4218;-1-1;7922;;4;1;3;1;7699;;14;77;5;10;22;17;1;15;34;33;10;4; +ap19:19;;;;1987;-1-1;;;4;1;3;1;7700;;14;77;5;10;22;17;1;15;34;33;10;4; +ac15:13;;;;1010;-1-1;9090;;4;0;0;1;7742;; +*c10:18;;;;1010;-1-1;9778;;4;0;0;1;7742;; +aP34;;;;;;;;4;1;2;1;7742;;14;77;5;18;22;17;13;34;33;10;4;1; +az2;;;;;;;;4;1;2;1;7742;;14;77;5;18;22;17;13;34;33;10;4;1; +*P14;;;;;;;;4;1;2;1;7742;;14;77;5;18;22;17;13;34;33;10;4;1; +*z1;;;;;;;;4;1;2;1;7742;;14;77;5;18;22;17;13;34;33;10;4;1; +a13SM-~~~59D~~~00;;;;0322;-1-1;7335;;4;1;2;1;7742;;14;77;5;18;22;17;13;34;33;10;4;1; +*01RM+~~~59DM~~00B;;;;0322;-1-1;7335;;4;1;2;1;7743;;14;77;5;18;22;17;13;34;33;10;4;1; +*14EM#K1P~3D~~~00;;;;4240;-1-1;-1-1;;4;1;2;1;7744;;14;77;5;18;22;17;13;34;33;10;4;1; +*22AM+XR~88CH4~00B;;;;3037;5447;6552;;4;1;2;1;7745;;14;77;5;18;22;17;13;34;33;10;4;1; +a10BM/~~~~3B~~~00;;;;4653;-1-1;-1-1;;4;1;2;1;7746;;14;77;5;18;22;17;13;34;33;10;4;1; +*01DM+~~~77AC~~00B;;;;7063;4653;7065;;4;1;2;1;7746;;14;77;5;18;22;17;13;34;33;10;4;1; +*14ET#~~~~9D~~~00;;;;2964;-1-1;-1-1;;4;1;2;1;7748;;14;77;5;18;22;17;13;34;33;10;4;1; +*77AT#X6~25BH2~00F;;;;4483;5577;7963;;4;1;2;1;7750;;14;77;5;18;22;17;13;34;33;10;4;1; +a10BT=~~~~4B~~~00;;;;4523;-1-1;-1-1;;4;1;2;1;7750;;14;77;5;18;22;17;13;34;33;10;4;1; +*p20:19;;;;4823;-1-1;;;4;1;2;1;7750;;14;77;5;18;22;17;13;34;33;10;4;1; +*c18:10;;;;1010;-1-1;9090;;4;0;0;1;7787;; +ac13:15;;;;1010;-1-1;9090;;4;0;0;1;7787;; +*c77:32;;;;1010;-1-1;9090;;4;0;0;1;7787;; +ac34:02;;;;1010;-1-1;10028;;4;0;0;1;7787;; +*P14;;;;;;;;4;6;2;1;7787;;32;5;10;22;17;14;15;2;33;10;4;1; +*z6;;;;;;;;4;6;2;1;7787;;32;5;10;22;17;14;15;2;33;10;4;1; +aP02;;;;;;;;4;6;2;1;7787;;32;5;10;22;17;14;15;2;33;10;4;1; +az2;;;;;;;;4;6;2;1;7787;;32;5;10;22;17;14;15;2;33;10;4;1; +*32SM-~~~95B~~~+1;;;;0072;-1-1;8072;;4;6;2;1;7787;;32;5;10;22;17;14;15;2;33;10;4;1; +a33RM+~~~15BM~~-1F;;;;0072;-1-1;8072;;4;6;2;1;7788;;32;5;10;22;17;14;15;2;33;10;4;1; +a02EQ#K7C~3A~~~-1;;;;4158;-1-1;-1-1;;4;6;2;1;7790;;32;5;10;22;17;14;15;2;33;10;4;1; +a10AQ#X1~38BT2~-1F;;;;4346;-1-1;6748;;4;6;2;1;7790;;32;5;10;22;17;14;15;2;33;10;4;1; +ap20:20;;;;3352;-1-1;;;4;6;2;1;7791;;32;5;10;22;17;14;15;2;33;10;4;1; +aP02;;;;;;;;4;6;1;1;7816;;32;5;10;22;17;14;2;33;10;4;1;15; +az1;;;;;;;;4;6;1;1;7816;;32;5;10;22;17;14;2;33;10;4;1;15; +*P14;;;;;;;;4;6;1;1;7816;;32;5;10;22;17;14;2;33;10;4;1;15; +*z6;;;;;;;;4;6;1;1;7816;;32;5;10;22;17;14;2;33;10;4;1;15; +a02SM-~~~18A~~~00;;;;0475;-1-1;7637;;4;6;1;1;7816;;32;5;10;22;17;14;2;33;10;4;1;15; +*01RM+~~~18AR~~00B;;;;0475;-1-1;7637;;4;6;1;1;7817;;32;5;10;22;17;14;2;33;10;4;1;15; +*14ET#K1B~3D~~~00;;;;4338;-1-1;-1-1;;4;6;1;1;7819;;32;5;10;22;17;14;2;33;10;4;1;15; +*10AT#X6~27AP4~00F;;;;4483;-1-1;7381;;4;6;1;1;7820;;32;5;10;22;17;14;2;33;10;4;1;15; +*p21:20;;;;2719;-1-1;;;4;6;1;1;7821;;32;5;10;22;17;14;2;33;10;4;1;15; +*P14;;;;;;;;4;5;1;1;7844;;5;10;22;17;14;32;2;33;10;4;1;15; +*z5;;;;;;;;4;5;1;1;7844;;5;10;22;17;14;32;2;33;10;4;1;15; +aP02;;;;;;;;4;5;1;1;7844;;5;10;22;17;14;32;2;33;10;4;1;15; +az1;;;;;;;;4;5;1;1;7844;;5;10;22;17;14;32;2;33;10;4;1;15; +*05ST-~~~66B~~~+1;;;;0450;-1-1;7948;;4;5;1;1;7844;;5;10;22;17;14;32;2;33;10;4;1;15; +a08RT#~~~66BM~~-1B;;;;0450;-1-1;7948;;4;5;1;1;7845;;5;10;22;17;14;32;2;33;10;4;1;15; +a02EQ#K1C~3B~~~-1;;;;4861;-1-1;-1-1;;4;5;1;1;7846;;5;10;22;17;14;32;2;33;10;4;1;15; +a10AQ-X1~34AT1~-1F;;;;4352;-1-1;6173;;4;5;1;1;7847;;5;10;22;17;14;32;2;33;10;4;1;15; +*22DQ#~~~34AS~~+1F;;;;4352;-1-1;6173;;4;5;1;1;7847;;5;10;22;17;14;32;2;33;10;4;1;15; +*14ET#~~~~3D~~~+1;;;;4138;-1-1;-1-1;;4;5;1;1;7849;;5;10;22;17;14;32;2;33;10;4;1;15; +*10AT#X6~26BH4~+1F;;;;4380;5567;7942;;4;5;1;1;7850;;5;10;22;17;14;32;2;33;10;4;1;15; +a10BT!~~~~4B~~~-1;;;;4533;-1-1;-1-1;;4;5;1;1;7850;;5;10;22;17;14;32;2;33;10;4;1;15; +a01DT=~~~26BB~~-1B;;;;4380;5567;7841;;4;5;1;1;7851;;5;10;22;17;14;32;2;33;10;4;1;15; +*p22:20;;;;0256;-1-1;;;4;5;1;1;7851;;5;10;22;17;14;32;2;33;10;4;1;15; +*P14;;;;;;;;4;5;1;1;7967;;5;10;22;17;14;32;2;33;10;4;1;15; +*z5;;;;;;;;4;5;1;1;7967;;5;10;22;17;14;32;2;33;10;4;1;15; +aP02;;;;;;;;4;5;1;1;7967;;5;10;22;17;14;32;2;33;10;4;1;15; +az1;;;;;;;;4;5;1;1;7967;;5;10;22;17;14;32;2;33;10;4;1;15; +*05ST-~~~68D~~~+2;;;;0254;-1-1;7451;;4;5;1;1;7967;;5;10;22;17;14;32;2;33;10;4;1;15; +a08RT#~~~68DM~~-2B;;;;0254;-1-1;7451;;4;5;1;1;7968;;5;10;22;17;14;32;2;33;10;4;1;15; +a02EM#K1P~3D~~~-2;;;;4348;-1-1;-1-1;;4;5;1;1;7970;;5;10;22;17;14;32;2;33;10;4;1;15; +a05AM#XR~82CP2~-2M;;;;4322;-1-1;5629;;4;5;1;1;7971;;5;10;22;17;14;32;2;33;10;4;1;15; +*17DM=~~~42CS~~+2F;;;;4322;-1-1;5629;;4;5;1;1;7972;;5;10;22;17;14;32;2;33;10;4;1;15; +ap22:21;;;;0337;-1-1;;;4;5;1;1;7973;;5;10;22;17;14;32;2;33;10;4;1;15; +aP02;;;;;;;;4;5;6;1;7993;;5;10;22;17;14;32;33;10;4;1;15;2; +az6;;;;;;;;4;5;6;1;7993;;5;10;22;17;14;32;33;10;4;1;15;2; +*P14;;;;;;;;4;5;6;1;7993;;5;10;22;17;14;32;33;10;4;1;15;2; +*z5;;;;;;;;4;5;6;1;7993;;5;10;22;17;14;32;33;10;4;1;15;2; +a33SM-~~~96B~~~-1;;;;0574;-1-1;8048;;4;5;6;1;7993;;5;10;22;17;14;32;33;10;4;1;15;2; +*32RM+~~~16BO~~+1B;;;;0574;-1-1;8048;;4;5;6;1;7994;;5;10;22;17;14;32;33;10;4;1;15;2; +*14ET#KMF~3A~~~+1;;;;4361;-1-1;-1-1;;4;5;6;1;7995;;5;10;22;17;14;32;33;10;4;1;15;2; +*22AT#X5~45BH2~+1F;;;;4422;-1-1;7772;;4;5;6;1;7996;;5;10;22;17;14;32;33;10;4;1;15;2; +*p23:21;;;;2328;-1-1;;;4;5;6;1;7997;;5;10;22;17;14;32;33;10;4;1;15;2; +*c10:19;;;;1010;-1-1;9946;;4;0;0;1;8017;; +*P14;;;;;;;;4;4;6;1;8017;;19;22;17;14;32;5;33;10;4;1;15;2; +*z4;;;;;;;;4;4;6;1;8017;;19;22;17;14;32;5;33;10;4;1;15;2; +aP02;;;;;;;;4;4;6;1;8017;;19;22;17;14;32;5;33;10;4;1;15;2; +az6;;;;;;;;4;4;6;1;8017;;19;22;17;14;32;5;33;10;4;1;15;2; +*19SM-~~~68A~~~+2;;;;0154;-1-1;7137;;4;4;6;1;8017;;19;22;17;14;32;5;33;10;4;1;15;2; +a33RM+~~~68AM~~-2B;;;;0154;-1-1;7137;;4;4;6;1;8018;;19;22;17;14;32;5;33;10;4;1;15;2; +a02ET#K2B~3A~~~-2;;;;4054;-1-1;-1-1;;4;4;6;1;8019;;19;22;17;14;32;5;33;10;4;1;15;2; +a05AT-X8~96BH2~-2M;;;;4787;5775;8342;;4;4;6;1;8021;;19;22;17;14;32;5;33;10;4;1;15;2; +*22BT+~~~~4A~~~+2;;;;4325;-1-1;-1-1;;4;4;6;1;8021;;19;22;17;14;32;5;33;10;4;1;15;2; +*14DT+~~~23AB~~+2F;;;;4787;5775;5744;;4;4;6;1;8022;;19;22;17;14;32;5;33;10;4;1;15;2; +*01EH#~~~~8D~~~+2;;;;2841;-1-1;-1-1;;4;4;6;1;8024;;19;22;17;14;32;5;33;10;4;1;15;2; +*22AH/V5~41CH2~+2F;;;;4417;5623;7933;;4;4;6;1;8025;;19;22;17;14;32;5;33;10;4;1;15;2; +a10BH#~~~~2C~~~-2;;;;4477;-1-1;-1-1;;4;4;6;1;8025;;19;22;17;14;32;5;33;10;4;1;15;2; +ap23:22;;;;4637;-1-1;;;4;4;6;1;8026;;19;22;17;14;32;5;33;10;4;1;15;2; +*c19:18;;;;1010;-1-1;9575;;4;0;0;1;8047;; +aP02;;;;;;;;4;4;5;1;8047;;18;22;17;14;32;5;10;4;1;15;2;33; +az5;;;;;;;;4;4;5;1;8047;;18;22;17;14;32;5;10;4;1;15;2;33; +*P14;;;;;;;;4;4;5;1;8047;;18;22;17;14;32;5;10;4;1;15;2;33; +*z4;;;;;;;;4;4;5;1;8047;;18;22;17;14;32;5;10;4;1;15;2;33; +a08SM!~~~57A~~~-1;;;;0525;-1-1;7565;;4;4;5;1;8047;;18;22;17;14;32;5;10;4;1;15;2;33; +*32RM!~~~57AM~~+1B;;;;0525;-1-1;7565;;4;4;5;1;8048;;18;22;17;14;32;5;10;4;1;15;2;33; +*14ET#K1F~3A~~~+1;;;;3861;-1-1;-1-1;;4;4;5;1;8050;;18;22;17;14;32;5;10;4;1;15;2;33; +*22AT+X5~42DH2~+1F;;;;4318;-1-1;5724;;4;4;5;1;8051;;18;22;17;14;32;5;10;4;1;15;2;33; +a05DT-~~~42DS~~-1M;;;;4318;-1-1;5724;;4;4;5;1;8051;;18;22;17;14;32;5;10;4;1;15;2;33; +ap23:23;;;;2478;-1-1;;;4;4;5;1;8052;;18;22;17;14;32;5;10;4;1;15;2;33; +aP02;;;;;;;;4;4;5;1;8072;;18;22;17;14;32;5;10;4;1;15;2;33; +az5;;;;;;;;4;4;5;1;8072;;18;22;17;14;32;5;10;4;1;15;2;33; +*P14;;;;;;;;4;4;5;1;8072;;18;22;17;14;32;5;10;4;1;15;2;33; +*z4;;;;;;;;4;4;5;1;8072;;18;22;17;14;32;5;10;4;1;15;2;33; +a08SM+~~~56C~~~00;;;;0425;-1-1;8159;;4;4;5;1;8072;;18;22;17;14;32;5;10;4;1;15;2;33; +*32RM-~~~56CM~~00B;;;;0425;-1-1;8159;;4;4;5;1;8073;;18;22;17;14;32;5;10;4;1;15;2;33; +*14ET#K1F~9C~~~00;;;;3271;-1-1;-1-1;;4;4;5;1;8075;;18;22;17;14;32;5;10;4;1;15;2;33; +*22AT-X5~41CP2~00F;;;;4424;-1-1;8528;;4;4;5;1;8076;;18;22;17;14;32;5;10;4;1;15;2;33; +a33DT#~~~41CS~~00B;;;;4424;-1-1;8528;;4;4;5;1;8077;;18;22;17;14;32;5;10;4;1;15;2;33; +a02EH#~~~~8B~~~00;;;;3554;-1-1;-1-1;;4;4;5;1;8078;;18;22;17;14;32;5;10;4;1;15;2;33; +a01AH#V5~47AH2~00F;;;;4317;-1-1;7174;;4;4;5;1;8080;;18;22;17;14;32;5;10;4;1;15;2;33; +*01DH=~~~47AS~~00B;;;;4317;-1-1;7174;;4;4;5;1;8080;;18;22;17;14;32;5;10;4;1;15;2;33; +ap23:24;;;;3287;-1-1;;;4;4;5;1;8082;;18;22;17;14;32;5;10;4;1;15;2;33; +aP02;;;;;;;;4;4;5;1;8187;;18;22;17;14;32;5;10;4;1;15;2;33; +az5;;;;;;;;4;4;5;1;8187;;18;22;17;14;32;5;10;4;1;15;2;33; +*P14;;;;;;;;4;4;5;1;8187;;18;22;17;14;32;5;10;4;1;15;2;33; +*z4;;;;;;;;4;4;5;1;8187;;18;22;17;14;32;5;10;4;1;15;2;33; +a08SM+~~~57A~~~+1;;;;0225;-1-1;7468;;4;4;5;1;8187;;18;22;17;14;32;5;10;4;1;15;2;33; +*32RM-~~~57AM~~-1B;;;;0225;-1-1;7468;;4;4;5;1;8188;;18;22;17;14;32;5;10;4;1;15;2;33; +*14ET#K2F~9D~~~-1;;;;2672;-1-1;-1-1;;4;4;5;1;8190;;18;22;17;14;32;5;10;4;1;15;2;33; +*22AT=X5~45CH2~-1F;;;;4323;-1-1;8387;;4;4;5;1;8191;;18;22;17;14;32;5;10;4;1;15;2;33; +ap23:25;;;;1713;-1-1;;;4;4;5;1;8192;;18;22;17;14;32;5;10;4;1;15;2;33; +**4set;;;;;;;;5;4;5;1;8192;;18;22;17;14;32;5;10;4;1;15;2;33; +aP02>LUp;;;;;;;;5;6;1;1;8435;;32;5;10;22;17;14;2;33;10;5;1;15; +az1>LUp;;;;;;;;5;6;1;1;8435;;32;5;10;22;17;14;2;33;10;5;1;15; +*P14>LUp;;;;;;;;5;6;1;1;8435;;32;5;10;22;17;14;2;33;10;5;1;15; +*z6>LUp;;;;;;;;5;6;1;1;8435;;32;5;10;22;17;14;2;33;10;5;1;15; +a02SM+~~~91C~~~00;;;;0373;-1-1;8131;;5;6;1;1;8435;;32;5;10;22;17;14;2;33;10;5;1;15; +*32RM-~~~11CO~~00B;;;;0373;-1-1;8131;;5;6;1;1;8436;;32;5;10;22;17;14;2;33;10;5;1;15; +*14EH#~~~~9B~~~00;;;;3588;-1-1;-1-1;;5;6;1;1;8438;;32;5;10;22;17;14;2;33;10;5;1;15; +*22AH-V5~46BH2~00F;;;;4227;5633;7742;;5;6;1;1;8439;;32;5;10;22;17;14;2;33;10;5;1;15; +a33BH+~~~~2C~~~00;;;;4467;-1-1;-1-1;;5;6;1;1;8439;;32;5;10;22;17;14;2;33;10;5;1;15; +*32DH-~~~43DC~~00B;;;;5873;4467;6057;;5;6;1;1;8440;;32;5;10;22;17;14;2;33;10;5;1;15; +a33FH#~~~89C~~~00F;;;;3043;;6736;;5;6;1;1;8444;;32;5;10;22;17;14;2;33;10;5;1;15; +a02ET#K1F~3B~~~00;;;;4553;-1-1;-1-1;;5;6;1;1;8446;;32;5;10;22;17;14;2;33;10;5;1;15; +a05AT-X5~46CH4~00F;;;;4318;-1-1;8056;;5;6;1;1;8447;;32;5;10;22;17;14;2;33;10;5;1;15; +*32DT#~~~46CS~~00B;;;;4318;-1-1;8056;;5;6;1;1;8448;;32;5;10;22;17;14;2;33;10;5;1;15; +*14ET#~~~~2D~~~00;;;;4368;-1-1;-1-1;;5;6;1;1;8450;;32;5;10;22;17;14;2;33;10;5;1;15; +*22AT#X5~45DH2~00F;;;;4322;-1-1;9886;;5;6;1;1;8451;;32;5;10;22;17;14;2;33;10;5;1;15; +*p01:00;;;;0214;-1-1;;;5;6;1;1;8452;;32;5;10;22;17;14;2;33;10;5;1;15; +*P14;;;;;;;;5;5;1;1;8474;;5;10;22;17;14;32;2;33;10;5;1;15; +*z5;;;;;;;;5;5;1;1;8474;;5;10;22;17;14;32;2;33;10;5;1;15; +aP02;;;;;;;;5;5;1;1;8474;;5;10;22;17;14;32;2;33;10;5;1;15; +az1;;;;;;;;5;5;1;1;8474;;5;10;22;17;14;32;2;33;10;5;1;15; +*05ST-~~~61C~~~+1;;;;0054;-1-1;8336;;5;5;1;1;8474;;5;10;22;17;14;32;2;33;10;5;1;15; +a33RT+~~~61CL~~-1F;;;;0054;-1-1;8336;;5;5;1;1;8475;;5;10;22;17;14;32;2;33;10;5;1;15; +a02EQ#KMC~3A~~~-1;;;;4162;-1-1;-1-1;;5;5;1;1;8477;;5;10;22;17;14;32;2;33;10;5;1;15; +a10AQ-X7~46BH1~-1F;;;;4539;-1-1;8646;;5;5;1;1;8477;;5;10;22;17;14;32;2;33;10;5;1;15; +*32DQ+~~~36BS~~+1B;;;;4539;-1-1;8646;;5;5;1;1;8478;;5;10;22;17;14;32;2;33;10;5;1;15; +*14ET#~~~~9C~~~+1;;;;3164;-1-1;-1-1;;5;5;1;1;8479;;5;10;22;17;14;32;2;33;10;5;1;15; +*22AT#X5~41CH2~+1F;;;;4218;5521;7827;;5;5;1;1;8480;;5;10;22;17;14;32;2;33;10;5;1;15; +a10BT=~~~~2C~~~-1;;;;4579;-1-1;-1-1;;5;5;1;1;8480;;5;10;22;17;14;32;2;33;10;5;1;15; +*p02:00;;;;0308;-1-1;;;5;5;1;1;8482;;5;10;22;17;14;32;2;33;10;5;1;15; +*P14;;;;;;;;5;5;1;1;8501;;5;10;22;17;14;32;2;33;10;5;1;15; +*z5;;;;;;;;5;5;1;1;8501;;5;10;22;17;14;32;2;33;10;5;1;15; +aP02;;;;;;;;5;5;1;1;8501;;5;10;22;17;14;32;2;33;10;5;1;15; +az1;;;;;;;;5;5;1;1;8501;;5;10;22;17;14;32;2;33;10;5;1;15; +*05ST#~~~91C~~~+2;;;;0458;-1-1;8124;;5;5;1;1;8501;;5;10;22;17;14;32;2;33;10;5;1;15; +a33RT=~~~61CR~~-2F;;;;0458;-1-1;8124;;5;5;1;1;8503;;5;10;22;17;14;32;2;33;10;5;1;15; +*p03:00;;;;2193;-1-1;;;5;5;1;1;8504;;5;10;22;17;14;32;2;33;10;5;1;15; +*P14;;;;;;;;5;5;1;1;8630;;5;10;22;17;14;32;2;33;10;5;1;15; +*z5;;;;;;;;5;5;1;1;8630;;5;10;22;17;14;32;2;33;10;5;1;15; +aP02;;;;;;;;5;5;1;1;8630;;5;10;22;17;14;32;2;33;10;5;1;15; +az1;;;;;;;;5;5;1;1;8630;;5;10;22;17;14;32;2;33;10;5;1;15; +*05ST-~~~66C~~~+3;;;;0554;-1-1;8152;;5;5;1;1;8630;;5;10;22;17;14;32;2;33;10;5;1;15; +a08RT+~~~66CM~~-3B;;;;0554;-1-1;8152;;5;5;1;1;8631;;5;10;22;17;14;32;2;33;10;5;1;15; +a02EQ#KMC~2D~~~-3;;;;4264;-1-1;-1-1;;5;5;1;1;8632;;5;10;22;17;14;32;2;33;10;5;1;15; +a10AQ#X1~32DH1~-3F;;;;4352;-1-1;6023;;5;5;1;1;8633;;5;10;22;17;14;32;2;33;10;5;1;15; +ap03:01;;;;4077;-1-1;;;5;5;1;1;8633;;5;10;22;17;14;32;2;33;10;5;1;15; +aP02;;;;;;;;5;5;6;1;8654;;5;10;22;17;14;32;33;10;5;1;15;2; +az6;;;;;;;;5;5;6;1;8654;;5;10;22;17;14;32;33;10;5;1;15;2; +*P14;;;;;;;;5;5;6;1;8654;;5;10;22;17;14;32;33;10;5;1;15;2; +*z5;;;;;;;;5;5;6;1;8654;;5;10;22;17;14;32;33;10;5;1;15;2; +a33SQ+~~~15B~~~-2;;;;0475;-1-1;7766;;5;5;6;1;8654;;5;10;22;17;14;32;33;10;5;1;15;2; +*22RQ-~~~15BR~~+2F;;;;0475;-1-1;7766;;5;5;6;1;8655;;5;10;22;17;14;32;33;10;5;1;15;2; +*32EO#~~~~1C~~~+2;;;;1664;-1-1;-1-1;;5;5;6;1;8656;;5;10;22;17;14;32;33;10;5;1;15;2; +*22AO-~~~76CP0~+2F;;;;3032;-1-1;8162;;5;5;6;1;8658;;5;10;22;17;14;32;33;10;5;1;15;2; +a08DO#~~~76CS~~-2B;;;;3032;-1-1;8162;;5;5;6;1;8659;;5;10;22;17;14;32;33;10;5;1;15;2; +a02ET#K1F~3D~~~-2;;;;4346;-1-1;-1-1;;5;5;6;1;8660;;5;10;22;17;14;32;33;10;5;1;15;2; +a01AT-X5~46BH4~-2F;;;;4112;5727;7747;;5;5;6;1;8661;;5;10;22;17;14;32;33;10;5;1;15;2; +*17BT+~~~~2D~~~+2;;;;4373;-1-1;-1-1;;5;5;6;1;8662;;5;10;22;17;14;32;33;10;5;1;15;2; +*32DT+~~~46CB~~+2B;;;;4112;5727;8053;;5;5;6;1;8662;;5;10;22;17;14;32;33;10;5;1;15;2; +*14ET#~~~~9D~~~+2;;;;2971;-1-1;-1-1;;5;5;6;1;8664;;5;10;22;17;14;32;33;10;5;1;15;2; +*22AT/X5~46BH2~+2F;;;;4313;5724;7840;;5;5;6;1;8665;;5;10;22;17;14;32;33;10;5;1;15;2; +a10BT#~~~~2D~~~-2;;;;4376;-1-1;-1-1;;5;5;6;1;8666;;5;10;22;17;14;32;33;10;5;1;15;2; +ap03:02;;;;4079;-1-1;;;5;5;6;1;8666;;5;10;22;17;14;32;33;10;5;1;15;2; +aP02;;;;;;;;5;5;6;1;8688;;5;10;22;17;14;32;33;10;5;1;15;2; +az6;;;;;;;;5;5;6;1;8688;;5;10;22;17;14;32;33;10;5;1;15;2; +*P14;;;;;;;;5;5;6;1;8688;;5;10;22;17;14;32;33;10;5;1;15;2; +*z5;;;;;;;;5;5;6;1;8688;;5;10;22;17;14;32;33;10;5;1;15;2; +a33SQ-~~~96C~~~-1;;;;0067;-1-1;8155;;5;5;6;1;8688;;5;10;22;17;14;32;33;10;5;1;15;2; +*32RQ+~~~16CO~~+1B;;;;0067;-1-1;8155;;5;5;6;1;8689;;5;10;22;17;14;32;33;10;5;1;15;2; +*14ET#KMB~3A~~~+1;;;;4362;-1-1;-1-1;;5;5;6;1;8690;;5;10;22;17;14;32;33;10;5;1;15;2; +*10AT#X6~25BH1~+1F;;;;4381;-1-1;8071;;5;5;6;1;8691;;5;10;22;17;14;32;33;10;5;1;15;2; +*p04:02;;;;2029;-1-1;;;5;5;6;1;8692;;5;10;22;17;14;32;33;10;5;1;15;2; +*c10:19;;;;1010;-1-1;9726;;5;0;0;1;8711;; +*P14;;;;;;;;5;4;6;1;8711;;19;22;17;14;32;5;33;10;5;1;15;2; +*z4;;;;;;;;5;4;6;1;8711;;19;22;17;14;32;5;33;10;5;1;15;2; +aP02;;;;;;;;5;4;6;1;8711;;19;22;17;14;32;5;33;10;5;1;15;2; +az6;;;;;;;;5;4;6;1;8711;;19;22;17;14;32;5;33;10;5;1;15;2; +*19SM-~~~99D~~~+2;;;;0374;-1-1;7635;;5;4;6;1;8711;;19;22;17;14;32;5;33;10;5;1;15;2; +a33RM+~~~19DL~~-2B;;;;0374;-1-1;7635;;5;4;6;1;8712;;19;22;17;14;32;5;33;10;5;1;15;2; +a02ET#K1B~3A~~~-2;;;;4359;-1-1;-1-1;;5;4;6;1;8713;;19;22;17;14;32;5;33;10;5;1;15;2; +a05AT#X6~21CH4~-2F;;;;4385;-1-1;7924;;5;4;6;1;8714;;19;22;17;14;32;5;33;10;5;1;15;2; +*19DT=~~~21CS~~+2B;;;;4385;-1-1;7924;;5;4;6;1;8715;;19;22;17;14;32;5;33;10;5;1;15;2; +ap04:03;;;;2687;-1-1;;;5;4;6;1;8716;;19;22;17;14;32;5;33;10;5;1;15;2; +*c19:18;;;;1010;-1-1;9981;;5;0;0;1;8734;; +aP02;;;;;;;;5;4;5;1;8734;;18;22;17;14;32;5;10;5;1;15;2;33; +az5;;;;;;;;5;4;5;1;8734;;18;22;17;14;32;5;10;5;1;15;2;33; +*P14;;;;;;;;5;4;5;1;8734;;18;22;17;14;32;5;10;5;1;15;2;33; +*z4;;;;;;;;5;4;5;1;8734;;18;22;17;14;32;5;10;5;1;15;2;33; +a08SM-~~~55B~~~-1;;;;0119;-1-1;7766;;5;4;5;1;8734;;18;22;17;14;32;5;10;5;1;15;2;33; +*01RM+~~~55BL~~+1B;;;;0119;-1-1;7766;;5;4;5;1;8735;;18;22;17;14;32;5;10;5;1;15;2;33; +*14EN#KSC~2D~~~+1;;;;4167;-1-1;-1-1;;5;4;5;1;8736;;18;22;17;14;32;5;10;5;1;15;2;33; +*17AN-CF~26BP1~+1F;;;;4188;-1-1;8043;;5;4;5;1;8737;;18;22;17;14;32;5;10;5;1;15;2;33; +a33DN#~~~26BS~~-1B;;;;4188;-1-1;8043;;5;4;5;1;8738;;18;22;17;14;32;5;10;5;1;15;2;33; +a02ET#K1F~2C~~~-1;;;;4464;-1-1;-1-1;;5;4;5;1;8740;;18;22;17;14;32;5;10;5;1;15;2;33; +a01AT-X5~41CT2~-1F;;;;4422;5625;8032;;5;4;5;1;8741;;18;22;17;14;32;5;10;5;1;15;2;33; +*17BT+~~~~2C~~~+1;;;;4475;-1-1;-1-1;;5;4;5;1;8741;;18;22;17;14;32;5;10;5;1;15;2;33; +*22DT+~~~43AB~~+1F;;;;4422;5625;6339;;5;4;5;1;8742;;18;22;17;14;32;5;10;5;1;15;2;33; +*14ET#~~~~8B~~~+1;;;;3252;-1-1;-1-1;;5;4;5;1;8744;;18;22;17;14;32;5;10;5;1;15;2;33; +*22AT/X5~41CT2~+1F;;;;4127;5831;7736;;5;4;5;1;8745;;18;22;17;14;32;5;10;5;1;15;2;33; +a05BT#~~~~2D~~~-1;;;;4269;-1-1;-1-1;;5;4;5;1;8746;;18;22;17;14;32;5;10;5;1;15;2;33; +*01DT=~~~44BC~~+1B;;;;5973;4269;5678;;5;4;5;1;8746;;18;22;17;14;32;5;10;5;1;15;2;33; +ap04:04;;;;3720;-1-1;;;5;4;5;1;8747;;18;22;17;14;32;5;10;5;1;15;2;33; +aP02;;;;;;;;5;4;5;1;8765;;18;22;17;14;32;5;10;5;1;15;2;33; +az5;;;;;;;;5;4;5;1;8765;;18;22;17;14;32;5;10;5;1;15;2;33; +*P14;;;;;;;;5;4;5;1;8765;;18;22;17;14;32;5;10;5;1;15;2;33; +*z4;;;;;;;;5;4;5;1;8765;;18;22;17;14;32;5;10;5;1;15;2;33; +a08SM-~~~56B~~~00;;;;0118;-1-1;7940;;5;4;5;1;8765;;18;22;17;14;32;5;10;5;1;15;2;33; +*01RM+~~~56BM~~00B;;;;0118;-1-1;7940;;5;4;5;1;8766;;18;22;17;14;32;5;10;5;1;15;2;33; +*14EQ#K1C~3D~~~00;;;;4350;-1-1;-1-1;;5;4;5;1;8768;;18;22;17;14;32;5;10;5;1;15;2;33; +*17AQ#X1~37AT4~00F;;;;4236;-1-1;7168;;5;4;5;1;8768;;18;22;17;14;32;5;10;5;1;15;2;33; +*p05:04;;;;2932;-1-1;;;5;4;5;1;8769;;18;22;17;14;32;5;10;5;1;15;2;33; +*c32:77;;;;1010;-1-1;10125;;5;0;0;1;8808;; +*P14;;;;;;;;5;3;5;1;8808;;22;17;14;77;5;18;10;5;1;15;2;33; +*z3;;;;;;;;5;3;5;1;8808;;22;17;14;77;5;18;10;5;1;15;2;33; +aP02;;;;;;;;5;3;5;1;8808;;22;17;14;77;5;18;10;5;1;15;2;33; +az5;;;;;;;;5;3;5;1;8808;;22;17;14;77;5;18;10;5;1;15;2;33; +*22SH!~~~16B~~~+1;;;;-175;-1-1;8042;;5;3;5;1;8808;;22;17;14;77;5;18;10;5;1;15;2;33; +a33RH!~~~~6BR~~-1B;;;;-175;-1-1;8042;;5;3;5;1;8810;;22;17;14;77;5;18;10;5;1;15;2;33; +a02ET#K7F~2D~~~-1;;;;3963;-1-1;-1-1;;5;3;5;1;8811;;22;17;14;77;5;18;10;5;1;15;2;33; +a01AT+X5~42DH2~-1F;;;;4128;-1-1;6032;;5;3;5;1;8813;;22;17;14;77;5;18;10;5;1;15;2;33; +*17DT-~~~42DS~~+1F;;;;4128;-1-1;6032;;5;3;5;1;8813;;22;17;14;77;5;18;10;5;1;15;2;33; +a05FH-~~~22D~~~-1F;;;;4068;;5724;;5;3;5;1;8814;;22;17;14;77;5;18;10;5;1;15;2;33; +*18FH+~~~89D~~~+1B;;;;3551;;7028;;5;3;5;1;8818;;22;17;14;77;5;18;10;5;1;15;2;33; +*14EQ#K1C~3A~~~+1;;;;4261;-1-1;-1-1;;5;3;5;1;8820;;22;17;14;77;5;18;10;5;1;15;2;33; +*17AQ#XM~31CH2~+1F;;;;4149;-1-1;7728;;5;3;5;1;8820;;22;17;14;77;5;18;10;5;1;15;2;33; +*p06:04;;;;2372;-1-1;;;5;3;5;1;8821;;22;17;14;77;5;18;10;5;1;15;2;33; +*P14;;;;;;;;5;3;5;1;8836;;22;17;14;77;5;18;10;5;1;15;2;33; +*z3;;;;;;;;5;3;5;1;8836;;22;17;14;77;5;18;10;5;1;15;2;33; +aP02;;;;;;;;5;3;5;1;8836;;22;17;14;77;5;18;10;5;1;15;2;33; +az5;;;;;;;;5;3;5;1;8836;;22;17;14;77;5;18;10;5;1;15;2;33; +*22SH!~~~99D~~~+2;;;;-171;-1-1;7335;;5;3;5;1;8836;;22;17;14;77;5;18;10;5;1;15;2;33; +a08RH!~~~~9DW~~-2B;;;;-171;-1-1;7335;;5;3;5;1;8837;;22;17;14;77;5;18;10;5;1;15;2;33; +a02ET#K7F~3C~~~-2;;;;4548;-1-1;-1-1;;5;3;5;1;8838;;22;17;14;77;5;18;10;5;1;15;2;33; +a01AT-X5~49DT2~-2F;;;;4319;-1-1;7034;;5;3;5;1;8839;;22;17;14;77;5;18;10;5;1;15;2;33; +*18DT#~~~49DS~~+2B;;;;4319;-1-1;7034;;5;3;5;1;8840;;22;17;14;77;5;18;10;5;1;15;2;33; +*14EM#K2P~3A~~~+2;;;;4158;-1-1;-1-1;;5;3;5;1;8842;;22;17;14;77;5;18;10;5;1;15;2;33; +*22AM#XP~88CH4~+2B;;;;3241;5755;6760;;5;3;5;1;8843;;22;17;14;77;5;18;10;5;1;15;2;33; +a01BM=~~~~3D~~~-2;;;;4345;-1-1;-1-1;;5;3;5;1;8843;;22;17;14;77;5;18;10;5;1;15;2;33; +*p07:04;;;;2913;-1-1;;;5;3;5;1;8844;;22;17;14;77;5;18;10;5;1;15;2;33; +*P14;;;;;;;;5;3;5;1;8861;;22;17;14;77;5;18;10;5;1;15;2;33; +*z3;;;;;;;;5;3;5;1;8861;;22;17;14;77;5;18;10;5;1;15;2;33; +aP02;;;;;;;;5;3;5;1;8861;;22;17;14;77;5;18;10;5;1;15;2;33; +az5;;;;;;;;5;3;5;1;8861;;22;17;14;77;5;18;10;5;1;15;2;33; +*22SH!~~~16C~~~+3;;;;-176;-1-1;7861;;5;3;5;1;8861;;22;17;14;77;5;18;10;5;1;15;2;33; +a33RH!~~~~6CW~~-3B;;;;-176;-1-1;7861;;5;3;5;1;8863;;22;17;14;77;5;18;10;5;1;15;2;33; +a02ET#KMB~2D~~~-3;;;;3766;-1-1;-1-1;;5;3;5;1;8864;;22;17;14;77;5;18;10;5;1;15;2;33; +a05AT-X6~25BH2~-3F;;;;4486;5580;7966;;5;3;5;1;8865;;22;17;14;77;5;18;10;5;1;15;2;33; +*17BT+~~~~4B~~~+3;;;;4520;-1-1;-1-1;;5;3;5;1;8866;;22;17;14;77;5;18;10;5;1;15;2;33; +*22DT#~~~26CB~~+3B;;;;4486;5580;8250;;5;3;5;1;8866;;22;17;14;77;5;18;10;5;1;15;2;33; +*14EQ#K1C~3A~~~+3;;;;3752;-1-1;-1-1;;5;3;5;1;8868;;22;17;14;77;5;18;10;5;1;15;2;33; +*17AQ#X7~48CH3~+3F;;;;4435;5346;6659;;5;3;5;1;8868;;22;17;14;77;5;18;10;5;1;15;2;33; +a01BQ=~~~~3B~~~-3;;;;4754;-1-1;-1-1;;5;3;5;1;8868;;22;17;14;77;5;18;10;5;1;15;2;33; +*p08:04;;;;4248;-1-1;;;5;3;5;1;8869;;22;17;14;77;5;18;10;5;1;15;2;33; +*P14;;;;;;;;5;3;5;1;9008;;22;17;14;77;5;18;10;5;1;15;2;33; +*z3;;;;;;;;5;3;5;1;9008;;22;17;14;77;5;18;10;5;1;15;2;33; +aP02;;;;;;;;5;3;5;1;9008;;22;17;14;77;5;18;10;5;1;15;2;33; +az5;;;;;;;;5;3;5;1;9008;;22;17;14;77;5;18;10;5;1;15;2;33; +*22SH+~~~91D~~~+4;;;;0272;-1-1;9828;;5;3;5;1;9008;;22;17;14;77;5;18;10;5;1;15;2;33; +a33RH-~~~11DO~~-4B;;;;0272;-1-1;9828;;5;3;5;1;9009;;22;17;14;77;5;18;10;5;1;15;2;33; +a02ET#~~~~9D~~~-4;;;;2866;-1-1;-1-1;;5;3;5;1;9011;;22;17;14;77;5;18;10;5;1;15;2;33; +a05AT+X6~22DH2~-4F;;;;4381;-1-1;5719;;5;3;5;1;9012;;22;17;14;77;5;18;10;5;1;15;2;33; +*17BT-~~~~4B~~~+4;;;;4526;-1-1;-1-1;;5;3;5;1;9013;;22;17;14;77;5;18;10;5;1;15;2;33; +a15AO#~~~22CP0~-4F;;;;4669;-1-1;5431;;5;3;5;1;9013;;22;17;14;77;5;18;10;5;1;15;2;33; +ap08:05;;;;2253;-1-1;7847;;5;3;5;1;9014;;22;17;14;77;5;18;10;5;1;15;2;33; +ac02:07;;;;1010;-1-1;9090;;5;0;0;1;9051;; +ac05:04;;;;1010;-1-1;9090;;5;0;0;1;9051;; +ac01:34;;;;1010;-1-1;9725;;5;0;0;1;9051;; +aP07;;;;;;;;5;3;4;1;9051;;22;17;14;77;5;18;4;34;15;7;33;10; +az4;;;;;;;;5;3;4;1;9051;;22;17;14;77;5;18;4;34;15;7;33;10; +*P14;;;;;;;;5;3;4;1;9051;;22;17;14;77;5;18;4;34;15;7;33;10; +*z3;;;;;;;;5;3;4;1;9051;;22;17;14;77;5;18;4;34;15;7;33;10; +a04SM/~~~17A~~~-3;;;;0375;-1-1;7466;;5;3;4;1;9051;;22;17;14;77;5;18;4;34;15;7;33;10; +*01RM/~~~17AW~~+3B;;;;0375;-1-1;7466;;5;3;4;1;9053;;22;17;14;77;5;18;4;34;15;7;33;10; +a33FH+~~~41C~~~-3B;;;;4421;;7826;;5;3;4;1;9056;;22;17;14;77;5;18;4;34;15;7;33;10; +a04ET#~~~~2D~~~-3;;;;4268;-1-1;-1-1;;5;3;4;1;9057;;22;17;14;77;5;18;4;34;15;7;33;10; +a15AT#X6~29CH2~-3F;;;;4479;-1-1;6523;;5;3;4;1;9059;;22;17;14;77;5;18;4;34;15;7;33;10; +ap08:06;;;;3577;-1-1;;;5;3;4;1;9059;;22;17;14;77;5;18;4;34;15;7;33;10; +aP07;;;;;;;;5;3;4;1;9079;;22;17;14;77;5;18;4;34;15;7;33;10; +az4;;;;;;;;5;3;4;1;9079;;22;17;14;77;5;18;4;34;15;7;33;10; +*P14;;;;;;;;5;3;4;1;9079;;22;17;14;77;5;18;4;34;15;7;33;10; +*z3;;;;;;;;5;3;4;1;9079;;22;17;14;77;5;18;4;34;15;7;33;10; +a04SM-~~~95B~~~-2;;;;0574;-1-1;7870;;5;3;4;1;9079;;22;17;14;77;5;18;4;34;15;7;33;10; +*01RM#~~~15BM~~+2B;;;;0574;-1-1;7870;;5;3;4;1;9080;;22;17;14;77;5;18;4;34;15;7;33;10; +*14ET#K1F~3C~~~+2;;;;4650;-1-1;-1-1;;5;3;4;1;9082;;22;17;14;77;5;18;4;34;15;7;33;10; +*77AT#X5~41BH4~+2F;;;;4417;5616;8014;;5;3;4;1;9083;;22;17;14;77;5;18;4;34;15;7;33;10; +a15BT=~~~~2B~~~-2;;;;4484;-1-1;-1-1;;5;3;4;1;9083;;22;17;14;77;5;18;4;34;15;7;33;10; +*p09:06;;;;4013;-1-1;;;5;3;4;1;9084;;22;17;14;77;5;18;4;34;15;7;33;10; +ac07:02;;;;1010;-1-1;9731;;5;0;0;1;9102;; +*P14;;;;;;;;5;2;4;1;9102;;17;14;77;5;18;22;4;34;15;2;33;10; +*z2;;;;;;;;5;2;4;1;9102;;17;14;77;5;18;22;4;34;15;2;33;10; +aP02;;;;;;;;5;2;4;1;9102;;17;14;77;5;18;22;4;34;15;2;33;10; +az4;;;;;;;;5;2;4;1;9102;;17;14;77;5;18;22;4;34;15;2;33;10; +*01SM-~~~99D~~~+3;;;;0369;-1-1;7531;;5;2;4;1;9102;;17;14;77;5;18;22;4;34;15;2;33;10; +a34RM+~~~19DM~~-3F;;;;0369;-1-1;7531;;5;2;4;1;9103;;17;14;77;5;18;22;4;34;15;2;33;10; +a04EN#KSC~3A~~~-3;;;;4162;-1-1;-1-1;;5;2;4;1;9105;;17;14;77;5;18;22;4;34;15;2;33;10; +a15AN-CF~29DH2~-3F;;;;4481;-1-1;7531;;5;2;4;1;9106;;17;14;77;5;18;22;4;34;15;2;33;10; +*18DN#~~~29DS~~+3B;;;;4481;-1-1;7531;;5;2;4;1;9106;;17;14;77;5;18;22;4;34;15;2;33;10; +*14EQ#KMC~2C~~~+3;;;;4570;-1-1;-1-1;;5;2;4;1;9108;;17;14;77;5;18;22;4;34;15;2;33;10; +*05AQ-XM~38CT2~+3F;;;;4353;5554;6555;;5;2;4;1;9108;;17;14;77;5;18;22;4;34;15;2;33;10; +a15BQ+~~~~3C~~~-3;;;;4546;-1-1;-1-1;;5;2;4;1;9109;;17;14;77;5;18;22;4;34;15;2;33;10; +a08DQ+~~~37BB~~-3B;;;;4353;5554;6677;;5;2;4;1;9109;;17;14;77;5;18;22;4;34;15;2;33;10; +a15EH#~~~~8C~~~-3;;;;3147;-1-1;-1-1;;5;2;4;1;9111;;17;14;77;5;18;22;4;34;15;2;33;10; +a33AH=VR~81BH0~-3B;;;;3027;-1-1;8107;;5;2;4;1;9112;;17;14;77;5;18;22;4;34;15;2;33;10; +*p10:06;;;;1993;-1-1;;;5;2;4;1;9113;;17;14;77;5;18;22;4;34;15;2;33;10; +*P14;;;;;;;;5;2;4;1;9132;;17;14;77;5;18;22;4;34;15;2;33;10; +*z2;;;;;;;;5;2;4;1;9132;;17;14;77;5;18;22;4;34;15;2;33;10; +aP02;;;;;;;;5;2;4;1;9132;;17;14;77;5;18;22;4;34;15;2;33;10; +az4;;;;;;;;5;2;4;1;9132;;17;14;77;5;18;22;4;34;15;2;33;10; +*01SM-~~~98D~~~+4;;;;0369;-1-1;7662;;5;2;4;1;9132;;17;14;77;5;18;22;4;34;15;2;33;10; +a08RM+~~~18DL~~-4B;;;;0369;-1-1;7662;;5;2;4;1;9133;;17;14;77;5;18;22;4;34;15;2;33;10; +a04EM#KBP~3A~~~-4;;;;4153;-1-1;-1-1;;5;2;4;1;9134;;17;14;77;5;18;22;4;34;15;2;33;10; +a33AM#XP~83BH4~-4B;;;;3344;-1-1;5347;;5;2;4;1;9135;;17;14;77;5;18;22;4;34;15;2;33;10; +ap10:07;;;;4753;-1-1;;;5;2;4;1;9136;;17;14;77;5;18;22;4;34;15;2;33;10; +ac02:07;;;;1010;-1-1;9732;;5;0;0;1;9162;; +aP07;;;;;;;;5;2;3;1;9162;;17;14;77;5;18;22;34;15;7;33;10;4; +az3;;;;;;;;5;2;3;1;9162;;17;14;77;5;18;22;34;15;7;33;10;4; +*P14;;;;;;;;5;2;3;1;9162;;17;14;77;5;18;22;34;15;7;33;10;4; +*z2;;;;;;;;5;2;3;1;9162;;17;14;77;5;18;22;34;15;7;33;10;4; +a34SM=~~~95A~~~-3;;;;0368;-1-1;9669;;5;2;3;1;9162;;17;14;77;5;18;22;34;15;7;33;10;4; +*p11:07;;;;0431;-1-1;;;5;2;3;1;9163;;17;14;77;5;18;22;34;15;7;33;10;4; +ac07:02;;;;1010;-1-1;9090;;5;0;0;1;9183;; +*c18:10;;;;1010;-1-1;9725;;5;0;0;1;9183;; +*P14;;;;;;;;5;1;3;1;9183;;14;77;5;10;22;17;34;15;2;33;10;4; +*z1;;;;;;;;5;1;3;1;9183;;14;77;5;10;22;17;34;15;2;33;10;4; +aP02;;;;;;;;5;1;3;1;9183;;14;77;5;10;22;17;34;15;2;33;10;4; +az3;;;;;;;;5;1;3;1;9183;;14;77;5;10;22;17;34;15;2;33;10;4; +*14SM+~~~11C~~~+4;;;;0375;-1-1;8131;;5;1;3;1;9183;;14;77;5;10;22;17;34;15;2;33;10;4; +a34RM-~~~11CR~~-4B;;;;0375;-1-1;8131;;5;1;3;1;9184;;14;77;5;10;22;17;34;15;2;33;10;4; +a02EO#~~~~3D~~~-4;;;;3747;-1-1;-1-1;;5;1;3;1;9185;;14;77;5;10;22;17;34;15;2;33;10;4; +a33AO+~~~46CH2~-4F;;;;4322;5431;7851;;5;1;3;1;9186;;14;77;5;10;22;17;34;15;2;33;10;4; +*05BO-~~~~2C~~~+4;;;;4669;-1-1;-1-1;;5;1;3;1;9186;;14;77;5;10;22;17;34;15;2;33;10;4; +*01DO-~~~47AB~~+4B;;;;4322;5431;7674;;5;1;3;1;9187;;14;77;5;10;22;17;34;15;2;33;10;4; +*05AO#~~~31CT1~+4F;;;;4338;5535;7830;;5;1;3;1;9188;;14;77;5;10;22;17;34;15;2;33;10;4; +a15BO=~~~~2C~~~-4;;;;4565;-1-1;-1-1;;5;1;3;1;9189;;14;77;5;10;22;17;34;15;2;33;10;4; +*p12:07;;;;3278;-1-1;;;5;1;3;1;9190;;14;77;5;10;22;17;34;15;2;33;10;4; +*P14;;;;;;;;5;1;3;1;9301;;14;77;5;10;22;17;34;15;2;33;10;4; +*z1;;;;;;;;5;1;3;1;9301;;14;77;5;10;22;17;34;15;2;33;10;4; +aP02;;;;;;;;5;1;3;1;9301;;14;77;5;10;22;17;34;15;2;33;10;4; +az3;;;;;;;;5;1;3;1;9301;;14;77;5;10;22;17;34;15;2;33;10;4; +*14SM-~~~11C~~~+5;;;;0281;-1-1;7934;;5;1;3;1;9301;;14;77;5;10;22;17;34;15;2;33;10;4; +a34RM+~~~11CL~~-5B;;;;0281;-1-1;7934;;5;1;3;1;9302;;14;77;5;10;22;17;34;15;2;33;10;4; +a04ET#K2F~3A~~~-5;;;;4251;-1-1;-1-1;;5;1;3;1;9304;;14;77;5;10;22;17;34;15;2;33;10;4; +a33AT-X5~41BH4~-5F;;;;4417;5617;7917;;5;1;3;1;9305;;14;77;5;10;22;17;34;15;2;33;10;4; +*05BT+~~~~2B~~~+5;;;;4483;-1-1;-1-1;;5;1;3;1;9305;;14;77;5;10;22;17;34;15;2;33;10;4; +*22DT#~~~46CB~~+5B;;;;4417;5617;7760;;5;1;3;1;9306;;14;77;5;10;22;17;34;15;2;33;10;4; +*14ET#K1F~3C~~~+5;;;;4439;-1-1;-1-1;;5;1;3;1;9308;;14;77;5;10;22;17;34;15;2;33;10;4; +*17AT#X0~76BH2~+5B;;;;4412;5419;8039;;5;1;3;1;9309;;14;77;5;10;22;17;34;15;2;33;10;4; +a15BT=~~~~2C~~~-5;;;;4681;-1-1;-1-1;;5;1;3;1;9309;;14;77;5;10;22;17;34;15;2;33;10;4; +*p13:07;;;;3183;-1-1;;;5;1;3;1;9309;;14;77;5;10;22;17;34;15;2;33;10;4; +*P14;;;;;;;;5;1;3;1;9326;;14;77;5;10;22;17;34;15;2;33;10;4; +*z1;;;;;;;;5;1;3;1;9326;;14;77;5;10;22;17;34;15;2;33;10;4; +aP02;;;;;;;;5;1;3;1;9326;;14;77;5;10;22;17;34;15;2;33;10;4; +az3;;;;;;;;5;1;3;1;9326;;14;77;5;10;22;17;34;15;2;33;10;4; +*14SM-~~~18D~~~+6;;;;0381;-1-1;7552;;5;1;3;1;9326;;14;77;5;10;22;17;34;15;2;33;10;4; +a34RM+~~~18DW~~-6B;;;;0381;-1-1;7552;;5;1;3;1;9327;;14;77;5;10;22;17;34;15;2;33;10;4; +a02ET#K2F~3A~~~-6;;;;4355;-1-1;-1-1;;5;1;3;1;9329;;14;77;5;10;22;17;34;15;2;33;10;4; +a33AT-X5~46CH4~-6F;;;;4518;5426;8153;;5;1;3;1;9330;;14;77;5;10;22;17;34;15;2;33;10;4; +*05BT+~~~~2C~~~+6;;;;4674;-1-1;-1-1;;5;1;3;1;9330;;14;77;5;10;22;17;34;15;2;33;10;4; +*77DT+~~~43DB~~+6F;;;;4518;5426;6059;;5;1;3;1;9330;;14;77;5;10;22;17;34;15;2;33;10;4; +*01EO-~~~~4D~~~+6;;;;4315;;;;5;1;3;1;9332;;14;77;5;10;22;17;34;15;2;33;10;4; +a02FH+~~~29D~~~-6F;;;;4284;;7425;;5;1;3;1;9335;;14;77;5;10;22;17;34;15;2;33;10;4; +a04ET#K1F~2D~~~-6;;;;4065;-1-1;-1-1;;5;1;3;1;9337;;14;77;5;10;22;17;34;15;2;33;10;4; +a33AT=X5~41DH2~-6F;;;;4321;-1-1;9625;;5;1;3;1;9338;;14;77;5;10;22;17;34;15;2;33;10;4; +*p14:07;;;;0475;-1-1;;;5;1;3;1;9338;;14;77;5;10;22;17;34;15;2;33;10;4; +*P14;;;;;;;;5;1;3;1;9358;;14;77;5;10;22;17;34;15;2;33;10;4; +*z1;;;;;;;;5;1;3;1;9358;;14;77;5;10;22;17;34;15;2;33;10;4; +aP02;;;;;;;;5;1;3;1;9358;;14;77;5;10;22;17;34;15;2;33;10;4; +az3;;;;;;;;5;1;3;1;9358;;14;77;5;10;22;17;34;15;2;33;10;4; +*14SM+~~~16B~~~+7;;;;0179;-1-1;7740;;5;1;3;1;9358;;14;77;5;10;22;17;34;15;2;33;10;4; +a34RM-~~~16BR~~-7B;;;;0179;-1-1;7740;;5;1;3;1;9359;;14;77;5;10;22;17;34;15;2;33;10;4; +a08EH#~~~~5B~~~-7;;;;1726;-1-1;-1-1;;5;1;3;1;9360;;14;77;5;10;22;17;34;15;2;33;10;4; +a33AH-V5~49CT3~-7F;;;;4219;-1-1;6423;;5;1;3;1;9362;;14;77;5;10;22;17;34;15;2;33;10;4; +*14DH+~~~49CS~~+7B;;;;4219;-1-1;6423;;5;1;3;1;9363;;14;77;5;10;22;17;34;15;2;33;10;4; +*01EH#~~~~8C~~~+7;;;;3440;-1-1;-1-1;;5;1;3;1;9364;;14;77;5;10;22;17;34;15;2;33;10;4; +*22AH-VP~81CH2~+7B;;;;3249;-1-1;7930;;5;1;3;1;9366;;14;77;5;10;22;17;34;15;2;33;10;4; +a34DH#~~~81CS~~-7B;;;;3249;-1-1;7930;;5;1;3;1;9367;;14;77;5;10;22;17;34;15;2;33;10;4; +a04ET#KSF~3A~~~-7;;;;3961;-1-1;-1-1;;5;1;3;1;9368;;14;77;5;10;22;17;34;15;2;33;10;4; +a33AT#X5~45BH2~-7F;;;;4316;-1-1;7879;;5;1;3;1;9370;;14;77;5;10;22;17;34;15;2;33;10;4; +ap14:08;;;;2221;-1-1;;;5;1;3;1;9370;;14;77;5;10;22;17;34;15;2;33;10;4; +ac15:09;;;;1010;-1-1;9090;;5;0;0;1;9394;; +ac02:07;;;;1010;-1-1;9727;;5;0;0;1;9394;; +aP07;;;;;;;;5;1;2;1;9394;;14;77;5;10;22;17;9;7;33;10;4;34; +az2;;;;;;;;5;1;2;1;9394;;14;77;5;10;22;17;9;7;33;10;4;34; +*P14;;;;;;;;5;1;2;1;9394;;14;77;5;10;22;17;9;7;33;10;4;34; +*z1;;;;;;;;5;1;2;1;9394;;14;77;5;10;22;17;9;7;33;10;4;34; +a09SM-~~~95B~~~-6;;;;0373;-1-1;7767;;5;1;2;1;9394;;14;77;5;10;22;17;9;7;33;10;4;34; +*01RM+~~~15BM~~+6B;;;;0373;-1-1;7767;;5;1;2;1;9396;;14;77;5;10;22;17;9;7;33;10;4;34; +*14ET#K1B~3D~~~+6;;;;4344;-1-1;-1-1;;5;1;2;1;9397;;14;77;5;10;22;17;9;7;33;10;4;34; +*77AT/X6~25BH4~+6F;;;;4381;5579;7974;;5;1;2;1;9398;;14;77;5;10;22;17;9;7;33;10;4;34; +a33BT#~~~~4B~~~-6;;;;4521;-1-1;-1-1;;5;1;2;1;9398;;14;77;5;10;22;17;9;7;33;10;4;34; +ap14:09;;;;4152;-1-1;;;5;1;2;1;9399;;14;77;5;10;22;17;9;7;33;10;4;34; +aP07;;;;;;;;5;1;2;1;9416;;14;77;5;10;22;17;9;7;33;10;4;34; +az2;;;;;;;;5;1;2;1;9416;;14;77;5;10;22;17;9;7;33;10;4;34; +*P14;;;;;;;;5;1;2;1;9416;;14;77;5;10;22;17;9;7;33;10;4;34; +*z1;;;;;;;;5;1;2;1;9416;;14;77;5;10;22;17;9;7;33;10;4;34; +a09SQ=~~~92C~~~-5;;;;0571;-1-1;4863;;5;1;2;1;9416;;14;77;5;10;22;17;9;7;33;10;4;34; +*p15:09;;;;4863;-1-1;;;5;1;2;1;9417;;14;77;5;10;22;17;9;7;33;10;4;34; +**5set;;;;;;;;6;1;2;1;9417;;14;77;5;10;22;17;9;7;33;10;4;34; diff --git a/datavolley/filtering.py b/datavolley/filtering.py index 957f24fe..1a2ddf81 100644 --- a/datavolley/filtering.py +++ b/datavolley/filtering.py @@ -1,33 +1,64 @@ +"""module to filtering actions""" import pandas as pd # Filtering - - - # Aim: find attacks after perfect or good reception +def filteringattack(plays): + """ + Filters the plays DataFrame to include only attacking plays during the reception phase + with perfect or positive reception quality, and calculates the kill rate for each team. -def filteringAttack(plays): - filtered_plays = plays[(plays['skill'] == 'Attack') & (plays['point_phase'] == 'Reception') & (plays['reception_quality'].str.contains('Perfect|Positive'))] - result = filtered_plays.groupby('team')['evaluation'].apply(lambda x: (x == 'Winning attack').mean()).reset_index(name='kill_rate') - print(result) - + Parameters: + plays (DataFrame): A pandas DataFrame containing play-by-play data. + Returns: + DataFrame: A pandas DataFrame with the kill rate for each team. + """ + filtered_plays = plays[(plays['skill'] == 'Attack') &\ + (plays['point_phase'] == 'Reception') &\ + (plays['reception_quality'].str.contains('Perfect|Positive'))] + result = filtered_plays.groupby('team')['evaluation'].\ + apply(lambda x: (x == 'Winning attack').mean()).reset_index(name='kill_rate') + return(result) #Aim: find rows corresponding to the first transition attack #opportunity in each rally (i.e. after the receiving team has attacked, find the first attack by the serving team). +def firsttransattack(plays): + """ + Identifies the first transition attack opportunity + in each rally, i.e., the first attack by the serving team + after the receiving team has attacked. + + Parameters: + plays (DataFrame): A pandas DataFrame containing play-by-play data. -def firstTransAttack(plays): - reception_phase = plays[plays['skill'] == "Reception"].groupby(['match_id', 'rally_number']).agg(possesion_number=('possesion_number', 'min')).reset_index() + Returns: + DataFrame: A pandas DataFrame with an additional column + 'is_fta' indicating if the row corresponds to the first + transition attack opportunity in each rally. + + The function performs the following steps: + 1. Filters the plays DataFrame to find the reception phase for each rally. + 2. Increments the possession number to identify the first transition attack. + 3. Merges this information back into the original plays DataFrame. + 4. Adds a column 'is_fta' to indicate the first transition attack. + 5. Prints the count of True and False values in the 'is_fta' column. + + Example: + plays_with_fta = firsttransattack(plays) + """ + reception_phase = \ + plays[plays['skill'] == "Reception"]\ + .groupby(['match_id', 'rally_number'])\ + .agg(possesion_number=('possesion_number', 'min')).reset_index() reception_phase['possesion_number'] += 1 reception_phase['is_fta'] = True - - - plays = pd.merge(plays, reception_phase[['match_id', 'rally_number', 'possesion_number', 'is_fta']], on=['match_id', 'rally_number', 'possesion_number'], how='left') + plays = pd.merge(plays, \ + reception_phase[['match_id', 'rally_number',\ + 'possesion_number', 'is_fta']],\ + on=['match_id', 'rally_number', 'possesion_number'], how='left') plays['is_fta'] = plays['is_fta'].fillna(False) - # Stampare il conteggio dei valori True e False nella colonna is_fta - print("Count of True values in is_fta:", plays['is_fta'].sum()) - print("Count of False values in is_fta:", (~plays['is_fta']).sum()) - - return plays - \ No newline at end of file + #print("Count of True values in is_fta:", plays['is_fta'].sum()) + #print("Count of False values in is_fta:", (~plays['is_fta']).sum()) + return plays \ No newline at end of file diff --git a/datavolley/get_players_from_md.py b/datavolley/get_players_from_md.py index d476ae79..e2d6aa0a 100644 --- a/datavolley/get_players_from_md.py +++ b/datavolley/get_players_from_md.py @@ -1,11 +1,54 @@ -def read_players(meta_data, team_name, H_or_V): +"""Read players""" +def read_players(meta_data, team_name, h_or_v): + """ + Reads player information from the given metadata and processes it for the specified team. + + Parameters: + meta_data (DataFrame): A pandas DataFrame containing metadata. + team_name (str): The name of the team. + h_or_v (str): A string indicating if the team is Home ('H') or Visitor ('V'). + + Returns: + DataFrame: + A pandas DataFrame with player information + including player number, player ID, player name, and team name. + + The function performs the following steps: + 1. Filters the meta_data for the specified team's players. + 2. Renames the columns based on a predefined mapping. + 3. Trims whitespace from the nickname, firstname, and lastname columns. + 4. Replaces NA values in nickname, firstname, and lastname columns with empty strings. + 5. Creates a new 'player_name' column by concatenating firstname and lastname. + 6. Replaces empty player names with "Unnamed player" followed by a sequence number. + 7. Trims whitespace from specific columns. + 8. Replaces NA values in the 'foreign' column with False. + 9. Converts the 'player_number' column to string and renames it to 'number'. + 10. Adds the team name to the DataFrame. + + Example: + team_players = read_players(meta_data, "Team A", "H") + """ columns_to_rename = { - 1: "player_number", 3: "starting_position_set1", 4: "starting_position_set2", 5: "starting_position_set3", - 6: "starting_position_set4", 7: "starting_position_set5", 8: "player_id", 9: "lastname", - 10: "firstname", 11: "nickname", 12: "special_role", 13: "role", 14: "foreign" + 1: "player_number", + 3: "starting_position_set1", + 4: "starting_position_set2", + 5: "starting_position_set3", + 6: "starting_position_set4", + 7: "starting_position_set5", + 8: "player_id", + 9: "lastname", + 10: "firstname", + 11: "nickname", + 12: "special_role", + 13: "role", + 14: "foreign" } - team_players = meta_data[(meta_data['meta_group'] == f'3PLAYERS-{H_or_V}') & (meta_data[0] != f'[3PLAYERS-{H_or_V}]\n')][0].str.split(';', expand = True) - team_players.columns = [columns_to_rename[col] if col in columns_to_rename else col for col in team_players.columns] + team_players = \ + meta_data[(meta_data['meta_group'] == f'3PLAYERS-{h_or_v}') &\ + (meta_data[0] != f'[3PLAYERS-{h_or_v}]\n')][0].str.split(';', expand = True) + team_players.columns = [columns_to_rename[col]\ + if col in columns_to_rename\ + else col for col in team_players.columns] # Trim whitespace from nickname, firstname, and lastname team_players['nickname'] = team_players['nickname'].str.strip() @@ -22,16 +65,20 @@ def read_players(meta_data, team_name, H_or_V): team_players['lastname'] = team_players['lastname'].str.strip() # Create a new 'name' column by concatenating firstname and lastname with a space separator - team_players['player_name'] = team_players['firstname'] + ' ' + team_players['lastname'] - + team_players['player_name'] = \ + team_players['firstname'] + ' ' + team_players['lastname'] idx = team_players[team_players['player_name'].apply(lambda x: not bool(x))].index - # If there are such indices, replace 'name' with "Unnamed player" followed by a sequence number if len(idx) > 0: - team_players.loc[idx, 'player_name'] = ["Unnamed player " + str(i + 1) for i in range(len(idx))] + team_players.loc[idx, 'player_name'] = ["Unnamed player "\ + + str(i + 1) for i in range(len(idx))] - # Trim whitespace from 'player_id', 'starting_position_set1', 'starting_position_set2', 'starting_position_set3', 'starting_position_set4', 'starting_position_set5' - columns_to_trim = ['player_id', 'starting_position_set1', 'starting_position_set2', 'starting_position_set3', 'starting_position_set4', 'starting_position_set5'] + # Trim whitespace from 'player_id', 'starting_position_set1', + # 'starting_position_set2', 'starting_position_set3', + # 'starting_position_set4', 'starting_position_set5' + columns_to_trim =\ + ['player_id', 'starting_position_set1', 'starting_position_set2',\ + 'starting_position_set3', 'starting_position_set4', 'starting_position_set5'] team_players[columns_to_trim] = team_players[columns_to_trim].apply(lambda x: x.str.strip()) # Replace NA values in 'foreign' with False @@ -41,5 +88,6 @@ def read_players(meta_data, team_name, H_or_V): team_players['number'] = team_players['player_number'].astype(str) team_players['team'] = team_name - team_players = team_players[['player_number', 'player_id', 'player_name', 'team']] - return team_players \ No newline at end of file + team_players = team_players[['player_number',\ + 'player_id', 'player_name', 'team']] + return team_players diff --git a/datavolley/helpers.py b/datavolley/helpers.py index 979a39c3..e64e318a 100644 --- a/datavolley/helpers.py +++ b/datavolley/helpers.py @@ -1,9 +1,33 @@ +"""Helpers to support read_dv.py""" import pandas as pd import numpy as np # Function to extract teams def get_teams(rows_list): - # Find the index of [3TEAMS] + """ + Extracts and returns the home team and visiting team from the provided list of rows. + + Args: + rows_list (list of str): A list of strings where each string is a line from a file. + + Returns: + tuple: A tuple containing two elements: + - home_team (str): The name of the home team. + - visiting_team (str): The name of the visiting team. + + Example: + rows_list = [ + "Some other data\n", + "[3TEAMS]\n", + "Home Team Name\n", + "Visiting Team Name\n", + "Some more data\n" + ] + home_team, visiting_team = get_teams(rows_list) + print(home_team) # Output: Home Team Name + print(visiting_team) # Output: Visiting Team Name + """ + # Find the index of [3TEAMS] teams_index = rows_list.index('[3TEAMS]\n') # Extract home_team and visiting_team home_team = rows_list[teams_index + 1].strip() @@ -35,28 +59,120 @@ def get_setter_calls(rows_list): return setter_calls def get_match(rows_list): + """ + Extracts match data from the provided list of rows + and returns it as an instance of Match_data class. + + Args: + rows_list (list of str): A list of strings where + each string is a line from a file. + + Returns: + Match_data: An instance of the Match_data + class containing match details. + + The Match_data class has the following attributes: + - day (str): The day of the match. + - season (str): The season in which the match is played. + - time (str): The time of the match. + - championship (str): The championship name. + + Example: + rows_list = [ + "Some other data\n", + "[3MATCH]\n", + "2024-06-22;18:00;2024;Championship Name\n", + "Some more data\n" + ] + match_data = get_match(rows_list) + print(match_data.day) # Output: 2024-06-22 + print(match_data.time) # Output: 18:00 + print(match_data.season) # Output: 2024 + print(match_data.championship) # Output: Championship Name + """ # Find the index of [3MATCH] - # this is the class returned to avoid the use of a dataframe to extract the information - class Match_data: - day = "" - season = "" - time = "" - championship = "" + class Matchdata: + """ + A class to represent match data. + + Attributes: + day (str): The day of the match. + season (str): The season in which the match is played. + time (str): The time of the match. + championship (str): The championship name. + """ + + def __init__(self, day="", season="", time="", championship=""): + """ + Initialize the Matchdata object with day, season, time, and championship. + """ + self.day = day + self.season = season + self.time = time + self.championship = championship + def get_match_info(self): + """ + Returns a summary of the match data. + + Returns: + str: A string containing the match information. + """ + return f"{self.day} {self.time}, {self.championship}, {self.season}" + def is_match_today(self, current_day): + """ + Check if the match is scheduled for today. + + Args: + current_day (str): The current day. + + Returns: + bool: True if the match is today, False otherwise. + """ + return self.day == current_day - match_data = Match_data() match_index = rows_list.index('[3MATCH]\n') match_row = rows_list[match_index + 1].strip().split(";") - match_data.day = match_row[0] - match_data.time = match_row[1] - match_data.season = match_row[2] - match_data.championship = match_row[3] + match_data = Matchdata(match_row[0],match_row[2],match_row[1],match_row[3]) return match_data def get_set(rows_list): + """ + Extracts set data from the provided list of rows and returns it as a pandas DataFrame. + + Args: + rows_list (list of str): A list of strings where each string is a line from a file. + + Returns: + pandas.DataFrame: A DataFrame containing the set data with the following columns: + - set (int): The set number. + - home1 (int or NA): Home team score in the 1st quarter. + - visitor1 (int or NA): Visitor team score in the 1st quarter. + - home2 (int or NA): Home team score in the 2nd quarter. + - visitor2 (int or NA): Visitor team score in the 2nd quarter. + - home3 (int or NA): Home team score in the 3rd quarter. + - visitor3 (int or NA): Visitor team score in the 3rd quarter. + - home4 (int or NA): Home team score in the 4th quarter. + - visitor4 (int or NA): Visitor team score in the 4th quarter. + - duration (int or NA): Duration of the set. + + Example: + rows_list = [ + "Some other data\n", + "[3SET]\n", + "25-23;20-25;25-20;25-18;15-12\n", + "Some more data\n" + ] + df = get_set(rows_list) + print(df) + """ sets_index = rows_list.index('[3SET]\n') sets_data = [] - sets_label = ["set","home1","visitor1","home2","visitor2","home3","visitor3", "home4", "visitor4", "duration"] + sets_label = ["set","home1",\ + "visitor1","home2",\ + "visitor2","home3",\ + "visitor3", "home4",\ + "visitor4", "duration"] for idx in range(1,6): rowdata = rows_list[sets_index + idx].strip().split(";") set_data = [] @@ -71,30 +187,56 @@ def get_set(rows_list): set_data.append(int(rowdata[3].split("-")[1])) #3st quarter set IDX visitor set_data.append(int(rowdata[4].split("-")[0])) #4st quarter set IDX home set_data.append(int(rowdata[4].split("-")[1]))#4st quarter set IDX visitor - except Exception as e: - for notidx in range(9): + except ValueError: + for _ in range(9): set_data.append(pd.NA) #add quarter set NAN add = False - if (add): + if add: set_data.append(int(rowdata[5])) sets_data.append(set_data) df = pd.DataFrame(data=sets_data,columns=sets_label) contains_any_nan = df.isna().any().any() - if (contains_any_nan): + if contains_any_nan: df_cleaned = df.dropna(subset=[col for col in df.columns if col != 'set'], how='all') - cols_to_convert = ['home1', 'visitor1', 'home2', 'visitor2', 'home3', 'visitor3', 'home4', 'visitor4', 'duration'] + cols_to_convert = ['home1', 'visitor1',\ + 'home2', 'visitor2',\ + 'home3', 'visitor3',\ + 'home4', 'visitor4', 'duration'] for col in cols_to_convert: df_cleaned.loc[:, col] = pd.to_numeric(df_cleaned[col], errors='coerce').astype('Int64') df = df_cleaned - return(df) + return df # get player number out of code def calculate_skill(row): + """ + Extracts the skill code from the 'code' field + if the 'player_number' field is not NaN. + + Args: + row (pd.Series): + A pandas Series object representing a row + of data with 'player_number' and 'code' fields. + + Returns: + str or float: + The skill code extracted from the 'code' field + (fourth character) if 'player_number' is not NaN. + Returns NaN if 'player_number' is NaN. + + Example: + row = pd.Series({'player_number': 7, 'code': 'ABC1XYZ'}) + skill = calculate_skill(row) + print(skill) # Output: 1 + + row_with_nan = pd.Series({'player_number': np.nan, 'code': 'ABC1XYZ'}) + skill = calculate_skill(row_with_nan) + print(skill) # Output: nan + """ if pd.isna(row['player_number']): return np.nan - else: - return row['code'][3] + return row['code'][3] skill_map = { "S": "Serve", @@ -110,42 +252,113 @@ def calculate_skill(row): eval_codes = ["#", "+", '!', '-', '/', '='] desired_order = [ - 'match_id', 'point_id', 'video_file_number', 'video_time', 'code', 'team', 'player_number', 'player_name', - 'player_id', 'skill', 'skill_type', 'evaluation_code', 'setter_position', 'evaluation', 'attack_code', 'attack_description', - 'set_code', 'set_description', 'set_type', 'start_zone', 'end_zone', 'end_subzone', 'end_cone', 'skill_subtype', - 'num_players', 'num_players_numeric', 'special_code', 'timeout', 'end_of_set', 'substitution', 'point', - 'home_team_score', 'visiting_team_score', 'home_setter_position', 'visiting_setter_position', 'custom_code', - 'home_p1', 'home_p2', 'home_p3', 'home_p4', 'home_p5', 'home_p6', 'visiting_p1', 'visiting_p2', - 'visiting_p3', 'visiting_p4', 'visiting_p5', 'visiting_p6', 'start_coordinate', 'mid_coordinate', 'end_coordinate', - 'point_phase', 'attack_phase', 'start_coordinate_x', 'start_coordinate_y', 'mid_coordinate_x', 'mid_coordinate_y', - 'end_coordinate_x', 'end_coordinate_y', 'home_player_id1', 'home_player_id2', 'home_player_id3', 'home_player_id4', - 'home_player_id5', 'home_player_id6', 'visiting_player_id1', 'visiting_player_id2', 'visiting_player_id3', - 'visiting_player_id4', 'visiting_player_id5', 'visiting_player_id6', 'set_number', 'home_team','visiting_team', - 'home_team_id', 'visiting_team_id', 'team_id', 'point_won_by', 'winning_attack', 'serving_team', 'receiving_team', - 'phase', 'home_score_start_of_point', 'visiting_score_start_of_point', 'rally_number', "possesion_number", - "attack_description", "set_description", 'skill_type' + 'match_id', 'point_id', 'video_file_number', + 'video_time', 'code', 'team', 'player_number', + 'player_name', 'player_id', 'skill', 'skill_type', + 'evaluation_code', 'setter_position', 'evaluation', + 'attack_code', 'attack_description', 'set_code', + 'set_description', 'set_type', 'start_zone', 'end_zone', + 'end_subzone', 'end_cone', 'skill_subtype', + 'num_players', 'num_players_numeric', 'special_code', + 'timeout', 'end_of_set', 'substitution', 'point', + 'home_team_score', 'visiting_team_score', 'home_setter_position', + 'visiting_setter_position', 'custom_code', 'home_p1', 'home_p2', + 'home_p3', 'home_p4', 'home_p5', 'home_p6', 'visiting_p1', + 'visiting_p2', 'visiting_p3', 'visiting_p4', 'visiting_p5', + 'visiting_p6', 'start_coordinate', 'mid_coordinate', 'end_coordinate', + 'point_phase', 'attack_phase', 'start_coordinate_x', 'start_coordinate_y', + 'mid_coordinate_x', 'mid_coordinate_y', 'end_coordinate_x', + 'end_coordinate_y', 'home_player_id1', 'home_player_id2', + 'home_player_id3', 'home_player_id4', 'home_player_id5', 'home_player_id6', + 'visiting_player_id1', 'visiting_player_id2', 'visiting_player_id3', + 'visiting_player_id4', 'visiting_player_id5', 'visiting_player_id6', + 'set_number', 'home_team','visiting_team', + 'home_team_id', 'visiting_team_id', 'team_id', 'point_won_by', + 'winning_attack', 'serving_team', 'receiving_team', + 'phase', 'home_score_start_of_point', 'visiting_score_start_of_point', + 'rally_number', "possesion_number" ] def dv_index2xy(i): + """ + Converts a given index to x and y coordinates + based on a specific transformation formula. + + Args: + i (int or array-like): + Index or array of indices to be converted. + + Returns: + np.ndarray: + A 2D numpy array where each row contains the x + and y coordinates corresponding to the input index. + + Example: + index = 150 + coordinates = dv_index2xy(index) + print(coordinates) + # Output: array([[0.5225 , 0.34438]]) + + indices = [1, 50, 150] + coordinates = dv_index2xy(indices) + print(coordinates) + # Output: array([[ 0.14375 , -0.2037 ], + # [ 1.86562 , -0.2037 ], + # [ 0.5225 , 0.34438 ]]) + """ x = ((i - 1 - np.floor((i - 1) / 100) * 100) / 99) * 3.7125 + 0.14375 y = (np.floor((i - 1) / 100) / 100) * 7.4074 - 0.2037 return np.column_stack((x, y)) def add_xy(data): + """ + Adds x and y coordinate columns to the DataFrame + based on start, mid, and end coordinate indices. + + Args: + data (pd.DataFrame): DataFrame containing + 'start_coordinate', 'mid_coordinate', + and 'end_coordinate' columns. + + Returns: + pd.DataFrame: The input DataFrame with added + columns for x and y coordinates of start, + mid, and end points. + + The following columns will be added to the DataFrame: + - 'start_coordinate_x', 'start_coordinate_y' + - 'mid_coordinate_x', 'mid_coordinate_y' + - 'end_coordinate_x', 'end_coordinate_y' + + Example: + data = pd.DataFrame({ + 'start_coordinate': [150, 300], + 'mid_coordinate': [350, 400], + 'end_coordinate': [450, 500] + }) + data = add_xy(data) + print(data) + # Output: + # start_coordinate mid_coordinate [..] end_coordinate_y + # 0 150 350 [..] 0.33784 + # 1 300 400 [..] 0.69136 + """ data['start_coordinate'] = pd.to_numeric(data['start_coordinate'], errors='coerce') data['start_coordinate'] = data['start_coordinate'].astype('Int64') data['start_coord_xy'] = data['start_coordinate'].apply(dv_index2xy) - data[['start_coordinate_x', 'start_coordinate_y']] = pd.DataFrame(data['start_coord_xy'].apply(lambda x: x[0]).tolist()) - + data[['start_coordinate_x', 'start_coordinate_y']] =\ + pd.DataFrame(data['start_coord_xy'].apply(lambda x: x[0]).tolist()) data['mid_coordinate'] = pd.to_numeric(data['mid_coordinate'], errors='coerce') data['mid_coordinate'] = data['mid_coordinate'].astype('Int64') data['mid_coord_xy'] = data['mid_coordinate'].apply(dv_index2xy) - data[['mid_coordinate_x', 'mid_coordinate_y']] = pd.DataFrame(data['mid_coord_xy'].apply(lambda x: x[0]).tolist()) + data[['mid_coordinate_x', 'mid_coordinate_y']] =\ + pd.DataFrame(data['mid_coord_xy'].apply(lambda x: x[0]).tolist()) data['end_coordinate'] = pd.to_numeric(data['end_coordinate'], errors='coerce') data['end_coordinate'] = data['end_coordinate'].astype('Int64') data['end_coord_xy'] = data['end_coordinate'].apply(dv_index2xy) - data[['end_coordinate_x', 'end_coordinate_y']] = pd.DataFrame(data['end_coord_xy'].apply(lambda x: x[0]).tolist()) + data[['end_coordinate_x', 'end_coordinate_y']] =\ + pd.DataFrame(data['end_coord_xy'].apply(lambda x: x[0]).tolist()) data = data.drop(columns = ['start_coord_xy', 'end_coord_xy', 'mid_coord_xy']) return data diff --git a/datavolley/pycourt.py b/datavolley/pycourt.py index 456bdf87..8d9b084f 100644 --- a/datavolley/pycourt.py +++ b/datavolley/pycourt.py @@ -1,10 +1,31 @@ +"""module to plout a court""" import matplotlib.pyplot as plt -import pandas as pd import numpy as np def pycourt(ax=None): - if ax == None: - fig, ax = plt.subplots() + """ + Draws a volleyball court on a given matplotlib Axes object. + + Parameters: + ax (matplotlib.axes._axes.Axes, optional): + A matplotlib Axes object to draw the court on. + If None, a new figure and axes are created. + + The function performs the following steps: + 1. Plots the boundary lines of the volleyball court. + 2. Adds horizontal and vertical grid lines + to represent the zones and 3-meter lines. + 3. Sets the court limits and aspect ratio to ensure + the court is drawn to scale. + 4. Removes axis ticks for a cleaner presentation. + + Example: + fig, ax = plt.subplots() + pycourt(ax) + plt.show() + """ + if ax is None: + _, ax = plt.subplots() # Plot the volleyball court plt.plot([0.25, 3.75], [3.5, 3.5], color="black", linewidth=2, zorder=1) @@ -29,12 +50,31 @@ def pycourt(ax=None): plt.yticks([]) def half_pycourt(ax=None): - if ax == None: - fig, ax = plt.subplots() - + """ + Draws the upper half of a volleyball court on a given matplotlib Axes object. + + Parameters: + ax (matplotlib.axes._axes.Axes, optional): + A matplotlib Axes object to draw the court on. + If None, a new figure and axes are created. + + The function performs the following steps: + 1. Plots the net line and the upper half of the volleyball court. + 2. Adds horizontal and vertical grid lines to represent + the zones and the 3-meter line. + 3. Sets the court limits and aspect ratio to ensure + the upper half of the court is drawn to scale. + 4. Removes axis ticks for a cleaner presentation. + + Example: + fig, ax = plt.subplots() + half_pycourt(ax) + plt.show() + """ + if ax is None: + _, ax = plt.subplots() # Plot the upper half of the volleyball court plt.plot([0.25, 3.75], [3.5, 3.5], color="black", linewidth=2, zorder=1) # Net line - # Upper horizontal grid lines hl = np.array([[0.5, 3.5], [3.5, 3.5], [3.5, 6.5], [0.5, 6.5]]) plt.plot(hl[:, 0], hl[:, 1], color="black", linewidth=0.5, zorder=1) @@ -53,3 +93,4 @@ def half_pycourt(ax=None): ax.set_aspect('equal', adjustable='box') plt.xticks([]) plt.yticks([]) + diff --git a/datavolley/pycourtZones.py b/datavolley/pycourtZones.py deleted file mode 100644 index 09e0cb4a..00000000 --- a/datavolley/pycourtZones.py +++ /dev/null @@ -1,234 +0,0 @@ -import matplotlib.pyplot as plt -import pandas as pd -import numpy as np -from shapely.geometry import Point, Polygon - - -def pycourtZones(coordinates_pairs, ax=None, invert_y=False): - if ax is None: - fig, ax = plt.subplots() - - - - # Horizontal grid lines - hl = np.array([[0.5, 0.5], [3.5, 0.5], [3.5, 6.5], [0.5, 6.5]]) - plt.plot(hl[:, 0], hl[:, 1], color="black", linewidth=0.5, zorder=1) - - - # Zone line along 3m line - hlz = np.array([[3.5, 4.5], [0.5, 4.5], [0.5, 2.5], [3.5, 2.5]]) - plt.plot(hlz[:, 0], hlz[:, 1], color="black", linewidth=0.5, zorder=1) - - # Vertical grid lines - vl = np.array([[0.5, 0.5], [0.5, 6.5], [3.5, 6.5], [3.5, 0.5]]) - plt.plot(vl[:, 0], vl[:, 1], color="black", linewidth=0.5, zorder=1) - - # Additional vertical lines for dividing each side into 3 zones - for i in range(1, 3): - plt.plot([i + 0.5, i + 0.5], [0.5, 6.5], color="black", linewidth=0.5, zorder=1) - - # Additional horizontal lines for dividing each side into 6 zones - for i in range(1, 6): - plt.plot([0.5, 3.5], [i + 0.5, i + 0.5], color="black", linewidth=0.5, zorder=1) - - - # Quadrato 1 (prima riga, prima colonna) - quadrato1 = np.array([[0.5, 0.5], [1.5, 0.5], [1.5, 1.5], [0.5, 1.5], [0.5, 0.5]]) - - # Quadrato 2 (prima riga, seconda colonna) - quadrato2 = np.array([[1.5, 0.5], [2.5, 0.5], [2.5, 1.5], [1.5, 1.5], [1.5, 0.5]]) - - # Quadrato 3 (prima riga, terza colonna) - quadrato3 = np.array([[2.5, 0.5], [3.5, 0.5], [3.5, 1.5], [2.5, 1.5], [2.5, 0.5]]) - - # Quadrato 4 (seconda riga, prima colonna) - quadrato4 = np.array([[0.5, 1.5], [1.5, 1.5], [1.5, 2.5], [0.5, 2.5], [0.5, 1.5]]) - - # Quadrato 5 (seconda riga, seconda colonna) - quadrato5 = np.array([[1.5, 1.5], [2.5, 1.5], [2.5, 2.5], [1.5, 2.5], [1.5, 1.5]]) - - # Quadrato 6 (seconda riga, terza colonna) - quadrato6 = np.array([[2.5, 1.5], [3.5, 1.5], [3.5, 2.5], [2.5, 2.5], [2.5, 1.5]]) - - # Quadrato 7 (terza riga, prima colonna) - quadrato7 = np.array([[0.5, 2.5], [1.5, 2.5], [1.5, 3.5], [0.5, 3.5], [0.5, 2.5]]) - - # Quadrato 8 (terza riga, seconda colonna) - quadrato8 = np.array([[1.5, 2.5], [2.5, 2.5], [2.5, 3.5], [1.5, 3.5], [1.5, 2.5]]) - - # Quadrato 9 (terza riga, terza colonna) - quadrato9 = np.array([[2.5, 2.5], [3.5, 2.5], [3.5, 3.5], [2.5, 3.5], [2.5, 2.5]]) - - # Quadrato 10 (quarta riga, prima colonna) - quadrato10 = np.array([[0.5, 3.5], [1.5, 3.5], [1.5, 4.5], [0.5, 4.5], [0.5, 3.5]]) - - # Quadrato 11 (quarta riga, seconda colonna) - quadrato11 = np.array([[1.5, 3.5], [2.5, 3.5], [2.5, 4.5], [1.5, 4.5], [1.5, 3.5]]) - - # Quadrato 12 (quarta riga, terza colonna) - quadrato12 = np.array([[2.5, 3.5], [3.5, 3.5], [3.5, 4.5], [2.5, 4.5], [2.5, 3.5]]) - - # Quadrato 13 (quinta riga, prima colonna) - quadrato13 = np.array([[0.5, 4.5], [1.5, 4.5], [1.5, 5.5], [0.5, 5.5], [0.5, 4.5]]) - - # Quadrato 14 (quinta riga, seconda colonna) - quadrato14 = np.array([[1.5, 4.5], [2.5, 4.5], [2.5, 5.5], [1.5, 5.5], [1.5, 4.5]]) - - # Quadrato 15 (quinta riga, terza colonna) - quadrato15 = np.array([[2.5, 4.5], [3.5, 4.5], [3.5, 5.5], [2.5, 5.5], [2.5, 4.5]]) - - # Quadrato 16 (sesta riga, prima colonna) - quadrato16 = np.array([[0.5, 5.5], [1.5, 5.5], [1.5, 6.5], [0.5, 6.5], [0.5, 5.5]]) - - # Quadrato 17 (sesta riga, seconda colonna) - quadrato17 = np.array([[1.5, 5.5], [2.5, 5.5], [2.5, 6.5], [1.5, 6.5], [1.5, 5.5]]) - - # Quadrato 18 (sesta riga, terza colonna) - quadrato18 = np.array([[2.5, 5.5], [3.5, 5.5], [3.5, 6.5], [2.5, 6.5], [2.5, 5.5]]) - - # Lista contenente tutti i quadrati - quadrati = [quadrato1, quadrato2, quadrato3, quadrato4, quadrato5, quadrato6, quadrato7, quadrato8, quadrato9, - quadrato10, quadrato11, quadrato12, quadrato13, quadrato14, quadrato15, quadrato16, quadrato17, quadrato18] - - - #Conteggio e colorazione zone - conteggio_punti = [0] * len(quadrati) - - # Conteggio dei punti in ciascun quadrato - for pair in coordinates_pairs: - punto = Point(pair) - for i, quadrato in enumerate(quadrati): - if punto.within(Polygon(quadrato)): - conteggio_punti[i] += 1 - - - for i, quadrato in enumerate(quadrati): - print(f"Quadrato {i+1}: {conteggio_punti[i]} punti") - - - colors = ['white' if count == 0 else 'lightblue' if count < 35 else 'blue' for count in conteggio_punti] - - - for quadrato, color in zip(quadrati, colors): - ax.fill(quadrato[:, 0], quadrato[:, 1], color=color) - ax.plot(quadrato[:, 0], quadrato[:, 1], color='black', linewidth=0.5) - - - - # Plot the volleyball court - ax.plot([0.25, 3.75], [3.5, 3.5], color="black", linewidth=5, zorder=1) - - - - ax.set_xlim(0, 4) - ax.set_ylim(0, 7) - ax.set_aspect('equal', adjustable='box') - plt.xticks([]) - plt.yticks([]) - - # Inverti l'asse y se necessario - if invert_y: - plt.gca().invert_yaxis() - - - -def pycourtSubZones(coordinates_pairs, ax=None, invert_y=False): - if ax is None: - fig, ax = plt.subplots() - - # Horizontal grid lines - hl = np.array([[0.5, 0.5], [3.5, 0.5], [3.5, 6.5], [0.5, 6.5]]) - plt.plot(hl[:, 0], hl[:, 1], color="black", linewidth=1, zorder=1) # Increased linewidth - - # Zone line along 3m line - hlz = np.array([[3.5, 4.5], [0.5, 4.5], [0.5, 2.5], [3.5, 2.5]]) - plt.plot(hlz[:, 0], hlz[:, 1], color="black", linewidth=1, zorder=1) # Increased linewidth - - # Vertical grid lines - vl = np.array([[0.5, 0.5], [0.5, 6.5], [3.5, 6.5], [3.5, 0.5]]) - plt.plot(vl[:, 0], vl[:, 1], color="black", linewidth=1, zorder=1) # Increased linewidth - - # Additional vertical lines for dividing each side into 3 zones - for i in range(1, 3): - plt.plot([i + 0.5, i + 0.5], [0.5, 6.5], color="black", linewidth=1, zorder=1) # Increased linewidth - - # Additional horizontal lines for dividing each side into 6 zones - for i in range(1, 6): - plt.plot([0.5, 3.5], [i + 0.5, i + 0.5], color="black", linewidth=1, zorder=1) # Increased linewidth - - # Define quadrati - quadrati = [] - names = ['5V', '6V', '1V', '7V', '8V', '9V', '4V', '3V', '2V', '2U', '3U', '4U', '9U', '8U', '7U', '1U', '6U', '5U'] - for row in range(6): - for col in range(3): - x_min = 0.5 + col - x_max = x_min + 1 - y_min = 0.5 + row - y_max = y_min + 1 - quadrato = np.array([[x_min, y_min], [x_max, y_min], [x_max, y_max], [x_min, y_max], [x_min, y_min]]) - quadrati.append((quadrato, names[row*3 + col])) # Associa il nome del quadrato in base all'ordine - - - names_sub = ['D','A','C','B'] - # Subdivide each quadrato into 4 sottorettangoli - sottorettangoli = [] - for quadrato in quadrati: - x_min, y_min = quadrato[0][0] - x_max, y_max = quadrato[0][2] - x_mid = (x_min + x_max) / 2 - y_mid = (y_min + y_max) / 2 - for i, name_sub in enumerate(names_sub): - nome_completo = names_sub[i] + quadrato[1] - if i == 0: - sottorettangoli.append((np.array([[x_min, y_min], [x_mid, y_min], [x_mid, y_mid], [x_min, y_mid], [x_min, y_min]]), nome_completo)) # top left - elif i == 1: - sottorettangoli.append((np.array([[x_mid, y_min], [x_max, y_min], [x_max, y_mid], [x_mid, y_mid], [x_mid, y_min]]), nome_completo)) # top right - elif i == 2: - sottorettangoli.append((np.array([[x_min, y_mid], [x_mid, y_mid], [x_mid, y_max], [x_min, y_max], [x_min, y_mid]]), nome_completo)) # bottom left - elif i == 3: - sottorettangoli.append((np.array([[x_mid, y_mid], [x_max, y_mid], [x_max, y_max], [x_mid, y_max], [x_mid, y_mid]]), nome_completo)) # bottom right - - - - # Count and color zones - conteggio_punti = [0] * len(sottorettangoli) - - # Count points in each quadrato - for pair in coordinates_pairs: - punto = Point(pair) - for i, (sottorettangolo, name) in enumerate(sottorettangoli): - if punto.within(Polygon(sottorettangolo)): - conteggio_punti[i] += 1 - - - colors = ['white' if count == 0 else 'lightblue' if count < 10 else 'blue' for count in conteggio_punti] - - for (sottorettangolo, name), color in zip(sottorettangoli, colors): - ax.fill(sottorettangolo[:, 0], sottorettangolo[:, 1], color=color) - ax.plot(sottorettangolo[:, 0], sottorettangolo[:, 1], color='black', linewidth=0.5) # Increased linewidth - - - for quadrato, name in quadrati: - ax.plot(quadrato[:, 0], quadrato[:, 1], color='black', linewidth=1) - - # Plot points - for x, y in coordinates_pairs: - ax.plot(x, y, marker='o', markersize=5, color='red') # Imposta il marker 'o' (cerchio) rosso con dimensione 5 - - - - - - # Plot the volleyball court - ax.plot([0.25, 3.75], [3.5, 3.5], color="black", linewidth=5, zorder=1) - - ax.set_xlim(0, 4) - ax.set_ylim(0, 7) - ax.set_aspect('equal', adjustable='box') - plt.xticks([]) - plt.yticks([]) - - # Invert y-axis if needed - if invert_y: - plt.gca().invert_yaxis() - diff --git a/datavolley/pycourt_zones.py b/datavolley/pycourt_zones.py new file mode 100644 index 00000000..a0901f7b --- /dev/null +++ b/datavolley/pycourt_zones.py @@ -0,0 +1,260 @@ +"""module to plot the zones of a court""" +import matplotlib.pyplot as plt +import numpy as np +from shapely.geometry import Point, Polygon + +def draw_court_grid(ax): + """Draw the basic volleyball court grid.""" + # Horizontal grid lines + hl = np.array([[0.5, 0.5], [3.5, 0.5], [3.5, 6.5], [0.5, 6.5]]) + ax.plot(hl[:, 0], hl[:, 1], color="black", linewidth=0.5, zorder=1) + + # Zone line along 3m line + hlz = np.array([[3.5, 4.5], [0.5, 4.5], [0.5, 2.5], [3.5, 2.5]]) + ax.plot(hlz[:, 0], hlz[:, 1], color="black", linewidth=0.5, zorder=1) + + # Vertical grid lines + vl = np.array([[0.5, 0.5], [0.5, 6.5], [3.5, 6.5], [3.5, 0.5]]) + ax.plot(vl[:, 0], vl[:, 1], color="black", linewidth=0.5, zorder=1) + + # Additional vertical lines for dividing each side into 3 zones + for i in range(1, 3): + ax.plot([i + 0.5, i + 0.5], [0.5, 6.5], color="black", linewidth=0.5, zorder=1) + + # Additional horizontal lines for dividing each side into 6 zones + for i in range(1, 6): + ax.plot([0.5, 3.5], [i + 0.5, i + 0.5], color="black", linewidth=0.5, zorder=1) + +def define_zones(): + """Define the coordinates of the 18 zones on the court.""" + return [ + np.array([[0.5, 0.5], [1.5, 0.5], [1.5, 1.5], [0.5, 1.5], [0.5, 0.5]]), + np.array([[1.5, 0.5], [2.5, 0.5], [2.5, 1.5], [1.5, 1.5], [1.5, 0.5]]), + np.array([[2.5, 0.5], [3.5, 0.5], [3.5, 1.5], [2.5, 1.5], [2.5, 0.5]]), + np.array([[0.5, 1.5], [1.5, 1.5], [1.5, 2.5], [0.5, 2.5], [0.5, 1.5]]), + np.array([[1.5, 1.5], [2.5, 1.5], [2.5, 2.5], [1.5, 2.5], [1.5, 1.5]]), + np.array([[2.5, 1.5], [3.5, 1.5], [3.5, 2.5], [2.5, 2.5], [2.5, 1.5]]), + np.array([[0.5, 2.5], [1.5, 2.5], [1.5, 3.5], [0.5, 3.5], [0.5, 2.5]]), + np.array([[1.5, 2.5], [2.5, 2.5], [2.5, 3.5], [1.5, 3.5], [1.5, 2.5]]), + np.array([[2.5, 2.5], [3.5, 2.5], [3.5, 3.5], [2.5, 3.5], [2.5, 2.5]]), + np.array([[0.5, 3.5], [1.5, 3.5], [1.5, 4.5], [0.5, 4.5], [0.5, 3.5]]), + np.array([[1.5, 3.5], [2.5, 3.5], [2.5, 4.5], [1.5, 4.5], [1.5, 3.5]]), + np.array([[2.5, 3.5], [3.5, 3.5], [3.5, 4.5], [2.5, 4.5], [2.5, 3.5]]), + np.array([[0.5, 4.5], [1.5, 4.5], [1.5, 5.5], [0.5, 5.5], [0.5, 4.5]]), + np.array([[1.5, 4.5], [2.5, 4.5], [2.5, 5.5], [1.5, 5.5], [1.5, 4.5]]), + np.array([[2.5, 4.5], [3.5, 4.5], [3.5, 5.5], [2.5, 5.5], [2.5, 4.5]]), + np.array([[0.5, 5.5], [1.5, 5.5], [1.5, 6.5], [0.5, 6.5], [0.5, 5.5]]), + np.array([[1.5, 5.5], [2.5, 5.5], [2.5, 6.5], [1.5, 6.5], [1.5, 5.5]]), + np.array([[2.5, 5.5], [3.5, 5.5], [3.5, 6.5], [2.5, 6.5], [2.5, 5.5]]) + ] + +def count_points_in_zones(coordinates_pairs, quadrati): + """Count the number of points in each zone based on provided coordinates.""" + conteggio_punti = [0] * len(quadrati) + for pair in coordinates_pairs: + punto = Point(pair) + for i, quadrato in enumerate(quadrati): + if punto.within(Polygon(quadrato)): + conteggio_punti[i] += 1 + return conteggio_punti + +def color_zones(ax, quadrati, conteggio_punti): + """Color the zones based on the number of points.""" + colors = ['white' if count == 0\ + else 'lightblue' if count < 35\ + else 'blue' for count in conteggio_punti] + for quadrato, color in zip(quadrati, colors): + ax.fill(quadrato[:, 0], quadrato[:, 1], color=color) + ax.plot(quadrato[:, 0], quadrato[:, 1], color='black', linewidth=0.5) + +def pycourt_zones(coordinates_pairs, ax=None, invert_y=False): + """ + Draws a volleyball court with zones and colors them based on the provided coordinate pairs. + + Parameters: + coordinates_pairs (list of tuple): + A list of (x, y) tuples representing coordinates on the court. + ax (matplotlib.axes._axes.Axes, optional): + A matplotlib Axes object to draw the court on. + If None, a new figure and axes are created. + invert_y (bool, optional): If True, inverts the y-axis. Default is False. + + The function performs the following steps: + 1. Draws the volleyball court with horizontal and vertical grid lines. + 2. Defines and draws 18 zones on the court. + 3. Counts the number of points in each zone based on the provided coordinates. + 4. Colors each zone based on the count of points + (white if no points, light blue for fewer than 35 points, + blue for 35 or more points). + 5. Optionally inverts the y-axis if specified. + + Example: + coordinates_pairs = [(1, 1), (2, 2), (3, 3), (4, 4)] + fig, ax = plt.subplots() + pycourt_zones(coordinates_pairs, ax) + plt.show() + """ + if ax is None: + _, ax = plt.subplots() + + draw_court_grid(ax) + quadrati = define_zones() + conteggio_punti = count_points_in_zones(coordinates_pairs, quadrati) + for i, count in enumerate(conteggio_punti): + print(f"Square {i + 1}: {count} points") + color_zones(ax, quadrati, conteggio_punti) + # Plot the volleyball court + ax.plot([0.25, 3.75], [3.5, 3.5], color="black", linewidth=5, zorder=1) + ax.set_xlim(0, 4) + ax.set_ylim(0, 7) + ax.set_aspect('equal', adjustable='box') + plt.xticks([]) + plt.yticks([]) + # Invert y-axis if needed + if invert_y: + ax.invert_yaxis() + +def draw_main_grid(ax): + """Draw the main grid lines of the volleyball court.""" + hl = np.array([[0.5, 0.5], [3.5, 0.5], [3.5, 6.5], [0.5, 6.5]]) + ax.plot(hl[:, 0], hl[:, 1], color="black", linewidth=1, zorder=1) + + hlz = np.array([[3.5, 4.5], [0.5, 4.5], [0.5, 2.5], [3.5, 2.5]]) + ax.plot(hlz[:, 0], hlz[:, 1], color="black", linewidth=1, zorder=1) + + vl = np.array([[0.5, 0.5], [0.5, 6.5], [3.5, 6.5], [3.5, 0.5]]) + ax.plot(vl[:, 0], vl[:, 1], color="black", linewidth=1, zorder=1) + + for i in range(1, 3): + ax.plot([i + 0.5, i + 0.5], [0.5, 6.5], color="black", linewidth=1, zorder=1) + + for i in range(1, 6): + ax.plot([0.5, 3.5], [i + 0.5, i + 0.5], color="black", linewidth=1, zorder=1) + +def define_zones_pycourtsubzones(): + """Define the main zones of the volleyball court.""" + names = ['5V', '6V', '1V', '7V', + '8V', '9V', '4V', '3V', + '2V', '2U', '3U', '4U', + '9U', '8U', '7U', '1U', + '6U', '5U'] + quadrati = [] + for row in range(6): + for col in range(3): + x_min = 0.5 + col + x_max = x_min + 1 + y_min = 0.5 + row + y_max = y_min + 1 + quadrato = np.array([[x_min, y_min], [x_max, y_min],\ + [x_max, y_max], [x_min, y_max], [x_min, y_min]]) + quadrati.append((quadrato, names[row * 3 + col])) + return quadrati + +def define_subzones_pycoutsubzone(quadrati): + """Define the subzones within each main zone.""" + names_sub = ['D', 'A', 'C', 'B'] + sottorettangoli = [] + for quadrato in quadrati: + x_min, y_min = quadrato[0][0] + x_max, y_max = quadrato[0][2] + x_mid = (x_min + x_max) / 2 + y_mid = (y_min + y_max) / 2 + for i, _ in enumerate(names_sub): + nome_completo = names_sub[i] + quadrato[1] + if i == 0: + sottorettangoli.append((np.array([[x_min, y_min],\ + [x_mid, y_min], [x_mid, y_mid],\ + [x_min, y_mid], [x_min, y_min]]),\ + nome_completo)) # top left + elif i == 1: + sottorettangoli.append((np.array([[x_mid, y_min],\ + [x_max, y_min], [x_max, y_mid],\ + [x_mid, y_mid], [x_mid, y_min]]),\ + nome_completo)) # top right + elif i == 2: + sottorettangoli.append((np.array([[x_min, y_mid],\ + [x_mid, y_mid], [x_mid, y_max],\ + [x_min, y_max], [x_min, y_mid]]),\ + nome_completo)) # bottom left + elif i == 3: + sottorettangoli.append((np.array([[x_mid, y_mid],\ + [x_max, y_mid], [x_max, y_max],\ + [x_mid, y_max], [x_mid, y_mid]]),\ + nome_completo)) # bottom right + return sottorettangoli + +def count_points_in_subzones(coordinates_pairs, sottorettangoli): + """Count the number of points in each subzone based on the provided coordinates.""" + conteggio_punti = [0] * len(sottorettangoli) + for pair in coordinates_pairs: + punto = Point(pair) + for i, (sottorettangolo, _) in enumerate(sottorettangoli): + if punto.within(Polygon(sottorettangolo)): + conteggio_punti[i] += 1 + return conteggio_punti + +def color_subzones(ax, sottorettangoli, conteggio_punti): + """Color the subzones based on the number of points.""" + colors = ['white' if count == 0 else 'lightblue'\ + if count < 10 else 'blue' for count in conteggio_punti] + for (sottorettangolo, _), color in zip(sottorettangoli, colors): + ax.fill(sottorettangolo[:, 0], sottorettangolo[:, 1], color=color) + ax.plot(sottorettangolo[:, 0], sottorettangolo[:, 1], color='black', linewidth=0.5) + +def plot_points(ax, coordinates_pairs): + """Plot points on the court.""" + for x, y in coordinates_pairs: + ax.plot(x, y, marker='o', markersize=5, color='red') + +def pycourtsubzones(coordinates_pairs, ax=None, invert_y=False): + """ + Draws a volleyball court with subzones and colors them based on the provided coordinate pairs. + + Parameters: + coordinates_pairs (list of tuple): + A list of (x, y) tuples representing coordinates on the court. + ax (matplotlib.axes._axes.Axes, optional): + A matplotlib Axes object to draw the court on. + If None, a new figure and axes are created. + + invert_y (bool, optional): + If True, inverts the y-axis. Default is False. + + The function performs the following steps: + 1. Draws the volleyball court with horizontal and vertical grid lines. + 2. Defines and draws 18 zones on the court. + 3. Subdivides each zone into 4 subzones. + 4. Counts the number of points in each subzone + based on the provided coordinates. + 5. Colors each subzone based on the count of points + (white if no points, light blue for fewer than + 10 points, blue for 10 or more points). + 6. Optionally inverts the y-axis if specified. + + Example: + coordinates_pairs = [(1, 1), (2, 2), (3, 3), (4, 4)] + fig, ax = plt.subplots() + pycourtSubZones(coordinates_pairs, ax) + plt.show() + """ + if ax is None: + _, ax = plt.subplots() + + draw_main_grid(ax) + quadrati = define_zones_pycourtsubzones() + sottorettangoli = define_subzones_pycoutsubzone(quadrati) + conteggio_punti = count_points_in_subzones(coordinates_pairs, sottorettangoli) + color_subzones(ax, sottorettangoli, conteggio_punti) + plot_points(ax, coordinates_pairs) + for quadrato, _ in quadrati: + ax.plot(quadrato[:, 0], quadrato[:, 1], color='black', linewidth=1) + # Plot the volleyball court + ax.plot([0.25, 3.75], [3.5, 3.5], color="black", linewidth=5, zorder=1) + ax.set_xlim(0, 4) + ax.set_ylim(0, 7) + ax.set_aspect('equal', adjustable='box') + plt.xticks([]) + plt.yticks([]) + # Invert y-axis if needed + if invert_y: + ax.invert_yaxis() diff --git a/datavolley/read_dv.py b/datavolley/read_dv.py index a2d01bef..3ddecad5 100644 --- a/datavolley/read_dv.py +++ b/datavolley/read_dv.py @@ -1,11 +1,17 @@ +"""Main module to manage the datavolley files""" import os import uuid +import random import requests import pandas as pd import numpy as np -from .get_players_from_md import read_players -from .helpers import get_match, get_set, get_teams, calculate_skill, skill_map, eval_codes, desired_order, add_xy, get_setter_calls, get_attack_combinations from charset_normalizer import from_path +from .get_players_from_md import read_players +from .helpers import get_match, get_set, get_teams,\ + calculate_skill, skill_map, eval_codes,\ + desired_order, add_xy, get_setter_calls,\ + get_attack_combinations + class DataVolley: """ @@ -15,17 +21,29 @@ class DataVolley: - file_path (str): The path to the DataVolley file to be processed. Attributes: - - file_path (str): The path to the DataVolley file. - - plays (pd.DataFrame): Processed data stored in a DataFrame. - - match_info (pd.DataFrame): Data of the match - - sets_info (pd.DataFrame): Data of each quarter set and duration - - home_team (str): The name of the home team. - - home_team_id (str): Unique identifier of the home team. - - home_coaches (list): List of the names of the coaches of the home team. - - visiting_team (str): The name of the visiting team. - - visiting_team_id (str): Unique identifier of the visiting team. - - visiting_team_coaches (list): List of the names of the coaches of the visiting team. - - get_players (pd.DataFrame): Retrieves a DataFrame containing a list of players from a specified team, or from all teams if none is specified. + - file_path (str): + The path to the DataVolley file. + - plays (pd.DataFrame): + Processed data stored in a DataFrame. + - match_info (pd.DataFrame): + Data of the match + - sets_info (pd.DataFrame): + Data of each quarter set and duration + - home_team (str): + The name of the home team. + - home_team_id (str): + Unique identifier of the home team. + - home_coaches (list): + List of the names of the coaches of the home team. + - visiting_team (str): + The name of the visiting team. + - visiting_team_id (str): + Unique identifier of the visiting team. + - visiting_team_coaches (list): + List of the names of the coaches of the visiting team. + - get_players (pd.DataFrame): + Retrieves a DataFrame containing a list of players + from a specified team, or from all teams if none is specified. """ def __init__(self, file_path = None): @@ -57,18 +75,208 @@ def _download_example_data(self): Returns: - str: The path to the downloaded example data file. """ - example_data_url = "https://raw.githubusercontent.com/bzx24/markov-volleyball/9f1dd80ea3628af9d2e46f24a4afdd74668dfe07/dvw_files/_2019-09-01%20106859%20UL-UD(VM).dvw" - response = requests.get(example_data_url) + dvw_files = [ + "_2019-08-30 109691 PITT-CINCI(VM).dvw", + "_2019-08-30 118402 IUPUI-USD(VM).dvw", + "_2019-08-31 106857 UL-TAMU(VM).dvw", + "_2019-08-31 109692 PITT-USC(VM).dvw", + "_2019-08-31 117367 IUPUI-MURR(VM).dvw", + "_2019-09-01 104145 TEXAS-USC(VM).dvw", + "_2019-09-01 106859 UL-UD(VM).dvw", + "_2019-09-01 108282 UNL-UCLA(VM).dvw", + "_2019-09-05 104147 TEXAS-UMN(VM).dvw", + "_2019-09-06 106862 UL-TTU(VM).dvw", + "_2019-09-06 106883 UL-WKU(VM).dvw", + "_2019-08-30 109691 PITT-CINCI(VM).dvw", + "_2019-08-30 118402 IUPUI-USD(VM).dvw", + "_2019-08-31 106857 UL-TAMU(VM).dvw", + "_2019-08-31 109692 PITT-USC(VM).dvw", + "_2019-08-31 117367 IUPUI-MURR(VM).dvw", + "_2019-09-06 110424 UNL-UA(VM).dvw", + "_2019-09-07 106887 UL-ASU(VM).dvw", + "_2019-09-07 107789 EKU-NCA_T(VM).dvw", + "_2019-09-07 109693 PITT-UWGB(VM).dvw", + "_2019-09-07 109719 PITT-OSU(VM).dvw", + "_2019-09-07 113907 EKU-DART(VM).dvw", + "_2019-09-07 120692 WISC-BAY(VM).dvw", + "_2019-09-08 109694 PITT-DUQ(VM).dvw", + "_2019-09-12 109695 PITT-ORE(VM).dvw", + "_2019-09-13 106889 UL-PURD(VM).dvw", + "_2019-09-13 108182 EKU-SHU(VM).dvw", + "_2019-09-13 108456 WISC-USC(VM).dvw", + "_2019-09-13 120134 PITT-CPOLY(VM).dvw", + "_2019-09-13 121081 BAY-UH(VM) (13).dvw", + "_2019-09-13 122154 UNL-HPU(VM).dvw", + "_2019-09-13 122188 FAMU-SJ(VM).dvw", + "_2019-09-14 106474 STAN-UMN(VM).dvw", + "_2019-09-14 108302 UNL-UD(VM).dvw", + "_2019-09-14 108306 UNL-LMU(VM).dvw", + "_2019-09-14 12import random0300 UW-UNO(VM).dvw", + "_2019-09-14 121003 BAY-UT(VM) (13).dvw", + "_2019-09-14 122296 TAMIU-WNMU(VM).dvw", + "_2019-09-14 122306 FAMU-SBU(VM).dvw", + "_2019-09-17 101165 EKU-MARSH(VM).dvw", + "_2019-09-19 108314 UNL-STAN(VM).dvw", + "_2019-09-20 105860 IUPUI-MSU(VM).dvw", + "_2019-09-20 109796 WISC-UW(VM).dvw", + "_2019-09-20 117560 FAMU-SUBR(VM).dvw", + "_2019-09-20 123093 BAY-UM(VM) (13).dvw", + "_2019-09-21 104148 TEXAS-TAMU(VM).dvw", + "_2019-09-21 104647 APSU-WSU(VM).dvw", + "_2019-09-21 106770 STAN-BYU(VM).dvw", + "_2019-09-21 108316 UNL-WSU(VM).dvw", + "_2019-09-21 117561 FAMU-CIT(VM).dvw", + "_2019-09-21 123054 EKU-DUQ(VM).dvw", + "_2019-09-22 103573 UW-WISC(VM).dvw", + "_2019-09-22 109696 PITT-PSU(VM).dvw", + "_2019-09-24 124060 BAY-TXST(VM) (12).dvw", + "_2019-09-26 104152 TEXAS-ISU(VM).dvw", + "_2019-09-27 106891 UL-NCST(VM).dvw", + "_2019-09-27 113953 EKU-TSU(VM).dvw", + "_2019-09-27 118774 IUPUI-CSU(VM).dvw", + "_2019-09-27 121715 TAMIU-DBU(VM).dvw", + "_2019-09-28 104154 TEXAS-TTU(VM).dvw", + "_2019-09-28 109797 WISC-PURD(VM).dvw", + "_2019-09-28 118775 IUPUI-OAK(VM).dvw", + "_2019-09-28 121716 TAMIU-TSU(VM).dvw", + "_2019-09-28 124666 EKU-BEL(VM).dvw", + "_2019-09-29 106771 STAN-UW(VM).dvw", + "_2019-09-29 106894 UL-UNC(VM).dvw", + "_2019-09-29 109697 PITT-VT(VM).dvw", + "_2019-09-29 109798 WISC-IU(VM).dvw", + "_2019-10-03 109799 WISC-PSU(VM).dvw", + "_2019-10-03 125913 BAY-OU(VM) (13).dvw", + "_2019-10-04 106898 UL-GT(VM).dvw", + "_2019-10-04 127391 APSU-SEMO(VM).dvw", + "_2019-10-05 121718 TAMIU-TAMUK(VM).dvw", + "_2019-10-05 127568 APSU-UTM(VM).dvw", + "_2019-10-06 106901 UL-CLEM(VM).dvw", + "_2019-10-06 108323 UNL-WISC(VM).dvw", + "_2019-10-09 118776 IUPUI-YSU(VM).dvw", + "_2019-10-09 129743 APSU-MURR(VM).dvw", + "_2019-10-12 103574 UW-ORST(VM).dvw", + "_2019-10-12 104156 TEXAS-OU(VM).dvw", + "_2019-10-12 106772 STAN-UA(VM).dvw", + "_2019-10-12 108325 UNL-MSU(VM).dvw", + "_2019-10-12 130152 EKU-MURR(VM).dvw", + "_2019-10-13 103575 UW-ORE(VM).dvw", + "_2019-10-13 106773 STAN-ASU(VM).dvw", + "_2019-10-13 107800 FAMU-NCA_T(VM).dvw", + "_2019-10-13 108326 UNL-MICH(VM).dvw", + "_2019-10-13 109800 WISC-UMN(VM).dvw", + "_2019-10-17 108327 UNL-PURD(VM).dvw", + "_2019-10-18 109698 PITT-UNC(VM).dvw", + "_2019-10-18 121719 TAMIU-UAFS(VM).dvw", + "_2019-10-18 133155 APSU-TSU(VM).dvw", + "_2019-10-19 103576 UW-ASU(VM).dvw", + "_2019-10-19 106774 STAN-COL(VM).dvw", + "_2019-10-19 109155 TAMIU-CU(VM).dvw", + "_2019-10-19 109801 WISC-ILL(VM).dvw", + "_2019-10-19 125009 APSU-BEL(VM).dvw", + "_2019-10-19 125915 BAY-TTU(VM) (14).dvw", + "_2019-10-20 103577 UW-UA(VM).dvw", + "_2019-10-20 106775 STAN-UofU(VM).dvw", + "_2019-10-20 109802 WISC-NU(VM).dvw", + "_2019-10-20 140524 FAMU-MORG(VM).dvw", + "_2019-10-24 104157 TEXAS-BAY(VM).dvw", + "_2019-10-25 106909 UL-UVA(VM).dvw", + "_2019-10-25 134437 EKU-SIUE(VM).dvw", + "_2019-10-26 118777 IUPUI-WSU(VM).dvw", + "_2019-10-26 125916 BAY-WVU(VM) (13).dvw", + "_2019-10-26 134539 EKU-EIU(VM).dvw", + "_2019-10-27 106913 UL-PITT(VM).dvw", + "_2019-10-27 118778 IUPUI-NKU(VM).dvw", + "_2019-10-31 109803 WISC-UMD(VM).dvw", + "_2019-11-01 109701 PITT-WF(VM).dvw", + "_2019-11-01 118780 IUPUI-UIC(VM).dvw", + "_2019-11-01 121720 TAMIU-ENMU(VM).dvw", + "_2019-11-01 136019 APSU-SIUE(VM).dvw", + "_2019-11-02 103578 UW-USC(VM).dvw", + "_2019-11-02 104158 TEXAS-WVU(VM).dvw", + "_2019-11-02 108329 UNL-RU(VM).dvw", + "_2019-11-02 114177 TAMIU-WTAMU(VM).dvw", + "_2019-11-02 118781 IUPUI-MILW(VM).dvw", + "_2019-11-02 136020 APSU-EIU(VM).dvw", + "_2019-11-03 103579 UW-UCLA(VM).dvw", + "_2019-11-03 106777 STAN-ORE(VM).dvw", + "_2019-11-03 108332 UNL-PSU(VM).dvw", + "_2019-11-03 109703 PITT-DUKE(VM).dvw", + "_2019-11-03 135811 BAY-ISU(VM) (14).dvw", + "_2019-11-07 108339 UNL-NU(VM).dvw", + "_2019-11-08 137198 EKU-JSU(VM).dvw", + "_2019-11-09 109706 PITT-GT(VM).dvw", + "_2019-11-09 137297 EKU-TTU(VM).dvw", + "_2019-11-10 109711 PITT-CLEM(VM).dvw", + "_2019-11-10 118779 IUPUI-UWGB(VM).dvw", + "_2019-11-13 137945 EKU-MORE(VM).dvw", + "_2019-11-14 104159 TEXAS-KSU(VM).dvw", + "_2019-11-14 137312 BAY-KU(VM) (13).dvw", + "_2019-11-15 138188 TAMIU-SEU(VM).dvw", + "_2019-11-16 103600 UW-COL(VM).dvw", + "_2019-11-16 106778 STAN-USC(VM).dvw", + "_2019-11-16 106918 UL-CUSE(VM).dvw", + "_2019-11-16 121722 TAMIU-SMUT(VM).dvw", + "_2019-11-16 138176 APSU-EKU(VM).dvw", + "_2019-11-17 103580 UW-UofU(VM).dvw", + "_2019-11-17 104160 TEXAS-TCU(VM).dvw", + "_2019-11-17 106779 STAN-UCLA(VM).dvw", + "_2019-11-17 108341 UNL-IOWA(VM).dvw", + "_2019-11-17 109804 WISC-MSU(VM).dvw", + "_2019-11-21 137313 BAY-TEXAS(VM) (12).dvw", + "_2019-11-22 109712 PITT-FSU(VM).dvw", + "_2019-11-23 106923 UL-ND(VM).dvw", + "_2019-11-23 129824 WISC-IOWA(VM).dvw", + "_2019-11-24 104161 TEXAS-KU(VM).dvw", + "_2019-11-24 106928 UL-MIA(VM).dvw", + "_2019-11-24 109805 WISC-UNL(VM).dvw", + "_2019-11-27 103601 UW-CAL(VM).dvw", + "_2019-11-27 109715 PITT-UL(VM).dvw", + "_2019-11-29 106780 STAN-CAL(VM).dvw", + "_2019-11-29 139393 MARQ-VILL(VM).dvw", + "_2019-11-30 108342 UNL-UMD(VM).dvw", + "_2019-11-30 137315 BAY-TCU(VM) (14).dvw", + "_2019-11-30 139726 MARQ-SJ(VM).dvw", + "_2019-12-01 103602 UW-WSU(VM).dvw", + "_2019-12-01 108344 UNL-OSU(VM).dvw", + "_2019-12-05 140244 UL-SAM(VM).dvw", + "_2019-12-06 139796 MARQ-UD(VM).dvw", + "_2019-12-06 140246 TEXAS-ALB(VM).dvw", + "_2019-12-07 139847 STAN-UD(VM).dvw", + "_2019-12-07 139864 UW-WU(VM).dvw", + "_2019-12-07 139994 UNL-BSU(VM).dvw", + "_2019-12-07 140118 PITT-HOW(VM).dvw", + "_2019-12-07 140138 BAY-SHU(VM) (14).dvw", + "_2019-12-07 140249 TEXAS-UCSB(VM).dvw", + "_2019-12-07 140270 WISC-ILLST(VM).dvw", + "_2019-12-08 139997 UNL-UM(VM).dvw", + "_2019-12-08 140297 WISC-UCLA(VM).dvw", + "_2019-12-08 140301 PITT-CINCI(VM).dvw", + "_2019-12-08 140312 STAN-CPOLY(VM).dvw", + "_2019-12-08 140315 BAY-USC(VM) (16).dvw", + "_2019-12-08 140316 UW-USC(VM).dvw", + "_2019-12-13 140335 TEXAS-UL(VM).dvw", + "_2019-12-13 140383 BAY-PURD(VM) (13).dvw", + "_2019-12-13 140384 UW-UK(VM).dvw", + "_2019-12-13 140601 UNL-UH(VM).dvw", + "_2019-12-13 140603 WISC-TAMU(VM).dvw", + "_2019-12-14 140664 STAN-UofU(VM).dvw", + "_2019-12-14 140727 WISC-UNL(VM).dvw", + "_2019-12-14 140755 BAY-UW(VM) (18).dvw", + "_2019-12-15 140754 STAN-PSU(VM).dvw", + "_2019-12-20 140895 BAY-WISC(VM) (17).dvw", + "_2019-12-20 140896 STAN-UMN(VM).dvw", + "_2019-12-22 141609 STAN-WISC(VM).dvw" + ] + base_url = "https://raw.githubusercontent.com/bzx24/markov-volleyball/master/dvw_files/" + random_file = random.choice(dvw_files) + example_data_url = base_url + random_file + response = requests.get(example_data_url,timeout=60) response.raise_for_status() # Raise an error for unsuccessful HTTP responses - example_data_path = os.path.join(os.path.dirname(__file__), "example_data.dvw") - - with open(example_data_path, 'w') as file: + with open(example_data_path, 'w',encoding="utf-8") as file: file.write(response.text) - return example_data_path - - + def _read_data(self): """ Read and process the DataVolley file. @@ -80,7 +288,9 @@ def _read_data(self): # identify character encoding results = from_path(self.file_path) rows = [] # Initialize lists to store data - with open(self.file_path, 'r',encoding=results.best().encoding) as file: # Read the file and extract data + # Read the file and extract data + enc = results.best().encoding + with open(self.file_path, 'r',encoding=enc) as file: for line in file: rows.append(line) @@ -95,7 +305,7 @@ def _read_data(self): teams = get_teams(rows) self.home_team_id = teams[0].split(";")[0] self.home_team = teams[0].split(";")[1] - self.home_setswon = int(teams[0].split(";")[2]) + self.home_setswon = int(teams[0].split(";")[2]) self.home_coaches = [] self.home_coaches.append(teams[0].split(';')[3]) self.home_coaches.append(teams[0].split(';')[4]) @@ -106,25 +316,44 @@ def _read_data(self): self.visiting_coaches.append(teams[1].split(';')[3]) self.visiting_coaches.append(teams[1].split(';')[4]) + + # identify the index for the markers "[3ATTACKCOMBINATION]" and "[3SETTERCALL]" + index_of_attack_combination = full_file.index[full_file[0] == '[3ATTACKCOMBINATION]\n'][0] + index_of_setter_call = full_file.index[full_file[0] == '[3SETTERCALL]\n'][0] + + # Filter the rows from "[3ATTACKCOMBINATION]" to "[3SETTERCALL]" (exclude external) + filtered_plays = full_file.iloc[index_of_attack_combination + 1\ + :index_of_setter_call].reset_index(drop=True) + + separated_data = filtered_plays[0].str.split(';', expand=True) + + # create a dictionary code: description (code 1st column, description 5th) + try: + play_dict = dict(zip(separated_data[0], separated_data[4])) + except KeyError as e: + print(f"Error: {e}. check the columns") + play_dict = None + # Get Player Names meta_data = full_file[full_file['meta_group'] != '3SCOUT'] datarows = [] - for idx, row in meta_data[meta_data.meta_group == "3PLAYERS-H"].iterrows(): + for _, row in meta_data[meta_data.meta_group == "3PLAYERS-H"].iterrows(): rowtext = row[0].rstrip() - if (rowtext.find(";")> 0): + if rowtext.find(";")> 0: datarows.append(rowtext.split(";")[:13]) self.players_home = pd.DataFrame(data=datarows, - columns=["team_id","player_number","team", - "set1","set2","set3","set4","set5", - "player_id","lastname","name", - "nickname","role"]) + columns=["team_id","player_number","team", + "set1","set2","set3","set4","set5", + "player_id","lastname","name", + "nickname","role"]) self.players_home['team_id'] = self.home_team_id self.players_home['team'] = self.home_team - self.players_home["player_name"] = self.players_home["name"] + " " + self.players_home["lastname"] + self.players_home["player_name"] = self.players_home["name"] +\ + " " + self.players_home["lastname"] datarows = [] - for idx, row in meta_data[meta_data.meta_group == "3PLAYERS-V"].iterrows(): + for _, row in meta_data[meta_data.meta_group == "3PLAYERS-V"].iterrows(): rowtext = row[0].rstrip() - if (rowtext.find(";")> 0): + if rowtext.find(";")> 0: datarows.append(rowtext.split(";")[:13]) self.players_visiting = pd.DataFrame(data=datarows, columns=["team_id","player_number","team", @@ -133,15 +362,25 @@ def _read_data(self): "nickname","role"]) self.players_visiting['team_id'] = self.visiting_team_id self.players_visiting['team'] = self.visiting_team - self.players_visiting["player_name"] = self.players_visiting["name"] + " " + self.players_visiting["lastname"] + self.players_visiting["player_name"] = \ + self.players_visiting["name"] + " " +\ + self.players_visiting["lastname"] # Parse out the [3SCOUT] and keep the rest index_of_scout = full_file.index[full_file[0] == '[3SCOUT]\n'][0] # Filter everything before and after "[3SCOUT]" plays = full_file.iloc[index_of_scout+1:].reset_index(drop = True) - # Create code, point_phase attack_phase start_coordinate mid_coordinate end_coordinate time set home_rotation visitng_rotation video_file_number video_time - plays = plays[0].str.split(';', expand = True).rename({0: 'code', 1: 'point_phase', 2: 'attack_phase', 4: 'start_coordinate', 5: 'mid_coordinate', 6: 'end_coordinate', 7: 'time', 8: 'set_number', 9: 'home_setter_position', 10: 'visiting_setter_position', 11: 'video_file_number', 12: 'video_time'}, axis=1) + # Create code, point_phase attack_phase start_coordinate + # mid_coordinate end_coordinate time set home_rotation + # visiting_rotation video_file_number video_time + plays = plays[0].str.split(';', expand = True)\ + .rename({0: 'code', 1: 'point_phase',\ + 2: 'attack_phase', 4: 'start_coordinate',\ + 5: 'mid_coordinate', 6: 'end_coordinate',\ + 7: 'time', 8: 'set_number', \ + 9: 'home_setter_position', 10: 'visiting_setter_position',\ + 11: 'video_file_number', 12: 'video_time'}, axis=1) plays.columns.values[14:20] = [f"home_p{i+1}" for i in range(6)] plays.columns.values[20:26] = [f"visiting_p{i+1}" for i in range(6)] plays = plays.drop(columns=([3, 13, 26])) @@ -163,8 +402,10 @@ def replace_coordinates(coord): plays['team'] = np.where(plays['code'].str[0:1] == '*', self.home_team, self.visiting_team) # Create player_number - plays['player_number'] = plays['code'].str[1:3].str.extract(r'(\d{2})').astype(float).fillna(0).astype(int).astype(str) - plays['player_number'] = np.where(plays['player_number'] == '0', np.nan, plays['player_number']) + plays['player_number'] = plays['code'].str[1:3].str.extract(r'(\d{2})')\ + .astype(float).fillna(0).astype(int).astype(str) + plays['player_number'] = np.where(plays['player_number'] == '0',\ + np.nan, plays['player_number']) # Create player_name for both teams plays = pd.merge(plays, pd.concat(list([read_players(meta_data, self.home_team, 'H'), @@ -177,23 +418,35 @@ def replace_coordinates(coord): # Create evaluation_code plays['evaluation_code'] = plays['code'].str[5] - plays['evaluation_code'] = np.where(plays['evaluation_code'].isin(eval_codes), plays['evaluation_code'], np.nan) + plays['evaluation_code'] =\ + np.where(plays['evaluation_code'].isin(eval_codes), plays['evaluation_code'], np.nan) # Create set_code - plays['set_code'] = np.where(plays['skill'] == 'Set', plays['code'].str[6:8], np.nan) - plays['set_code'] = np.where((plays['skill'] == 'Set') & (plays['set_code'] != '~~'), plays['set_code'], np.nan) + plays['set_code'] =\ + np.where(plays['skill'] == 'Set', plays['code'].str[6:8], np.nan) + plays['set_code'] =\ + np.where((plays['skill'] == 'Set') &\ + (plays['set_code'] != '~~'), plays['set_code'], np.nan) # Create set_type - plays['set_type'] = np.where(plays['skill'] == 'Set', plays['code'].str[8:9], np.nan) - plays['set_type'] = np.where((plays['skill'] == 'Set') & (plays['set_type'] != '~~'), plays['set_type'], np.nan) + plays['set_type'] = np.where(plays['skill'] == 'Set',\ + plays['code'].str[8:9], np.nan) + plays['set_type'] = np.where((plays['skill'] == 'Set') &\ + (plays['set_type'] != '~~'), plays['set_type'], np.nan) # Create attack code plays['attack_code'] = plays['code'].str[6:8] - plays['attack_code'] = np.where((plays['skill'] == 'Attack') & (plays['attack_code'] != '~~'), plays['attack_code'], np.nan) - - # Create num_players_numeric - plays['num_players_numeric'] = np.where(plays['skill'] == 'Attack', plays['code'].str[13:14], np.nan) - plays['num_players_numeric'] = np.where((plays['skill'] == 'Attack') & (plays['num_players_numeric'] != '~~'), plays['num_players_numeric'], np.nan) + plays['attack_code'] =\ + np.where((plays['skill'] == 'Attack') &\ + (plays['attack_code'] != '~~'), plays['attack_code'], np.nan) + + # Create num_players_numeric + plays['num_players_numeric'] =\ + np.where(plays['skill'] == 'Attack',\ + plays['code'].str[13:14], np.nan) + plays['num_players_numeric'] =\ + np.where((plays['skill'] == 'Attack') &\ + (plays['num_players_numeric'] != '~~'), plays['num_players_numeric'], np.nan) # Create home_team_id plays['home_team_id'] = self.home_team_id @@ -215,12 +468,20 @@ def replace_coordinates(coord): plays['end_subzone'] = np.where(plays['end_subzone'] == '', np.nan, plays['end_subzone']) # Create rally number - plays['rally_number'] = plays.groupby('set_number', group_keys=False)['skill'].apply(lambda x: (x == 'Serve').cumsum()) + plays['rally_number'] =\ + plays.groupby('set_number', group_keys=False)['skill']\ + .apply(lambda x: (x == 'Serve').cumsum()) # Create point_won_by - plays['point_won_by'] = plays.apply(lambda row: self.home_team if row['code'][0:2] == '*p' else self.visiting_team if row['code'][0:2] == 'ap' else None, axis=1) + plays['point_won_by'] = plays.apply(lambda row: self.home_team\ + if row['code'][0:2] == '*p'\ + else self.visiting_team\ + if row['code'][0:2] == 'ap'\ + else None, axis=1) plays['point_won_by'] = plays['point_won_by'].bfill() - plays['point_won_by'] = np.where(plays['code'].str.contains('Up'), np.nan, plays['point_won_by']) + plays['point_won_by'] =\ + np.where(plays['code'].str.contains('Up'),\ + np.nan, plays['point_won_by']) plays['point_won_by'] = np.select( [ plays['code'].str.contains(r'\*\*1set'), @@ -237,39 +498,76 @@ def replace_coordinates(coord): plays['skill'] = np.where(plays['code'].str[1:2] == 'p', 'Point', plays['skill']) # Create home_team_score - plays['home_team_score'] = plays[plays['code'].str[1:2] == 'p']['code'].str[2:4] - plays['home_team_score'] = plays.groupby(['set_number', 'rally_number'])['home_team_score'].bfill() - plays['home_team_score'] = pd.to_numeric(plays['home_team_score'], errors='coerce') - plays['home_team_score'] = plays['home_team_score'].astype('Int64') + plays['home_team_score'] =\ + plays[plays['code'].str[1:2] == 'p']['code'].str[2:4] + plays['home_team_score'] =\ + plays.groupby(['set_number', 'rally_number'])['home_team_score'].bfill() + plays['home_team_score'] =\ + pd.to_numeric(plays['home_team_score'], errors='coerce') + plays['home_team_score'] =\ + plays['home_team_score'].astype('Int64') # Create visiting_team_score - plays['visiting_team_score'] = plays[plays['code'].str[1:2] == 'p']['code'].str[5:7] - plays['visiting_team_score'] = plays.groupby(['set_number', 'rally_number'])['visiting_team_score'].bfill() - plays['visiting_team_score'] = pd.to_numeric(plays['visiting_team_score'], errors='coerce') - plays['visiting_team_score'] = plays['visiting_team_score'].astype('Int64') - + plays['visiting_team_score'] =\ + plays[plays['code'].str[1:2] == 'p']['code'].str[5:7] + plays['visiting_team_score'] =\ + plays.groupby(['set_number', 'rally_number'])['visiting_team_score'].bfill() + plays['visiting_team_score'] =\ + pd.to_numeric(plays['visiting_team_score'], errors='coerce') + plays['visiting_team_score'] =\ + plays['visiting_team_score'].astype('Int64') # Create coordinates plays = add_xy(plays) - # Create serving_team - plays['serving_team'] = np.where((plays['skill'] == 'Serve') & (plays['code'].str[0:1] == '*'), self.home_team, None) - plays['serving_team'] = np.where((plays['skill'] == 'Serve') & (plays['code'].str[0:1] == 'a'), self.visiting_team, plays['serving_team']) - plays['serving_team'] = plays.groupby(['set_number', 'rally_number'])['serving_team'].ffill() + plays['serving_team'] = \ + np.where((plays['skill'] == 'Serve') &\ + (plays['code'].str[0:1] == '*'), self.home_team, None) + plays['serving_team'] =\ + np.where((plays['skill'] == 'Serve') &\ + (plays['code'].str[0:1] == 'a'),\ + self.visiting_team, plays['serving_team']) + plays['serving_team'] =\ + plays.groupby(['set_number',\ + 'rally_number'])['serving_team'].ffill() # Create receiving_team - plays['receiving_team'] = np.where(plays['serving_team'] == self.home_team, self.visiting_team, self.home_team) - plays['receiving_team'] = np.where(plays['serving_team'].isna(), np.nan, plays['receiving_team']) + plays['receiving_team'] =\ + np.where(plays['serving_team'] == \ + self.home_team, self.visiting_team, self.home_team) + plays['receiving_team'] = \ + np.where(plays['serving_team'].isna(), np.nan, plays['receiving_team']) # Create point_phase - plays['point_phase'] = np.where((plays['serving_team'] == plays['team']), 'Serve', 'Reception') + plays['point_phase'] = \ + np.where((plays['serving_team'] == plays['team']), 'Serve', 'Reception') # Create attack_phase - plays['attack_phase'] = np.where((plays['skill'] == 'Attack') & (plays['skill'].shift(2) == 'Reception') & (plays['skill'].shift(1) == 'Set') & (plays['team'].shift(2) == plays['team']),'Reception', np.nan) - plays['attack_phase'] = np.where((plays['skill'] == 'Attack') & (plays['skill'].shift(2) != 'Reception') & (plays['skill'].shift(1) == 'Set') & (plays['serving_team'] != plays['team']) & (plays['team'].shift(2) == plays['team']),'SO-Transition',plays['attack_phase']) - plays['attack_phase'] = np.where((plays['skill'] == 'Attack') & (plays['skill'].shift(2) != 'Reception') & (plays['skill'].shift(1) == 'Set') & (plays['serving_team'] == plays['team']) & (plays['team'].shift(2) == plays['team']),'BP-Transition',plays['attack_phase']) + plays['attack_phase'] = \ + np.where((plays['skill'] == 'Attack') &\ + (plays['skill'].shift(2) == 'Reception') &\ + (plays['skill'].shift(1) == 'Set') &\ + (plays['team'].shift(2) == plays['team']),'Reception', np.nan) + + plays['attack_phase'] =\ + np.where((plays['skill'] == 'Attack') &\ + (plays['skill'].shift(2) != 'Reception') &\ + (plays['skill'].shift(1) == 'Set') &\ + (plays['serving_team'] != plays['team']) &\ + (plays['team'].shift(2) == plays['team']),'SO-Transition',plays['attack_phase']) + + plays['attack_phase'] = \ + np.where((plays['skill'] == 'Attack') &\ + (plays['skill'].shift(2) != 'Reception') &\ + (plays['skill'].shift(1) == 'Set') &\ + (plays['serving_team'] == plays['team']) &\ + (plays['team'].shift(2) == plays['team']),'BP-Transition',plays['attack_phase']) # Create possesion_number - plays['possesion_number'] = plays.groupby(['set_number', 'rally_number'], group_keys=False)['skill'].apply(lambda x: (x == 'Attack').shift(1).cumsum() + 1).fillna(0).astype(int) + plays['possesion_number'] = \ + plays.groupby(['set_number', 'rally_number'],\ + group_keys=False)['skill']\ + .apply(lambda x: (x == 'Attack')\ + .shift(1).cumsum() + 1).fillna(0).astype(int) # Create timeout @@ -288,31 +586,65 @@ def replace_coordinates(coord): plays['visiting_team'] = self.visiting_team # Create setter_position - plays['setter_position'] = np.where(plays['home_team'] == plays['team'], plays['home_setter_position'], plays['visiting_setter_position']) + plays['setter_position'] =\ + np.where(plays['home_team'] == plays['team'],\ + plays['home_setter_position'], plays['visiting_setter_position']) # Create custom code - plays['custom_code'] = plays['code'].apply(lambda x: x.rsplit('~', 1)[1] if '~' in x else None) + plays['custom_code'] = \ + plays['code'].apply(lambda x: \ + x.rsplit('~', 1)[1] if '~' in x else None) # Mappatura dei codici di valutazione evaluation_mapping = { - "Serve": {"=": "Error", "/": "Positive, no attack", "-": "Negative, opponent free attack", - "+": "Positive, opponent some attack", "#": "Ace", "!": "OK, no first tempo possible"}, - "Reception": {"=": "Error", "/": "Poor, no attack", "-": "Negative, limited attack", - "+": "Positive, attack", "#": "Perfect pass", "!": "OK, no first tempo possible"}, - "Attack": {"=": "Error", "/": "Blocked", "-": "Poor, easily dug", - "!": "Blocked for reattack", "+": "Positive, good attack", "#": "Winning attack"}, - "Block": {"=": "Error", "/": "Invasion", "-": "Poor, opposition to replay", - "+": "Positive, block touch", "#": "Winning block", "!": "Poor, opposition to replay"}, - "Dig": {"=": "Error", "/": "Ball directly back over net", "-": "No structured attack possible", - "#": "Perfect dig", "+": "Good dig", "!": "OK, no first tempo possible"}, - "Set": {"=": "Error", "-": "Poor", "/": "Poor", - "+": "Positive", "#": "Perfect", "!": "OK"}, - "Freeball": {"=": "Error", "/": "Poor", "!": "OK, no first tempo possible", - "-": "OK, only high set possible", "+": "Good", "#": "Perfect"} + "Serve": {"=": "Error", + "/": "Positive, no attack", + "-": "Negative, opponent free attack", + "+": "Positive, opponent some attack", + "#": "Ace", + "!": "OK, no first tempo possible"}, + "Reception": + {"=": "Error", "/": "Poor, no attack", + "-": "Negative, limited attack", + "+": "Positive, attack", "#": "Perfect pass", + "!": "OK, no first tempo possible"}, + "Attack": + {"=": "Error", "/": "Blocked", + "-": "Poor, easily dug", + "!": "Blocked for reattack", + "+": "Positive, good attack", + "#": "Winning attack"}, + "Block": + {"=": "Error", "/": "Invasion", + "-": "Poor, opposition to replay", + "+": "Positive, block touch", + "#": "Winning block", + "!": "Poor, opposition to replay"}, + "Dig": + {"=": "Error", "/": "Ball directly back over net", + "-": "No structured attack possible", + "#": "Perfect dig", "+": "Good dig", + "!": "OK, no first tempo possible"}, + "Set": + {"=": "Error", "-": "Poor", + "/": "Poor", + "+": "Positive", "#": "Perfect", + "!": "OK"}, + "Freeball": + {"=": "Error", "/": "Poor", + "!": "OK, no first tempo possible", + "-": "OK, only high set possible", + "+": "Good", "#": "Perfect"} } - # Aggiunta della colonna "evaluation" - plays['evaluation'] = plays.apply(lambda row: evaluation_mapping.get(row['skill'], {}).get(row['evaluation_code'], ""), axis=1) + # add the column "evaluation" + plays['evaluation'] =\ + plays.apply(lambda row: evaluation_mapping.\ + get(row['skill'], {}).get(row['evaluation_code'], ""), axis=1) + + # add the column "Attack_Description" + if play_dict is not None: + plays['attack_description'] = plays['attack_code'].map(play_dict) # Add shoot type plays["skill_type "] = plays.apply(lambda row: row['code'][4] if len(row['code']) > 4 else None, axis=1) @@ -344,18 +676,23 @@ def get_plays(self): def get_players(self,team=None): """ - Retrieves a DataFrame containing a list of players from a specified team, or from all teams if none is specified. + Retrieves a DataFrame containing a list of players + from a specified team, or from all teams if none is specified. Args: - team (str, optional): The name or the id of the team to filter players for. If None, players from all teams are returned. + team (str, optional): + The name or the id of the team to filter players for. + If None, players from all teams are returned. Returns: pd.DataFrame: A DataFrame containing the filtered players. - If 'team' is specified, the DataFrame will contain only players from that team. - If there are no players for the specified team, the DataFrame is returned with both teams. + If 'team' is specified, the DataFrame will contain only + players from that team. + If there are no players for the specified team, + the DataFrame is returned with both teams. """ players = pd.concat([self.players_home,self.players_visiting],ignore_index=True) - if team != None: + if team is not None: if ((team == self.home_team) or (team == self.home_team_id)): players = self.players_home if ((team == self.visiting_team) or (team == self.visiting_team_id)): diff --git a/datavolley/statistics.py b/datavolley/statistics.py index 980ffed3..c607fd6d 100644 --- a/datavolley/statistics.py +++ b/datavolley/statistics.py @@ -1,74 +1,141 @@ -import pandas as pd +"""module to extract some statistics""" +import pandas as pd +import numpy as np +# based on # https://snippets.openvolley.org/indicators-and-statistics.html +def exsideoutrate(plays): + """ + Calculate the expected sideout rate for reception plays. -def exSideoutRate(plays): + This function filters the reception plays, groups them by evaluation, + and calculates the expected sideout rate, which is the average of the + plays where the point was won by the receiving team. + + Args: + plays (DataFrame): A DataFrame containing the plays, + with columns 'skill', 'evaluation', 'point_won_by', and 'team'. + + Returns: + DataFrame: A DataFrame with the evaluation and the expected sideout rate. + """ lso = plays.loc[plays['skill'] == "Reception"]\ .groupby('evaluation')\ - .apply(lambda x: pd.Series({'expected_sideout_rate': (x['point_won_by'] == x['team']).mean()}))\ + .apply(lambda x: pd.Series({'expected_sideout_rate':\ + (x['point_won_by'] == x['team']).mean()}))\ .reset_index() - print(lso) + return lso + +def exsideoutratebyplayer(plays): + """ + Calculate the expected sideout rate for each player based on reception plays. + + This function filters the reception plays, groups them by evaluation, + and calculates the expected sideout rate. It then merges this information + back with the original plays and groups the result by player to calculate + the number of receptions and the average expected sideout rate per player. + Args: + plays (DataFrame): A DataFrame containing the plays, + with columns 'skill', 'evaluation', 'point_won_by', 'team', 'player_id', and 'player_name'. -def exSideoutRateByPlayer(plays): + Returns: + DataFrame: A DataFrame with each player's ID, name, number of receptions, + and average expected sideout rate. + """ lso = plays.loc[plays['skill'] == "Reception"]\ .groupby('evaluation')\ - .apply(lambda x: pd.Series({'expected_sideout_rate': (x['point_won_by'] == x['team']).mean()}))\ + .apply(lambda x: pd.Series({'expected_sideout_rate':\ + (x['point_won_by'] == x['team']).mean()}))\ .reset_index() - merged_plays = pd.merge(plays.loc[plays['skill'] == "Reception"], lso, on="evaluation", how="left") - + merged_plays = pd.merge(plays.loc[plays['skill']\ + == "Reception"], lso, on="evaluation", how="left") result = merged_plays.groupby(['player_id', 'player_name'])\ .agg(n_receptions=('evaluation', 'size'), expected_sideout_rate=('expected_sideout_rate', 'mean'))\ .reset_index() + return result - print(result) - +def exbreakpointrate(plays): + """ + Calculate the expected breakpoint rate for serve plays. + This function filters the serve plays, groups them by evaluation, + and calculates the expected breakpoint rate. The breakpoint rate is + defined as the average of the plays where the point was won by the serving team. + Args: + plays (DataFrame): A DataFrame containing the plays, + with columns 'skill', 'evaluation', 'point_won_by', and 'team'. -def exBreakpointRate(plays): + Returns: + DataFrame: A DataFrame with the evaluation and the expected breakpoint rate. + """ lbp = plays.loc[plays['skill'] == "Serve"]\ .groupby('evaluation')\ - .agg(expected_breakpoint_rate=('team', lambda x: x.eq(plays['point_won_by']).mean()))\ + .agg(expected_breakpoint_rate=('team',\ + lambda x: x.eq(plays['point_won_by']).mean()))\ .reset_index() + return lbp - print(lbp) +def exbreakpointratebyplayer(plays): + """ + Calculate the expected breakpoint rate for each player based on serve plays. + This function filters the serve plays, groups them by evaluation, + and calculates the expected breakpoint rate. It then merges this information + back with the original plays and groups the result by player to calculate + the number of serves and the average expected breakpoint rate per player. -def exBreakpointRateByPlayer(plays): + Args: + plays (DataFrame): A DataFrame containing the plays, + with columns 'skill', 'evaluation', 'point_won_by', 'team', 'player_id', and 'player_name'. + Returns: + DataFrame: A DataFrame with each player's ID, name, number of serves, + and average expected breakpoint rate. + """ lbp = plays.loc[plays['skill'] == "Serve"]\ .groupby('evaluation')\ - .agg(expected_breakpoint_rate=('team', lambda x: x.eq(plays['point_won_by']).mean()))\ + .agg(expected_breakpoint_rate=('team',\ + lambda x: x.eq(plays['point_won_by']).mean()))\ .reset_index() - merged_plays = plays.loc[plays['skill'] == "Serve"]\ .merge(lbp, on="evaluation", how="left") - - result = merged_plays.groupby(['player_id', 'player_name'])\ + result = merged_plays.groupby(['player_id','player_name'])\ .agg(n_serves=('evaluation', 'size'), expected_breakpoint_rate=('expected_breakpoint_rate', 'mean'))\ .reset_index() - - print(result) - - - - -def setAssistRate(plays): - # Aggiungi una variabile indicante se un set è stato seguito da un attacco vincente dalla stessa squadra - plays['set_had_attack_kill'] = (plays['skill'] == "Set") & (plays['skill'].shift(-1) == "Attack") & \ - (plays['evaluation'].shift(-1) == "Winning attack") & \ - (plays['team'].shift(-1) == plays['team']) - - # Filtra solo le righe relative ai set + return result + +def setassistrate(plays): + """ + Calculate the assist rate for sets followed by a winning attack by the same team. + + This function adds a new column to indicate whether a set was followed by a winning attack + by the same team. It then filters the set plays and groups the result by team and attack phase + to calculate the assist rate. + + Args: + plays (DataFrame): A DataFrame containing the plays, + with columns 'skill', 'evaluation', 'team', and 'attack_phase'. + + Returns: + DataFrame: A DataFrame with each team's assist rate grouped by attack phase. + """ + # Add a variable indicating whether a set + # was followed by a winning attack by the same team + plays['set_had_attack_kill'] = (plays['skill'] == "Set") &\ + (plays['skill'].shift(-1) == "Attack") & \ + (plays['evaluation'].shift(-1) == "Winning attack") & \ + (plays['team'].shift(-1) == plays['team']) + + # filter only the rows relative to the set set_rows = plays[plays['skill'] == "Set"] - # Raggruppa per 'team' e 'phase' e calcola il tasso di assistenza + # Group by 'team' and 'phase' and calculate the support rate result = set_rows.groupby(['team', 'attack_phase']) \ - .agg(assist_rate=('set_had_attack_kill', lambda x: np.sum(x) / len(x))) \ - .reset_index() - - print(result) \ No newline at end of file + .agg(assist_rate=('set_had_attack_kill', lambda x: np.sum(x) / len(x))) \ + .reset_index() + return result