Skip to content

Commit

Permalink
fix: test (and fix) all of the runs
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks committed Sep 14, 2024
1 parent f34d9f3 commit 48372bc
Show file tree
Hide file tree
Showing 2 changed files with 217 additions and 35 deletions.
2 changes: 1 addition & 1 deletion srcC/include/QADB.h
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ namespace QA {
WarningBanner(true);
std::cerr << R"(| WARNING: `QADB::OkForAsymmetry` is DEPRECATED
| - you may still use this method, but `OkForAsymmetry` does
| not include NEW defect bits 6 and above in its criteria
| not include NEW defect bits that have been recently defined
)";
DeprecationGuidance();
std::cerr << R"(| EXAMPLE:
Expand Down
250 changes: 216 additions & 34 deletions srcC/tests/testOkForAsymmetry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,12 @@ std::set<int> test_runnums();

int main(int argc, char ** argv) {

// instantiate two QADBs (this program compares their results, for testing)
std::cout << "Loading QADBs..." << std::endl;
QA::QADB * qa = new QA::QADB(); // will use the general method
QA::QADB * qa_deprecated = new QA::QADB(); // will use `OkForAsymmetry`, which is deprecated
std::cout << "...done" << std::endl;

//////////////////////////////////////////////////////////////////////////////////
// the general method requires the user to choose the defects they want
// to avoid in their analysis, and a list of runs for which the `Misc` defect bit
// should be ignored
std::cout << "Loading QADBs..." << std::endl;
auto qa = new QA::QADB();
qa->CheckForDefect("TotalOutlier"); // these choices match the criteria of `OkForAsymmetry`
qa->CheckForDefect("TerminalOutlier");
qa->CheckForDefect("MarginalOutlier");
Expand All @@ -28,27 +24,36 @@ int main(int argc, char ** argv) {
5046, 5047, 5051, 5128, 5129, 5130, 5158, 5159,
5160, 5163, 5165, 5166, 5167, 5168, 5169, 5180,
5181, 5182, 5183, 5400, 5448, 5495, 5496, 5505,
5567, 5610, 5617, 5621, 5623})
5567, 5610, 5617, 5621, 5623, 6736, 6737, 6738,
6739, 6740, 6741, 6742, 6743, 6744, 6746, 6747,
6748, 6749, 6750, 6751, 6753, 6754, 6755, 6756,
6757})
qa->AllowMiscBit(run);
// after this, just use `qa->Pass(runnum, evnum)` for each event (instead of
// `qa->OkForAsymmetry(runnum, evnum)`)
//////////////////////////////////////////////////////////////////////////////////



// instantiate more QADBs, for comparison (`qa` will use the general method)
auto qa_deprecated = new QA::QADB(); // will use `OkForAsymmetry`, which is deprecated
auto qa_third_party = new QA::QADB(); // a third party, only used for DB traversal
std::cout << "...done" << std::endl;

// compare the QADBs' results: prove the above general method is equivalent to `OkForAsymmetry`
for(auto const& runnum : test_runnums()) {
std::cout << "test run " << runnum << std::endl;

// loop over QA bins for this run
for(int binnum = 0; binnum <= qa->GetMaxBinnum(runnum); binnum++) {
for(int binnum = 0; binnum <= qa_third_party->GetMaxBinnum(runnum); binnum++) {

// skip non-existent bin numbers (required since old QADBs' bin numbers are multiples of 5)
if(!qa->HasBinnum(runnum, binnum)) continue;
if(!qa_third_party->HasBinnum(runnum, binnum)) continue;
if(debug) std::cout << "debug: test binnum " << binnum << std::endl;

// we need an event number to query the QADBs
qa->QueryByBinnum(runnum, binnum);
auto evnum = (qa->GetEvnumMin() + qa->GetEvnumMax()) / 2;
qa_third_party->QueryByBinnum(runnum, binnum);
auto evnum = (qa_third_party->GetEvnumMin() + qa_third_party->GetEvnumMax()) / 2;

// test equivelance of `OkForAsymmetry` and the general user method (`Pass`)
auto pass_qa_general = qa->Pass(runnum, evnum);
Expand All @@ -67,29 +72,206 @@ int main(int argc, char ** argv) {
// specify run numbers to test
std::set<int> test_runnums()
{
// RG-A Fa18 inbending
return {
5032, 5036, 5038, 5039, 5040, 5041, 5043, 5045,
5046, 5047, 5051, 5052, 5053, 5116, 5117, 5119,
5120, 5124, 5125, 5126, 5127, 5128, 5129, 5130,
5137, 5138, 5139, 5153, 5158, 5159, 5160, 5162,
5163, 5164, 5165, 5166, 5167, 5168, 5169, 5180,
5181, 5182, 5183, 5189, 5190, 5191, 5193, 5194,
5195, 5196, 5197, 5198, 5199, 5200, 5201, 5202,
5203, 5204, 5205, 5206, 5208, 5211, 5212, 5215,
5216, 5219, 5220, 5221, 5222, 5223, 5225, 5229,
5230, 5231, 5232, 5233, 5234, 5235, 5237, 5238,
5239, 5247, 5248, 5249, 5250, 5252, 5253, 5257,
5258, 5259, 5261, 5262, 5300, 5301, 5302, 5303,
5304, 5305, 5306, 5307, 5310, 5311, 5315, 5316,
5317, 5318, 5319, 5320, 5323, 5324, 5325, 5333,
5334, 5335, 5336, 5339, 5340, 5341, 5342, 5343,
5344, 5345, 5346, 5347, 5349, 5351, 5354, 5355,
5356, 5357, 5358, 5359, 5360, 5361, 5362, 5366,
5367, 5368, 5369, 5370, 5371, 5372, 5373, 5374,
5375, 5376, 5377, 5378, 5379, 5380, 5381, 5382,
5383, 5386, 5390, 5391, 5392, 5393, 5394, 5398,
5399, 5400, 5401, 5402, 5403, 5404, 5406, 5407,
5414, 5415, 5416, 5417, 5418, 5419
5032, 5036, 5038, 5039, 5040, 5041, 5043, 5045, 5046, 5047, 5051,
5052, 5053, 5116, 5117, 5119, 5120, 5124, 5125, 5126, 5127, 5128,
5129, 5130, 5137, 5138, 5139, 5153, 5158, 5159, 5160, 5162, 5163,
5164, 5165, 5166, 5167, 5168, 5169, 5180, 5181, 5182, 5183, 5189,
5190, 5191, 5193, 5194, 5195, 5196, 5197, 5198, 5199, 5200, 5201,
5202, 5203, 5204, 5205, 5206, 5208, 5211, 5212, 5215, 5216, 5219,
5220, 5221, 5222, 5223, 5225, 5229, 5230, 5231, 5232, 5233, 5234,
5235, 5237, 5238, 5239, 5247, 5248, 5249, 5250, 5252, 5253, 5257,
5258, 5259, 5261, 5262, 5300, 5301, 5302, 5303, 5304, 5305, 5306,
5307, 5310, 5311, 5315, 5316, 5317, 5318, 5319, 5320, 5323, 5324,
5325, 5333, 5334, 5335, 5336, 5339, 5340, 5341, 5342, 5343, 5344,
5345, 5346, 5347, 5349, 5351, 5354, 5355, 5356, 5357, 5358, 5359,
5360, 5361, 5362, 5366, 5367, 5368, 5369, 5370, 5371, 5372, 5373,
5374, 5375, 5376, 5377, 5378, 5379, 5380, 5381, 5382, 5383, 5386,
5390, 5391, 5392, 5393, 5394, 5398, 5399, 5400, 5401, 5402, 5403,
5404, 5406, 5407, 5414, 5415, 5416, 5417, 5418, 5419, 5422, 5423,
5424, 5425, 5426, 5428, 5429, 5430, 5431, 5432, 5434, 5435, 5436,
5437, 5438, 5439, 5440, 5441, 5442, 5443, 5444, 5445, 5447, 5448,
5449, 5450, 5451, 5452, 5453, 5454, 5455, 5456, 5457, 5460, 5462,
5464, 5465, 5466, 5467, 5468, 5469, 5470, 5471, 5472, 5473, 5474,
5475, 5476, 5478, 5479, 5480, 5481, 5482, 5483, 5485, 5486, 5487,
5495, 5496, 5497, 5498, 5499, 5500, 5504, 5505, 5507, 5516, 5517,
5518, 5519, 5520, 5521, 5522, 5523, 5524, 5525, 5526, 5527, 5528,
5530, 5532, 5533, 5534, 5535, 5536, 5537, 5538, 5540, 5541, 5542,
5543, 5544, 5545, 5546, 5547, 5548, 5549, 5550, 5551, 5552, 5554,
5555, 5556, 5557, 5558, 5559, 5561, 5562, 5564, 5565, 5566, 5567,
5569, 5570, 5571, 5572, 5573, 5574, 5577, 5578, 5581, 5584, 5586,
5589, 5590, 5591, 5592, 5594, 5595, 5597, 5598, 5600, 5601, 5602,
5603, 5604, 5606, 5607, 5609, 5610, 5611, 5612, 5613, 5614, 5615,
5616, 5617, 5618, 5619, 5620, 5621, 5623, 5624, 5625, 5626, 5627,
5628, 5629, 5630, 5631, 5632, 5633, 5634, 5635, 5637, 5638, 5639,
5641, 5643, 5644, 5645, 5646, 5647, 5648, 5649, 5650, 5651, 5652,
5654, 5655, 5656, 5662, 5663, 5664, 5665, 5666, 5674, 5675, 5676,
5677, 5678, 5679, 5680, 5681, 5682, 5683, 5684, 5685, 5686, 5688,
5689, 5690, 5691, 5692, 5693, 5694, 5695, 5696, 5698, 5699, 5700,
5701, 5702, 5703, 5704, 5705, 5706, 5707, 5708, 5715, 5716, 5717,
5718, 5720, 5722, 5723, 5724, 5725, 5726, 5727, 5728, 5729, 5732,
5733, 5734, 5735, 5736, 5739, 5741, 5742, 5743, 5745, 5746, 5749,
5750, 5751, 5753, 5758, 5759, 5760, 5761, 5762, 5763, 5765, 5766,
5767, 5768, 5769, 5772, 5774, 5777, 5787, 5788, 5789, 5790, 5791,
5792, 5793, 5794, 5795, 5796, 5797, 5798, 5799, 5800, 5801, 5802,
5803, 5804, 5806, 5807, 5808, 5809, 5810, 5811, 5812, 5813, 5814,
5815, 5816, 5817, 5821, 5822, 5823, 5824, 5825, 5826, 5827, 5828,
5829, 5830, 5832, 5835, 5836, 5838, 5839, 5841, 5843, 5844, 5845,
5846, 5847, 5848, 5849, 5850, 5851, 5852, 5853, 5854, 5855, 5856,
5857, 5858, 5859, 5860, 5861, 5862, 5863, 5864, 5865, 5866, 5867,
5868, 5869, 5870, 5875, 5877, 5878, 5879, 5880, 5881, 5883, 5884,
5885, 5886, 5887, 5889, 5890, 5891, 5892, 5893, 5894, 5895, 5896,
5897, 5898, 5899, 5900, 5901, 5904, 5905, 5906, 5907, 5909, 5910,
5911, 5912, 5913, 5914, 5915, 5916, 5917, 5918, 5919, 5920, 5922,
5923, 5924, 5925, 5926, 5928, 5929, 5931, 5932, 5933, 5934, 5935,
5936, 5937, 5938, 5939, 5940, 5941, 5942, 5943, 5944, 5949, 5950,
5951, 5952, 5953, 5954, 5955, 5956, 5957, 5958, 5962, 5963, 5964,
5965, 5966, 5967, 5968, 5969, 5970, 5971, 5972, 5973, 5974, 5975,
5976, 5977, 5978, 5979, 5980, 5981, 5982, 5983, 5984, 5985, 5986,
5987, 5988, 5990, 5991, 5992, 5993, 5994, 5995, 5996, 5997, 5998,
5999, 6000, 6156, 6157, 6164, 6167, 6168, 6169, 6170, 6189, 6190,
6191, 6193, 6194, 6197, 6198, 6199, 6200, 6201, 6202, 6204, 6206,
6208, 6209, 6210, 6214, 6215, 6216, 6218, 6219, 6220, 6221, 6222,
6223, 6224, 6225, 6226, 6227, 6233, 6235, 6236, 6237, 6239, 6240,
6241, 6242, 6243, 6244, 6245, 6247, 6248, 6249, 6250, 6251, 6252,
6253, 6254, 6255, 6256, 6257, 6258, 6259, 6260, 6262, 6263, 6265,
6266, 6285, 6286, 6287, 6288, 6289, 6296, 6298, 6299, 6302, 6303,
6305, 6307, 6308, 6310, 6311, 6313, 6321, 6322, 6323, 6326, 6327,
6328, 6329, 6330, 6331, 6333, 6334, 6335, 6336, 6337, 6338, 6339,
6340, 6341, 6342, 6346, 6347, 6348, 6349, 6350, 6351, 6352, 6353,
6354, 6356, 6357, 6359, 6361, 6362, 6363, 6366, 6367, 6368, 6369,
6370, 6371, 6373, 6374, 6377, 6378, 6379, 6380, 6381, 6382, 6383,
6384, 6385, 6386, 6389, 6396, 6399, 6420, 6421, 6422, 6426, 6428,
6429, 6430, 6431, 6432, 6433, 6437, 6442, 6443, 6444, 6445, 6446,
6447, 6448, 6449, 6450, 6451, 6452, 6453, 6454, 6455, 6456, 6457,
6458, 6459, 6460, 6461, 6462, 6463, 6464, 6465, 6466, 6467, 6468,
6470, 6471, 6472, 6473, 6474, 6475, 6476, 6479, 6481, 6482, 6483,
6484, 6485, 6486, 6488, 6489, 6491, 6492, 6498, 6499, 6501, 6502,
6510, 6511, 6512, 6513, 6514, 6515, 6516, 6522, 6523, 6524, 6525,
6546, 6547, 6548, 6549, 6550, 6551, 6557, 6558, 6559, 6560, 6561,
6562, 6563, 6565, 6566, 6567, 6568, 6569, 6570, 6571, 6572, 6573,
6576, 6577, 6578, 6581, 6582, 6585, 6586, 6587, 6589, 6590, 6591,
6592, 6593, 6595, 6596, 6597, 6598, 6599, 6601, 6603, 6616, 6618,
6619, 6620, 6631, 6632, 6636, 6637, 6638, 6639, 6640, 6642, 6645,
6647, 6648, 6650, 6651, 6652, 6654, 6655, 6656, 6657, 6658, 6660,
6661, 6662, 6663, 6664, 6665, 6666, 6667, 6668, 6669, 6670, 6672,
6673, 6675, 6676, 6677, 6678, 6680, 6682, 6683, 6684, 6685, 6687,
6688, 6689, 6691, 6692, 6693, 6694, 6695, 6696, 6697, 6698, 6699,
6704, 6705, 6706, 6707, 6708, 6709, 6710, 6711, 6712, 6713, 6714,
6715, 6716, 6717, 6718, 6719, 6722, 6723, 6724, 6725, 6728, 6729,
6730, 6731, 6732, 6733, 6734, 6736, 6737, 6738, 6739, 6740, 6741,
6742, 6743, 6744, 6746, 6747, 6748, 6749, 6750, 6751, 6753, 6754,
6755, 6756, 6757, 6759, 6760, 6762, 6763, 6764, 6765, 6767, 6768,
6769, 6775, 6776, 6777, 6778, 6779, 6780, 6781, 6783, 11093, 11094,
11095, 11096, 11097, 11098, 11099, 11100, 11101, 11102, 11103, 11107, 11108,
11109, 11110, 11111, 11113, 11114, 11117, 11119, 11120, 11121, 11122, 11124,
11125, 11126, 11127, 11128, 11129, 11132, 11143, 11156, 11158, 11159, 11160,
11162, 11165, 11171, 11174, 11175, 11176, 11178, 11179, 11180, 11182, 11183,
11189, 11190, 11193, 11194, 11195, 11197, 11198, 11199, 11200, 11201, 11202,
11203, 11206, 11207, 11210, 11211, 11212, 11213, 11214, 11215, 11218, 11220,
11221, 11222, 11223, 11225, 11226, 11230, 11231, 11232, 11233, 11234, 11235,
11238, 11239, 11241, 11243, 11244, 11247, 11248, 11250, 11251, 11252, 11253,
11254, 11256, 11257, 11258, 11265, 11266, 11268, 11269, 11270, 11272, 11273,
11274, 11276, 11277, 11279, 11282, 11283, 11286, 11287, 11288, 11289, 11290,
11291, 11292, 11293, 11294, 11295, 11296, 11297, 11298, 11299, 11300, 11323,
11324, 11325, 11326, 11327, 11328, 11329, 11330, 11331, 11336, 11338, 11339,
11340, 11341, 11342, 11345, 11347, 11348, 11352, 11354, 11356, 11357, 11358,
11361, 11362, 11363, 11364, 11365, 11366, 11367, 11368, 11370, 11372, 11373,
11374, 11375, 11376, 11378, 11379, 11381, 11383, 11386, 11387, 11389, 11390,
11394, 11395, 11396, 11397, 11398, 11399, 11400, 11401, 11402, 11403, 11404,
11412, 11413, 11414, 11415, 11416, 11417, 11418, 11419, 11420, 11421, 11422,
11423, 11429, 11430, 11432, 11433, 11434, 11435, 11436, 11437, 11438, 11439,
11440, 11441, 11442, 11443, 11444, 11445, 11446, 11447, 11449, 11450, 11451,
11458, 11460, 11462, 11463, 11465, 11466, 11467, 11468, 11469, 11470, 11471,
11472, 11473, 11474, 11475, 11476, 11477, 11479, 11480, 11481, 11483, 11484,
11485, 11486, 11487, 11490, 11491, 11492, 11493, 11494, 11495, 11496, 11497,
11498, 11499, 11501, 11502, 11504, 11505, 11506, 11507, 11508, 11509, 11510,
11511, 11512, 11513, 11514, 11515, 11516, 11517, 11518, 11519, 11521, 11522,
11524, 11525, 11528, 11529, 11530, 11531, 11532, 11533, 11534, 11535, 11536,
11537, 11538, 11539, 11540, 11541, 11544, 11545, 11546, 11548, 11550, 11553,
11554, 11556, 11557, 11560, 11561, 11562, 11563, 11564, 11565, 11566, 11567,
11568, 11569, 11570, 11571, 15019, 15020, 15022, 15023, 15024, 15025, 15026,
15027, 15028, 15029, 15030, 15031, 15032, 15033, 15034, 15035, 15036, 15045,
15046, 15047, 15049, 15050, 15051, 15052, 15053, 15054, 15055, 15056, 15057,
15058, 15059, 15060, 15061, 15062, 15065, 15066, 15067, 15072, 15073, 15074,
15075, 15077, 15078, 15079, 15081, 15082, 15093, 15094, 15095, 15096, 15097,
15098, 15099, 15100, 15101, 15102, 15103, 15104, 15105, 15106, 15109, 15110,
15111, 15113, 15114, 15116, 15117, 15128, 15132, 15133, 15134, 15136, 15137,
15139, 15141, 15142, 15143, 15145, 15147, 15148, 15149, 15150, 15151, 15153,
15154, 15155, 15156, 15157, 15158, 15159, 15160, 15164, 15186, 15187, 15188,
15189, 15190, 15191, 15192, 15193, 15194, 15196, 15199, 15200, 15202, 15203,
15204, 15205, 15206, 15207, 15210, 15212, 15213, 15214, 15215, 15217, 15219,
15220, 15221, 15223, 15224, 15225, 15226, 15228, 15234, 15235, 15236, 15238,
15239, 15240, 15241, 15242, 15243, 15245, 15246, 15247, 15248, 15249, 15250,
15252, 15253, 15254, 15255, 15257, 15258, 15259, 15260, 15261, 15262, 15263,
15264, 15265, 15266, 15269, 15270, 15271, 15272, 15273, 15274, 15275, 15278,
15279, 15280, 15282, 15283, 15284, 15286, 15287, 15288, 15289, 15290, 15291,
15292, 15293, 15294, 15295, 15296, 15298, 15300, 15301, 15302, 15303, 15304,
15305, 15306, 15307, 15308, 15309, 15310, 15311, 15312, 15313, 15314, 15316,
15317, 15320, 15322, 15323, 15324, 15325, 15326, 15327, 15357, 15358, 15359,
15362, 15363, 15364, 15365, 15366, 15367, 15368, 15369, 15370, 15371, 15374,
15375, 15376, 15378, 15380, 15381, 15383, 15384, 15385, 15387, 15389, 15391,
15392, 15395, 15396, 15397, 15399, 15400, 15401, 15402, 15405, 15408, 15409,
15410, 15414, 15415, 15416, 15417, 15418, 15419, 15421, 15422, 15427, 15428,
15429, 15430, 15431, 15432, 15435, 15436, 15437, 15439, 15441, 15442, 15443,
15444, 15445, 15447, 15448, 15449, 15450, 15451, 15452, 15454, 15455, 15456,
15458, 15459, 15461, 15462, 15463, 15465, 15466, 15468, 15469, 15471, 15472,
15475, 15476, 15477, 15478, 15480, 15481, 15482, 15483, 15485, 15486, 15487,
15488, 15489, 15490, 15550, 15551, 15552, 15554, 15555, 15556, 15560, 15561,
15562, 15563, 15567, 15568, 15569, 15570, 15572, 15573, 15574, 15575, 15576,
15577, 15578, 15579, 15580, 15581, 15582, 15583, 15586, 15587, 15588, 15589,
15590, 15591, 15592, 15593, 15594, 15595, 15598, 15599, 15600, 15601, 15602,
15603, 15604, 15606, 15607, 15608, 15609, 15610, 15611, 15612, 15613, 15614,
15615, 15616, 15617, 15618, 15619, 15620, 15622, 15623, 15624, 15625, 15626,
15627, 15628, 15629, 15631, 15632, 15633, 15634, 15635, 15636, 15644, 15645,
15646, 15647, 15650, 15651, 15652, 15653, 15654, 15655, 15656, 15657, 15658,
15659, 15660, 15661, 15662, 15663, 15664, 15665, 15666, 15667, 15668, 15669,
15670, 15672, 15673, 15674, 15675, 15676, 15677, 15678, 15679, 15680, 15681,
15682, 15683, 15684, 15685, 15686, 15691, 15692, 15693, 15694, 15695, 15696,
15698, 15700, 15701, 15702, 15703, 15704, 15706, 15707, 15708, 15709, 15710,
15711, 15712, 15713, 15714, 15715, 15716, 15717, 15718, 15719, 15720, 15721,
15722, 15723, 15724, 15733, 15743, 15744, 15745, 15749, 15750, 15751, 15752,
15753, 15754, 15755, 15756, 15759, 15764, 15766, 15768, 15769, 15770, 15771,
15772, 15773, 15775, 15778, 15779, 15780, 15781, 15782, 15783, 15784, 15792,
15793, 15794, 15795, 15796, 15797, 15798, 15800, 15801, 15802, 15807, 15809,
15810, 15811, 15812, 15814, 15815, 15816, 15818, 15819, 15820, 15821, 15822,
15823, 15824, 15825, 15826, 15827, 15830, 15832, 15833, 15834, 15835, 15836,
15843, 15845, 15846, 15847, 15848, 15849, 15851, 15852, 15854, 15856, 15858,
15859, 15860, 15861, 15863, 15864, 15866, 15867, 15868, 15869, 15872, 15873,
15874, 15875, 15880, 15883, 15884, 16042, 16043, 16044, 16047, 16048, 16049,
16050, 16051, 16052, 16054, 16066, 16067, 16069, 16074, 16075, 16076, 16077,
16078, 16089, 16096, 16098, 16100, 16101, 16102, 16103, 16105, 16106, 16107,
16108, 16109, 16110, 16111, 16112, 16113, 16114, 16115, 16116, 16117, 16119,
16122, 16128, 16134, 16137, 16138, 16144, 16145, 16146, 16148, 16156, 16157,
16158, 16164, 16166, 16167, 16168, 16169, 16170, 16178, 16184, 16185, 16186,
16194, 16211, 16213, 16214, 16221, 16222, 16223, 16224, 16225, 16226, 16228,
16231, 16232, 16233, 16234, 16235, 16236, 16238, 16243, 16244, 16245, 16246,
16248, 16249, 16250, 16251, 16252, 16253, 16256, 16257, 16259, 16260, 16262,
16263, 16270, 16271, 16273, 16276, 16277, 16279, 16280, 16281, 16283, 16284,
16285, 16286, 16287, 16288, 16289, 16290, 16291, 16292, 16293, 16296, 16297,
16298, 16299, 16300, 16301, 16302, 16303, 16306, 16307, 16308, 16309, 16317,
16318, 16320, 16321, 16322, 16323, 16325, 16326, 16327, 16328, 16329, 16330,
16331, 16332, 16333, 16335, 16336, 16337, 16338, 16339, 16341, 16343, 16345,
16346, 16348, 16350, 16352, 16353, 16354, 16355, 16356, 16357, 16358, 16359,
16360, 16361, 16362, 16396, 16397, 16398, 16400, 16401, 16403, 16404, 16405,
16406, 16407, 16408, 16409, 16410, 16411, 16412, 16414, 16415, 16416, 16419,
16420, 16421, 16422, 16423, 16424, 16425, 16426, 16432, 16433, 16434, 16435,
16436, 16438, 16440, 16441, 16442, 16443, 16444, 16445, 16447, 16448, 16449,
16454, 16455, 16456, 16457, 16458, 16460, 16461, 16463, 16465, 16466, 16467,
16468, 16469, 16470, 16471, 16472, 16473, 16474, 16475, 16476, 16477, 16478,
16480, 16482, 16483, 16484, 16489, 16490, 16491, 16493, 16494, 16495, 16498,
16500, 16501, 16502, 16503, 16504, 16505, 16506, 16507, 16508, 16509, 16510,
16511, 16512, 16513, 16514, 16515, 16517, 16518, 16519, 16520, 16580, 16581,
16583, 16586, 16587, 16588, 16594, 16597, 16598, 16599, 16600, 16601, 16602,
16604, 16609, 16610, 16611, 16615, 16616, 16617, 16618, 16619, 16620, 16625,
16626, 16627, 16628, 16629, 16630, 16631, 16632, 16633, 16634, 16636, 16658,
16659, 16660, 16664, 16665, 16666, 16671, 16672, 16673, 16674, 16675, 16676,
16678, 16679, 16681, 16682, 16683, 16685, 16686, 16687, 16688, 16689, 16690,
16692, 16693, 16695, 16697, 16698, 16699, 16700, 16701, 16702, 16704, 16709,
16710, 16711, 16712, 16713, 16715, 16716, 16717, 16718, 16719, 16720, 16721,
16722, 16723, 16726, 16727, 16728, 16729, 16730, 16731, 16732, 16733, 16734,
16736, 16738, 16742, 16743, 16744, 16746, 16747, 16748, 16749, 16750, 16751,
16752, 16753, 16754, 16755, 16756, 16757, 16758, 16759, 16761, 16762, 16763,
16765, 16766, 16767, 16768, 16769, 16770, 16771, 16772
};
}

0 comments on commit 48372bc

Please sign in to comment.