diff --git a/Toolbox Migration/src/com/bayer/edam/excelimport/CropScienceAsset.java b/Toolbox Migration/src/com/bayer/edam/excelimport/CropScienceAsset.java index b40a804..68e7a90 100644 --- a/Toolbox Migration/src/com/bayer/edam/excelimport/CropScienceAsset.java +++ b/Toolbox Migration/src/com/bayer/edam/excelimport/CropScienceAsset.java @@ -24,10 +24,14 @@ public class CropScienceAsset { String byr_cs_IsShouldBePublished; String byr_cs_warehouseAvailable; String byr_cs_country; + String byr_licenseScope; + String byr_licenseOwner; + String byr_licenseInformation = ""; HashSet brands = new HashSet(); HashSet indications = new HashSet(); HashSet licenseRecords = new HashSet(); + HashSet licenseTypes = new HashSet(); Long fileSize; diff --git a/Toolbox Migration/src/com/bayer/edam/excelimport/ToolboxImportFileGenerator.java b/Toolbox Migration/src/com/bayer/edam/excelimport/ToolboxImportFileGenerator.java index 7dbd7f9..c74571a 100644 --- a/Toolbox Migration/src/com/bayer/edam/excelimport/ToolboxImportFileGenerator.java +++ b/Toolbox Migration/src/com/bayer/edam/excelimport/ToolboxImportFileGenerator.java @@ -29,12 +29,12 @@ import com.univocity.parsers.csv.CsvWriterSettings; public class ToolboxImportFileGenerator { private static Logger log = Logger.getLogger(ToolboxImportFileGenerator.class); - private static String toolboxExportFilePath = "C:\\Temp\\Migration CS - PhotoGallery\\all imported IDs - toolbox export.csv"; - private static String logfilePath = "C:\\Temp\\Migration CS - PhotoGallery\\all imported IDs - toolbox export.log"; + private static String toolboxExportFilePath = "C:\\Temp\\Migration CS - PhotoGallery\\all imported IDs - toolbox export - TESTSET.csv"; + private static String logfilePath = "C:\\Temp\\Migration CS - PhotoGallery\\all imported IDs - toolbox export - TESTSET.log"; private static String licenseGuidsFilePath = "C:\\Temp\\Migration CS - SQL Server\\Release_GUIDs.csv"; // XXX Spreadsheet needs be be named "Records" in Excel for the importer - private static String importFilePath = "C:\\Temp\\Migration CS - PhotoGallery\\all imported IDs - toolbox export-IMPORT.csv"; + private static String importFilePath = "C:\\Temp\\Migration CS - PhotoGallery\\all imported IDs - toolbox export - TESTSET-IMPORT.csv"; private static String uploadPath = "/Resources/Upload/ToolboxMigration"; private static final Map brandMap; @@ -1018,9 +1018,6 @@ public class ToolboxImportFileGenerator { long statusSkipped = 0; long assetTypeNull = 0; long releaseMissing = 0; - - // XXX - int mig2 = 0; for (String[] line : inputRows) { Integer assetId = Integer.parseInt(line[0]); @@ -1082,7 +1079,7 @@ public class ToolboxImportFileGenerator { if (!line[17].equals("NULL")) asset.byr_cs_retireDate = outputDateFormat.format(inputDateFormat.parse(line[17])); - asset.byr_cs_license_classification = "No License required"; + asset.byr_cs_license_classification = ""; asset.byr_campaignYearLabel = line[18]; @@ -1181,6 +1178,25 @@ public class ToolboxImportFileGenerator { if (!line[34].equals("NULL")) { if (licenses.containsKey(line[34])) { asset.licenseRecords.add(licenses.get(line[34])); + + if (line[30].equals("1")) + asset.licenseTypes.add("License Agreement"); + else if (line[30].equals("2")) + asset.licenseTypes.add("Written permission release"); + else if (line[30].equals("3")) + asset.licenseTypes.add("Testimonial release"); + else if (line[30].equals("4")) + asset.licenseTypes.add("Location release"); + else if (line[30].equals("5")) + asset.licenseTypes.add("Talent/Music release"); + + asset.byr_licenseScope = "US"; + asset.byr_licenseOwner = "Bayer CropScience LP"; + + if (asset.byr_licenseInformation.length() > 0) + asset.byr_licenseInformation += "\n"; + + asset.byr_licenseInformation += "License imported from Toolbox. Licensor: " + line[32] + ", Creator/Company: " + line[36] + " " + line[37] + "/" + line[38] + ", Toolbox upload date: " + outputDateFormat.format(inputDateFormat.parse(line[33])); } else { log.error(asset.toolboxAssetId + ", line " + lineNo + ": No GUID for release file " + line[34]); @@ -1201,7 +1217,6 @@ public class ToolboxImportFileGenerator { log.info("Release missing: " + releaseMissing); log.info("No asset type: " + noAssetType); log.info("Internal assets: " + internalAssets); - log.info("ToolboxMigration2: " + mig2); } private void writeImportFile() { @@ -1225,11 +1240,20 @@ public class ToolboxImportFileGenerator { licenseRecords += licenseRecord; } + String licenseTypes = ""; + for (String licenseType : asset.licenseTypes) { + if (licenseTypes.length() > 0) + licenseTypes += "\n"; + licenseTypes += licenseType; + } + + String[] csvLine = new String[] { asset.assetPath, asset.filename, asset.appendClassification, asset.byr_Title, asset.byr_MarketingId, asset.byr_cs_assetApproval, asset.byr_cs_license_classification, asset.byr_cs_businessUnit, brands, asset.byr_cs_releaseDate, asset.byr_cs_retireDate, asset.byr_cs_description, asset.byr_cs_keywords_tl, - asset.byr_campaignYearLabel, asset.byr_campaignTitle, asset.byr_cs_IsShouldBePublished, - asset.byr_cs_warehouseAvailable, asset.byr_cs_country, licenseRecords }; + asset.byr_campaignYearLabel, asset.byr_campaignTitle, asset.byr_cs_IsShouldBePublished, asset.byr_cs_warehouseAvailable, + asset.byr_cs_country, licenseRecords, licenseTypes, asset.byr_licenseScope, asset.byr_licenseOwner, + asset.byr_licenseInformation }; csvOutputList.add(csvLine); } @@ -1241,7 +1265,8 @@ public class ToolboxImportFileGenerator { "fields|byr_cs_assetApproval", "fields|byr_cs_licenseType", "fields|byr_cs_businessUnit", "fields|byr_cs_brand", "fields|byr_cs_releaseDate", "fields|byr_cs_retireDate", "fields|byr_cs_Description", "fields|byr_cs_keywords_tl", "fields|byr_campaignYearLabel", "fields|byr_campaignTitleLabel", "fields|byr_cs_IsShouldBePublished", - "fields|byr_cs_warehouseAvailable", "fields|byr_cs_country", "fields|byr_cs_licenseRecord"); + "fields|byr_cs_warehouseAvailable", "fields|byr_cs_country", "fields|byr_cs_licenseRecord", "fields|byr_cs_licenseType", + "fields|byr_licenseScope", "fields|byr_licenseOwner", "fields|byr_licenseInformation"); writer.writeRowsAndClose(csvOutputList); } diff --git a/Toolbox Migration/src/com/bayer/edam/excelimport/sql-code.sql b/Toolbox Migration/src/com/bayer/edam/excelimport/sql-code.sql index 63e171e..0306762 100644 --- a/Toolbox Migration/src/com/bayer/edam/excelimport/sql-code.sql +++ b/Toolbox Migration/src/com/bayer/edam/excelimport/sql-code.sql @@ -26,6 +26,9 @@ a.CreatedOn, a.CreatedByUserID, a.UpdatedOn, a.UpdatedByUserID, a.CopyClaimFileN ,rel.CreatedDate ,rel.FileName ,rel.FilePath +,relUsr.FirstName +,relUsr.LastName +,relUsr.CompanyName FROM Assets a @@ -49,6 +52,7 @@ LEFT JOIN Groups grp ON grp.GroupID = agsfm.GroupID --LEFT JOIN SecurityFunctions sf ON sf.SecurityFunctionID = agsfm.SecurityFunctionID LEFT JOIN AssetRelease arel ON a.AssetID = arel.AssetID LEFT JOIN Release rel ON arel.ReleaseID = rel.ReleaseID +LEFT JOIN Users relUsr ON rel.CreatedByUserID = relUsr.UserID WHERE @@ -66,10 +70,5 @@ AND (a.AssetItemID = 46 OR a.AssetItemID = 67) /* -AND a.AssetID IN (24024,24014,24007,23933,23932,23830,23826,23805,23804, -23803,23802,23801,23800,23799,23797,23751,23707,23688,23657,23629,23622, -23517,23484,23483,23472,23470,23467,23411,23392,23381,23211,22868,22488, -22481,22440,22082,22021,21147,20731,19557,19048,18447,18446,18445,18444, -16853,16171,15882,15313,14918,14400,13660,13641,13348,13323,13142,13135, -12844,12814,12007) +AND a.AssetID IN (19029,13191,13190,12931,13110,19599,12416,12493,12410,12538,12578,12579,18812,19679,21996,21626,20988,23413,19588,15246,14757,18893,20936,20274,19321,20134,20135,21722,21917,23785,23429,24261,20939,19605,19603,21919,20498,19863,14612,22625,13003,22685,22686,20536,14728,15161,15166,24187,19506,15710,15599,22465,22556,22560,22484,22485,20755,22486,22487,15609,21639,21640,22890,20731,14380,15750,21014,20698,24407,24002,21715,21716,21717,19081,20082,19896,22280,24543,24226,23218,22934,22674,13767,14493,13768,18800,19689,23363,22106,22541,23271,15833,21878,23075,19873,19875,23799,22432,23800,20210,22421,23803,23760,21637,20092,12923,22158,22885,24289,19082,24062,23804,22423,22497,22065,22066,23761,23806,14731,15039,14619,14498,19086,23807,12283,19080,23057,19326,19179,20837,19735,21955,22077,20202,20203,20838,23808,15038,14621,24011,24244,19023,22993,22281,24542,24232,24230,24228,24220,22819,20562,13181,13176,18565,15762,14012,24583,24609,24611,24612,24616,24647,24668,18551,18562,18563,18564,18565,18568,18569,18572,18573,18576,18577,18581,18582,18583,18584,18585,18586,18587,18588,18589,18593,18594,18595,18596,18601,18602,18606,18607,18609,18610,18614,18615,18617,18618,18619,18620,18621,18622,18625,18627,18628,18629,18630,18631,18632,18633,18634,18636,18637,18638,18640,18641,18642,18643,18645,18646,18647,18649,18651,18652,18653,18654,18655,18656,18657,18658,18659,18660,18661,18663,18664,18665,18666,18667,18668,18669,18670,18671,18672,18673,18674,18675,18676,18677,18678,18679,18680,18681,18684,18686,18687,18688,18689,18690,18691,18693,18694,18695,18696,18697,18700,18701,18702,18703,18704,18705,18707,18708,18710,18711,18713,18714,18715,18717,18718,18720,18721,18722,18723,18724,18725,18726,18727,18730,18731,18732,18733,18734,18735,18736,18740,18743,18744,18746,18747,18748,18750,18751,18752,18753,18754,18757,18758,18759,18760,18762,18763,18765,18766,18768,18769,18770,18771,18772,18773,18774,18775,18776,18778,18779,18781,18792,18793,18794,18795,18796,18798,18799,18800,18811,18812,18813,18816,18820,18821,18822,18823,18824,18825,18826,18827,18828,18829,18830,18831,18834,18835,18836,18838,18843,18844,18848,18851,18852,18853,18854,18855,18856,18857,18859,18865,18868,18877,18878,18879,18880,18881,18882,18883,18884,18885,18886,18888,18889,18890,18891,18892,18893,18894,18895,18897,18901,18903,18904,18905,18906,18907,18908,18909,18910,18911,18912,18913,18914,18917,18918,18919,18920,18921,18922,18923,18924,18925,18926,18928,18929,18932,18934,18935,18936,18937,18939,18945,18961,18965,18966,18967,18968,18971,18972,18973,18979,18983,18993,18994,18998,18999,19000,19002,19008,19009,19010,19011,19012,19013,19014,19015,19018,19019,19020,19022,19023,19024,19026,19029,19030,19031,19032,19040,19041,19042,19043,19044,19045,19046,19048,19049,19053,19055,19059,19060,19062,19064,19065,19069,19075,19076,19077,19078,19079,19080,19081,19082,19083,19084,19086,19087,19088,19089,19090,19091,19092,19093,19094,19095,19096,19097,19098,19100,19105,19113,19114,19115,19116,19120,19122,19123,19124,19126,19127,19129,19131,19132,19133,19134,19138,19139,19149,19151,19152,19153,19154,19162,19164,19165,19167,19168,19169,19173,19175,19176,19177,19178,19179,19180,19181,19183,19184,19188,19189,19191,19192,19193,19194,19195,19196,19197,19198,19199,19201,19202,19203,19204,19205,19206,19207,19208,19209,19213,19215,19218,19221,19222,19223,19224,19225,19226,19228,19230,19231,19233,19234,19236,19239,19240,19242,19243,19244,19245,19247,19249,19250,19251,19255,19258,19259,19260,19261,19262,19263,19264,19271,19272,19274,19275,19276,19277,19278,19279,19281,19282,19283,19284,19285,19287,19288,19289,19290,19292,19303,19304,19311,19313,19315,19316,19317,19318,19319,19320,19321,19322,19323,19325,19326,19327,19328,19329,19332,19333,19334,19336,19337,19340,19341,19342,19345,19346,19347,19348,19349,19350,19351,19354,19358,19359,19360,19361,19362,19363,19364,19366,19367,19368,19371,19372,19373,19376,19377,19378,19379,19380,19381,19382,19383,19384,19386,19387,19389,19392,19393,19395,19396,19397,19398,19400,19402,19403,19404,19407,19408,19409,19410,19411,19412,19415,19416,19417,19418,19419,19420,19421,19422,19423,19424,19425,19426,19429,19431,19432,19433,19434,19441,19442,19446,19447,19450,19451,19452,19453,19456,19457,19458,19459,19461,19462,19463,19465,19466,19467,19468,19469,19470,19471,19472,19473,19474,19475,19476,19477,19478,19479,19480,19481,19482,19483,19484,19485,19486,19487,19488,19489,19490,19491,19492,19493,19494,19495,19496,19497,19498,19499,19500,19504,19506,19507,19511,19513,19514,19515,19516,19517,19518,19520,19521,19522,19524,19525,19526,19527,19528,19529,19530,19531,19534,19535,19538,19539,19540,19542,19543,19545,19548,19549,19555,19556,19557,19560,19561,19562,19563,19568,19569,19570,19571,19575,19576,19578,19579,19582,19587,19588,19589,19590,19591,19592,19593,19594,19595,19596,19597,19598,19599,19600,19601,19602,19603,19604,19605,19606,19608,19609,19610,19611,19612,19613,19614,19615,19618,19619,19622,19623,19624,19625,19626,19627,19628,19632,19633,19634,19635,19636,19637,19638,19639,19640,19642,19643,19646,19648,19649,19650,19651,19652,19657,19658,19659,19660,19661,19662,19664,19665,19666,19668,19674,19679,19685,19689,19690,19691,19692,19693,19696,19701,19702,19703,19704,19705,19708,19709,19710,19711,19712,19713,19714,19715,19716,19717,19718,19719,19720,19721,19722,19723,19724,19725,19726,19727,19728,19729,19730,19732,19733,19734,19735,19744,19745,19746,19747,19748,19750,19751,19779,19780,19781,19782,19783,19784,19785,19786,19787,19788,19789,19792,19793,19795,19796,19797,19798,19799,19800,19801,19802,19803,19804,19811,19812,19813,19814,19815,19816,19818,19823,19824,19826,19831,19832,19835,19836,19837,19838,19839,19841,19844,19845,19850,19856,19857,19860,19861,19863,19864,19865,19871,19872,19874,19876,19877,19878,19879,19880,19881,19883,19884,19888,19891,19894,19895,19896,19897,19899,19900,19901,19902,19903,19904,19905,19907,19908,19910,19911,19912,19913,19914,19916,19917,19919,19920,19921,19922,19925,19933,19934,19936,19937,19938,19940,19941,19943,19946,19947,19949,19950,19951,19952,19954,19955,19958,19963,19965,19966,19967,19968,19971,19974,19975,19979,19980,19981,19982,19984,19985,19986,19991,19992,19997,19999,20002,20003,20004,20006,20009,20010,20011,20019,20021,20024,20025,20031,20034,20035,20036,20037,20038,20039,20040,20041,20042,20044,20048,20049,20050,20051,20052,20053,20054,20055,20056,20057,20058,20059,20060,20061,20062,20063,20064,20065,20066,20067,20068,20069,20070,20071,20072,20074,20075,20076,20077,20078,20080,20081,20082,20083,20084,20092,20093,20094,20095,20096,20098,20103,20105,20107,20109,20110,20111,20112,20115,20119,20122,20123,20124,20125,20126,20127,20134,20135,20136,20137,20138,20139,20140,20141,20142,20143,20146,20147,20148,20149,20150,20151,20152,20153,20154,20155,20157,11984,20184,20188,20189,20191,20193,20194,20195,20196,20197,12007,20200,20201,20203,20206,20209,12017,20210,20211,20212,12020,20213,12022,20215,20217,20218,20219,20222,20225,12033,12034,20227,12036,12037,12038,12039,12040,12041,20233,20234,12042,12043,12044,12045,12046,20239,12047,20240,12048,12051,20243,12052,20244,12053,20245,12054,20246,12055,12056,20249,12057,12058,20250,20252,20253,20255,12065,20257,20258,20259,20260,20261,20262,20263,20264,12072,20265,20266,20267,20268,12077,20269,20270,20271,20272,20273,20274,20275,20276,12085,20278,20279,12088,12089,20281,12090,20283,12091,20284,20285,12095,20287,20288,12096,20289,12097,20290,12098,20291,20292,12100,20293,12101,20294,12102,20295,20296,12105,20297,12106,20298,12107,20299,12108,12109,12110,20302,12111,20303,20304,12112,12113,20305,12114,12115,20307,12116,20308,20314,20315,20317,20318,20319,20320,12128,20321,12130,20322,12131,20324,20325,12133,12134,20326,12135,20327,20328,12136,12137,20329,20330,12138,12139,20331,12140,20332,20333,12141,20334,12142,12144,20336,12145,20337,12146,12150,12151,20348,20349,20350,12158,12160,12161,20354,12162,12163,20357,12167,20360,20361,12169,12170,20362,12171,12172,12173,12177,12178,12179,12181,12182,20377,12187,12188,12189,12193,12200,12209,12210,12213,12215,12217,12220,12221,12226,20419,12228,20421,20422,20423,12231,20424,12232,12233,20425,20426,12234,20427,12235,12236,20429,12237,12238,12239,20435,20436,20437,20438,20440,20441,20442,20443,20444,20446,20447,12255,12256,20450,20454,12262,20455,20456,20458,20459,20461,20466,20467,20468,20469,20470,12280,12282,12283,12284,12285,12287,20484,12293,20485,20486,12296,12297,20490,20491,12301,20493,12302,12303,20495,20496,20497,20498,20499,20500,20501,20502,20503,20504,20505,20506,20507,12317,20510,12318,20511,12319,20512,12320,20513,12321,12322,20515,12323,20516,12324,12325,20518,12326,20519,12327,20520,12328,20521,12329,20522,12330,12331,20523,12332,20524,12333,20525,20528,20529,12338,12339,20532,12341,20533,12342,20535,20536,20537,12345,20538,20539,20540,20544,20545,20546,20550,12359,20553,12361,12362,20554,12363,20555,12364,20557,12366,12367,20562,20564,12372,12374,12375,20567,12376,20568,20569,12377,12378,12379,12380,12381,20573,12382,20574,12383,12384,12385,12386,20578,12387,20579,20580,12388,20581,12389,20582,20585,20586,12394,12396,20588,20589,20590,20591,12399,20592,20593,12401,20594,20595,12404,20596,12405,12406,20598,12407,20599,12408,20600,12409,12410,12412,20604,12413,20605,20606,12416,12417,20609,20611,12419,12420,12421,12423,20616,12424,12425,12426,12427,12428,20621,12429,12430,12431,12432,20625,12433,20627,12435,20628,20629,20632,12441,20633,12442,20634,20635,12443,20636,20637,12445,20638,12446,20639,20640,12450,12451,12452,12454,12455,12456,12457,12458,20650,12459,20651,12460,20652,12461,20653,20654,20655,20656,12464,12465,20657,12466,20658,20659,20660,20661,12473,12474,20667,12476,20668,20669,12478,20670,20671,20672,12480,12481,12482,20676,12485,12486,12488,12489,12490,12492,20684,12493,12494,12495,20687,12496,12497,12498,12499,20692,20693,20694,12502,20695,12503,20696,20697,20698,12509,12510,20702,12511,20703,12512,20704,12513,20705,20706,12514,12516,20708,20709,12519,20711,12521,20714,20715,20716,12526,20718,12527,12528,12529,12530,12531,12532,20725,12534,20726,12535,20727,12536,12537,20729,12538,20730,12540,20733,12541,12542,20734,12543,20735,20736,12545,20737,12548,12550,20743,12551,20744,20745,20746,12555,12556,20749,12558,20750,20751,20752,20753,20754,12563,20755,12564,20756,12565,20757,12566,12567,12569,12570,12572,20764,12573,20765,12574,12575,20767,12576,20768,12577,12578,12579,12580,12581,12582,12583,12584,12585,12589,20782,12590,12591,20783,20784,12593,12594,20786,20787,20788,12597,20789,12598,20790,12599,20793,12601,20794,20795,12603,12605,20797,12606,20798,20799,12607,12608,20801,12609,12612,12613,12614,12615,12617,12618,12619,12620,20812,20813,12622,20814,20815,20816,12624,20817,12625,20818,12626,12628,20820,12629,20821,12630,20822,12631,20824,12633,20825,12634,12637,20830,12640,20832,20834,20836,12645,20837,20838,20839,20840,20841,12650,20842,12651,12652,20844,12653,12654,20847,20848,20849,20850,12659,20851,12664,20857,12665,20859,20860,20861,12671,20863,12672,20864,12673,20865,12674,20866,12675,12676,12677,12678,12682,12685,12686,12687,12688,12689,20881,20882,12691,20883,12692,20884,12693,20885,12694,20886,12695,20887,20888,12697,20889,12698,20890,20891,12699,20892,12700,20893,12701,20894,12702,20895,12703,20896,12704,20897,12705,20898,12706,20899,12707,12708,20901,12709,12710,12711,12712,12714,12715,12716,12717,20910,12718,20911,12719,20912,12720,20913,12721,20914,12722,20915,12723,12725,12726,20918,12727,20919,12728,20920,12729,20921,12730,20922,20923,20924,12732,12733,20926,12734,12735,20927,20928,20929,20930,20931,20932,20933,12742,20934,20935,12743,20936,12745,20937,12746,20938,12747,20939,12748,20940,12749,12750,20942,20947,12755,20951,20952,12761,20953,12762,20954,12763,20955,12764,20956,12765,20958,12766,12767,12768,20960,12769,20961,12770,20962,12771,12773,12774,20966,12775,12776,20968,20969,12778,12779,20971,20975,20976,20977,20978,20979,20980,20981,20982,20983,20985,20986,20987,20988,20989,20990,12799,12800,20992,12801,20993,12802,20994,20995,12805,20999,12807,21000,12808,21001,21002,12810,21003,12812,12814,21006,21009,21010,21011,21012,21013,21014,21019,21020,21021,21022,21023,21024,21026,21027,21028,12842,12843,12844,12845,12846,12847,12848,12849,12850,12851,21043,12852,21044,12853,12854,12855,21047,12856,12857,12858,12859,12860,21053,12861,12862,12863,12864,21057,12865,21058,12866,12868,21061,12870,12871,21065,21066,21067,21068,12876,21069,12877,21070,12878,12879,21072,12880,12881,21073,12882,21074,21075,12883,21076,12884,12885,21077,12886,21078,21079,12887,12888,21080,21081,12889,21082,12890,21083,12891,12892,21085,12893,21086,12894,21087,12895,12896,12897,12898,12899,12900,12904,21097,12905,21098,12907,21099,21100,21101,21102,12910,12911,21103,12912,21104,12913,21105,12914,21106,12915,21107,12916,21108,12917,21109,21110,21111,12920,21112,12921,21113,12922,21115,12923,12924,21117,12925,12926,21118,12927,21119,21120,12928,12929,21121,12930,12931,12932,12933,12934,12935,21127,12936,21128,12937,21129,21130,12938,21131,12939,21132,12940,21133,12941,21134,12942,21135,12943,12944,21136,12945,21137,21138,12946,21139,12947,12948,12949,21142,12950,21143,12951,12952,21146,12955,21147,12956,21148,12957,21149,21151,12959,21152,21153,12961,21154,21155,21156,21157,12967,21159,12968,21160,21161,12969,21162,12970,21163,12971,21164,12972,12973,21165,12974,21166,12975,21167,21168,12976,12977,12978,12979,12980,12982,21175,12983,21176,12984,12985,21178,12986,21179,12987,21180,12988,21181,12989,21182,12990,21183,12991,12992,21184,12993,21186,12995,21187,21188,21190,12998,21191,13000,21192,13001,21194,13002,21195,13003,21196,21197,13006,21198,13007,21199,21200,13009,21201,21203,13012,21204,21205,21206,13015,21207,13016,21208,21209,21210,13019,21211,13020,21212,13021,21213,13022,21214,13023,21215,21216,13025,21217,13026,21219,21220,21221,21222,13031,13033,21226,13034,13035,21227,13036,21228,13037,21229,21230,13039,21231,13040,13041,21234,21235,13044,21236,13045,13046,13047,21239,21240,21241,13050,21242,13051,21244,21246,21247,21248,13057,21249,21250,13059,21251,21252,21253,21254,21255,21256,21258,13067,21259,13068,13069,21262,21263,21264,13073,21265,21266,21267,13075,13076,13077,13081,13082,13083,21275,21276,13084,21277,13086,21279,21281,21282,13091,21283,21284,13092,21285,13093,21286,13094,21287,13095,21288,13097,21289,13098,21291,13099,13100,21292,21294,13102,21295,21296,13104,13105,21297,13106,21298,13107,21299,13108,13109,13110,21302,13111,21303,13112,21304,21305,13113,13114,13115,13117,13118,13119,13120,21312,13121,21314,13123,13124,13125,13126,13127,21320,13128,13129,13130,13131,13133,13134,13135,13136,21328,13137,13138,13139,13140,13141,13142,13143,21335,13144,13145,21338,13146,21339,13147,21340,13148,21341,13149,13150,21343,13151,21344,13152,21346,13155,21347,13156,13157,21350,13158,13159,13160,13161,13162,13163,13164,13165,21357,13166,21358,13167,21359,13168,13169,13170,13171,13172,13173,13174,21366,21367,13175,21368,13176,21369,13177,21370,13178,21371,13179,13180,13181,13182,21375,13183,21376,13184,13185,13186,21378,13187,13188,21380,21381,13189,13190,21382,13191,21383,13192,21384,13193,21385,13194,21386,13195,21387,13196,21388,13197,21389,13198,13199,13200,13201,13202,21395,13203,21396,13205,21397,13206,21398,13207,21400,13209,21401,13210,21402,21403,21404,21405,21406,21408,21409,13217,21410,21411,21415,13225,21417,13226,21418,21420,21421,21422,21423,13232,21425,13234,21426,21427,21428,21429,21430,21431,21432,21434,21435,13245,13246,21443,13251,13252,21444,21445,13253,21446,13254,21447,13255,21448,13256,13257,21449,13258,21451,13259,13260,21452,13261,13262,21454,13263,21455,13264,21456,13265,21457,13266,21458,13267,21459,13268,21460,13269,13270,13271,13272,13273,13274,13275,13276,13277,13278,13279,13280,13281,13282,13283,13284,13285,13286,21479,13287,21480,13288,21481,13289,13290,21483,13291,13292,21484,13293,21485,13294,21487,13295,21488,13296,21489,13297,13298,13299,21492,13301,13302,13304,13305,21498,13306,21499,13309,13310,13311,13312,13314,13318,13319,13321,13323,13335,13336,13345,13346,13347,21540,13348,21541,13349,13351,21543,21544,13353,21545,21546,13354,21547,21548,13356,13357,21549,21550,13358,21551,13359,21552,21553,13361,13362,21554,13363,21555,13364,21556,13365,13366,13367,21559,13368,21560,21561,21562,21563,21564,21566,21567,13375,21568,13376,21569,13377,21570,13378,13380,13381,13382,21575,13383,13384,13385,13386,21580,21581,21582,13391,21583,21584,21585,13394,21586,21587,13395,21588,21590,21591,21592,21593,21596,21597,21599,21600,21601,13409,13410,21602,21603,13412,21604,13413,21605,13414,21606,21609,21610,21611,13421,21613,21614,13423,21616,13424,21617,13425,21618,13426,21619,13427,13429,13430,21622,13431,13432,21625,21626,13434,13435,21628,13438,21631,13440,13441,21633,13442,21634,21635,21636,21637,21638,13447,21640,21641,21642,21643,13452,13453,21645,21646,13455,21647,21648,13456,13457,21649,13458,21650,13459,21651,21652,21653,13462,21654,13463,21656,21657,21658,13467,21659,21660,13468,13469,13470,13471,21664,13472,13473,13474,21667,21668,21670,13479,21671,13480,13481,13482,13483,13485,21678,13487,21679,13488,21680,13489,21681,13490,21682,13491,21683,21684,13492,21685,13493,21686,13494,13495,21687,21688,13496,21689,13497,13498,21691,13499,21692,13500,21693,13501,21694,13502,21695,13503,13504,21697,13505,21698,13506,21699,13507,21700,13508,21701,13509,21702,21703,13511,21704,13512,21705,13513,21706,21707,21708,13517,13518,21711,13519,21712,13520,21713,13521,21714,13522,13523,13524,21717,13525,21718,13526,21719,13527,21720,13528,13529,21722,13530,21723,13531,21724,13532,21725,13533,21726,13534,21727,13535,21728,21729,21730,13539,21731,13540,21732,13541,21733,13542,21734,21735,13544,21736,13545,21737,21738,13546,21739,13547,13548,13549,13550,21742,21743,21744,13553,21745,13554,21746,13555,21747,21748,21749,21750,21751,21752,13560,21753,21754,21755,13564,21756,21757,21758,21759,21760,21761,21762,21764,21766,21768,21770,21771,21772,21773,13582,21774,21775,13583,13584,21777,21778,13586,21779,13588,21780,13589,21781,21782,13590,21783,13592,21785,13595,21788,21789,21791,13599,13600,21792,21793,13601,21794,13602,21795,13603,21796,13604,21797,13606,21798,13607,21799,21800,13608,21801,21802,13610,13611,13612,21805,21806,21807,21809,21812,13621,21814,13623,13624,13625,13626,13627,13628,13629,13630,21823,13631,21824,13632,13633,13634,13635,13636,13637,13638,21831,13639,13640,13641,13642,13643,21835,13644,13645,13646,13648,21841,21846,21849,21852,13660,13661,21854,21855,13663,13666,13667,13668,13669,13670,21862,21863,13671,21864,13672,21865,13673,21866,13674,21867,13675,13676,21868,21869,13677,21870,13679,21872,13681,21873,13682,21874,13683,21875,21876,21878,13686,21879,13689,21881,13690,21882,21883,21884,21885,13694,21886,21887,21889,21890,21891,21893,13703,21897,21899,21900,13709,13710,21903,21904,13712,21905,13715,13716,13718,13719,21912,21913,13721,13722,21915,13723,13724,21917,21918,13726,21919,21920,13729,21921,21922,21923,21924,13735,21929,13737,13738,13739,21931,21933,21934,21935,21936,13746,21938,13747,21939,13748,13749,13751,13752,13753,21947,13755,21948,21949,13757,21950,13758,21951,21952,13760,13761,21953,13763,13764,21956,13765,13766,13767,21960,13768,13769,21961,21962,21963,13771,21964,13772,13773,21967,13775,21968,21969,21970,21971,13779,21972,13781,21973,21974,13782,13783,21975,13784,21976,13785,13786,13787,21979,13788,21980,13789,21981,13790,21982,13791,21983,13792,21984,13793,21985,13794,21986,21987,13795,21988,13796,13797,13798,21990,21991,13802,21995,21996,21997,21998,13806,13807,13808,22000,22001,13809,22002,13811,22003,22004,13813,22005,22006,13814,13815,13816,13817,13818,22010,22011,22012,13820,22013,22014,13823,22015,13824,22016,22018,13826,13827,22019,13828,22020,22021,22022,13830,13831,13832,22024,22025,13833,13834,13835,13836,13837,13838,13839,13840,13841,13842,13843,13844,13845,13846,22039,13847,22040,13848,22041,13849,22042,13850,22043,13851,13852,22044,13853,22045,13854,22046,13855,22047,22048,13857,22049,22050,13858,22051,13859,13860,13861,22053,13862,22054,13863,22055,13864,22056,22057,22058,13866,22059,13867,13868,22060,13869,22061,22062,22064,22065,22066,22067,22068,13877,22069,13878,22070,22071,13879,22073,13882,22075,22077,13885,22079,22080,22081,22082,22083,22084,22085,22086,13894,22087,13895,13896,22088,13897,22089,22090,22091,13900,22092,22093,22094,22095,13903,22096,13904,22097,13905,22098,13906,22099,13907,22100,22101,13910,22102,13911,22103,13912,22104,22105,13914,13915,22107,13916,22109,22110,13920,22112,13921,22113,13922,13923,13924,13925,13926,22118,13927,22119,13928,13929,22121,13930,22122,13931,22123,13932,22124,22125,22126,13935,22127,13936,13937,22129,13938,22130,13939,13940,13942,13943,13946,13947,22139,13948,22140,13949,13950,22142,13951,22143,13952,22144,13953,22145,13954,22146,13955,22147,13956,22148,13957,22149,13958,13959,13960,22152,13961,13962,13963,22155,22156,22157,22158,22159,22160,22165,13974,22166,13975,22167,13976,22168,13977,22170,22171,22173,22175,13988,13989,13990,13991,13992,13993,22186,13994,22187,13995,13996,13997,13999,14000,14001,22193,14002,14003,14004,22196,22197,14006,22198,22199,14007,14008,22200,22201,14009,22202,22204,14012,22206,22207,22208,14017,22209,22210,22212,22215,14024,22216,14025,14026,22218,14027,22219,14028,22220,22221,14030,22222,14031,22223,14032,22224,22225,22226,22227,14036,22228,22229,14038,22230,14039,22231,14040,22232,14041,22233,22234,22235,22236,22237,22238,22239,22240,22242,22243,22244,22246,22247,14056,22248,14057,22249,22252,14061,14062,14063,14064,22256,22257,22258,22259,22260,14068,22261,14069,14070,22262,14071,22263,14072,14073,14074,22266,14075,22267,14076,22268,14077,22269,14078,22271,14079,22272,14080,22273,22274,22275,22276,22277,14087,22280,22281,22282,22283,14092,22284,14093,22285,14094,22286,14095,22287,14096,22288,22289,22290,14099,22291,14100,22292,14101,22293,22294,14103,22295,14104,22296,14105,22297,14106,14107,22299,14108,22300,14109,22301,22303,14115,22307,22308,14116,22309,14118,22310,14119,22311,22312,22313,22314,14122,14123,22315,14124,22316,14125,14126,14127,22319,14128,22320,22321,14129,14130,22322,14131,22323,14133,14134,22326,14135,14138,22330,14139,14140,22332,14141,22333,22334,22335,22336,14144,22337,22338,22339,14147,22340,14148,22341,14150,22342,22343,22344,22345,14154,22346,14155,22347,22348,22351,14159,14160,22353,14161,22354,14162,14163,14164,14165,14168,22361,22362,22363,22364,22366,14176,14177,14178,22371,22373,22374,22375,22376,14186,14187,22379,14188,22380,14189,22381,14190,22382,14191,22383,14192,22384,14193,14194,22386,22387,22388,22389,22390,14198,14199,22391,14200,22392,22393,14201,22394,14203,22395,14204,22396,14205,22397,14207,22399,22400,14209,22401,22403,14213,14214,22406,14215,22407,22408,14217,22411,14222,14227,22421,22422,14231,22423,22424,14233,22426,22427,22428,14236,22429,14237,14239,22431,14240,22432,22433,22434,14243,22435,22436,22437,14246,22438,22439,22440,14249,22441,22442,22443,22444,22445,22446,22447,14256,22448,22449,22450,14258,22451,14260,14261,22453,22454,14263,22455,22456,22457,14265,22458,22459,22460,22461,22462,22463,22464,22465,22466,22467,14276,22468,14277,22469,14278,14280,14282,14284,14285,14286,14288,14289,22481,14290,22482,14291,14292,22484,22485,14293,22486,14294,22487,22488,22489,22490,22491,22492,14301,22493,22494,14303,22495,14304,14305,22497,14306,22498,14307,14308,22500,14309,22502,14310,22503,14311,22504,14315,22507,22508,22509,22510,14319,22511,14320,22512,14321,22513,14322,22514,22515,14323,22516,14324,22517,14325,22518,14327,22519,14329,22521,14330,22522,14331,22523,22524,22525,22526,22528,22529,14338,22530,22531,22532,22533,22534,22535,22536,22537,22538,22539,14348,14349,22541,22542,14351,22543,22544,22545,14354,22547,22548,22549,22550,22552,14360,14361,22553,22554,22556,22557,22558,22559,22560,22561,22562,14371,22563,22564,14373,22565,14374,22566,14375,22567,22568,14376,14377,22569,14379,22571,22572,14380,22573,14382,22574,22575,14383,22576,22577,22578,14386,22579,14388,22580,22581,14390,22582,14391,22583,14392,22584,14393,14394,14395,22587,14396,14397,22589,14398,14399,22591,14400,22592,14401,22594,14402,22595,14403,22596,14404,22597,14406,22598,22599,22604,14413,22605,14414,22606,14415,14416,14417,22609,22610,22611,22612,22615,22616,14425,22617,14426,22618,22619,22620,14431,14432,22624,22625,14433,22627,22628,22630,22631,22632,14440,14441,14442,14443,14444,22638,22639,14448,22640,22641,14449,14450,22642,14451,22643,14452,22644,14453,22645,14454,22646,14455,22647,14456,22648,22649,22650,14459,22651,22652,14461,22653,22654,22655,22656,22657,22658,22659,14468,22660,14469,22663,14472,22664,14473,22665,14474,22666,14475,22667,14476,22668,14477,22669,14478,22670,14479,22671,14480,14481,22673,22674,14482,14483,14484,22678,14486,14487,14488,14489,14490,14491,22683,14492,22684,22685,14493,22686,14495,14496,14498,14499,22692,14500,22693,22694,14503,14505,22698,14506,22699,22701,22702,14512,14513,14514,14516,14517,14518,14519,14520,14522,14525,14526,14527,14533,14534,14535,14536,14537,14538,14539,14543,14544,14545,14546,14547,14548,14549,14550,14551,14552,14553,14554,14555,14556,14557,14558,14559,14560,14561,14562,14564,14566,22760,14568,22761,14569,22762,14570,14571,14572,14573,14574,14575,14576,14577,14578,14579,14580,14581,14583,14584,14585,14586,14587,14588,14589,14591,14592,14595,14596,14597,14598,14599,14600,22792,14601,22793,14602,22794,14604,22796,14605,14606,22798,14607,22800,22804,14612,14613,14614,14616,22808,14617,22809,14618,22811,14619,22812,14620,22813,14621,22814,14622,14623,22815,14624,14625,22818,14627,22819,14628,14630,14632,14633,14634,14636,14640,14641,14642,22836,22837,14645,14646,22838,22840,14648,22841,14650,22843,22844,22845,14653,22846,14654,14655,22848,14656,22849,14657,22850,14658,14661,22857,14667,14668,14669,14670,22863,14671,14672,14673,14674,14675,14676,22868,14680,22872,14681,14682,22875,22877,14687,22879,22880,22881,22882,14691,22883,14692,14694,22886,14695,22887,14696,22888,22889,14697,22890,14698,22891,14699,14700,22892,14701,22893,14702,22894,14703,22896,14704,22897,14705,14706,22899,14707,14708,22901,22902,22903,14711,22904,14712,14714,22907,22908,14717,22909,22910,22911,14720,22912,14721,22913,22914,14723,22915,22916,22917,22918,14727,22919,14728,22920,22921,14730,22922,14731,22924,14732,14733,14734,14735,14737,14738,22930,22931,22932,22934,14742,22935,14743,22936,14744,22937,14746,22938,14747,22940,14748,22941,14749,14750,22942,14751,22944,14752,14754,22947,14756,14757,22949,22950,22951,22952,22959,14768,22960,22961,14769,14770,22962,14771,22963,14772,22964,14773,22965,14774,22966,22967,22968,22970,14779,22971,22972,22973,22976,22977,22978,22980,22984,14793,14794,22986,22987,22988,22989,22991,22992,14801,22993,22994,14802,22995,22996,22997,14806,14807,22999,14809,14810,23002,14811,23003,23004,23005,14814,23007,14816,23008,23009,23010,14819,23011,14820,23012,23013,14821,14822,14823,14824,14825,23017,14827,14828,14830,23022,14831,23023,23024,14833,23025,14834,14835,14836,14838,14840,14841,23033,23034,23035,14844,23036,23037,14846,23038,23039,23041,23042,23043,23044,14852,23045,23046,14855,23047,23048,14856,14857,23049,14858,14859,23051,14860,14864,23056,23057,14865,23059,23060,14870,14871,14872,14873,23065,14874,23066,14875,14876,23068,14877,14878,23070,14879,14880,23072,14881,14882,14883,23075,14884,23076,23077,23078,23079,14889,23082,23084,23085,23086,23087,23089,14898,23091,14900,23092,23093,14901,23095,23096,23097,23098,14907,23099,14908,23100,14909,23101,23102,23103,23104,23105,23106,23107,23108,23109,14918,23110,23111,23112,23119,14928,14929,14930,14940,14941,14942,23143,14951,23144,23145,14953,23146,23147,14955,23148,14956,23149,23150,23151,23152,23154,23155,23156,23157,14965,23159,14967,23160,14968,23161,23162,23163,23164,14972,23165,14973,23166,23167,14975,23168,14976,23169,23170,23171,23172,23173,23174,23175,23176,14984,23178,14986,14987,23180,14988,23181,14990,23182,23183,14992,23185,14993,23186,14994,23187,14995,14996,23189,14998,23191,15000,23193,15002,23195,15003,15004,23197,15005,15006,23199,15007,15008,15009,15010,15011,23205,23206,23207,15015,23208,15016,23209,15017,23210,15018,15019,15020,15021,15022,15023,23218,23219,23221,15030,23222,23223,23224,15032,15033,23225,15034,23226,15035,15036,15037,23229,15038,15039,15040,23233,23236,23237,23238,15047,23239,23240,23241,23242,15052,23244,23245,15053,23246,15054,23247,15055,23248,15056,23249,15057,23250,15058,15059,15060,15061,15062,15063,15064,15065,15066,15067,15068,15069,15070,15071,15072,15073,15074,23266,23267,15075,15076,23268,15077,23270,15078,15079,23271,15080,23272,15081,23273,23274,23276,23277,23279,23280,23281,23282,23284,15095,23287,23288,15097,23289,15098,23290,15099,23291,15100,23292,15101,23293,15102,23294,15103,23295,23296,23297,23298,23299,15108,23300,23301,23302,15111,23303,15112,23304,15113,23305,15114,23306,23307,23308,23309,23310,15119,23311,15120,23312,23313,23314,15123,23315,23316,15124,15125,23317,23318,23319,23320,15129,23321,15130,23322,23323,23324,23325,23326,15135,23327,15136,23328,23329,23330,23331,23332,23333,23334,23335,23336,23337,23338,23339,23340,23341,23342,23343,23344,23345,23346,23347,23348,23349,23350,23351,15160,23352,15161,23353,15162,23354,15163,23355,15164,23356,23357,15165,15166,23358,15167,23359,23360,15168,23361,15169,15170,15171,23363,15173,23365,23366,15174,15175,23367,15176,23368,15177,23369,23370,15178,15179,23371,15180,23372,15181,15182,15183,23375,23376,15184,23377,15185,23379,15188,23382,15191,23383,23384,23385,15194,15197,23390,15199,23391,15200,23392,15201,23393,15202,15203,23395,23396,15204,23397,15205,23398,15206,15207,23399,15208,23400,23401,15209,23402,15210,23403,15211,23404,15212,23405,23406,15215,15217,15218,23412,23413,23414,23415,23416,15225,15226,23418,15227,23419,15228,23420,15229,23421,15230,23422,23423,15232,23424,15233,23425,15234,23426,23428,23429,23430,23431,23432,15242,15243,15244,15245,15246,23438,23439,15248,23440,15249,23441,23442,23443,23444,15253,15254,23446,15255,23447,15256,23449,15257,15258,23450,15259,23451,15260,15261,23453,23454,23455,23456,15265,15266,23460,23461,23462,23463,23464,23465,23466,23467,15276,23468,23469,23470,23471,23472,15280,15281,23473,15282,23474,15283,23475,15284,23477,23478,23479,15288,15289,23481,23482,23483,15291,23484,15292,23485,15297,23489,15298,23490,15303,15304,23497,15305,15306,23499,15308,23500,23501,15309,23502,23503,15311,23504,23505,15313,23506,15315,23507,23508,15316,15317,23509,23510,23511,15320,23512,15321,23513,15322,23514,15323,23515,23516,15325,23517,23518,23519,23520,23521,15329,23522,15330,15331,23523,23524,15332,23525,23526,15335,23527,23528,23529,15338,23530,23531,23532,15340,15341,23533,15342,15343,23535,15344,15345,15346,23538,15347,15348,23540,23542,23543,15354,23546,15355,15356,23548,15357,15358,23550,23551,15360,23552,23553,23554,23555,23559,23561,23562,23563,23564,23565,23566,15375,23567,15376,23568,15377,23569,23570,23571,15381,23573,23574,15383,23575,15384,23576,15385,23577,15386,23578,23579,23580,15389,23582,15391,23584,23585,15393,23586,15394,23587,23588,15396,23589,15397,15398,23590,23591,23592,15400,23593,15401,23594,15402,15403,23595,23596,23597,23598,15407,23599,15408,23600,15409,23601,23602,23603,23606,23609,23610,23611,15420,23612,23613,23614,23615,23616,23617,15427,23619,23620,15428,23621,15429,15430,15431,23623,15432,23624,23625,15434,23626,23628,15436,23629,15439,23631,15440,23632,15441,23633,23634,15442,23635,15443,15444,23637,23638,23639,23640,23641,23642,23643,23644,23645,23646,23647,23648,23649,23650,23651,23652,23653,15461,23654,23655,23656,23657,23659,23660,23661,23662,23663,23664,23665,23666,23669,15477,15478,23670,23671,15479,23672,15480,15481,23674,15482,23675,15483,23676,15488,23680,23681,23682,23683,23685,23686,23687,23688,23696,23697,23698,23699,23701,15510,23703,15511,15512,23705,23706,23707,23708,23709,23710,23711,23712,23713,15521,23714,15522,15523,23715,15524,23716,23717,23718,23719,15527,23720,15529,23721,15530,15531,23723,15532,15533,23725,15534,23726,15535,23727,15536,23728,23729,23730,23731,23732,23733,23734,23735,23736,23737,23738,23739,23740,15549,23741,15550,23742,15551,23744,15552,15553,23746,23747,15555,23748,15556,23749,15557,23750,15558,23751,15559,23752,15560,23753,15561,23754,15562,23755,15563,23756,15564,15565,23757,15566,23758,23759,15567,15568,23760,15569,23761,15570,23762,23763,15571,23764,15572,23765,15573,15574,23766,23767,15576,23768,23769,23772,23773,15581,23774,15582,15583,23776,15584,23777,15585,15586,23778,15587,23779,15588,23780,15589,23781,15590,23782,23783,15591,23784,23785,23787,15596,23788,23789,15597,15598,23790,15599,23791,23792,15600,23793,15601,15602,23795,15603,15604,23796,23799,15608,23800,15609,23801,15610,23802,15611,23803,23804,15613,23805,15614,23806,15615,23807,15616,23808,23809,15617,15618,23810,23812,15620,15621,15622,23814,15623,15624,23816,15625,23817,15626,23818,15627,15628,23820,23821,15629,15630,23823,15631,15632,23824,23825,15633,15634,23826,23827,15636,23828,15637,23829,23830,23831,15640,23832,15641,23833,23834,15643,23835,15644,23836,15645,23837,23838,15647,23839,15648,23840,15649,23841,15650,15651,15652,23844,15653,15654,23848,23849,15658,23850,15659,23851,15660,23852,23854,15662,15664,15665,23857,23858,15666,15667,23859,15668,23861,15670,23862,15671,23863,15672,15673,23865,15674,23866,15675,23867,15676,23868,23869,23870,15681,23873,15682,23874,15683,23875,15684,23876,15685,15686,15687,15688,15689,15690,15693,15694,15695,15698,15700,15702,15703,15704,15705,15706,15707,15708,15709,15710,15712,15713,15715,23910,23911,23912,23915,15724,23916,23917,15726,23920,15729,23921,23922,15731,23924,15732,15733,15734,15735,23927,15736,23928,23929,15737,23930,15738,15739,23931,15740,23932,15741,23933,15742,15743,23935,15744,23936,15745,23937,15746,15748,15749,23941,23942,15750,23943,15751,15752,23945,23946,15754,23947,15755,15756,15757,15758,15760,15761,15762,15768,15769,15770,15771,15772,15773,15774,15775,23969,23970,23971,23972,15780,15781,23973,23974,15782,15783,23976,15784,23977,15785,15786,23978,23980,15789,23981,15790,15791,23983,23984,15792,23985,15793,23986,15794,23987,15795,23988,15797,23989,23990,23991,23992,23993,15802,23994,15803,23995,23996,15804,23997,23998,15807,23999,24001,24002,24003,24005,24006,24007,24008,24009,24010,24011,24012,24013,24014,24015,24016,24017,24018,24019,24020,24021,24022,24023,15831,24024,24025,15833,24026,24027,24028,24029,24030,24031,15840,24033,24034,24035,24036,24037,24038,24039,24040,15848,24041,24042,24043,24044,24045,24046,15863,15864,15865,15866,24058,24059,15869,24061,24064,24065,15874,15875,24067,15876,15877,15878,15879,15880,24073,15882,24074,24075,15883,24076,15885,24077,24078,15886,24079,15887,24080,15888,15889,24081,15890,15891,24083,15892,24085,24094,24095,24096,24098,24102,24103,24104,24105,24107,24108,24109,24112,24121,24122,24123,24126,24127,24128,24129,24130,24131,24132,24133,24137,24140,24161,24162,24163,24164,24165,24166,24167,24168,24169,24170,24171,24172,24173,24178,24180,24181,24187,24190,24191,24192,24193,24194,24195,24196,24198,24199,24201,24202,24203,24204,24205,24206,24207,24208,24209,24210,24211,24212,24213,24215,24216,24217,24218,24220,24222,24223,24224,24225,24226,24228,24230,24232,24235,24237,24240,24242,24244,24246,24248,24250,24253,24255,24257,24261,24262,24264,24268,24269,24270,24271,24272,24274,24275,24276,24277,24278,24279,24280,24281,24282,24283,24284,24285,24286,24287,24288,24289,24290,24291,24292,24293,24294,24295,24296,24297,24302,24303,24304,24305,24306,24307,24308,24309,24310,24311,24312,24313,24314,24315,24316,24317,24318,24320,24333,24334,24335,24336,24337,24338,24341,24342,24343,24345,24346,24347,24354,24356,24357,24358,24359,24360,24361,24362,24363,24364,24366,24371,24373,24374,24376,24377,24382,24383,24384,24385,24389,24390,24391,24392,24394,24396,24398,24400,24402,24403,24404,24406,24407,24408,24409,24411,24412,24417,24418,24419,24420,24423,24424,24425,24426,24427,24439,24448,24449,24450,24451,24452,24453,24454,24455,24456,24457,24458,24459,24460,24461,24462,24463,24464,24465,24466,24467,24468,24469,24470,24483,24485,24486,24498,24499,24500,24501,24502,24504,24534,24535,24536,24537,24553) */