content
stringlengths 7
2.61M
|
---|
def store_transfer_out(self, assetId_list):
self.manager.update_rows(self.ledgerId, assetId_list, self.stateMap[AssetState.TRANSFER_OUT]) |
Wahhabi Self-Examination Post-9/11: Rethinking the Other, Otherness and Tolerance Saudi Arabia found itself under an unflattering spotlight in the wake of the events of 9/11, perhaps more than any other country in the Middle East. The fact that 15 of the 19 suicide skyjackers were Saudi citizens provoked an avalanche of criticism in the West as well as in some parts of the Islamic and Arab world against Saudi religious beliefs, rulers, social customs, and school curricula. This article traces the Wahhabi Post-9/11 ideological self-examination of relationships with non-Wahhabis. Emphasis will be placed on the current Wahhabi perceptions of the fundamental terms of other and otherness that are most likely to affect relationships between the Wahhabis and other cultures and religious groups. I argue that post-9/11 Wahhabi Islam acknowledges the problematic nature of its traditional perception of the other and, therefore, is making significant and unprecedented efforts to reformulate and redefine religious doctrines, such as jihad, tolerance, interfaith dialogue and so forth. |
/**
* Causes the bunny to fall down due to gravity.
*
* @param terrain the terrain to fall onto
* @throws NullPointerException if bitmap has not been initialized
*/
public void fall(Terrain terrain){
Point pos = terrain.getHighestPointAt(position.x);
pos.y -= radius;
setPosition(pos);
} |
The Impact of Occupational Stress Factors to Job Stress in Housekeeping Department of Hotel ABC The increase of tourist coming to Indonesia makes many hotels in the industry compete to attract the customer. However, the consumers become more sharp and selective to choose the hotel where they want to stay. Easily accessed information and review about hotel makes the management of the hotel wants to give the best impression to consumer. The heavy demand from management and customers as well as the increase number of work will increase the stress level of the employees. The management cannot ignore the stress level of the employees. Managing the stress level of the employees will help Hotel ABC to keep performance of the employees at utmost level. This research was conducted in Housekeeping department of Hotel ABC by distributing questionnaires to 58 employees. The sampling method used was simple random sampling. The data were analyzed using Multiple Linear Regression Analysis. The results show that work relationship, work overload, job security, and job characteristics do not pass validity and reliability test. The rest of independent variables passed the validity and reliability test, but do not have significant impact towards job stress simultaneously or individually. Keyword: Human Resource, Job Stress |
// Parse tags, and return one Tags structure containing only
// global tags, another one containing both global and local tags.
func (r *Repository) Tags() (tGlobal, tAll *Tags) {
tGlobal, tAll = newTags(), newTags()
st := r.NewStore()
index, err := st.OpenRevlog(".hgtags")
if err == nil {
fb := revlog.NewFileBuilder()
if err := fb.BuildWrite(nil, index.Tip()); err == nil {
tAll.parseFile(bytes.NewReader(fb.Bytes()))
}
}
f, err := r.open(".hg/localtags")
if err == nil {
tGlobal.copy(tAll)
err = tAll.parseFile(f)
f.Close()
} else {
tGlobal = tAll
}
return
} |
package com.coding.recursion.advance;
public class test {
public static void main(String[] args) {
int n=123;
while(n>0){
int digit =n%10;
n=n/10;
System.out.println(digit);
}
}
}
|
def run(self, circuit:Circuit, shots:int, fit_to_constraints:bool=True) -> np.ndarray :
c = circuit.copy()
if fit_to_constraints :
c = route(c, self._architecture)
c.decompose_SWAP_to_CX()
Transform.OptimisePostRouting().apply(c)
Transform.RebaseToQuil().apply(c)
p = tk_to_pyquil(c)
p.wrap_in_numshots_loop(shots)
ex = self._qc.compiler.native_quil_to_executable(p)
return np.asarray(self._qc.run(ex)) |
def calc_all_expected_BIC(x, y, g, combinations, check_rank=True):
(n, k) = x.shape
c = combinations.shape[1]
assert n == y.shape[0]
assert k == combinations.shape[0]
digamma_shape = scipy.special.digamma(n / 2)
xtx = np.dot(x.T, x)
xty = np.dot(x.T, y)
gprior = np.repeat(np.sqrt(1 / (g + 1)), k, axis=1)
gprior = np.multiply(gprior, gprior.T)
bic = np.zeros(c, dtype=np.dtype(float))
for i in range(c):
c_idx = regression.bool_to_index(combinations[:, i])
k_included = len(c_idx)
if k_included == 0:
bic[i] = n * np.log(np.var(y, ddof=1))
continue
try:
rate = _calc_rate(x[:, c_idx],
y,
xtx[:, c_idx][c_idx, :],
xty[c_idx],
gprior[:, c_idx][c_idx, :],
check_rank=check_rank)
if np.isfinite(rate):
bic[i] = n * (np.log(rate) - digamma_shape) + k_included * np.log(n)
else:
raise np.linalg.LinAlgError
except np.linalg.LinAlgError:
bic[i] = np.inf
return bic |
<reponame>jinuoh2003/TrafficLightML
import cv2
import threading
def frame(win, chars):
while not flag.is_set() and cap.isOpened():
rv, frame = cap.read()
if rv:
cv2.imshow(win, frame)
for c in chars: print(c)
if cv2.waitKey(1) & 0xff == 27: break
flag.set() # terminate other threads as well
cap = cv2.VideoCapture(0)
flag = threading.Event()
t1 = threading.Thread(target=frame, args=('win1','a'))
t1.start()
t2 = threading.Thread(target=frame, args=('win2',('b','c')))
t2.start()
t1.join()
t2.join()
cap.release() |
/*******************************************************************************
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
******************************************************************************/
package org.apache.nutch.indexer;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.charset.Charset;
import java.nio.charset.CharsetDecoder;
import org.apache.avro.util.Utf8;
import org.slf4j.Logger;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.mapreduce.Reducer;
import org.apache.nutch.scoring.ScoringFilterException;
import org.apache.nutch.scoring.ScoringFilters;
import org.apache.nutch.storage.Mark;
import org.apache.nutch.storage.StorageUtils;
import org.apache.nutch.storage.WebPage;
import org.apache.nutch.util.StringUtil;
import org.apache.nutch.util.TableUtil;
import org.apache.gora.store.DataStore;
public class IndexerReducer extends
Reducer<String, WebPage, String, NutchDocument> {
public static final Logger LOG = IndexerJob.LOG;
private IndexingFilters filters;
private ScoringFilters scoringFilters;
private DataStore<String, WebPage> store;
@Override
protected void setup(Context context) throws IOException {
Configuration conf = context.getConfiguration();
filters = new IndexingFilters(conf);
scoringFilters = new ScoringFilters(conf);
try {
store = StorageUtils.createDataStore(conf, String.class,
WebPage.class);
} catch (ClassNotFoundException e) {
throw new IOException(e);
}
}
public static Charset charset = Charset.forName("UTF-8");
public static CharsetDecoder decoder = charset.newDecoder();
public static String toString(ByteBuffer buffer) {
String data = "";
try {
int old_position = buffer.position();
decoder.reset();
data = decoder.decode(buffer).toString();
// reset buffer's position to its original so it is not altered:
buffer.position(old_position);
} catch (Exception e) {
e.printStackTrace();
return "";
}
return data;
}
@Override
protected void reduce(String key, Iterable<WebPage> values, Context context)
throws IOException, InterruptedException {
WebPage page = values.iterator().next();
NutchDocument doc = new NutchDocument();
//System.err.println(toString(page.getContent()));
doc.add("id", key);
doc.add("digest", StringUtil.toHexString(page.getSignature().array()));
//doc.add("content", cdata(toString(page.getContent())));
String url = TableUtil.unreverseUrl(key);
if (LOG.isDebugEnabled()) {
LOG.debug("Indexing URL: " + url);
}
try {
System.err.println("about to call filter..");
doc = filters.filter(doc, url, page);
} catch (IndexingException e) {
LOG.warn("Error indexing " + key + ": " + e);
return;
}
// skip documents discarded by indexing filters
if (doc == null)
return;
float boost = 1.0f;
// run scoring filters
try {
boost = scoringFilters.indexerScore(url, doc, page, boost);
} catch (final ScoringFilterException e) {
LOG.warn("Error calculating score " + key + ": " + e);
return;
}
doc.setScore(boost);
// store boost for use by explain and dedup
doc.add("boost", Float.toString(boost));
Utf8 mark = Mark.UPDATEDB_MARK.checkMark(page);
if (mark != null) {
Mark.INDEX_MARK.putMark(page, Mark.UPDATEDB_MARK.checkMark(page));
store.put(key, page);
}
context.write(key, doc);
}
private String cdata(String string) {
return "<![CDATA[" + string + "]]>";
}
@Override
public void cleanup(Context context) throws IOException {
store.close();
}
}
|
// Copyright 2015, VIXL authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
// * Neither the name of ARM Limited nor the names of its contributors may be
// used to endorse or promote products derived from this software without
// specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS CONTRIBUTORS "AS IS" AND
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// ---------------------------------------------------------------------
// This file is auto generated using tools/generate_simulator_traces.py.
//
// PLEASE DO NOT EDIT.
// ---------------------------------------------------------------------
#ifndef VIXL_SIMULATOR_COND_RD_RN_RM_T32_UHASX_H_
#define VIXL_SIMULATOR_COND_RD_RN_RM_T32_UHASX_H_
const Inputs kOutputs_Uhasx_Condition_eq_r0_r0_r0[] = {
{ 0x80000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x40000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x20000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x10000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xc0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xa0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x90000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x60000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x50000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x30000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xe0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xd0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xb0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x70000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xf0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
};
const Inputs kOutputs_Uhasx_Condition_ne_r0_r0_r0[] = {
{ 0x80000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x40000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x20000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x10000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xc0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xa0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x90000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x60000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x50000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x30000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xe0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xd0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xb0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x70000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xf0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
};
const Inputs kOutputs_Uhasx_Condition_cs_r0_r0_r0[] = {
{ 0x80000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x40000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x20000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x10000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xc0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xa0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x90000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x60000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x50000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x30000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xe0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xd0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xb0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x70000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xf0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
};
const Inputs kOutputs_Uhasx_Condition_cc_r0_r0_r0[] = {
{ 0x80000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x40000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x20000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x10000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xc0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xa0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x90000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x60000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x50000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x30000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xe0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xd0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xb0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x70000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xf0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
};
const Inputs kOutputs_Uhasx_Condition_mi_r0_r0_r0[] = {
{ 0x80000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x40000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x20000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x10000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xc0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xa0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x90000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x60000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x50000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x30000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xe0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xd0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xb0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x70000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xf0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
};
const Inputs kOutputs_Uhasx_Condition_pl_r0_r0_r0[] = {
{ 0x80000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x40000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x20000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x10000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xc0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xa0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x90000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x60000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x50000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x30000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xe0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xd0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xb0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x70000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xf0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
};
const Inputs kOutputs_Uhasx_Condition_vs_r0_r0_r0[] = {
{ 0x80000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x40000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x20000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x10000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xc0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xa0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x90000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x60000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x50000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x30000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xe0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xd0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xb0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x70000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xf0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
};
const Inputs kOutputs_Uhasx_Condition_vc_r0_r0_r0[] = {
{ 0x80000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x40000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x20000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x10000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xc0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xa0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x90000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x60000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x50000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x30000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xe0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xd0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xb0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x70000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xf0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
};
const Inputs kOutputs_Uhasx_Condition_hi_r0_r0_r0[] = {
{ 0x80000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x40000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x20000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x10000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xc0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xa0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x90000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x60000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x50000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x30000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xe0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xd0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xb0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x70000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xf0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
};
const Inputs kOutputs_Uhasx_Condition_ls_r0_r0_r0[] = {
{ 0x80000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x40000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x20000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x10000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xc0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xa0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x90000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x60000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x50000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x30000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xe0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xd0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xb0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x70000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xf0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
};
const Inputs kOutputs_Uhasx_Condition_ge_r0_r0_r0[] = {
{ 0x80000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x40000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x20000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x10000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xc0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xa0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x90000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x60000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x50000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x30000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xe0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xd0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xb0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x70000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xf0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
};
const Inputs kOutputs_Uhasx_Condition_lt_r0_r0_r0[] = {
{ 0x80000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x40000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x20000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x10000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xc0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xa0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x90000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x60000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x50000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x30000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xe0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xd0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xb0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x70000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xf0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
};
const Inputs kOutputs_Uhasx_Condition_gt_r0_r0_r0[] = {
{ 0x80000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x40000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x20000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x10000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xc0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xa0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x90000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x60000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x50000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x30000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xe0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xd0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xb0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x70000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0xf0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
};
const Inputs kOutputs_Uhasx_Condition_le_r0_r0_r0[] = {
{ 0x80000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x40000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x20000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x10000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xc0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xa0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x90000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x60000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x50000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x30000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xe0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xd0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xb0000000, 0x00000000, 0x00000000, 0xabababab, 0xabababab, 0xabababab },
{ 0x70000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xf0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
};
const Inputs kOutputs_Uhasx_Condition_al_r0_r0_r0[] = {
{ 0x80000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x40000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x20000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x10000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xc0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xa0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x90000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x60000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x50000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x30000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xe0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xd0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xb0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0x70000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
{ 0xf0000000, 0x00000000, 0x00000000, 0xabab0000, 0xabab0000, 0xabab0000 },
};
const Inputs kOutputs_Uhasx_RdIsRnIsRm_al_r0_r0_r0[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00010001, 0x00010001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00100010, 0x00100010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x003e003e, 0x003e003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x3ffe3ffe, 0x3ffe3ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33330000, 0x33330000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55550000, 0x55550000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0xbfff4000, 0xbfff4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaa0000, 0xaaaa0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccc0000, 0xcccc0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xbfffc000, 0xbfffc000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xc001c002, 0xc001c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffbfffc0, 0xffbfffc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffc1ffc2, 0xffc1ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffeffff0, 0xffeffff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffff0000, 0xffff0000 },
};
const Inputs kOutputs_Uhasx_RdIsRnIsRm_al_r1_r1_r1[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00010001, 0x00010001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00100010, 0x00100010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x003e003e, 0x003e003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x3ffe3ffe, 0x3ffe3ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33330000, 0x33330000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55550000, 0x55550000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0xbfff4000, 0xbfff4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaa0000, 0xaaaa0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccc0000, 0xcccc0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xbfffc000, 0xbfffc000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xc001c002, 0xc001c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffbfffc0, 0xffbfffc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffc1ffc2, 0xffc1ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffeffff0, 0xffeffff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffff0000, 0xffff0000 },
};
const Inputs kOutputs_Uhasx_RdIsRnIsRm_al_r2_r2_r2[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00010001, 0x00010001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00100010, 0x00100010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x003e003e, 0x003e003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x3ffe3ffe, 0x3ffe3ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33330000, 0x33330000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55550000, 0x55550000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0xbfff4000, 0xbfff4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaa0000, 0xaaaa0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccc0000, 0xcccc0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xbfffc000, 0xbfffc000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xc001c002, 0xc001c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffbfffc0, 0xffbfffc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffc1ffc2, 0xffc1ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffeffff0, 0xffeffff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffff0000, 0xffff0000 },
};
const Inputs kOutputs_Uhasx_RdIsRnIsRm_al_r3_r3_r3[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00010001, 0x00010001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00100010, 0x00100010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x003e003e, 0x003e003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x3ffe3ffe, 0x3ffe3ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33330000, 0x33330000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55550000, 0x55550000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0xbfff4000, 0xbfff4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaa0000, 0xaaaa0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccc0000, 0xcccc0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xbfffc000, 0xbfffc000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xc001c002, 0xc001c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffbfffc0, 0xffbfffc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffc1ffc2, 0xffc1ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffeffff0, 0xffeffff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffff0000, 0xffff0000 },
};
const Inputs kOutputs_Uhasx_RdIsRnIsRm_al_r4_r4_r4[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00010001, 0x00010001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00100010, 0x00100010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x003e003e, 0x003e003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x3ffe3ffe, 0x3ffe3ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33330000, 0x33330000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55550000, 0x55550000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0xbfff4000, 0xbfff4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaa0000, 0xaaaa0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccc0000, 0xcccc0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xbfffc000, 0xbfffc000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xc001c002, 0xc001c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffbfffc0, 0xffbfffc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffc1ffc2, 0xffc1ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffeffff0, 0xffeffff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffff0000, 0xffff0000 },
};
const Inputs kOutputs_Uhasx_RdIsRnIsRm_al_r5_r5_r5[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00010001, 0x00010001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00100010, 0x00100010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x003e003e, 0x003e003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x3ffe3ffe, 0x3ffe3ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33330000, 0x33330000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55550000, 0x55550000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0xbfff4000, 0xbfff4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaa0000, 0xaaaa0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccc0000, 0xcccc0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xbfffc000, 0xbfffc000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xc001c002, 0xc001c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffbfffc0, 0xffbfffc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffc1ffc2, 0xffc1ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffeffff0, 0xffeffff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffff0000, 0xffff0000 },
};
const Inputs kOutputs_Uhasx_RdIsRnIsRm_al_r6_r6_r6[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00010001, 0x00010001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00100010, 0x00100010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x003e003e, 0x003e003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x3ffe3ffe, 0x3ffe3ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33330000, 0x33330000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55550000, 0x55550000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0xbfff4000, 0xbfff4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaa0000, 0xaaaa0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccc0000, 0xcccc0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xbfffc000, 0xbfffc000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xc001c002, 0xc001c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffbfffc0, 0xffbfffc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffc1ffc2, 0xffc1ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffeffff0, 0xffeffff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffff0000, 0xffff0000 },
};
const Inputs kOutputs_Uhasx_RdIsRnIsRm_al_r7_r7_r7[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00010001, 0x00010001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00100010, 0x00100010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x003e003e, 0x003e003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x3ffe3ffe, 0x3ffe3ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33330000, 0x33330000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55550000, 0x55550000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0xbfff4000, 0xbfff4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaa0000, 0xaaaa0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccc0000, 0xcccc0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xbfffc000, 0xbfffc000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xc001c002, 0xc001c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffbfffc0, 0xffbfffc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffc1ffc2, 0xffc1ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffeffff0, 0xffeffff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffff0000, 0xffff0000 },
};
const Inputs kOutputs_Uhasx_RdIsRnIsRm_al_r8_r8_r8[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00010001, 0x00010001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00100010, 0x00100010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x003e003e, 0x003e003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x3ffe3ffe, 0x3ffe3ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33330000, 0x33330000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55550000, 0x55550000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0xbfff4000, 0xbfff4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaa0000, 0xaaaa0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccc0000, 0xcccc0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xbfffc000, 0xbfffc000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xc001c002, 0xc001c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffbfffc0, 0xffbfffc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffc1ffc2, 0xffc1ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffeffff0, 0xffeffff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffff0000, 0xffff0000 },
};
const Inputs kOutputs_Uhasx_RdIsRnIsRm_al_r9_r9_r9[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00010001, 0x00010001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00100010, 0x00100010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x003e003e, 0x003e003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x3ffe3ffe, 0x3ffe3ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33330000, 0x33330000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55550000, 0x55550000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0xbfff4000, 0xbfff4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaa0000, 0xaaaa0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccc0000, 0xcccc0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xbfffc000, 0xbfffc000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xc001c002, 0xc001c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffbfffc0, 0xffbfffc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffc1ffc2, 0xffc1ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffeffff0, 0xffeffff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffff0000, 0xffff0000 },
};
const Inputs kOutputs_Uhasx_RdIsRnIsRm_al_r10_r10_r10[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00010001, 0x00010001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00100010, 0x00100010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x003e003e, 0x003e003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x3ffe3ffe, 0x3ffe3ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33330000, 0x33330000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55550000, 0x55550000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0xbfff4000, 0xbfff4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaa0000, 0xaaaa0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccc0000, 0xcccc0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xbfffc000, 0xbfffc000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xc001c002, 0xc001c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffbfffc0, 0xffbfffc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffc1ffc2, 0xffc1ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffeffff0, 0xffeffff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffff0000, 0xffff0000 },
};
const Inputs kOutputs_Uhasx_RdIsRnIsRm_al_r11_r11_r11[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00010001, 0x00010001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00100010, 0x00100010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x003e003e, 0x003e003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x3ffe3ffe, 0x3ffe3ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33330000, 0x33330000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55550000, 0x55550000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0xbfff4000, 0xbfff4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaa0000, 0xaaaa0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccc0000, 0xcccc0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xbfffc000, 0xbfffc000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xc001c002, 0xc001c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffbfffc0, 0xffbfffc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffc1ffc2, 0xffc1ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffeffff0, 0xffeffff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffff0000, 0xffff0000 },
};
const Inputs kOutputs_Uhasx_RdIsRnIsRm_al_r12_r12_r12[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00010001, 0x00010001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00100010, 0x00100010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x003e003e, 0x003e003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x3ffe3ffe, 0x3ffe3ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33330000, 0x33330000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55550000, 0x55550000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0xbfff4000, 0xbfff4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaa0000, 0xaaaa0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccc0000, 0xcccc0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xbfffc000, 0xbfffc000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xc001c002, 0xc001c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffbfffc0, 0xffbfffc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffc1ffc2, 0xffc1ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffeffff0, 0xffeffff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffff0000, 0xffff0000 },
};
const Inputs kOutputs_Uhasx_RdIsRnIsRm_al_r14_r14_r14[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00010001, 0x00010001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00100010, 0x00100010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x003e003e, 0x003e003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x003f003f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x3ffe3ffe, 0x3ffe3ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33330000, 0x33330000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55550000, 0x55550000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0xbffe3fff, 0xbffe3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0xbfff4000, 0xbfff4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaa0000, 0xaaaa0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccc0000, 0xcccc0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xbfffc000, 0xbfffc000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xc000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xc001c002, 0xc001c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffbfffc0, 0xffbfffc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffc0ffc1, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffc1ffc2, 0xffc1ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffeffff0, 0xffeffff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffeffff, 0xfffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffff0000, 0xffff0000 },
};
const Inputs kOutputs_Uhasx_RdIsRn_al_r14_r14_r3[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x803f4001, 0x803f4001, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x7fc18001, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0x803e4001, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fff, 0x7fff3fff, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9555d555, 0x9555d555, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e3fff, 0x003e3fff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18010, 0x7fc18010, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x400f7fff, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7fff, 0x403f7fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc1, 0xffbfffc1, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x4000803f, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe7fff, 0x7ffe7fff, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc010, 0x7fffc010, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefffc1, 0xffefffc1, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe003e, 0x3ffe003e, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6c, 0xd5542a6c, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffefff0, 0xfffefff0, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0x7fff7fc1, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aa92aaa, 0x6aa92aaa, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992666, 0x99992666, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00010000, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0010, 0x003e0010, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe8000, 0xbffe8000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c002, 0xc000c002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe0000, 0x7ffe0000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0x00000010, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x403e7fff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfbfffff, 0xbfbfffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c010, 0x0000c010, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc002, 0xffbfc002, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xd5541555, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00003ffe, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0xbfff8000, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc0, 0x7fff3fc0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x40008001, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0xbffeffff, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c002, 0xc000c002, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1c000, 0x7fc1c000, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc1, 0x80003fc1, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000ffff, 0x0000ffff, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec000, 0xbffec000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x7fc18040, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000fff0, 0xc000fff0, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000fffe, 0x0000fffe, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaad556, 0x6aaad556, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc0, 0xbffe7fc0, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0001, 0x003f0001, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x95535555, 0x95535555, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc1, 0xbfff7fc1, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x3fff3ffe, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc0, 0xbfff7fc0, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6b, 0xd5542a6b, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x55655555, 0x55655555, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x7fffc040, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x59981999, 0x59981999, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x55935555, 0x55935555, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc000, 0xffbfc000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xc000ffff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00103ffe, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40003ffe, 0x40003ffe, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08000, 0xbfc08000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffc0c000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9999999a, 0x9999999a, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffbf0000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffd555, 0x7fffd555, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8000, 0x7ffe8000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08010, 0x7ff08010, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x403e7fff, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffc1, 0xc001ffc1, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc0, 0x7fff7fc0, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651998, 0xe6651998, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x40007fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec000, 0xfffec000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x666699d8, 0x666699d8, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aab2aaa, 0x2aab2aaa, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xfffe4000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaea, 0x5555aaea, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0000, 0x3ffe0000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe7fff, 0x7ffe7fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc1, 0xbffe7fc1, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x9998999a, 0x9998999a, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000c03f, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x66662666, 0x66662666, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaaeaaa, 0x2aaaeaaa, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec040, 0x7ffec040, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651999, 0xa6651999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fff, 0x803f7fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x199a1999, 0x199a1999, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x7fc18001, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0803f, 0x7fc0803f, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffc0c000, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ffe, 0x80007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xfffe4000, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xffc0ffff, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003ff0, 0x80003ff0, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666d999, 0x6666d999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc1, 0xffc1ffc1, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0x803e7fff, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x66666666, 0x66666666, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x7fff0000, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xe6651999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x40007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x59996666, 0x59996666, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c001, 0xc001c001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0x7fff7fc1, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc000, 0x7fffc000, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aaa, 0x95542aaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018000, 0x40018000, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x8000ffff, 0x8000ffff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c000, 0x0000c000, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8001, 0xbfff8001, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x400f7fff, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0x80004000, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbff08001, 0xbff08001, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc2, 0xc000ffc2, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xfffeffc1, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5515, 0xaaaa5515, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x995a999a, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7ffe, 0x403f7ffe, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc001, 0xbfffc001, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec001, 0xbffec001, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x7fff803f, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x2ae92aaa, 0x2ae92aaa, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e6a6, 0x1999e6a6, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0x80004000, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc001, 0xffbfc001, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xbffe7fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa1556, 0xaaaa1556, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010010, 0x00010010, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xbffe4000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aa9, 0x95542aa9, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x7fff0000, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x2ae92aaa, 0x2ae92aaa, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xfffec001, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5516, 0xaaaa5516, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x7fffc001, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996626, 0x99996626, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc00000, 0xffc00000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100001, 0x00100001, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6656666, 0xa6656666, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xfffec001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c000, 0xc000c000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x7fffc001, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3ff0, 0x7fff3ff0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffeffff, 0x7ffeffff, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992665, 0x19992665, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe003f, 0x3ffe003f, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xd5542aaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x40008000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33330000, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ff0, 0x80007ff0, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffff, 0xc001ffff, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996656, 0x99996656, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc2, 0xc000ffc2, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aabaaab, 0x6aabaaab, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5554, 0xaaaa5554, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00013fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996627, 0x99996627, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0xbfff8000, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008010, 0x40008010, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad594, 0x2aaad594, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00013fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x40000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013ffe, 0x00013ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc0, 0xffc1ffc0, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x4000803f, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc1, 0x80007fc1, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xfffeffc1, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x995a999a, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe803f, 0x7ffe803f, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08001, 0xbfc08001, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xd516d555, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xfffe0002, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a9b, 0xd5542a9b, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbff08000, 0xbff08000, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc03f, 0x7fffc03f, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffc0c001, 0xffffff81 },
};
const Inputs kOutputs_Uhasx_RdIsRn_al_r1_r1_r2[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x803f4001, 0x803f4001, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x7fc18001, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0x803e4001, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fff, 0x7fff3fff, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9555d555, 0x9555d555, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e3fff, 0x003e3fff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18010, 0x7fc18010, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x400f7fff, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7fff, 0x403f7fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc1, 0xffbfffc1, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x4000803f, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe7fff, 0x7ffe7fff, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc010, 0x7fffc010, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefffc1, 0xffefffc1, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe003e, 0x3ffe003e, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6c, 0xd5542a6c, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffefff0, 0xfffefff0, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0x7fff7fc1, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aa92aaa, 0x6aa92aaa, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992666, 0x99992666, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00010000, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0010, 0x003e0010, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe8000, 0xbffe8000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c002, 0xc000c002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe0000, 0x7ffe0000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0x00000010, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x403e7fff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfbfffff, 0xbfbfffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c010, 0x0000c010, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc002, 0xffbfc002, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xd5541555, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00003ffe, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0xbfff8000, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc0, 0x7fff3fc0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x40008001, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0xbffeffff, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c002, 0xc000c002, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1c000, 0x7fc1c000, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc1, 0x80003fc1, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000ffff, 0x0000ffff, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec000, 0xbffec000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x7fc18040, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000fff0, 0xc000fff0, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000fffe, 0x0000fffe, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaad556, 0x6aaad556, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc0, 0xbffe7fc0, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0001, 0x003f0001, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x95535555, 0x95535555, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc1, 0xbfff7fc1, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x3fff3ffe, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc0, 0xbfff7fc0, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6b, 0xd5542a6b, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x55655555, 0x55655555, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x7fffc040, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x59981999, 0x59981999, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x55935555, 0x55935555, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc000, 0xffbfc000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xc000ffff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00103ffe, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40003ffe, 0x40003ffe, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08000, 0xbfc08000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffc0c000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9999999a, 0x9999999a, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffbf0000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffd555, 0x7fffd555, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8000, 0x7ffe8000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08010, 0x7ff08010, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x403e7fff, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffc1, 0xc001ffc1, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc0, 0x7fff7fc0, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651998, 0xe6651998, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x40007fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec000, 0xfffec000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x666699d8, 0x666699d8, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aab2aaa, 0x2aab2aaa, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xfffe4000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaea, 0x5555aaea, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0000, 0x3ffe0000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe7fff, 0x7ffe7fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc1, 0xbffe7fc1, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x9998999a, 0x9998999a, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000c03f, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x66662666, 0x66662666, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaaeaaa, 0x2aaaeaaa, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec040, 0x7ffec040, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651999, 0xa6651999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fff, 0x803f7fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x199a1999, 0x199a1999, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x7fc18001, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0803f, 0x7fc0803f, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffc0c000, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ffe, 0x80007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xfffe4000, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xffc0ffff, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003ff0, 0x80003ff0, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666d999, 0x6666d999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc1, 0xffc1ffc1, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0x803e7fff, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x66666666, 0x66666666, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x7fff0000, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xe6651999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x40007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x59996666, 0x59996666, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c001, 0xc001c001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0x7fff7fc1, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc000, 0x7fffc000, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aaa, 0x95542aaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018000, 0x40018000, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x8000ffff, 0x8000ffff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c000, 0x0000c000, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8001, 0xbfff8001, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x400f7fff, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0x80004000, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbff08001, 0xbff08001, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc2, 0xc000ffc2, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xfffeffc1, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5515, 0xaaaa5515, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x995a999a, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7ffe, 0x403f7ffe, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc001, 0xbfffc001, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec001, 0xbffec001, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x7fff803f, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x2ae92aaa, 0x2ae92aaa, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e6a6, 0x1999e6a6, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0x80004000, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc001, 0xffbfc001, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xbffe7fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa1556, 0xaaaa1556, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010010, 0x00010010, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xbffe4000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aa9, 0x95542aa9, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x7fff0000, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x2ae92aaa, 0x2ae92aaa, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xfffec001, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5516, 0xaaaa5516, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x7fffc001, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996626, 0x99996626, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc00000, 0xffc00000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100001, 0x00100001, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6656666, 0xa6656666, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xfffec001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c000, 0xc000c000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x7fffc001, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3ff0, 0x7fff3ff0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffeffff, 0x7ffeffff, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992665, 0x19992665, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe003f, 0x3ffe003f, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xd5542aaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x40008000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33330000, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ff0, 0x80007ff0, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffff, 0xc001ffff, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996656, 0x99996656, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc2, 0xc000ffc2, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aabaaab, 0x6aabaaab, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5554, 0xaaaa5554, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00013fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996627, 0x99996627, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0xbfff8000, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008010, 0x40008010, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad594, 0x2aaad594, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00013fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x40000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013ffe, 0x00013ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc0, 0xffc1ffc0, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x4000803f, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc1, 0x80007fc1, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xfffeffc1, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x995a999a, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe803f, 0x7ffe803f, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08001, 0xbfc08001, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xd516d555, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xfffe0002, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a9b, 0xd5542a9b, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbff08000, 0xbff08000, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc03f, 0x7fffc03f, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffc0c001, 0xffffff81 },
};
const Inputs kOutputs_Uhasx_RdIsRn_al_r12_r12_r7[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x803f4001, 0x803f4001, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x7fc18001, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0x803e4001, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fff, 0x7fff3fff, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9555d555, 0x9555d555, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e3fff, 0x003e3fff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18010, 0x7fc18010, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x400f7fff, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7fff, 0x403f7fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc1, 0xffbfffc1, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x4000803f, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe7fff, 0x7ffe7fff, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc010, 0x7fffc010, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefffc1, 0xffefffc1, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe003e, 0x3ffe003e, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6c, 0xd5542a6c, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffefff0, 0xfffefff0, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0x7fff7fc1, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aa92aaa, 0x6aa92aaa, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992666, 0x99992666, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00010000, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0010, 0x003e0010, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe8000, 0xbffe8000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c002, 0xc000c002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe0000, 0x7ffe0000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0x00000010, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x403e7fff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfbfffff, 0xbfbfffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c010, 0x0000c010, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc002, 0xffbfc002, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xd5541555, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00003ffe, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0xbfff8000, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc0, 0x7fff3fc0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x40008001, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0xbffeffff, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c002, 0xc000c002, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1c000, 0x7fc1c000, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc1, 0x80003fc1, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000ffff, 0x0000ffff, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec000, 0xbffec000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x7fc18040, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000fff0, 0xc000fff0, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000fffe, 0x0000fffe, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaad556, 0x6aaad556, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc0, 0xbffe7fc0, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0001, 0x003f0001, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x95535555, 0x95535555, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc1, 0xbfff7fc1, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x3fff3ffe, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc0, 0xbfff7fc0, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6b, 0xd5542a6b, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x55655555, 0x55655555, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x7fffc040, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x59981999, 0x59981999, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x55935555, 0x55935555, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc000, 0xffbfc000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xc000ffff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00103ffe, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40003ffe, 0x40003ffe, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08000, 0xbfc08000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffc0c000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9999999a, 0x9999999a, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffbf0000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffd555, 0x7fffd555, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8000, 0x7ffe8000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08010, 0x7ff08010, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x403e7fff, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffc1, 0xc001ffc1, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc0, 0x7fff7fc0, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651998, 0xe6651998, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x40007fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec000, 0xfffec000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x666699d8, 0x666699d8, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aab2aaa, 0x2aab2aaa, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xfffe4000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaea, 0x5555aaea, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0000, 0x3ffe0000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe7fff, 0x7ffe7fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc1, 0xbffe7fc1, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x9998999a, 0x9998999a, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000c03f, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x66662666, 0x66662666, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaaeaaa, 0x2aaaeaaa, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec040, 0x7ffec040, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651999, 0xa6651999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fff, 0x803f7fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x199a1999, 0x199a1999, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x7fc18001, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0803f, 0x7fc0803f, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffc0c000, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ffe, 0x80007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xfffe4000, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xffc0ffff, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003ff0, 0x80003ff0, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666d999, 0x6666d999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc1, 0xffc1ffc1, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0x803e7fff, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x66666666, 0x66666666, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x7fff0000, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xe6651999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x40007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x59996666, 0x59996666, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c001, 0xc001c001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0x7fff7fc1, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc000, 0x7fffc000, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aaa, 0x95542aaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018000, 0x40018000, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x8000ffff, 0x8000ffff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c000, 0x0000c000, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8001, 0xbfff8001, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x400f7fff, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0x80004000, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbff08001, 0xbff08001, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc2, 0xc000ffc2, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xfffeffc1, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5515, 0xaaaa5515, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x995a999a, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7ffe, 0x403f7ffe, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc001, 0xbfffc001, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec001, 0xbffec001, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x7fff803f, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x2ae92aaa, 0x2ae92aaa, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e6a6, 0x1999e6a6, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0x80004000, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc001, 0xffbfc001, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xbffe7fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa1556, 0xaaaa1556, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010010, 0x00010010, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xbffe4000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aa9, 0x95542aa9, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x7fff0000, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x2ae92aaa, 0x2ae92aaa, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xfffec001, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5516, 0xaaaa5516, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x7fffc001, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996626, 0x99996626, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc00000, 0xffc00000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100001, 0x00100001, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6656666, 0xa6656666, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xfffec001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c000, 0xc000c000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x7fffc001, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3ff0, 0x7fff3ff0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffeffff, 0x7ffeffff, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992665, 0x19992665, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe003f, 0x3ffe003f, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xd5542aaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x40008000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33330000, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ff0, 0x80007ff0, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffff, 0xc001ffff, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996656, 0x99996656, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc2, 0xc000ffc2, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aabaaab, 0x6aabaaab, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5554, 0xaaaa5554, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00013fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996627, 0x99996627, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0xbfff8000, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008010, 0x40008010, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad594, 0x2aaad594, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00013fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x40000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013ffe, 0x00013ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc0, 0xffc1ffc0, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x4000803f, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc1, 0x80007fc1, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xfffeffc1, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x995a999a, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe803f, 0x7ffe803f, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08001, 0xbfc08001, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xd516d555, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xfffe0002, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a9b, 0xd5542a9b, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbff08000, 0xbff08000, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc03f, 0x7fffc03f, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffc0c001, 0xffffff81 },
};
const Inputs kOutputs_Uhasx_RdIsRn_al_r10_r10_r6[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x803f4001, 0x803f4001, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x7fc18001, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0x803e4001, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fff, 0x7fff3fff, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9555d555, 0x9555d555, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e3fff, 0x003e3fff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18010, 0x7fc18010, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x400f7fff, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7fff, 0x403f7fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc1, 0xffbfffc1, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x4000803f, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe7fff, 0x7ffe7fff, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc010, 0x7fffc010, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefffc1, 0xffefffc1, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe003e, 0x3ffe003e, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6c, 0xd5542a6c, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffefff0, 0xfffefff0, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0x7fff7fc1, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aa92aaa, 0x6aa92aaa, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992666, 0x99992666, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00010000, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0010, 0x003e0010, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe8000, 0xbffe8000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c002, 0xc000c002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe0000, 0x7ffe0000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0x00000010, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x403e7fff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfbfffff, 0xbfbfffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c010, 0x0000c010, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc002, 0xffbfc002, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xd5541555, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00003ffe, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0xbfff8000, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc0, 0x7fff3fc0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x40008001, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0xbffeffff, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c002, 0xc000c002, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1c000, 0x7fc1c000, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc1, 0x80003fc1, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000ffff, 0x0000ffff, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec000, 0xbffec000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x7fc18040, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000fff0, 0xc000fff0, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000fffe, 0x0000fffe, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaad556, 0x6aaad556, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc0, 0xbffe7fc0, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0001, 0x003f0001, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x95535555, 0x95535555, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc1, 0xbfff7fc1, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x3fff3ffe, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc0, 0xbfff7fc0, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6b, 0xd5542a6b, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x55655555, 0x55655555, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x7fffc040, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x59981999, 0x59981999, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x55935555, 0x55935555, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc000, 0xffbfc000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xc000ffff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00103ffe, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40003ffe, 0x40003ffe, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08000, 0xbfc08000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffc0c000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9999999a, 0x9999999a, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffbf0000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffd555, 0x7fffd555, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8000, 0x7ffe8000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08010, 0x7ff08010, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x403e7fff, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffc1, 0xc001ffc1, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc0, 0x7fff7fc0, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651998, 0xe6651998, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x40007fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec000, 0xfffec000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x666699d8, 0x666699d8, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aab2aaa, 0x2aab2aaa, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xfffe4000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaea, 0x5555aaea, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0000, 0x3ffe0000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe7fff, 0x7ffe7fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc1, 0xbffe7fc1, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x9998999a, 0x9998999a, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000c03f, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x66662666, 0x66662666, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaaeaaa, 0x2aaaeaaa, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec040, 0x7ffec040, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651999, 0xa6651999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fff, 0x803f7fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x199a1999, 0x199a1999, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x7fc18001, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0803f, 0x7fc0803f, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffc0c000, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ffe, 0x80007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xfffe4000, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xffc0ffff, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003ff0, 0x80003ff0, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666d999, 0x6666d999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc1, 0xffc1ffc1, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0x803e7fff, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x66666666, 0x66666666, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x7fff0000, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xe6651999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x40007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x59996666, 0x59996666, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c001, 0xc001c001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0x7fff7fc1, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc000, 0x7fffc000, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aaa, 0x95542aaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018000, 0x40018000, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x8000ffff, 0x8000ffff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c000, 0x0000c000, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8001, 0xbfff8001, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x400f7fff, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0x80004000, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbff08001, 0xbff08001, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc2, 0xc000ffc2, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xfffeffc1, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5515, 0xaaaa5515, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x995a999a, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7ffe, 0x403f7ffe, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc001, 0xbfffc001, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec001, 0xbffec001, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x7fff803f, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x2ae92aaa, 0x2ae92aaa, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e6a6, 0x1999e6a6, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0x80004000, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc001, 0xffbfc001, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xbffe7fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa1556, 0xaaaa1556, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010010, 0x00010010, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xbffe4000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aa9, 0x95542aa9, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x7fff0000, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x2ae92aaa, 0x2ae92aaa, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xfffec001, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5516, 0xaaaa5516, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x7fffc001, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996626, 0x99996626, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc00000, 0xffc00000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100001, 0x00100001, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6656666, 0xa6656666, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xfffec001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c000, 0xc000c000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x7fffc001, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3ff0, 0x7fff3ff0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffeffff, 0x7ffeffff, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992665, 0x19992665, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe003f, 0x3ffe003f, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xd5542aaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x40008000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33330000, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ff0, 0x80007ff0, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffff, 0xc001ffff, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996656, 0x99996656, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc2, 0xc000ffc2, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aabaaab, 0x6aabaaab, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5554, 0xaaaa5554, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00013fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996627, 0x99996627, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0xbfff8000, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008010, 0x40008010, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad594, 0x2aaad594, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00013fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x40000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013ffe, 0x00013ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc0, 0xffc1ffc0, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x4000803f, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc1, 0x80007fc1, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xfffeffc1, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x995a999a, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe803f, 0x7ffe803f, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08001, 0xbfc08001, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xd516d555, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xfffe0002, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a9b, 0xd5542a9b, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbff08000, 0xbff08000, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc03f, 0x7fffc03f, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffc0c001, 0xffffff81 },
};
const Inputs kOutputs_Uhasx_RdIsRn_al_r4_r4_r9[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x803f4001, 0x803f4001, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x7fc18001, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0x803e4001, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fff, 0x7fff3fff, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9555d555, 0x9555d555, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e3fff, 0x003e3fff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18010, 0x7fc18010, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x400f7fff, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7fff, 0x403f7fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc1, 0xffbfffc1, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x4000803f, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe7fff, 0x7ffe7fff, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc010, 0x7fffc010, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefffc1, 0xffefffc1, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe003e, 0x3ffe003e, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6c, 0xd5542a6c, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffefff0, 0xfffefff0, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0x7fff7fc1, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aa92aaa, 0x6aa92aaa, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992666, 0x99992666, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00010000, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0010, 0x003e0010, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe8000, 0xbffe8000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c002, 0xc000c002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe0000, 0x7ffe0000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0x00000010, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x403e7fff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfbfffff, 0xbfbfffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c010, 0x0000c010, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc002, 0xffbfc002, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xd5541555, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00003ffe, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0xbfff8000, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc0, 0x7fff3fc0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x40008001, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0xbffeffff, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c002, 0xc000c002, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1c000, 0x7fc1c000, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc1, 0x80003fc1, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000ffff, 0x0000ffff, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec000, 0xbffec000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x7fc18040, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000fff0, 0xc000fff0, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000fffe, 0x0000fffe, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaad556, 0x6aaad556, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc0, 0xbffe7fc0, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0001, 0x003f0001, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x95535555, 0x95535555, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc1, 0xbfff7fc1, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x3fff3ffe, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc0, 0xbfff7fc0, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6b, 0xd5542a6b, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x55655555, 0x55655555, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x7fffc040, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x59981999, 0x59981999, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x55935555, 0x55935555, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc000, 0xffbfc000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xc000ffff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00103ffe, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40003ffe, 0x40003ffe, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08000, 0xbfc08000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffc0c000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9999999a, 0x9999999a, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffbf0000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffd555, 0x7fffd555, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8000, 0x7ffe8000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08010, 0x7ff08010, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x403e7fff, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffc1, 0xc001ffc1, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc0, 0x7fff7fc0, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651998, 0xe6651998, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x40007fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec000, 0xfffec000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x666699d8, 0x666699d8, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aab2aaa, 0x2aab2aaa, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xfffe4000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaea, 0x5555aaea, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0000, 0x3ffe0000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe7fff, 0x7ffe7fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc1, 0xbffe7fc1, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x9998999a, 0x9998999a, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000c03f, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x66662666, 0x66662666, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaaeaaa, 0x2aaaeaaa, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec040, 0x7ffec040, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651999, 0xa6651999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fff, 0x803f7fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x199a1999, 0x199a1999, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x7fc18001, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0803f, 0x7fc0803f, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffc0c000, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ffe, 0x80007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xfffe4000, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xffc0ffff, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003ff0, 0x80003ff0, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666d999, 0x6666d999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc1, 0xffc1ffc1, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0x803e7fff, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x66666666, 0x66666666, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x7fff0000, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xe6651999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x40007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x59996666, 0x59996666, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c001, 0xc001c001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0x7fff7fc1, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc000, 0x7fffc000, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aaa, 0x95542aaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018000, 0x40018000, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x8000ffff, 0x8000ffff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c000, 0x0000c000, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8001, 0xbfff8001, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x400f7fff, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0x80004000, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbff08001, 0xbff08001, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc2, 0xc000ffc2, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xfffeffc1, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5515, 0xaaaa5515, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x995a999a, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7ffe, 0x403f7ffe, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc001, 0xbfffc001, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec001, 0xbffec001, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x7fff803f, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x2ae92aaa, 0x2ae92aaa, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e6a6, 0x1999e6a6, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0x80004000, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc001, 0xffbfc001, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xbffe7fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa1556, 0xaaaa1556, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010010, 0x00010010, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xbffe4000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aa9, 0x95542aa9, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x7fff0000, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x2ae92aaa, 0x2ae92aaa, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xfffec001, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5516, 0xaaaa5516, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x7fffc001, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996626, 0x99996626, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc00000, 0xffc00000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100001, 0x00100001, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6656666, 0xa6656666, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xfffec001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c000, 0xc000c000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x7fffc001, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3ff0, 0x7fff3ff0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffeffff, 0x7ffeffff, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992665, 0x19992665, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe003f, 0x3ffe003f, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xd5542aaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x40008000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33330000, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ff0, 0x80007ff0, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffff, 0xc001ffff, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996656, 0x99996656, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc2, 0xc000ffc2, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aabaaab, 0x6aabaaab, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5554, 0xaaaa5554, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00013fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996627, 0x99996627, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0xbfff8000, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008010, 0x40008010, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad594, 0x2aaad594, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00013fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x40000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013ffe, 0x00013ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc0, 0xffc1ffc0, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x4000803f, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc1, 0x80007fc1, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xfffeffc1, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x995a999a, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe803f, 0x7ffe803f, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08001, 0xbfc08001, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xd516d555, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xfffe0002, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a9b, 0xd5542a9b, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbff08000, 0xbff08000, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc03f, 0x7fffc03f, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffc0c001, 0xffffff81 },
};
const Inputs kOutputs_Uhasx_RdIsRn_al_r5_r5_r6[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x803f4001, 0x803f4001, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x7fc18001, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0x803e4001, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fff, 0x7fff3fff, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9555d555, 0x9555d555, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e3fff, 0x003e3fff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18010, 0x7fc18010, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x400f7fff, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7fff, 0x403f7fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc1, 0xffbfffc1, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x4000803f, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe7fff, 0x7ffe7fff, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc010, 0x7fffc010, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefffc1, 0xffefffc1, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe003e, 0x3ffe003e, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6c, 0xd5542a6c, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffefff0, 0xfffefff0, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0x7fff7fc1, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aa92aaa, 0x6aa92aaa, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992666, 0x99992666, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00010000, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0010, 0x003e0010, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe8000, 0xbffe8000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c002, 0xc000c002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe0000, 0x7ffe0000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0x00000010, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x403e7fff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfbfffff, 0xbfbfffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c010, 0x0000c010, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc002, 0xffbfc002, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xd5541555, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00003ffe, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0xbfff8000, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc0, 0x7fff3fc0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x40008001, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0xbffeffff, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c002, 0xc000c002, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1c000, 0x7fc1c000, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc1, 0x80003fc1, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000ffff, 0x0000ffff, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec000, 0xbffec000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x7fc18040, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000fff0, 0xc000fff0, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000fffe, 0x0000fffe, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaad556, 0x6aaad556, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc0, 0xbffe7fc0, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0001, 0x003f0001, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x95535555, 0x95535555, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc1, 0xbfff7fc1, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x3fff3ffe, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc0, 0xbfff7fc0, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6b, 0xd5542a6b, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x55655555, 0x55655555, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x7fffc040, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x59981999, 0x59981999, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x55935555, 0x55935555, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc000, 0xffbfc000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xc000ffff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00103ffe, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40003ffe, 0x40003ffe, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08000, 0xbfc08000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffc0c000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9999999a, 0x9999999a, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffbf0000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffd555, 0x7fffd555, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8000, 0x7ffe8000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08010, 0x7ff08010, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x403e7fff, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffc1, 0xc001ffc1, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc0, 0x7fff7fc0, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651998, 0xe6651998, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x40007fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec000, 0xfffec000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x666699d8, 0x666699d8, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aab2aaa, 0x2aab2aaa, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xfffe4000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaea, 0x5555aaea, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0000, 0x3ffe0000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe7fff, 0x7ffe7fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc1, 0xbffe7fc1, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x9998999a, 0x9998999a, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000c03f, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x66662666, 0x66662666, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaaeaaa, 0x2aaaeaaa, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec040, 0x7ffec040, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651999, 0xa6651999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fff, 0x803f7fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x199a1999, 0x199a1999, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x7fc18001, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0803f, 0x7fc0803f, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffc0c000, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ffe, 0x80007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xfffe4000, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xffc0ffff, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003ff0, 0x80003ff0, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666d999, 0x6666d999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc1, 0xffc1ffc1, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0x803e7fff, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x66666666, 0x66666666, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x7fff0000, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xe6651999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x40007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x59996666, 0x59996666, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c001, 0xc001c001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0x7fff7fc1, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc000, 0x7fffc000, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aaa, 0x95542aaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018000, 0x40018000, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x8000ffff, 0x8000ffff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c000, 0x0000c000, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8001, 0xbfff8001, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x400f7fff, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0x80004000, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbff08001, 0xbff08001, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc2, 0xc000ffc2, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xfffeffc1, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5515, 0xaaaa5515, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x995a999a, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7ffe, 0x403f7ffe, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc001, 0xbfffc001, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec001, 0xbffec001, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x7fff803f, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x2ae92aaa, 0x2ae92aaa, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e6a6, 0x1999e6a6, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0x80004000, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc001, 0xffbfc001, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xbffe7fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa1556, 0xaaaa1556, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010010, 0x00010010, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xbffe4000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aa9, 0x95542aa9, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x7fff0000, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x2ae92aaa, 0x2ae92aaa, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xfffec001, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5516, 0xaaaa5516, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x7fffc001, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996626, 0x99996626, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc00000, 0xffc00000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100001, 0x00100001, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6656666, 0xa6656666, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xfffec001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c000, 0xc000c000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x7fffc001, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3ff0, 0x7fff3ff0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffeffff, 0x7ffeffff, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992665, 0x19992665, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe003f, 0x3ffe003f, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xd5542aaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x40008000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33330000, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ff0, 0x80007ff0, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffff, 0xc001ffff, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996656, 0x99996656, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc2, 0xc000ffc2, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aabaaab, 0x6aabaaab, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5554, 0xaaaa5554, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00013fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996627, 0x99996627, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0xbfff8000, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008010, 0x40008010, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad594, 0x2aaad594, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00013fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x40000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013ffe, 0x00013ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc0, 0xffc1ffc0, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x4000803f, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc1, 0x80007fc1, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xfffeffc1, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x995a999a, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe803f, 0x7ffe803f, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08001, 0xbfc08001, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xd516d555, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xfffe0002, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a9b, 0xd5542a9b, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbff08000, 0xbff08000, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc03f, 0x7fffc03f, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffc0c001, 0xffffff81 },
};
const Inputs kOutputs_Uhasx_RdIsRn_al_r2_r2_r4[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x803f4001, 0x803f4001, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x7fc18001, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0x803e4001, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fff, 0x7fff3fff, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9555d555, 0x9555d555, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e3fff, 0x003e3fff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18010, 0x7fc18010, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x400f7fff, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7fff, 0x403f7fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc1, 0xffbfffc1, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x4000803f, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe7fff, 0x7ffe7fff, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc010, 0x7fffc010, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefffc1, 0xffefffc1, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe003e, 0x3ffe003e, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6c, 0xd5542a6c, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffefff0, 0xfffefff0, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0x7fff7fc1, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aa92aaa, 0x6aa92aaa, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992666, 0x99992666, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00010000, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0010, 0x003e0010, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe8000, 0xbffe8000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c002, 0xc000c002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe0000, 0x7ffe0000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0x00000010, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x403e7fff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfbfffff, 0xbfbfffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c010, 0x0000c010, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc002, 0xffbfc002, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xd5541555, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00003ffe, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0xbfff8000, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc0, 0x7fff3fc0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x40008001, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0xbffeffff, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c002, 0xc000c002, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1c000, 0x7fc1c000, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc1, 0x80003fc1, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000ffff, 0x0000ffff, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec000, 0xbffec000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x7fc18040, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000fff0, 0xc000fff0, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000fffe, 0x0000fffe, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaad556, 0x6aaad556, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc0, 0xbffe7fc0, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0001, 0x003f0001, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x95535555, 0x95535555, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc1, 0xbfff7fc1, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x3fff3ffe, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc0, 0xbfff7fc0, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6b, 0xd5542a6b, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x55655555, 0x55655555, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x7fffc040, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x59981999, 0x59981999, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x55935555, 0x55935555, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc000, 0xffbfc000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xc000ffff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00103ffe, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40003ffe, 0x40003ffe, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08000, 0xbfc08000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffc0c000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9999999a, 0x9999999a, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffbf0000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffd555, 0x7fffd555, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8000, 0x7ffe8000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08010, 0x7ff08010, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x403e7fff, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffc1, 0xc001ffc1, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc0, 0x7fff7fc0, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651998, 0xe6651998, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x40007fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec000, 0xfffec000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x666699d8, 0x666699d8, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aab2aaa, 0x2aab2aaa, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xfffe4000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaea, 0x5555aaea, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0000, 0x3ffe0000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe7fff, 0x7ffe7fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc1, 0xbffe7fc1, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x9998999a, 0x9998999a, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000c03f, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x66662666, 0x66662666, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaaeaaa, 0x2aaaeaaa, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec040, 0x7ffec040, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651999, 0xa6651999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fff, 0x803f7fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x199a1999, 0x199a1999, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x7fc18001, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0803f, 0x7fc0803f, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffc0c000, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ffe, 0x80007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xfffe4000, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xffc0ffff, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003ff0, 0x80003ff0, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666d999, 0x6666d999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc1, 0xffc1ffc1, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0x803e7fff, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x66666666, 0x66666666, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x7fff0000, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xe6651999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x40007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x59996666, 0x59996666, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c001, 0xc001c001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0x7fff7fc1, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc000, 0x7fffc000, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aaa, 0x95542aaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018000, 0x40018000, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x8000ffff, 0x8000ffff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c000, 0x0000c000, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8001, 0xbfff8001, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x400f7fff, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0x80004000, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbff08001, 0xbff08001, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc2, 0xc000ffc2, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xfffeffc1, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5515, 0xaaaa5515, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x995a999a, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7ffe, 0x403f7ffe, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc001, 0xbfffc001, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec001, 0xbffec001, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x7fff803f, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x2ae92aaa, 0x2ae92aaa, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e6a6, 0x1999e6a6, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0x80004000, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc001, 0xffbfc001, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xbffe7fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa1556, 0xaaaa1556, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010010, 0x00010010, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xbffe4000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aa9, 0x95542aa9, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x7fff0000, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x2ae92aaa, 0x2ae92aaa, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xfffec001, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5516, 0xaaaa5516, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x7fffc001, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996626, 0x99996626, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc00000, 0xffc00000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100001, 0x00100001, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6656666, 0xa6656666, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xfffec001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c000, 0xc000c000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x7fffc001, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3ff0, 0x7fff3ff0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffeffff, 0x7ffeffff, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992665, 0x19992665, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe003f, 0x3ffe003f, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xd5542aaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x40008000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33330000, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ff0, 0x80007ff0, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffff, 0xc001ffff, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996656, 0x99996656, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc2, 0xc000ffc2, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aabaaab, 0x6aabaaab, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5554, 0xaaaa5554, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00013fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996627, 0x99996627, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0xbfff8000, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008010, 0x40008010, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad594, 0x2aaad594, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00013fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x40000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013ffe, 0x00013ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc0, 0xffc1ffc0, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x4000803f, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc1, 0x80007fc1, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xfffeffc1, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x995a999a, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe803f, 0x7ffe803f, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08001, 0xbfc08001, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xd516d555, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xfffe0002, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a9b, 0xd5542a9b, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbff08000, 0xbff08000, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc03f, 0x7fffc03f, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffc0c001, 0xffffff81 },
};
const Inputs kOutputs_Uhasx_RdIsRn_al_r7_r7_r11[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x803f4001, 0x803f4001, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x7fc18001, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0x803e4001, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fff, 0x7fff3fff, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9555d555, 0x9555d555, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e3fff, 0x003e3fff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18010, 0x7fc18010, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x400f7fff, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7fff, 0x403f7fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc1, 0xffbfffc1, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x4000803f, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe7fff, 0x7ffe7fff, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc010, 0x7fffc010, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefffc1, 0xffefffc1, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe003e, 0x3ffe003e, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6c, 0xd5542a6c, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffefff0, 0xfffefff0, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0x7fff7fc1, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aa92aaa, 0x6aa92aaa, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992666, 0x99992666, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00010000, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0010, 0x003e0010, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe8000, 0xbffe8000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c002, 0xc000c002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe0000, 0x7ffe0000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0x00000010, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x403e7fff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfbfffff, 0xbfbfffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c010, 0x0000c010, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc002, 0xffbfc002, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xd5541555, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00003ffe, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0xbfff8000, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc0, 0x7fff3fc0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x40008001, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0xbffeffff, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c002, 0xc000c002, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1c000, 0x7fc1c000, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc1, 0x80003fc1, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000ffff, 0x0000ffff, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec000, 0xbffec000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x7fc18040, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000fff0, 0xc000fff0, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000fffe, 0x0000fffe, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaad556, 0x6aaad556, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc0, 0xbffe7fc0, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0001, 0x003f0001, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x95535555, 0x95535555, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc1, 0xbfff7fc1, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x3fff3ffe, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc0, 0xbfff7fc0, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6b, 0xd5542a6b, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x55655555, 0x55655555, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x7fffc040, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x59981999, 0x59981999, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x55935555, 0x55935555, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc000, 0xffbfc000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xc000ffff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00103ffe, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40003ffe, 0x40003ffe, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08000, 0xbfc08000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffc0c000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9999999a, 0x9999999a, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffbf0000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffd555, 0x7fffd555, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8000, 0x7ffe8000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08010, 0x7ff08010, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x403e7fff, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffc1, 0xc001ffc1, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc0, 0x7fff7fc0, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651998, 0xe6651998, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x40007fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec000, 0xfffec000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x666699d8, 0x666699d8, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aab2aaa, 0x2aab2aaa, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xfffe4000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaea, 0x5555aaea, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0000, 0x3ffe0000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe7fff, 0x7ffe7fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc1, 0xbffe7fc1, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x9998999a, 0x9998999a, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000c03f, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x66662666, 0x66662666, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaaeaaa, 0x2aaaeaaa, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec040, 0x7ffec040, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651999, 0xa6651999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fff, 0x803f7fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x199a1999, 0x199a1999, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x7fc18001, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0803f, 0x7fc0803f, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffc0c000, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ffe, 0x80007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xfffe4000, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xffc0ffff, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003ff0, 0x80003ff0, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666d999, 0x6666d999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc1, 0xffc1ffc1, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0x803e7fff, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x66666666, 0x66666666, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x7fff0000, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xe6651999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x40007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x59996666, 0x59996666, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c001, 0xc001c001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0x7fff7fc1, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc000, 0x7fffc000, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aaa, 0x95542aaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018000, 0x40018000, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x8000ffff, 0x8000ffff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c000, 0x0000c000, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8001, 0xbfff8001, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x400f7fff, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0x80004000, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbff08001, 0xbff08001, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc2, 0xc000ffc2, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xfffeffc1, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5515, 0xaaaa5515, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x995a999a, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7ffe, 0x403f7ffe, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc001, 0xbfffc001, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec001, 0xbffec001, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x7fff803f, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x2ae92aaa, 0x2ae92aaa, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e6a6, 0x1999e6a6, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0x80004000, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc001, 0xffbfc001, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xbffe7fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa1556, 0xaaaa1556, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010010, 0x00010010, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xbffe4000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aa9, 0x95542aa9, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x7fff0000, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x2ae92aaa, 0x2ae92aaa, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xfffec001, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5516, 0xaaaa5516, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x7fffc001, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996626, 0x99996626, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc00000, 0xffc00000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100001, 0x00100001, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6656666, 0xa6656666, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xfffec001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c000, 0xc000c000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x7fffc001, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3ff0, 0x7fff3ff0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffeffff, 0x7ffeffff, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992665, 0x19992665, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe003f, 0x3ffe003f, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xd5542aaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x40008000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33330000, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ff0, 0x80007ff0, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffff, 0xc001ffff, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996656, 0x99996656, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc2, 0xc000ffc2, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aabaaab, 0x6aabaaab, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5554, 0xaaaa5554, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00013fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996627, 0x99996627, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0xbfff8000, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008010, 0x40008010, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad594, 0x2aaad594, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00013fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x40000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013ffe, 0x00013ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc0, 0xffc1ffc0, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x4000803f, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc1, 0x80007fc1, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xfffeffc1, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x995a999a, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe803f, 0x7ffe803f, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08001, 0xbfc08001, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xd516d555, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xfffe0002, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a9b, 0xd5542a9b, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbff08000, 0xbff08000, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc03f, 0x7fffc03f, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffc0c001, 0xffffff81 },
};
const Inputs kOutputs_Uhasx_RdIsRn_al_r7_r7_r12[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x803f4001, 0x803f4001, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x7fc18001, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0x803e4001, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fff, 0x7fff3fff, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9555d555, 0x9555d555, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e3fff, 0x003e3fff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18010, 0x7fc18010, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x400f7fff, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7fff, 0x403f7fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc1, 0xffbfffc1, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x4000803f, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe7fff, 0x7ffe7fff, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc010, 0x7fffc010, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefffc1, 0xffefffc1, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe003e, 0x3ffe003e, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6c, 0xd5542a6c, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffefff0, 0xfffefff0, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0x7fff7fc1, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aa92aaa, 0x6aa92aaa, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992666, 0x99992666, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00010000, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0010, 0x003e0010, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe8000, 0xbffe8000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c002, 0xc000c002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe0000, 0x7ffe0000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0x00000010, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x403e7fff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfbfffff, 0xbfbfffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c010, 0x0000c010, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc002, 0xffbfc002, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xd5541555, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00003ffe, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0xbfff8000, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc0, 0x7fff3fc0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x40008001, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0xbffeffff, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c002, 0xc000c002, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1c000, 0x7fc1c000, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc1, 0x80003fc1, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000ffff, 0x0000ffff, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec000, 0xbffec000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x7fc18040, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000fff0, 0xc000fff0, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000fffe, 0x0000fffe, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaad556, 0x6aaad556, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc0, 0xbffe7fc0, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0001, 0x003f0001, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x95535555, 0x95535555, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc1, 0xbfff7fc1, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x3fff3ffe, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc0, 0xbfff7fc0, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6b, 0xd5542a6b, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x55655555, 0x55655555, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x7fffc040, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x59981999, 0x59981999, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x55935555, 0x55935555, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc000, 0xffbfc000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xc000ffff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00103ffe, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40003ffe, 0x40003ffe, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08000, 0xbfc08000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffc0c000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9999999a, 0x9999999a, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffbf0000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffd555, 0x7fffd555, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8000, 0x7ffe8000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08010, 0x7ff08010, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x403e7fff, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffc1, 0xc001ffc1, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc0, 0x7fff7fc0, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651998, 0xe6651998, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x40007fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec000, 0xfffec000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x666699d8, 0x666699d8, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aab2aaa, 0x2aab2aaa, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xfffe4000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaea, 0x5555aaea, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0000, 0x3ffe0000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe7fff, 0x7ffe7fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc1, 0xbffe7fc1, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x9998999a, 0x9998999a, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000c03f, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x66662666, 0x66662666, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaaeaaa, 0x2aaaeaaa, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec040, 0x7ffec040, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651999, 0xa6651999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fff, 0x803f7fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x199a1999, 0x199a1999, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x7fc18001, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0803f, 0x7fc0803f, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffc0c000, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ffe, 0x80007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xfffe4000, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xffc0ffff, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003ff0, 0x80003ff0, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666d999, 0x6666d999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc1, 0xffc1ffc1, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0x803e7fff, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x66666666, 0x66666666, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x7fff0000, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xe6651999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x40007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x59996666, 0x59996666, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c001, 0xc001c001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0x7fff7fc1, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc000, 0x7fffc000, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aaa, 0x95542aaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018000, 0x40018000, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x8000ffff, 0x8000ffff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c000, 0x0000c000, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8001, 0xbfff8001, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x400f7fff, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0x80004000, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbff08001, 0xbff08001, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc2, 0xc000ffc2, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xfffeffc1, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5515, 0xaaaa5515, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x995a999a, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7ffe, 0x403f7ffe, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc001, 0xbfffc001, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec001, 0xbffec001, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x7fff803f, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x2ae92aaa, 0x2ae92aaa, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e6a6, 0x1999e6a6, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0x80004000, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc001, 0xffbfc001, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xbffe7fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa1556, 0xaaaa1556, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010010, 0x00010010, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xbffe4000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aa9, 0x95542aa9, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x7fff0000, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x2ae92aaa, 0x2ae92aaa, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xfffec001, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5516, 0xaaaa5516, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x7fffc001, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996626, 0x99996626, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc00000, 0xffc00000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100001, 0x00100001, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6656666, 0xa6656666, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xfffec001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c000, 0xc000c000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x7fffc001, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3ff0, 0x7fff3ff0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffeffff, 0x7ffeffff, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992665, 0x19992665, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe003f, 0x3ffe003f, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xd5542aaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x40008000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33330000, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ff0, 0x80007ff0, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffff, 0xc001ffff, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996656, 0x99996656, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc2, 0xc000ffc2, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aabaaab, 0x6aabaaab, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5554, 0xaaaa5554, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00013fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996627, 0x99996627, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0xbfff8000, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008010, 0x40008010, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad594, 0x2aaad594, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00013fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x40000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013ffe, 0x00013ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc0, 0xffc1ffc0, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x4000803f, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc1, 0x80007fc1, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xfffeffc1, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x995a999a, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe803f, 0x7ffe803f, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08001, 0xbfc08001, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xd516d555, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xfffe0002, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a9b, 0xd5542a9b, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbff08000, 0xbff08000, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc03f, 0x7fffc03f, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffc0c001, 0xffffff81 },
};
const Inputs kOutputs_Uhasx_RdIsRn_al_r2_r2_r10[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x803f4001, 0x803f4001, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x7fc18001, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0x803e4001, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fff, 0x7fff3fff, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9555d555, 0x9555d555, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e3fff, 0x003e3fff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18010, 0x7fc18010, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x400f7fff, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7fff, 0x403f7fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc1, 0xffbfffc1, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x4000803f, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe7fff, 0x7ffe7fff, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc010, 0x7fffc010, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefffc1, 0xffefffc1, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe003e, 0x3ffe003e, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6c, 0xd5542a6c, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffefff0, 0xfffefff0, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0x7fff7fc1, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aa92aaa, 0x6aa92aaa, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992666, 0x99992666, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00010000, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0010, 0x003e0010, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe8000, 0xbffe8000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c002, 0xc000c002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe0000, 0x7ffe0000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0x00000010, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x403e7fff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfbfffff, 0xbfbfffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c010, 0x0000c010, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc002, 0xffbfc002, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xd5541555, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00003ffe, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0xbfff8000, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x4000c000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc0, 0x7fff3fc0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x40008001, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0xbffeffff, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c002, 0xc000c002, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1c000, 0x7fc1c000, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc1, 0x80003fc1, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000ffff, 0x0000ffff, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec000, 0xbffec000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x7fc18040, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000fff0, 0xc000fff0, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000fffe, 0x0000fffe, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaad556, 0x6aaad556, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc0, 0xbffe7fc0, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0001, 0x003f0001, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x95535555, 0x95535555, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc1, 0xbfff7fc1, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x3fff3ffe, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc0, 0xbfff7fc0, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6b, 0xd5542a6b, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x55655555, 0x55655555, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x7fffc040, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x59981999, 0x59981999, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x55935555, 0x55935555, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc000, 0xffbfc000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xc000ffff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00103ffe, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40003ffe, 0x40003ffe, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08000, 0xbfc08000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffc0c000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9999999a, 0x9999999a, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffbf0000, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffd555, 0x7fffd555, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8000, 0x7ffe8000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08010, 0x7ff08010, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x403e7fff, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffc1, 0xc001ffc1, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc0, 0x7fff7fc0, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651998, 0xe6651998, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x40007fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec000, 0xfffec000, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x666699d8, 0x666699d8, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aab2aaa, 0x2aab2aaa, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xfffe4000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaea, 0x5555aaea, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0000, 0x3ffe0000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xc000c001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe7fff, 0x7ffe7fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc1, 0xbffe7fc1, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x3fff3fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x9998999a, 0x9998999a, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000c03f, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x66662666, 0x66662666, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaaeaaa, 0x2aaaeaaa, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec040, 0x7ffec040, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651999, 0xa6651999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fff, 0x803f7fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x199a1999, 0x199a1999, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x7fc18001, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0803f, 0x7fc0803f, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffc0c000, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ffe, 0x80007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xfffe4000, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xffc0ffff, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003ff0, 0x80003ff0, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666d999, 0x6666d999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc1, 0xffc1ffc1, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0x803e7fff, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x66666666, 0x66666666, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x7fff0000, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xe6651999, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x40007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x59996666, 0x59996666, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c001, 0xc001c001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0x7fff7fc1, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc000, 0x7fffc000, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aaa, 0x95542aaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018000, 0x40018000, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x8000ffff, 0x8000ffff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c000, 0x0000c000, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xc000ffc1, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8001, 0xbfff8001, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x400f7fff, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0x80007fff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0x80004000, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbff08001, 0xbff08001, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc2, 0xc000ffc2, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xfffeffc1, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5515, 0xaaaa5515, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x995a999a, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7ffe, 0x403f7ffe, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc001, 0xbfffc001, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec001, 0xbffec001, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x7fff803f, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x2ae92aaa, 0x2ae92aaa, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e6a6, 0x1999e6a6, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0x80004000, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc001, 0xffbfc001, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xbffe7fff, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00003fff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa1556, 0xaaaa1556, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010010, 0x00010010, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xbffe4000, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aa9, 0x95542aa9, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x7fff0000, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x2ae92aaa, 0x2ae92aaa, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xfffec001, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f0000, 0x403f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5516, 0xaaaa5516, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x7fffc001, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996626, 0x99996626, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc00000, 0xffc00000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100001, 0x00100001, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6656666, 0xa6656666, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xfffec001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c000, 0xc000c000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x7fffc001, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3ff0, 0x7fff3ff0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffeffff, 0x7ffeffff, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992665, 0x19992665, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe003f, 0x3ffe003f, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xd5542aaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x40008000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33330000, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ff0, 0x80007ff0, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffff, 0xc001ffff, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996656, 0x99996656, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc2, 0xc000ffc2, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aabaaab, 0x6aabaaab, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5554, 0xaaaa5554, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00013fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996627, 0x99996627, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0xbfff8000, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008010, 0x40008010, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad594, 0x2aaad594, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00013fff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x40000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013ffe, 0x00013ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc0, 0xffc1ffc0, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x4000803f, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc1, 0x80007fc1, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x7fc1bfff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xfffeffc1, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x995a999a, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe803f, 0x7ffe803f, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08001, 0xbfc08001, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xd516d555, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xfffe0002, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a9b, 0xd5542a9b, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbff08000, 0xbff08000, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc03f, 0x7fffc03f, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x003f0000, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffc0c001, 0xffffff81 },
};
const Inputs kOutputs_Uhasx_RdIsRm_al_r1_r12_r1[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007f, 0x0010003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0010, 0x00000020, 0x3ffe0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00003ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aa9, 0x7ffffffd, 0x95542aa9 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xffff8000, 0xbffe4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7ffe, 0xfffffffd, 0x803f7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xbfff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc1, 0xffffff82, 0xffff3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xfffffffe, 0x80007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aba2aaa, 0x55555555, 0x2aba2aaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996665, 0xfffffffe, 0x99996665 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe8000, 0x80000000, 0xbffe8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c002, 0xffff8003, 0xffc0c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7ffffffe, 0x403e7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff80, 0x803e7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08010, 0x00000020, 0x7fc08010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992667, 0xffff8002, 0x99992667 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff80, 0x803e7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c010, 0x00000020, 0x0000c010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff81, 0x80007fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc1, 0xffffff82, 0x803e7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0xffffff82, 0x7fff7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc2, 0xffffff83, 0xffc0ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aabeaaa, 0x55555555, 0x2aabeaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0x40008001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff7fff, 0x7ffffffe, 0x3fff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992667, 0xffff8001, 0x99992667 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c001, 0x00000002, 0x0000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55551555, 0xaaaaaaaa, 0x55551555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8010, 0x00000020, 0x7fff8010 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xfffffffe, 0xbfff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7ffe, 0xfffffffd, 0xbfff7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffeffff, 0x00007ffe, 0x7ffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xa667e666, 0xcccccccc, 0xa667e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0x7ffffffe, 0xbffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xffffffff, 0xfffe4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55945555, 0xaaaaaaaa, 0x55945555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x0000003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x95545555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5531555, 0xaaaaaaaa, 0xd5531555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaa9aaaab, 0x55555555, 0xaa9aaaab },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001803f, 0x0000007e, 0x4001803f },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999d999, 0x33333333, 0x1999d999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe665195a, 0xffffff80, 0xe665195a },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00007ffe, 0x00003fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaaeaaa, 0x55555555, 0x2aaaeaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefc001, 0xffff8001, 0xffefc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaac, 0x00000002, 0x5555aaac },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xaaaaaaaa, 0xd5541555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x0000007f, 0x7fc18040 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc00000, 0x7fffffff, 0xbfc00000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffc0c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0001, 0xffff8003, 0x7fff0001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6eee3bbb, 0xaaaaaaaa, 0x6eee3bbb },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x95545555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xa666e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xffffff81, 0xfffeffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefffff, 0xfffffffe, 0xffefffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6656666, 0xcccccccc, 0xa6656666 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0010, 0x00000020, 0x3fff0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffe, 0x7fc0bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aae9, 0x0000007d, 0x5555aae9 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xfffffffe, 0xc000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbbbbeeef, 0xaaaaaaaa, 0xbbbbeeef },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e6a6, 0x0000007f, 0x1999e6a6 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0000, 0x00000001, 0x3ffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0xffff8000, 0x7fff0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xffffffff, 0xd5542aaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc1, 0xffffff83, 0x80007fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80000000, 0xffff8000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8000, 0x803e4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fff, 0xffffffff, 0x800f7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c000, 0xffff8000, 0xc000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3ff0, 0xffffffe0, 0xfffe3ff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc1ffff, 0x7ffffffe, 0xbfc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fff, 0xfffffffe, 0xffff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x00000000, 0x003f0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc1ffff, 0x7ffffffd, 0xbfc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x80000001, 0x40000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00003ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xd515d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8000, 0x00000000, 0x7fff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc1, 0xffffff82, 0xffbfffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9555d555, 0xaaaaaaaa, 0x9555d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc000, 0xffff8000, 0xffbfc000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a9b, 0xffffffe0, 0xd5542a9b },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992665, 0x00007ffd, 0x19992665 },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992666, 0x00007fff, 0x19992666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffd, 0xffc0ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7ffe, 0x7ffffffd, 0x403e7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffff, 0xfffffffe, 0xffc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x00007fff, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8010, 0x00000020, 0x7ffe8010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff003e, 0x0000007d, 0x3fff003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8002, 0x803e4001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0x40008000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x0000007f, 0x7fc18040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x00007ffe, 0x7fc1bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1c002, 0xffff8003, 0xffc1c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x80000001, 0x7fff0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000bfff, 0x00007ffd, 0x4000bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001bfff, 0x00007ffe, 0x4001bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8001, 0x80000001, 0xbfff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00013fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007ffe, 0x7ffffffd, 0x40007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xfffffffd, 0xc000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff3fff, 0x7ffffffd, 0xbfff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xe665195b, 0xffffff82, 0xe665195b },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec000, 0x80000000, 0xbffec000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xffffffff, 0xe6651999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffffffc1, 0xffffff81, 0xffffffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0010, 0x00000020, 0x3fff0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000002, 0x40008001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001fff0, 0xffffffe0, 0xc001fff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5517, 0xffffff83, 0xaaaa5517 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4444eeef, 0x33333333, 0x4444eeef },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffffc1, 0xffffff82, 0xbfffffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aabaaab, 0x55555555, 0x6aabaaab },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013ffe, 0x00007ffd, 0x00013ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0x7fc0bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc0, 0xffffff80, 0xbfff7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00010000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103fff, 0x00007ffe, 0x00103fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0000, 0xffffffff, 0xfffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08001, 0x00000002, 0x7fc08001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7fffffff, 0x403e7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x00007ffd, 0x3fff3ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80018001, 0x80000001, 0x80018001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc1, 0xffffff82, 0x800f7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad565, 0x00000020, 0x2aaad565 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000ffff, 0x00007fff, 0x0000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5516, 0xffffff81, 0xaaaa5516 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fff, 0x7ffffffe, 0x7fff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x95535555, 0xaaaaaaaa, 0x95535555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999a, 0x00000001, 0x6666999a },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651998, 0xfffffffd, 0xe6651998 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd554eaac, 0xffff8002, 0xd554eaac },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec010, 0x00000020, 0x7ffec010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad595, 0x0000007f, 0x2aaad595 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x0000007f, 0x7fffc040 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffc2, 0xffffff83, 0xc001ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe664e666, 0xcccccccc, 0xe664e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xffffffff, 0xbfff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbbbb1111, 0xcccccccc, 0xbbbb1111 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc2, 0xffffff83, 0xffff3fc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000bfff, 0x00007ffe, 0x4000bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffffff, 0x00007ffe, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007f, 0x0000c03f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00007ffd, 0x00103ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c000, 0x00000001, 0x0000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefc002, 0xffff8003, 0xffefc002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0002, 0xffff8003, 0xffff0002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc1, 0xffffff82, 0x80003fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40003fff, 0x7ffffffe, 0x40003fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfbfffff, 0x7ffffffd, 0xbfbfffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xffff8001, 0xfffec001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe0000, 0x7fffffff, 0xbffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5999e667, 0x80000001, 0x5999e667 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xffffffff, 0xbffe7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff0803f, 0x0000007e, 0x7ff0803f },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc0, 0xffffff80, 0xfffeffc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651998, 0x7ffffffd, 0xa6651998 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0fff0, 0xffffffe0, 0xffc0fff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xd515d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1803f, 0x0000007e, 0x7fc1803f },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08040, 0x0000007f, 0x7fc08040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x40010000, 0x80000000, 0x40010000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0000, 0x00000000, 0x003e0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc0, 0xffffff80, 0xfffe3fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x33333333, 0x995a999a },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xaaaaaaaa, 0xd516d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08040, 0x0000007f, 0x7ff08040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff7ffe, 0x7ffffffd, 0x3fff7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x19d81999, 0x33333333, 0x19d81999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5554, 0xfffffffe, 0xaaaa5554 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001803f, 0x0000007d, 0x4001803f },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666999a, 0x80000000, 0xa666999a },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff81, 0xfffe3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x7ffffffe, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc0, 0xffffff80, 0xffff3fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x00000001, 0x7fffc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xffffff82, 0xc000ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8001, 0x803e4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec000, 0x00007fff, 0x7ffec000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xffff8003, 0xfffe0002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc001, 0x80000001, 0xbfffc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe0000, 0x7fffffff, 0xbffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffff8000, 0xffc0c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff82, 0xfffe3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xa666e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc10000, 0x7fffffff, 0xbfc10000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001c000, 0x00007fff, 0x4001c000 },
};
const Inputs kOutputs_Uhasx_RdIsRm_al_r4_r3_r4[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007f, 0x0010003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0010, 0x00000020, 0x3ffe0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00003ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aa9, 0x7ffffffd, 0x95542aa9 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xffff8000, 0xbffe4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7ffe, 0xfffffffd, 0x803f7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xbfff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc1, 0xffffff82, 0xffff3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xfffffffe, 0x80007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aba2aaa, 0x55555555, 0x2aba2aaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996665, 0xfffffffe, 0x99996665 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe8000, 0x80000000, 0xbffe8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c002, 0xffff8003, 0xffc0c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7ffffffe, 0x403e7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff80, 0x803e7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08010, 0x00000020, 0x7fc08010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992667, 0xffff8002, 0x99992667 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff80, 0x803e7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c010, 0x00000020, 0x0000c010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff81, 0x80007fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc1, 0xffffff82, 0x803e7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0xffffff82, 0x7fff7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc2, 0xffffff83, 0xffc0ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aabeaaa, 0x55555555, 0x2aabeaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0x40008001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff7fff, 0x7ffffffe, 0x3fff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992667, 0xffff8001, 0x99992667 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c001, 0x00000002, 0x0000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55551555, 0xaaaaaaaa, 0x55551555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8010, 0x00000020, 0x7fff8010 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xfffffffe, 0xbfff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7ffe, 0xfffffffd, 0xbfff7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffeffff, 0x00007ffe, 0x7ffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xa667e666, 0xcccccccc, 0xa667e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0x7ffffffe, 0xbffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xffffffff, 0xfffe4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55945555, 0xaaaaaaaa, 0x55945555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x0000003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x95545555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5531555, 0xaaaaaaaa, 0xd5531555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaa9aaaab, 0x55555555, 0xaa9aaaab },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001803f, 0x0000007e, 0x4001803f },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999d999, 0x33333333, 0x1999d999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe665195a, 0xffffff80, 0xe665195a },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00007ffe, 0x00003fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaaeaaa, 0x55555555, 0x2aaaeaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefc001, 0xffff8001, 0xffefc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaac, 0x00000002, 0x5555aaac },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xaaaaaaaa, 0xd5541555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x0000007f, 0x7fc18040 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc00000, 0x7fffffff, 0xbfc00000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffc0c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0001, 0xffff8003, 0x7fff0001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6eee3bbb, 0xaaaaaaaa, 0x6eee3bbb },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x95545555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xa666e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xffffff81, 0xfffeffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefffff, 0xfffffffe, 0xffefffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6656666, 0xcccccccc, 0xa6656666 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0010, 0x00000020, 0x3fff0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffe, 0x7fc0bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aae9, 0x0000007d, 0x5555aae9 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xfffffffe, 0xc000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbbbbeeef, 0xaaaaaaaa, 0xbbbbeeef },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e6a6, 0x0000007f, 0x1999e6a6 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0000, 0x00000001, 0x3ffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0xffff8000, 0x7fff0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xffffffff, 0xd5542aaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc1, 0xffffff83, 0x80007fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80000000, 0xffff8000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8000, 0x803e4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fff, 0xffffffff, 0x800f7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c000, 0xffff8000, 0xc000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3ff0, 0xffffffe0, 0xfffe3ff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc1ffff, 0x7ffffffe, 0xbfc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fff, 0xfffffffe, 0xffff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x00000000, 0x003f0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc1ffff, 0x7ffffffd, 0xbfc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x80000001, 0x40000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00003ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xd515d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8000, 0x00000000, 0x7fff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc1, 0xffffff82, 0xffbfffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9555d555, 0xaaaaaaaa, 0x9555d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc000, 0xffff8000, 0xffbfc000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a9b, 0xffffffe0, 0xd5542a9b },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992665, 0x00007ffd, 0x19992665 },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992666, 0x00007fff, 0x19992666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffd, 0xffc0ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7ffe, 0x7ffffffd, 0x403e7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffff, 0xfffffffe, 0xffc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x00007fff, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8010, 0x00000020, 0x7ffe8010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff003e, 0x0000007d, 0x3fff003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8002, 0x803e4001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0x40008000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x0000007f, 0x7fc18040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x00007ffe, 0x7fc1bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1c002, 0xffff8003, 0xffc1c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x80000001, 0x7fff0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000bfff, 0x00007ffd, 0x4000bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001bfff, 0x00007ffe, 0x4001bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8001, 0x80000001, 0xbfff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00013fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007ffe, 0x7ffffffd, 0x40007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xfffffffd, 0xc000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff3fff, 0x7ffffffd, 0xbfff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xe665195b, 0xffffff82, 0xe665195b },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec000, 0x80000000, 0xbffec000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xffffffff, 0xe6651999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffffffc1, 0xffffff81, 0xffffffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0010, 0x00000020, 0x3fff0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000002, 0x40008001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001fff0, 0xffffffe0, 0xc001fff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5517, 0xffffff83, 0xaaaa5517 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4444eeef, 0x33333333, 0x4444eeef },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffffc1, 0xffffff82, 0xbfffffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aabaaab, 0x55555555, 0x6aabaaab },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013ffe, 0x00007ffd, 0x00013ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0x7fc0bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc0, 0xffffff80, 0xbfff7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00010000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103fff, 0x00007ffe, 0x00103fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0000, 0xffffffff, 0xfffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08001, 0x00000002, 0x7fc08001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7fffffff, 0x403e7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x00007ffd, 0x3fff3ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80018001, 0x80000001, 0x80018001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc1, 0xffffff82, 0x800f7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad565, 0x00000020, 0x2aaad565 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000ffff, 0x00007fff, 0x0000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5516, 0xffffff81, 0xaaaa5516 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fff, 0x7ffffffe, 0x7fff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x95535555, 0xaaaaaaaa, 0x95535555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999a, 0x00000001, 0x6666999a },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651998, 0xfffffffd, 0xe6651998 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd554eaac, 0xffff8002, 0xd554eaac },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec010, 0x00000020, 0x7ffec010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad595, 0x0000007f, 0x2aaad595 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x0000007f, 0x7fffc040 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffc2, 0xffffff83, 0xc001ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe664e666, 0xcccccccc, 0xe664e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xffffffff, 0xbfff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbbbb1111, 0xcccccccc, 0xbbbb1111 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc2, 0xffffff83, 0xffff3fc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000bfff, 0x00007ffe, 0x4000bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffffff, 0x00007ffe, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007f, 0x0000c03f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00007ffd, 0x00103ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c000, 0x00000001, 0x0000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefc002, 0xffff8003, 0xffefc002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0002, 0xffff8003, 0xffff0002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc1, 0xffffff82, 0x80003fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40003fff, 0x7ffffffe, 0x40003fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfbfffff, 0x7ffffffd, 0xbfbfffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xffff8001, 0xfffec001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe0000, 0x7fffffff, 0xbffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5999e667, 0x80000001, 0x5999e667 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xffffffff, 0xbffe7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff0803f, 0x0000007e, 0x7ff0803f },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc0, 0xffffff80, 0xfffeffc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651998, 0x7ffffffd, 0xa6651998 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0fff0, 0xffffffe0, 0xffc0fff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xd515d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1803f, 0x0000007e, 0x7fc1803f },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08040, 0x0000007f, 0x7fc08040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x40010000, 0x80000000, 0x40010000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0000, 0x00000000, 0x003e0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc0, 0xffffff80, 0xfffe3fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x33333333, 0x995a999a },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xaaaaaaaa, 0xd516d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08040, 0x0000007f, 0x7ff08040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff7ffe, 0x7ffffffd, 0x3fff7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x19d81999, 0x33333333, 0x19d81999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5554, 0xfffffffe, 0xaaaa5554 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001803f, 0x0000007d, 0x4001803f },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666999a, 0x80000000, 0xa666999a },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff81, 0xfffe3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x7ffffffe, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc0, 0xffffff80, 0xffff3fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x00000001, 0x7fffc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xffffff82, 0xc000ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8001, 0x803e4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec000, 0x00007fff, 0x7ffec000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xffff8003, 0xfffe0002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc001, 0x80000001, 0xbfffc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe0000, 0x7fffffff, 0xbffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffff8000, 0xffc0c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff82, 0xfffe3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xa666e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc10000, 0x7fffffff, 0xbfc10000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001c000, 0x00007fff, 0x4001c000 },
};
const Inputs kOutputs_Uhasx_RdIsRm_al_r0_r2_r0[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007f, 0x0010003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0010, 0x00000020, 0x3ffe0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00003ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aa9, 0x7ffffffd, 0x95542aa9 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xffff8000, 0xbffe4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7ffe, 0xfffffffd, 0x803f7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xbfff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc1, 0xffffff82, 0xffff3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xfffffffe, 0x80007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aba2aaa, 0x55555555, 0x2aba2aaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996665, 0xfffffffe, 0x99996665 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe8000, 0x80000000, 0xbffe8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c002, 0xffff8003, 0xffc0c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7ffffffe, 0x403e7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff80, 0x803e7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08010, 0x00000020, 0x7fc08010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992667, 0xffff8002, 0x99992667 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff80, 0x803e7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c010, 0x00000020, 0x0000c010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff81, 0x80007fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc1, 0xffffff82, 0x803e7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0xffffff82, 0x7fff7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc2, 0xffffff83, 0xffc0ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aabeaaa, 0x55555555, 0x2aabeaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0x40008001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff7fff, 0x7ffffffe, 0x3fff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992667, 0xffff8001, 0x99992667 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c001, 0x00000002, 0x0000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55551555, 0xaaaaaaaa, 0x55551555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8010, 0x00000020, 0x7fff8010 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xfffffffe, 0xbfff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7ffe, 0xfffffffd, 0xbfff7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffeffff, 0x00007ffe, 0x7ffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xa667e666, 0xcccccccc, 0xa667e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0x7ffffffe, 0xbffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xffffffff, 0xfffe4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55945555, 0xaaaaaaaa, 0x55945555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x0000003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x95545555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5531555, 0xaaaaaaaa, 0xd5531555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaa9aaaab, 0x55555555, 0xaa9aaaab },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001803f, 0x0000007e, 0x4001803f },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999d999, 0x33333333, 0x1999d999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe665195a, 0xffffff80, 0xe665195a },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00007ffe, 0x00003fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaaeaaa, 0x55555555, 0x2aaaeaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefc001, 0xffff8001, 0xffefc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaac, 0x00000002, 0x5555aaac },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xaaaaaaaa, 0xd5541555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x0000007f, 0x7fc18040 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc00000, 0x7fffffff, 0xbfc00000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffc0c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0001, 0xffff8003, 0x7fff0001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6eee3bbb, 0xaaaaaaaa, 0x6eee3bbb },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x95545555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xa666e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xffffff81, 0xfffeffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefffff, 0xfffffffe, 0xffefffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6656666, 0xcccccccc, 0xa6656666 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0010, 0x00000020, 0x3fff0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffe, 0x7fc0bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aae9, 0x0000007d, 0x5555aae9 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xfffffffe, 0xc000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbbbbeeef, 0xaaaaaaaa, 0xbbbbeeef },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e6a6, 0x0000007f, 0x1999e6a6 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0000, 0x00000001, 0x3ffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0xffff8000, 0x7fff0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xffffffff, 0xd5542aaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc1, 0xffffff83, 0x80007fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80000000, 0xffff8000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8000, 0x803e4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fff, 0xffffffff, 0x800f7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c000, 0xffff8000, 0xc000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3ff0, 0xffffffe0, 0xfffe3ff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc1ffff, 0x7ffffffe, 0xbfc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fff, 0xfffffffe, 0xffff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x00000000, 0x003f0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc1ffff, 0x7ffffffd, 0xbfc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x80000001, 0x40000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00003ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xd515d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8000, 0x00000000, 0x7fff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc1, 0xffffff82, 0xffbfffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9555d555, 0xaaaaaaaa, 0x9555d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc000, 0xffff8000, 0xffbfc000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a9b, 0xffffffe0, 0xd5542a9b },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992665, 0x00007ffd, 0x19992665 },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992666, 0x00007fff, 0x19992666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffd, 0xffc0ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7ffe, 0x7ffffffd, 0x403e7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffff, 0xfffffffe, 0xffc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x00007fff, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8010, 0x00000020, 0x7ffe8010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff003e, 0x0000007d, 0x3fff003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8002, 0x803e4001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0x40008000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x0000007f, 0x7fc18040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x00007ffe, 0x7fc1bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1c002, 0xffff8003, 0xffc1c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x80000001, 0x7fff0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000bfff, 0x00007ffd, 0x4000bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001bfff, 0x00007ffe, 0x4001bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8001, 0x80000001, 0xbfff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00013fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007ffe, 0x7ffffffd, 0x40007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xfffffffd, 0xc000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff3fff, 0x7ffffffd, 0xbfff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xe665195b, 0xffffff82, 0xe665195b },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec000, 0x80000000, 0xbffec000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xffffffff, 0xe6651999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffffffc1, 0xffffff81, 0xffffffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0010, 0x00000020, 0x3fff0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000002, 0x40008001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001fff0, 0xffffffe0, 0xc001fff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5517, 0xffffff83, 0xaaaa5517 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4444eeef, 0x33333333, 0x4444eeef },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffffc1, 0xffffff82, 0xbfffffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aabaaab, 0x55555555, 0x6aabaaab },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013ffe, 0x00007ffd, 0x00013ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0x7fc0bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc0, 0xffffff80, 0xbfff7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00010000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103fff, 0x00007ffe, 0x00103fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0000, 0xffffffff, 0xfffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08001, 0x00000002, 0x7fc08001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7fffffff, 0x403e7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x00007ffd, 0x3fff3ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80018001, 0x80000001, 0x80018001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc1, 0xffffff82, 0x800f7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad565, 0x00000020, 0x2aaad565 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000ffff, 0x00007fff, 0x0000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5516, 0xffffff81, 0xaaaa5516 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fff, 0x7ffffffe, 0x7fff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x95535555, 0xaaaaaaaa, 0x95535555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999a, 0x00000001, 0x6666999a },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651998, 0xfffffffd, 0xe6651998 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd554eaac, 0xffff8002, 0xd554eaac },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec010, 0x00000020, 0x7ffec010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad595, 0x0000007f, 0x2aaad595 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x0000007f, 0x7fffc040 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffc2, 0xffffff83, 0xc001ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe664e666, 0xcccccccc, 0xe664e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xffffffff, 0xbfff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbbbb1111, 0xcccccccc, 0xbbbb1111 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc2, 0xffffff83, 0xffff3fc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000bfff, 0x00007ffe, 0x4000bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffffff, 0x00007ffe, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007f, 0x0000c03f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00007ffd, 0x00103ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c000, 0x00000001, 0x0000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefc002, 0xffff8003, 0xffefc002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0002, 0xffff8003, 0xffff0002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc1, 0xffffff82, 0x80003fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40003fff, 0x7ffffffe, 0x40003fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfbfffff, 0x7ffffffd, 0xbfbfffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xffff8001, 0xfffec001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe0000, 0x7fffffff, 0xbffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5999e667, 0x80000001, 0x5999e667 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xffffffff, 0xbffe7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff0803f, 0x0000007e, 0x7ff0803f },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc0, 0xffffff80, 0xfffeffc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651998, 0x7ffffffd, 0xa6651998 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0fff0, 0xffffffe0, 0xffc0fff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xd515d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1803f, 0x0000007e, 0x7fc1803f },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08040, 0x0000007f, 0x7fc08040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x40010000, 0x80000000, 0x40010000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0000, 0x00000000, 0x003e0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc0, 0xffffff80, 0xfffe3fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x33333333, 0x995a999a },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xaaaaaaaa, 0xd516d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08040, 0x0000007f, 0x7ff08040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff7ffe, 0x7ffffffd, 0x3fff7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x19d81999, 0x33333333, 0x19d81999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5554, 0xfffffffe, 0xaaaa5554 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001803f, 0x0000007d, 0x4001803f },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666999a, 0x80000000, 0xa666999a },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff81, 0xfffe3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x7ffffffe, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc0, 0xffffff80, 0xffff3fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x00000001, 0x7fffc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xffffff82, 0xc000ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8001, 0x803e4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec000, 0x00007fff, 0x7ffec000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xffff8003, 0xfffe0002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc001, 0x80000001, 0xbfffc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe0000, 0x7fffffff, 0xbffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffff8000, 0xffc0c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff82, 0xfffe3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xa666e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc10000, 0x7fffffff, 0xbfc10000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001c000, 0x00007fff, 0x4001c000 },
};
const Inputs kOutputs_Uhasx_RdIsRm_al_r10_r4_r10[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007f, 0x0010003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0010, 0x00000020, 0x3ffe0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00003ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aa9, 0x7ffffffd, 0x95542aa9 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xffff8000, 0xbffe4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7ffe, 0xfffffffd, 0x803f7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xbfff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc1, 0xffffff82, 0xffff3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xfffffffe, 0x80007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aba2aaa, 0x55555555, 0x2aba2aaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996665, 0xfffffffe, 0x99996665 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe8000, 0x80000000, 0xbffe8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c002, 0xffff8003, 0xffc0c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7ffffffe, 0x403e7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff80, 0x803e7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08010, 0x00000020, 0x7fc08010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992667, 0xffff8002, 0x99992667 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff80, 0x803e7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c010, 0x00000020, 0x0000c010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff81, 0x80007fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc1, 0xffffff82, 0x803e7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0xffffff82, 0x7fff7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc2, 0xffffff83, 0xffc0ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aabeaaa, 0x55555555, 0x2aabeaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0x40008001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff7fff, 0x7ffffffe, 0x3fff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992667, 0xffff8001, 0x99992667 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c001, 0x00000002, 0x0000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55551555, 0xaaaaaaaa, 0x55551555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8010, 0x00000020, 0x7fff8010 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xfffffffe, 0xbfff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7ffe, 0xfffffffd, 0xbfff7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffeffff, 0x00007ffe, 0x7ffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xa667e666, 0xcccccccc, 0xa667e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0x7ffffffe, 0xbffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xffffffff, 0xfffe4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55945555, 0xaaaaaaaa, 0x55945555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x0000003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x95545555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5531555, 0xaaaaaaaa, 0xd5531555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaa9aaaab, 0x55555555, 0xaa9aaaab },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001803f, 0x0000007e, 0x4001803f },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999d999, 0x33333333, 0x1999d999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe665195a, 0xffffff80, 0xe665195a },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00007ffe, 0x00003fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaaeaaa, 0x55555555, 0x2aaaeaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefc001, 0xffff8001, 0xffefc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaac, 0x00000002, 0x5555aaac },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xaaaaaaaa, 0xd5541555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x0000007f, 0x7fc18040 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc00000, 0x7fffffff, 0xbfc00000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffc0c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0001, 0xffff8003, 0x7fff0001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6eee3bbb, 0xaaaaaaaa, 0x6eee3bbb },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x95545555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xa666e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xffffff81, 0xfffeffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefffff, 0xfffffffe, 0xffefffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6656666, 0xcccccccc, 0xa6656666 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0010, 0x00000020, 0x3fff0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffe, 0x7fc0bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aae9, 0x0000007d, 0x5555aae9 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xfffffffe, 0xc000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbbbbeeef, 0xaaaaaaaa, 0xbbbbeeef },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e6a6, 0x0000007f, 0x1999e6a6 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0000, 0x00000001, 0x3ffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0xffff8000, 0x7fff0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xffffffff, 0xd5542aaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc1, 0xffffff83, 0x80007fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80000000, 0xffff8000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8000, 0x803e4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fff, 0xffffffff, 0x800f7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c000, 0xffff8000, 0xc000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3ff0, 0xffffffe0, 0xfffe3ff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc1ffff, 0x7ffffffe, 0xbfc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fff, 0xfffffffe, 0xffff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x00000000, 0x003f0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc1ffff, 0x7ffffffd, 0xbfc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x80000001, 0x40000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00003ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xd515d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8000, 0x00000000, 0x7fff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc1, 0xffffff82, 0xffbfffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9555d555, 0xaaaaaaaa, 0x9555d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc000, 0xffff8000, 0xffbfc000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a9b, 0xffffffe0, 0xd5542a9b },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992665, 0x00007ffd, 0x19992665 },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992666, 0x00007fff, 0x19992666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffd, 0xffc0ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7ffe, 0x7ffffffd, 0x403e7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffff, 0xfffffffe, 0xffc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x00007fff, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8010, 0x00000020, 0x7ffe8010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff003e, 0x0000007d, 0x3fff003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8002, 0x803e4001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0x40008000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x0000007f, 0x7fc18040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x00007ffe, 0x7fc1bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1c002, 0xffff8003, 0xffc1c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x80000001, 0x7fff0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000bfff, 0x00007ffd, 0x4000bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001bfff, 0x00007ffe, 0x4001bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8001, 0x80000001, 0xbfff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00013fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007ffe, 0x7ffffffd, 0x40007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xfffffffd, 0xc000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff3fff, 0x7ffffffd, 0xbfff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xe665195b, 0xffffff82, 0xe665195b },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec000, 0x80000000, 0xbffec000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xffffffff, 0xe6651999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffffffc1, 0xffffff81, 0xffffffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0010, 0x00000020, 0x3fff0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000002, 0x40008001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001fff0, 0xffffffe0, 0xc001fff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5517, 0xffffff83, 0xaaaa5517 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4444eeef, 0x33333333, 0x4444eeef },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffffc1, 0xffffff82, 0xbfffffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aabaaab, 0x55555555, 0x6aabaaab },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013ffe, 0x00007ffd, 0x00013ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0x7fc0bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc0, 0xffffff80, 0xbfff7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00010000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103fff, 0x00007ffe, 0x00103fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0000, 0xffffffff, 0xfffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08001, 0x00000002, 0x7fc08001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7fffffff, 0x403e7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x00007ffd, 0x3fff3ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80018001, 0x80000001, 0x80018001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc1, 0xffffff82, 0x800f7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad565, 0x00000020, 0x2aaad565 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000ffff, 0x00007fff, 0x0000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5516, 0xffffff81, 0xaaaa5516 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fff, 0x7ffffffe, 0x7fff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x95535555, 0xaaaaaaaa, 0x95535555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999a, 0x00000001, 0x6666999a },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651998, 0xfffffffd, 0xe6651998 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd554eaac, 0xffff8002, 0xd554eaac },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec010, 0x00000020, 0x7ffec010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad595, 0x0000007f, 0x2aaad595 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x0000007f, 0x7fffc040 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffc2, 0xffffff83, 0xc001ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe664e666, 0xcccccccc, 0xe664e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xffffffff, 0xbfff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbbbb1111, 0xcccccccc, 0xbbbb1111 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc2, 0xffffff83, 0xffff3fc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000bfff, 0x00007ffe, 0x4000bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffffff, 0x00007ffe, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007f, 0x0000c03f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00007ffd, 0x00103ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c000, 0x00000001, 0x0000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefc002, 0xffff8003, 0xffefc002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0002, 0xffff8003, 0xffff0002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc1, 0xffffff82, 0x80003fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40003fff, 0x7ffffffe, 0x40003fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfbfffff, 0x7ffffffd, 0xbfbfffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xffff8001, 0xfffec001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe0000, 0x7fffffff, 0xbffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5999e667, 0x80000001, 0x5999e667 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xffffffff, 0xbffe7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff0803f, 0x0000007e, 0x7ff0803f },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc0, 0xffffff80, 0xfffeffc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651998, 0x7ffffffd, 0xa6651998 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0fff0, 0xffffffe0, 0xffc0fff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xd515d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1803f, 0x0000007e, 0x7fc1803f },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08040, 0x0000007f, 0x7fc08040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x40010000, 0x80000000, 0x40010000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0000, 0x00000000, 0x003e0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc0, 0xffffff80, 0xfffe3fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x33333333, 0x995a999a },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xaaaaaaaa, 0xd516d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08040, 0x0000007f, 0x7ff08040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff7ffe, 0x7ffffffd, 0x3fff7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x19d81999, 0x33333333, 0x19d81999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5554, 0xfffffffe, 0xaaaa5554 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001803f, 0x0000007d, 0x4001803f },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666999a, 0x80000000, 0xa666999a },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff81, 0xfffe3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x7ffffffe, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc0, 0xffffff80, 0xffff3fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x00000001, 0x7fffc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xffffff82, 0xc000ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8001, 0x803e4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec000, 0x00007fff, 0x7ffec000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xffff8003, 0xfffe0002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc001, 0x80000001, 0xbfffc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe0000, 0x7fffffff, 0xbffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffff8000, 0xffc0c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff82, 0xfffe3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xa666e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc10000, 0x7fffffff, 0xbfc10000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001c000, 0x00007fff, 0x4001c000 },
};
const Inputs kOutputs_Uhasx_RdIsRm_al_r4_r8_r4[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007f, 0x0010003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0010, 0x00000020, 0x3ffe0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00003ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aa9, 0x7ffffffd, 0x95542aa9 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xffff8000, 0xbffe4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7ffe, 0xfffffffd, 0x803f7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xbfff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc1, 0xffffff82, 0xffff3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xfffffffe, 0x80007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aba2aaa, 0x55555555, 0x2aba2aaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996665, 0xfffffffe, 0x99996665 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe8000, 0x80000000, 0xbffe8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c002, 0xffff8003, 0xffc0c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7ffffffe, 0x403e7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff80, 0x803e7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08010, 0x00000020, 0x7fc08010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992667, 0xffff8002, 0x99992667 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff80, 0x803e7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c010, 0x00000020, 0x0000c010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff81, 0x80007fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc1, 0xffffff82, 0x803e7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0xffffff82, 0x7fff7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc2, 0xffffff83, 0xffc0ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aabeaaa, 0x55555555, 0x2aabeaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0x40008001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff7fff, 0x7ffffffe, 0x3fff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992667, 0xffff8001, 0x99992667 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c001, 0x00000002, 0x0000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55551555, 0xaaaaaaaa, 0x55551555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8010, 0x00000020, 0x7fff8010 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xfffffffe, 0xbfff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7ffe, 0xfffffffd, 0xbfff7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffeffff, 0x00007ffe, 0x7ffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xa667e666, 0xcccccccc, 0xa667e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0x7ffffffe, 0xbffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xffffffff, 0xfffe4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55945555, 0xaaaaaaaa, 0x55945555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x0000003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x95545555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5531555, 0xaaaaaaaa, 0xd5531555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaa9aaaab, 0x55555555, 0xaa9aaaab },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001803f, 0x0000007e, 0x4001803f },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999d999, 0x33333333, 0x1999d999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe665195a, 0xffffff80, 0xe665195a },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00007ffe, 0x00003fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaaeaaa, 0x55555555, 0x2aaaeaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefc001, 0xffff8001, 0xffefc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaac, 0x00000002, 0x5555aaac },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xaaaaaaaa, 0xd5541555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x0000007f, 0x7fc18040 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc00000, 0x7fffffff, 0xbfc00000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffc0c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0001, 0xffff8003, 0x7fff0001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6eee3bbb, 0xaaaaaaaa, 0x6eee3bbb },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x95545555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xa666e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xffffff81, 0xfffeffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefffff, 0xfffffffe, 0xffefffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6656666, 0xcccccccc, 0xa6656666 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0010, 0x00000020, 0x3fff0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffe, 0x7fc0bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aae9, 0x0000007d, 0x5555aae9 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xfffffffe, 0xc000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbbbbeeef, 0xaaaaaaaa, 0xbbbbeeef },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e6a6, 0x0000007f, 0x1999e6a6 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0000, 0x00000001, 0x3ffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0xffff8000, 0x7fff0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xffffffff, 0xd5542aaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc1, 0xffffff83, 0x80007fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80000000, 0xffff8000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8000, 0x803e4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fff, 0xffffffff, 0x800f7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c000, 0xffff8000, 0xc000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3ff0, 0xffffffe0, 0xfffe3ff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc1ffff, 0x7ffffffe, 0xbfc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fff, 0xfffffffe, 0xffff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x00000000, 0x003f0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc1ffff, 0x7ffffffd, 0xbfc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x80000001, 0x40000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00003ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xd515d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8000, 0x00000000, 0x7fff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc1, 0xffffff82, 0xffbfffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9555d555, 0xaaaaaaaa, 0x9555d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc000, 0xffff8000, 0xffbfc000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a9b, 0xffffffe0, 0xd5542a9b },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992665, 0x00007ffd, 0x19992665 },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992666, 0x00007fff, 0x19992666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffd, 0xffc0ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7ffe, 0x7ffffffd, 0x403e7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffff, 0xfffffffe, 0xffc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x00007fff, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8010, 0x00000020, 0x7ffe8010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff003e, 0x0000007d, 0x3fff003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8002, 0x803e4001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0x40008000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x0000007f, 0x7fc18040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x00007ffe, 0x7fc1bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1c002, 0xffff8003, 0xffc1c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x80000001, 0x7fff0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000bfff, 0x00007ffd, 0x4000bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001bfff, 0x00007ffe, 0x4001bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8001, 0x80000001, 0xbfff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00013fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007ffe, 0x7ffffffd, 0x40007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xfffffffd, 0xc000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff3fff, 0x7ffffffd, 0xbfff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xe665195b, 0xffffff82, 0xe665195b },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec000, 0x80000000, 0xbffec000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xffffffff, 0xe6651999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffffffc1, 0xffffff81, 0xffffffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0010, 0x00000020, 0x3fff0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000002, 0x40008001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001fff0, 0xffffffe0, 0xc001fff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5517, 0xffffff83, 0xaaaa5517 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4444eeef, 0x33333333, 0x4444eeef },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffffc1, 0xffffff82, 0xbfffffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aabaaab, 0x55555555, 0x6aabaaab },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013ffe, 0x00007ffd, 0x00013ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0x7fc0bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc0, 0xffffff80, 0xbfff7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00010000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103fff, 0x00007ffe, 0x00103fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0000, 0xffffffff, 0xfffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08001, 0x00000002, 0x7fc08001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7fffffff, 0x403e7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x00007ffd, 0x3fff3ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80018001, 0x80000001, 0x80018001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc1, 0xffffff82, 0x800f7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad565, 0x00000020, 0x2aaad565 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000ffff, 0x00007fff, 0x0000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5516, 0xffffff81, 0xaaaa5516 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fff, 0x7ffffffe, 0x7fff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x95535555, 0xaaaaaaaa, 0x95535555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999a, 0x00000001, 0x6666999a },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651998, 0xfffffffd, 0xe6651998 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd554eaac, 0xffff8002, 0xd554eaac },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec010, 0x00000020, 0x7ffec010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad595, 0x0000007f, 0x2aaad595 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x0000007f, 0x7fffc040 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffc2, 0xffffff83, 0xc001ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe664e666, 0xcccccccc, 0xe664e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xffffffff, 0xbfff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbbbb1111, 0xcccccccc, 0xbbbb1111 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc2, 0xffffff83, 0xffff3fc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000bfff, 0x00007ffe, 0x4000bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffffff, 0x00007ffe, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007f, 0x0000c03f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00007ffd, 0x00103ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c000, 0x00000001, 0x0000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefc002, 0xffff8003, 0xffefc002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0002, 0xffff8003, 0xffff0002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc1, 0xffffff82, 0x80003fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40003fff, 0x7ffffffe, 0x40003fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfbfffff, 0x7ffffffd, 0xbfbfffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xffff8001, 0xfffec001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe0000, 0x7fffffff, 0xbffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5999e667, 0x80000001, 0x5999e667 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xffffffff, 0xbffe7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff0803f, 0x0000007e, 0x7ff0803f },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc0, 0xffffff80, 0xfffeffc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651998, 0x7ffffffd, 0xa6651998 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0fff0, 0xffffffe0, 0xffc0fff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xd515d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1803f, 0x0000007e, 0x7fc1803f },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08040, 0x0000007f, 0x7fc08040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x40010000, 0x80000000, 0x40010000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0000, 0x00000000, 0x003e0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc0, 0xffffff80, 0xfffe3fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x33333333, 0x995a999a },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xaaaaaaaa, 0xd516d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08040, 0x0000007f, 0x7ff08040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff7ffe, 0x7ffffffd, 0x3fff7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x19d81999, 0x33333333, 0x19d81999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5554, 0xfffffffe, 0xaaaa5554 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001803f, 0x0000007d, 0x4001803f },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666999a, 0x80000000, 0xa666999a },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff81, 0xfffe3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x7ffffffe, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc0, 0xffffff80, 0xffff3fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x00000001, 0x7fffc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xffffff82, 0xc000ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8001, 0x803e4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec000, 0x00007fff, 0x7ffec000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xffff8003, 0xfffe0002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc001, 0x80000001, 0xbfffc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe0000, 0x7fffffff, 0xbffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffff8000, 0xffc0c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff82, 0xfffe3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xa666e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc10000, 0x7fffffff, 0xbfc10000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001c000, 0x00007fff, 0x4001c000 },
};
const Inputs kOutputs_Uhasx_RdIsRm_al_r4_r1_r4[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007f, 0x0010003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0010, 0x00000020, 0x3ffe0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00003ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aa9, 0x7ffffffd, 0x95542aa9 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xffff8000, 0xbffe4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7ffe, 0xfffffffd, 0x803f7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xbfff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc1, 0xffffff82, 0xffff3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xfffffffe, 0x80007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aba2aaa, 0x55555555, 0x2aba2aaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996665, 0xfffffffe, 0x99996665 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe8000, 0x80000000, 0xbffe8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c002, 0xffff8003, 0xffc0c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7ffffffe, 0x403e7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff80, 0x803e7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08010, 0x00000020, 0x7fc08010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992667, 0xffff8002, 0x99992667 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff80, 0x803e7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c010, 0x00000020, 0x0000c010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff81, 0x80007fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc1, 0xffffff82, 0x803e7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0xffffff82, 0x7fff7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc2, 0xffffff83, 0xffc0ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aabeaaa, 0x55555555, 0x2aabeaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0x40008001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff7fff, 0x7ffffffe, 0x3fff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992667, 0xffff8001, 0x99992667 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c001, 0x00000002, 0x0000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55551555, 0xaaaaaaaa, 0x55551555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8010, 0x00000020, 0x7fff8010 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xfffffffe, 0xbfff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7ffe, 0xfffffffd, 0xbfff7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffeffff, 0x00007ffe, 0x7ffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xa667e666, 0xcccccccc, 0xa667e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0x7ffffffe, 0xbffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xffffffff, 0xfffe4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55945555, 0xaaaaaaaa, 0x55945555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x0000003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x95545555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5531555, 0xaaaaaaaa, 0xd5531555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaa9aaaab, 0x55555555, 0xaa9aaaab },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001803f, 0x0000007e, 0x4001803f },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999d999, 0x33333333, 0x1999d999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe665195a, 0xffffff80, 0xe665195a },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00007ffe, 0x00003fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaaeaaa, 0x55555555, 0x2aaaeaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefc001, 0xffff8001, 0xffefc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaac, 0x00000002, 0x5555aaac },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xaaaaaaaa, 0xd5541555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x0000007f, 0x7fc18040 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc00000, 0x7fffffff, 0xbfc00000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffc0c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0001, 0xffff8003, 0x7fff0001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6eee3bbb, 0xaaaaaaaa, 0x6eee3bbb },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x95545555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xa666e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xffffff81, 0xfffeffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefffff, 0xfffffffe, 0xffefffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6656666, 0xcccccccc, 0xa6656666 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0010, 0x00000020, 0x3fff0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffe, 0x7fc0bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aae9, 0x0000007d, 0x5555aae9 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xfffffffe, 0xc000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbbbbeeef, 0xaaaaaaaa, 0xbbbbeeef },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e6a6, 0x0000007f, 0x1999e6a6 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0000, 0x00000001, 0x3ffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0xffff8000, 0x7fff0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xffffffff, 0xd5542aaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc1, 0xffffff83, 0x80007fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80000000, 0xffff8000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8000, 0x803e4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fff, 0xffffffff, 0x800f7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c000, 0xffff8000, 0xc000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3ff0, 0xffffffe0, 0xfffe3ff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc1ffff, 0x7ffffffe, 0xbfc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fff, 0xfffffffe, 0xffff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x00000000, 0x003f0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc1ffff, 0x7ffffffd, 0xbfc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x80000001, 0x40000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00003ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xd515d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8000, 0x00000000, 0x7fff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc1, 0xffffff82, 0xffbfffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9555d555, 0xaaaaaaaa, 0x9555d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc000, 0xffff8000, 0xffbfc000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a9b, 0xffffffe0, 0xd5542a9b },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992665, 0x00007ffd, 0x19992665 },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992666, 0x00007fff, 0x19992666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffd, 0xffc0ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7ffe, 0x7ffffffd, 0x403e7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffff, 0xfffffffe, 0xffc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x00007fff, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8010, 0x00000020, 0x7ffe8010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff003e, 0x0000007d, 0x3fff003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8002, 0x803e4001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0x40008000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x0000007f, 0x7fc18040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x00007ffe, 0x7fc1bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1c002, 0xffff8003, 0xffc1c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x80000001, 0x7fff0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000bfff, 0x00007ffd, 0x4000bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001bfff, 0x00007ffe, 0x4001bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8001, 0x80000001, 0xbfff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00013fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007ffe, 0x7ffffffd, 0x40007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xfffffffd, 0xc000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff3fff, 0x7ffffffd, 0xbfff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xe665195b, 0xffffff82, 0xe665195b },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec000, 0x80000000, 0xbffec000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xffffffff, 0xe6651999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffffffc1, 0xffffff81, 0xffffffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0010, 0x00000020, 0x3fff0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000002, 0x40008001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001fff0, 0xffffffe0, 0xc001fff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5517, 0xffffff83, 0xaaaa5517 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4444eeef, 0x33333333, 0x4444eeef },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffffc1, 0xffffff82, 0xbfffffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aabaaab, 0x55555555, 0x6aabaaab },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013ffe, 0x00007ffd, 0x00013ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0x7fc0bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc0, 0xffffff80, 0xbfff7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00010000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103fff, 0x00007ffe, 0x00103fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0000, 0xffffffff, 0xfffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08001, 0x00000002, 0x7fc08001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7fffffff, 0x403e7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x00007ffd, 0x3fff3ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80018001, 0x80000001, 0x80018001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc1, 0xffffff82, 0x800f7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad565, 0x00000020, 0x2aaad565 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000ffff, 0x00007fff, 0x0000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5516, 0xffffff81, 0xaaaa5516 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fff, 0x7ffffffe, 0x7fff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x95535555, 0xaaaaaaaa, 0x95535555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999a, 0x00000001, 0x6666999a },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651998, 0xfffffffd, 0xe6651998 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd554eaac, 0xffff8002, 0xd554eaac },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec010, 0x00000020, 0x7ffec010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad595, 0x0000007f, 0x2aaad595 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x0000007f, 0x7fffc040 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffc2, 0xffffff83, 0xc001ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe664e666, 0xcccccccc, 0xe664e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xffffffff, 0xbfff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbbbb1111, 0xcccccccc, 0xbbbb1111 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc2, 0xffffff83, 0xffff3fc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000bfff, 0x00007ffe, 0x4000bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffffff, 0x00007ffe, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007f, 0x0000c03f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00007ffd, 0x00103ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c000, 0x00000001, 0x0000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefc002, 0xffff8003, 0xffefc002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0002, 0xffff8003, 0xffff0002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc1, 0xffffff82, 0x80003fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40003fff, 0x7ffffffe, 0x40003fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfbfffff, 0x7ffffffd, 0xbfbfffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xffff8001, 0xfffec001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe0000, 0x7fffffff, 0xbffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5999e667, 0x80000001, 0x5999e667 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xffffffff, 0xbffe7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff0803f, 0x0000007e, 0x7ff0803f },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc0, 0xffffff80, 0xfffeffc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651998, 0x7ffffffd, 0xa6651998 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0fff0, 0xffffffe0, 0xffc0fff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xd515d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1803f, 0x0000007e, 0x7fc1803f },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08040, 0x0000007f, 0x7fc08040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x40010000, 0x80000000, 0x40010000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0000, 0x00000000, 0x003e0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc0, 0xffffff80, 0xfffe3fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x33333333, 0x995a999a },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xaaaaaaaa, 0xd516d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08040, 0x0000007f, 0x7ff08040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff7ffe, 0x7ffffffd, 0x3fff7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x19d81999, 0x33333333, 0x19d81999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5554, 0xfffffffe, 0xaaaa5554 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001803f, 0x0000007d, 0x4001803f },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666999a, 0x80000000, 0xa666999a },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff81, 0xfffe3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x7ffffffe, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc0, 0xffffff80, 0xffff3fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x00000001, 0x7fffc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xffffff82, 0xc000ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8001, 0x803e4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec000, 0x00007fff, 0x7ffec000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xffff8003, 0xfffe0002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc001, 0x80000001, 0xbfffc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe0000, 0x7fffffff, 0xbffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffff8000, 0xffc0c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff82, 0xfffe3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xa666e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc10000, 0x7fffffff, 0xbfc10000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001c000, 0x00007fff, 0x4001c000 },
};
const Inputs kOutputs_Uhasx_RdIsRm_al_r8_r11_r8[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007f, 0x0010003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0010, 0x00000020, 0x3ffe0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00003ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aa9, 0x7ffffffd, 0x95542aa9 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xffff8000, 0xbffe4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7ffe, 0xfffffffd, 0x803f7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xbfff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc1, 0xffffff82, 0xffff3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xfffffffe, 0x80007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aba2aaa, 0x55555555, 0x2aba2aaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996665, 0xfffffffe, 0x99996665 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe8000, 0x80000000, 0xbffe8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c002, 0xffff8003, 0xffc0c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7ffffffe, 0x403e7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff80, 0x803e7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08010, 0x00000020, 0x7fc08010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992667, 0xffff8002, 0x99992667 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff80, 0x803e7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c010, 0x00000020, 0x0000c010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff81, 0x80007fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc1, 0xffffff82, 0x803e7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0xffffff82, 0x7fff7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc2, 0xffffff83, 0xffc0ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aabeaaa, 0x55555555, 0x2aabeaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0x40008001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff7fff, 0x7ffffffe, 0x3fff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992667, 0xffff8001, 0x99992667 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c001, 0x00000002, 0x0000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55551555, 0xaaaaaaaa, 0x55551555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8010, 0x00000020, 0x7fff8010 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xfffffffe, 0xbfff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7ffe, 0xfffffffd, 0xbfff7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffeffff, 0x00007ffe, 0x7ffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xa667e666, 0xcccccccc, 0xa667e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0x7ffffffe, 0xbffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xffffffff, 0xfffe4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55945555, 0xaaaaaaaa, 0x55945555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x0000003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x95545555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5531555, 0xaaaaaaaa, 0xd5531555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaa9aaaab, 0x55555555, 0xaa9aaaab },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001803f, 0x0000007e, 0x4001803f },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999d999, 0x33333333, 0x1999d999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe665195a, 0xffffff80, 0xe665195a },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00007ffe, 0x00003fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaaeaaa, 0x55555555, 0x2aaaeaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefc001, 0xffff8001, 0xffefc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaac, 0x00000002, 0x5555aaac },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xaaaaaaaa, 0xd5541555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x0000007f, 0x7fc18040 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc00000, 0x7fffffff, 0xbfc00000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffc0c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0001, 0xffff8003, 0x7fff0001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6eee3bbb, 0xaaaaaaaa, 0x6eee3bbb },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x95545555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xa666e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xffffff81, 0xfffeffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefffff, 0xfffffffe, 0xffefffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6656666, 0xcccccccc, 0xa6656666 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0010, 0x00000020, 0x3fff0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffe, 0x7fc0bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aae9, 0x0000007d, 0x5555aae9 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xfffffffe, 0xc000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbbbbeeef, 0xaaaaaaaa, 0xbbbbeeef },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e6a6, 0x0000007f, 0x1999e6a6 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0000, 0x00000001, 0x3ffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0xffff8000, 0x7fff0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xffffffff, 0xd5542aaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc1, 0xffffff83, 0x80007fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80000000, 0xffff8000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8000, 0x803e4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fff, 0xffffffff, 0x800f7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c000, 0xffff8000, 0xc000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3ff0, 0xffffffe0, 0xfffe3ff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc1ffff, 0x7ffffffe, 0xbfc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fff, 0xfffffffe, 0xffff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x00000000, 0x003f0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc1ffff, 0x7ffffffd, 0xbfc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x80000001, 0x40000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00003ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xd515d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8000, 0x00000000, 0x7fff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc1, 0xffffff82, 0xffbfffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9555d555, 0xaaaaaaaa, 0x9555d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc000, 0xffff8000, 0xffbfc000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a9b, 0xffffffe0, 0xd5542a9b },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992665, 0x00007ffd, 0x19992665 },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992666, 0x00007fff, 0x19992666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffd, 0xffc0ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7ffe, 0x7ffffffd, 0x403e7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffff, 0xfffffffe, 0xffc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x00007fff, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8010, 0x00000020, 0x7ffe8010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff003e, 0x0000007d, 0x3fff003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8002, 0x803e4001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0x40008000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x0000007f, 0x7fc18040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x00007ffe, 0x7fc1bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1c002, 0xffff8003, 0xffc1c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x80000001, 0x7fff0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000bfff, 0x00007ffd, 0x4000bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001bfff, 0x00007ffe, 0x4001bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8001, 0x80000001, 0xbfff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00013fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007ffe, 0x7ffffffd, 0x40007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xfffffffd, 0xc000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff3fff, 0x7ffffffd, 0xbfff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xe665195b, 0xffffff82, 0xe665195b },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec000, 0x80000000, 0xbffec000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xffffffff, 0xe6651999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffffffc1, 0xffffff81, 0xffffffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0010, 0x00000020, 0x3fff0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000002, 0x40008001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001fff0, 0xffffffe0, 0xc001fff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5517, 0xffffff83, 0xaaaa5517 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4444eeef, 0x33333333, 0x4444eeef },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffffc1, 0xffffff82, 0xbfffffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aabaaab, 0x55555555, 0x6aabaaab },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013ffe, 0x00007ffd, 0x00013ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0x7fc0bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc0, 0xffffff80, 0xbfff7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00010000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103fff, 0x00007ffe, 0x00103fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0000, 0xffffffff, 0xfffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08001, 0x00000002, 0x7fc08001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7fffffff, 0x403e7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x00007ffd, 0x3fff3ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80018001, 0x80000001, 0x80018001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc1, 0xffffff82, 0x800f7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad565, 0x00000020, 0x2aaad565 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000ffff, 0x00007fff, 0x0000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5516, 0xffffff81, 0xaaaa5516 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fff, 0x7ffffffe, 0x7fff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x95535555, 0xaaaaaaaa, 0x95535555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999a, 0x00000001, 0x6666999a },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651998, 0xfffffffd, 0xe6651998 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd554eaac, 0xffff8002, 0xd554eaac },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec010, 0x00000020, 0x7ffec010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad595, 0x0000007f, 0x2aaad595 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x0000007f, 0x7fffc040 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffc2, 0xffffff83, 0xc001ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe664e666, 0xcccccccc, 0xe664e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xffffffff, 0xbfff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbbbb1111, 0xcccccccc, 0xbbbb1111 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc2, 0xffffff83, 0xffff3fc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000bfff, 0x00007ffe, 0x4000bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffffff, 0x00007ffe, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007f, 0x0000c03f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00007ffd, 0x00103ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c000, 0x00000001, 0x0000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefc002, 0xffff8003, 0xffefc002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0002, 0xffff8003, 0xffff0002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc1, 0xffffff82, 0x80003fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40003fff, 0x7ffffffe, 0x40003fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfbfffff, 0x7ffffffd, 0xbfbfffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xffff8001, 0xfffec001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe0000, 0x7fffffff, 0xbffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5999e667, 0x80000001, 0x5999e667 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xffffffff, 0xbffe7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff0803f, 0x0000007e, 0x7ff0803f },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc0, 0xffffff80, 0xfffeffc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651998, 0x7ffffffd, 0xa6651998 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0fff0, 0xffffffe0, 0xffc0fff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xd515d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1803f, 0x0000007e, 0x7fc1803f },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08040, 0x0000007f, 0x7fc08040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x40010000, 0x80000000, 0x40010000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0000, 0x00000000, 0x003e0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc0, 0xffffff80, 0xfffe3fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x33333333, 0x995a999a },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xaaaaaaaa, 0xd516d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08040, 0x0000007f, 0x7ff08040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff7ffe, 0x7ffffffd, 0x3fff7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x19d81999, 0x33333333, 0x19d81999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5554, 0xfffffffe, 0xaaaa5554 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001803f, 0x0000007d, 0x4001803f },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666999a, 0x80000000, 0xa666999a },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff81, 0xfffe3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x7ffffffe, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc0, 0xffffff80, 0xffff3fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x00000001, 0x7fffc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xffffff82, 0xc000ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8001, 0x803e4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec000, 0x00007fff, 0x7ffec000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xffff8003, 0xfffe0002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc001, 0x80000001, 0xbfffc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe0000, 0x7fffffff, 0xbffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffff8000, 0xffc0c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff82, 0xfffe3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xa666e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc10000, 0x7fffffff, 0xbfc10000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001c000, 0x00007fff, 0x4001c000 },
};
const Inputs kOutputs_Uhasx_RdIsRm_al_r1_r10_r1[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007f, 0x0010003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0010, 0x00000020, 0x3ffe0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00003ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aa9, 0x7ffffffd, 0x95542aa9 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xffff8000, 0xbffe4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7ffe, 0xfffffffd, 0x803f7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xbfff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc1, 0xffffff82, 0xffff3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xfffffffe, 0x80007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aba2aaa, 0x55555555, 0x2aba2aaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996665, 0xfffffffe, 0x99996665 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe8000, 0x80000000, 0xbffe8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c002, 0xffff8003, 0xffc0c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7ffffffe, 0x403e7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff80, 0x803e7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08010, 0x00000020, 0x7fc08010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992667, 0xffff8002, 0x99992667 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff80, 0x803e7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c010, 0x00000020, 0x0000c010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff81, 0x80007fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc1, 0xffffff82, 0x803e7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0xffffff82, 0x7fff7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc2, 0xffffff83, 0xffc0ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aabeaaa, 0x55555555, 0x2aabeaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0x40008001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff7fff, 0x7ffffffe, 0x3fff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992667, 0xffff8001, 0x99992667 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c001, 0x00000002, 0x0000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55551555, 0xaaaaaaaa, 0x55551555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8010, 0x00000020, 0x7fff8010 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xfffffffe, 0xbfff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7ffe, 0xfffffffd, 0xbfff7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffeffff, 0x00007ffe, 0x7ffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xa667e666, 0xcccccccc, 0xa667e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0x7ffffffe, 0xbffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xffffffff, 0xfffe4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55945555, 0xaaaaaaaa, 0x55945555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x0000003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x95545555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5531555, 0xaaaaaaaa, 0xd5531555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaa9aaaab, 0x55555555, 0xaa9aaaab },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001803f, 0x0000007e, 0x4001803f },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999d999, 0x33333333, 0x1999d999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe665195a, 0xffffff80, 0xe665195a },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00007ffe, 0x00003fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaaeaaa, 0x55555555, 0x2aaaeaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefc001, 0xffff8001, 0xffefc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaac, 0x00000002, 0x5555aaac },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xaaaaaaaa, 0xd5541555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x0000007f, 0x7fc18040 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc00000, 0x7fffffff, 0xbfc00000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffc0c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0001, 0xffff8003, 0x7fff0001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6eee3bbb, 0xaaaaaaaa, 0x6eee3bbb },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x95545555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xa666e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xffffff81, 0xfffeffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefffff, 0xfffffffe, 0xffefffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6656666, 0xcccccccc, 0xa6656666 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0010, 0x00000020, 0x3fff0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffe, 0x7fc0bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aae9, 0x0000007d, 0x5555aae9 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xfffffffe, 0xc000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbbbbeeef, 0xaaaaaaaa, 0xbbbbeeef },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e6a6, 0x0000007f, 0x1999e6a6 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0000, 0x00000001, 0x3ffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0xffff8000, 0x7fff0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xffffffff, 0xd5542aaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc1, 0xffffff83, 0x80007fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80000000, 0xffff8000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8000, 0x803e4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fff, 0xffffffff, 0x800f7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c000, 0xffff8000, 0xc000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3ff0, 0xffffffe0, 0xfffe3ff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc1ffff, 0x7ffffffe, 0xbfc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fff, 0xfffffffe, 0xffff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x00000000, 0x003f0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc1ffff, 0x7ffffffd, 0xbfc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x80000001, 0x40000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00003ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xd515d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8000, 0x00000000, 0x7fff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc1, 0xffffff82, 0xffbfffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9555d555, 0xaaaaaaaa, 0x9555d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc000, 0xffff8000, 0xffbfc000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a9b, 0xffffffe0, 0xd5542a9b },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992665, 0x00007ffd, 0x19992665 },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992666, 0x00007fff, 0x19992666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffd, 0xffc0ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7ffe, 0x7ffffffd, 0x403e7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffff, 0xfffffffe, 0xffc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x00007fff, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8010, 0x00000020, 0x7ffe8010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff003e, 0x0000007d, 0x3fff003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8002, 0x803e4001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0x40008000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x0000007f, 0x7fc18040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x00007ffe, 0x7fc1bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1c002, 0xffff8003, 0xffc1c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x80000001, 0x7fff0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000bfff, 0x00007ffd, 0x4000bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001bfff, 0x00007ffe, 0x4001bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8001, 0x80000001, 0xbfff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00013fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007ffe, 0x7ffffffd, 0x40007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xfffffffd, 0xc000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff3fff, 0x7ffffffd, 0xbfff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xe665195b, 0xffffff82, 0xe665195b },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec000, 0x80000000, 0xbffec000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xffffffff, 0xe6651999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffffffc1, 0xffffff81, 0xffffffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0010, 0x00000020, 0x3fff0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000002, 0x40008001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001fff0, 0xffffffe0, 0xc001fff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5517, 0xffffff83, 0xaaaa5517 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4444eeef, 0x33333333, 0x4444eeef },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffffc1, 0xffffff82, 0xbfffffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aabaaab, 0x55555555, 0x6aabaaab },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013ffe, 0x00007ffd, 0x00013ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0x7fc0bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc0, 0xffffff80, 0xbfff7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00010000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103fff, 0x00007ffe, 0x00103fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0000, 0xffffffff, 0xfffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08001, 0x00000002, 0x7fc08001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7fffffff, 0x403e7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x00007ffd, 0x3fff3ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80018001, 0x80000001, 0x80018001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc1, 0xffffff82, 0x800f7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad565, 0x00000020, 0x2aaad565 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000ffff, 0x00007fff, 0x0000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5516, 0xffffff81, 0xaaaa5516 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fff, 0x7ffffffe, 0x7fff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x95535555, 0xaaaaaaaa, 0x95535555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999a, 0x00000001, 0x6666999a },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651998, 0xfffffffd, 0xe6651998 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd554eaac, 0xffff8002, 0xd554eaac },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec010, 0x00000020, 0x7ffec010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad595, 0x0000007f, 0x2aaad595 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x0000007f, 0x7fffc040 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffc2, 0xffffff83, 0xc001ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe664e666, 0xcccccccc, 0xe664e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xffffffff, 0xbfff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbbbb1111, 0xcccccccc, 0xbbbb1111 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc2, 0xffffff83, 0xffff3fc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000bfff, 0x00007ffe, 0x4000bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffffff, 0x00007ffe, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007f, 0x0000c03f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00007ffd, 0x00103ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c000, 0x00000001, 0x0000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefc002, 0xffff8003, 0xffefc002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0002, 0xffff8003, 0xffff0002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc1, 0xffffff82, 0x80003fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40003fff, 0x7ffffffe, 0x40003fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfbfffff, 0x7ffffffd, 0xbfbfffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xffff8001, 0xfffec001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe0000, 0x7fffffff, 0xbffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5999e667, 0x80000001, 0x5999e667 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xffffffff, 0xbffe7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff0803f, 0x0000007e, 0x7ff0803f },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc0, 0xffffff80, 0xfffeffc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651998, 0x7ffffffd, 0xa6651998 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0fff0, 0xffffffe0, 0xffc0fff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xd515d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1803f, 0x0000007e, 0x7fc1803f },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08040, 0x0000007f, 0x7fc08040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x40010000, 0x80000000, 0x40010000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0000, 0x00000000, 0x003e0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc0, 0xffffff80, 0xfffe3fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x33333333, 0x995a999a },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xaaaaaaaa, 0xd516d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08040, 0x0000007f, 0x7ff08040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff7ffe, 0x7ffffffd, 0x3fff7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x19d81999, 0x33333333, 0x19d81999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5554, 0xfffffffe, 0xaaaa5554 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001803f, 0x0000007d, 0x4001803f },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666999a, 0x80000000, 0xa666999a },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff81, 0xfffe3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x7ffffffe, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc0, 0xffffff80, 0xffff3fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x00000001, 0x7fffc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xffffff82, 0xc000ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8001, 0x803e4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec000, 0x00007fff, 0x7ffec000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xffff8003, 0xfffe0002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc001, 0x80000001, 0xbfffc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe0000, 0x7fffffff, 0xbffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffff8000, 0xffc0c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff82, 0xfffe3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xa666e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc10000, 0x7fffffff, 0xbfc10000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001c000, 0x00007fff, 0x4001c000 },
};
const Inputs kOutputs_Uhasx_RdIsRm_al_r2_r0_r2[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007f, 0x0010003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0010, 0x00000020, 0x3ffe0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00003ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aa9, 0x7ffffffd, 0x95542aa9 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xffff8000, 0xbffe4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7ffe, 0xfffffffd, 0x803f7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xbfff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc1, 0xffffff82, 0xffff3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xfffffffe, 0x80007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aba2aaa, 0x55555555, 0x2aba2aaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996665, 0xfffffffe, 0x99996665 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe8000, 0x80000000, 0xbffe8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c002, 0xffff8003, 0xffc0c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7ffffffe, 0x403e7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff80, 0x803e7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08010, 0x00000020, 0x7fc08010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992667, 0xffff8002, 0x99992667 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff80, 0x803e7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c010, 0x00000020, 0x0000c010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff81, 0x80007fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc1, 0xffffff82, 0x803e7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0xffffff82, 0x7fff7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc2, 0xffffff83, 0xffc0ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aabeaaa, 0x55555555, 0x2aabeaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0x40008001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff7fff, 0x7ffffffe, 0x3fff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992667, 0xffff8001, 0x99992667 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c001, 0x00000002, 0x0000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55551555, 0xaaaaaaaa, 0x55551555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8010, 0x00000020, 0x7fff8010 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xfffffffe, 0xbfff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7ffe, 0xfffffffd, 0xbfff7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffeffff, 0x00007ffe, 0x7ffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xa667e666, 0xcccccccc, 0xa667e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0x7ffffffe, 0xbffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xffffffff, 0xfffe4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55945555, 0xaaaaaaaa, 0x55945555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x0000003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x95545555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5531555, 0xaaaaaaaa, 0xd5531555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaa9aaaab, 0x55555555, 0xaa9aaaab },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001803f, 0x0000007e, 0x4001803f },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999d999, 0x33333333, 0x1999d999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe665195a, 0xffffff80, 0xe665195a },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00007ffe, 0x00003fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaaeaaa, 0x55555555, 0x2aaaeaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefc001, 0xffff8001, 0xffefc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaac, 0x00000002, 0x5555aaac },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xaaaaaaaa, 0xd5541555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x0000007f, 0x7fc18040 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc00000, 0x7fffffff, 0xbfc00000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffc0c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0001, 0xffff8003, 0x7fff0001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6eee3bbb, 0xaaaaaaaa, 0x6eee3bbb },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x95545555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xa666e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xffffff81, 0xfffeffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefffff, 0xfffffffe, 0xffefffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6656666, 0xcccccccc, 0xa6656666 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0010, 0x00000020, 0x3fff0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffe, 0x7fc0bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aae9, 0x0000007d, 0x5555aae9 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xfffffffe, 0xc000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbbbbeeef, 0xaaaaaaaa, 0xbbbbeeef },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e6a6, 0x0000007f, 0x1999e6a6 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0000, 0x00000001, 0x3ffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0xffff8000, 0x7fff0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xffffffff, 0xd5542aaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc1, 0xffffff83, 0x80007fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80000000, 0xffff8000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8000, 0x803e4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fff, 0xffffffff, 0x800f7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c000, 0xffff8000, 0xc000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3ff0, 0xffffffe0, 0xfffe3ff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc1ffff, 0x7ffffffe, 0xbfc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fff, 0xfffffffe, 0xffff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x00000000, 0x003f0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc1ffff, 0x7ffffffd, 0xbfc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x80000001, 0x40000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00003ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xd515d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8000, 0x00000000, 0x7fff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc1, 0xffffff82, 0xffbfffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9555d555, 0xaaaaaaaa, 0x9555d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc000, 0xffff8000, 0xffbfc000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a9b, 0xffffffe0, 0xd5542a9b },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992665, 0x00007ffd, 0x19992665 },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992666, 0x00007fff, 0x19992666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffd, 0xffc0ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7ffe, 0x7ffffffd, 0x403e7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffff, 0xfffffffe, 0xffc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x00007fff, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8010, 0x00000020, 0x7ffe8010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff003e, 0x0000007d, 0x3fff003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8002, 0x803e4001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0x40008000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x0000007f, 0x7fc18040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x00007ffe, 0x7fc1bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1c002, 0xffff8003, 0xffc1c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x80000001, 0x7fff0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000bfff, 0x00007ffd, 0x4000bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001bfff, 0x00007ffe, 0x4001bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8001, 0x80000001, 0xbfff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00013fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007ffe, 0x7ffffffd, 0x40007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xfffffffd, 0xc000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff3fff, 0x7ffffffd, 0xbfff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xe665195b, 0xffffff82, 0xe665195b },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec000, 0x80000000, 0xbffec000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xffffffff, 0xe6651999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffffffc1, 0xffffff81, 0xffffffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0010, 0x00000020, 0x3fff0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000002, 0x40008001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001fff0, 0xffffffe0, 0xc001fff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5517, 0xffffff83, 0xaaaa5517 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4444eeef, 0x33333333, 0x4444eeef },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffffc1, 0xffffff82, 0xbfffffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aabaaab, 0x55555555, 0x6aabaaab },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013ffe, 0x00007ffd, 0x00013ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0x7fc0bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc0, 0xffffff80, 0xbfff7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00010000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103fff, 0x00007ffe, 0x00103fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0000, 0xffffffff, 0xfffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08001, 0x00000002, 0x7fc08001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7fffffff, 0x403e7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x00007ffd, 0x3fff3ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80018001, 0x80000001, 0x80018001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc1, 0xffffff82, 0x800f7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad565, 0x00000020, 0x2aaad565 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000ffff, 0x00007fff, 0x0000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5516, 0xffffff81, 0xaaaa5516 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fff, 0x7ffffffe, 0x7fff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x95535555, 0xaaaaaaaa, 0x95535555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999a, 0x00000001, 0x6666999a },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651998, 0xfffffffd, 0xe6651998 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd554eaac, 0xffff8002, 0xd554eaac },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec010, 0x00000020, 0x7ffec010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad595, 0x0000007f, 0x2aaad595 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x0000007f, 0x7fffc040 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffc2, 0xffffff83, 0xc001ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe664e666, 0xcccccccc, 0xe664e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xffffffff, 0xbfff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbbbb1111, 0xcccccccc, 0xbbbb1111 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc2, 0xffffff83, 0xffff3fc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000bfff, 0x00007ffe, 0x4000bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffffff, 0x00007ffe, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007f, 0x0000c03f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00007ffd, 0x00103ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c000, 0x00000001, 0x0000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefc002, 0xffff8003, 0xffefc002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0002, 0xffff8003, 0xffff0002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc1, 0xffffff82, 0x80003fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40003fff, 0x7ffffffe, 0x40003fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfbfffff, 0x7ffffffd, 0xbfbfffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xffff8001, 0xfffec001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe0000, 0x7fffffff, 0xbffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5999e667, 0x80000001, 0x5999e667 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xffffffff, 0xbffe7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff0803f, 0x0000007e, 0x7ff0803f },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc0, 0xffffff80, 0xfffeffc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651998, 0x7ffffffd, 0xa6651998 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0fff0, 0xffffffe0, 0xffc0fff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xd515d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1803f, 0x0000007e, 0x7fc1803f },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08040, 0x0000007f, 0x7fc08040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x40010000, 0x80000000, 0x40010000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0000, 0x00000000, 0x003e0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc0, 0xffffff80, 0xfffe3fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x33333333, 0x995a999a },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xaaaaaaaa, 0xd516d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08040, 0x0000007f, 0x7ff08040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff7ffe, 0x7ffffffd, 0x3fff7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x19d81999, 0x33333333, 0x19d81999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5554, 0xfffffffe, 0xaaaa5554 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001803f, 0x0000007d, 0x4001803f },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666999a, 0x80000000, 0xa666999a },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff81, 0xfffe3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x7ffffffe, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc0, 0xffffff80, 0xffff3fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x00000001, 0x7fffc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xffffff82, 0xc000ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8001, 0x803e4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec000, 0x00007fff, 0x7ffec000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xffff8003, 0xfffe0002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc001, 0x80000001, 0xbfffc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe0000, 0x7fffffff, 0xbffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffff8000, 0xffc0c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff82, 0xfffe3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xa666e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc10000, 0x7fffffff, 0xbfc10000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001c000, 0x00007fff, 0x4001c000 },
};
const Inputs kOutputs_Uhasx_RdIsRm_al_r6_r7_r6[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007f, 0x0010003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0010, 0x00000020, 0x3ffe0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00003ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aa9, 0x7ffffffd, 0x95542aa9 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xffff8000, 0xbffe4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7ffe, 0xfffffffd, 0x803f7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xbfff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc1, 0xffffff82, 0xffff3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xfffffffe, 0x80007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aba2aaa, 0x55555555, 0x2aba2aaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996665, 0xfffffffe, 0x99996665 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe8000, 0x80000000, 0xbffe8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c002, 0xffff8003, 0xffc0c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7ffffffe, 0x403e7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff80, 0x803e7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08010, 0x00000020, 0x7fc08010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992667, 0xffff8002, 0x99992667 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff80, 0x803e7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c010, 0x00000020, 0x0000c010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff81, 0x80007fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc1, 0xffffff82, 0x803e7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0xffffff82, 0x7fff7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc2, 0xffffff83, 0xffc0ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aabeaaa, 0x55555555, 0x2aabeaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0x40008001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff7fff, 0x7ffffffe, 0x3fff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992667, 0xffff8001, 0x99992667 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c001, 0x00000002, 0x0000c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55551555, 0xaaaaaaaa, 0x55551555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8010, 0x00000020, 0x7fff8010 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xfffffffe, 0xbfff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7ffe, 0xfffffffd, 0xbfff7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffeffff, 0x00007ffe, 0x7ffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xa667e666, 0xcccccccc, 0xa667e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0x7ffffffe, 0xbffeffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe4000, 0xffffffff, 0xfffe4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55945555, 0xaaaaaaaa, 0x55945555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x0000003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x95545555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5531555, 0xaaaaaaaa, 0xd5531555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaa9aaaab, 0x55555555, 0xaa9aaaab },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001803f, 0x0000007e, 0x4001803f },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999d999, 0x33333333, 0x1999d999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe665195a, 0xffffff80, 0xe665195a },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003fff, 0x00007ffe, 0x00003fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaaeaaa, 0x55555555, 0x2aaaeaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefc001, 0xffff8001, 0xffefc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaac, 0x00000002, 0x5555aaac },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xaaaaaaaa, 0xd5541555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x0000007f, 0x7fc18040 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc00000, 0x7fffffff, 0xbfc00000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffc0c001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0001, 0xffff8003, 0x7fff0001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6eee3bbb, 0xaaaaaaaa, 0x6eee3bbb },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x95545555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xa666e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xffffff81, 0xfffeffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefffff, 0xfffffffe, 0xffefffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6656666, 0xcccccccc, 0xa6656666 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0010, 0x00000020, 0x3fff0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffe, 0x7fc0bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aae9, 0x0000007d, 0x5555aae9 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xfffffffe, 0xc000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbbbbeeef, 0xaaaaaaaa, 0xbbbbeeef },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e6a6, 0x0000007f, 0x1999e6a6 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0000, 0x00000001, 0x3ffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0xffff8000, 0x7fff0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xffffffff, 0xd5542aaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc1, 0xffffff83, 0x80007fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80000000, 0xffff8000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8000, 0x803e4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fff, 0xffffffff, 0x800f7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c000, 0xffff8000, 0xc000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3ff0, 0xffffffe0, 0xfffe3ff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc1ffff, 0x7ffffffe, 0xbfc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fff, 0xfffffffe, 0xffff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f0000, 0x00000000, 0x003f0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc1ffff, 0x7ffffffd, 0xbfc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x80000001, 0x40000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00003ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xd515d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8000, 0x00000000, 0x7fff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc1, 0xffffff82, 0xffbfffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9555d555, 0xaaaaaaaa, 0x9555d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfc000, 0xffff8000, 0xffbfc000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a9b, 0xffffffe0, 0xd5542a9b },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992665, 0x00007ffd, 0x19992665 },
{ 0x00000000, 0x00000000, 0x00000000, 0x19992666, 0x00007fff, 0x19992666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffd, 0xffc0ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7ffe, 0x7ffffffd, 0x403e7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffff, 0xfffffffe, 0xffc1ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x00007fff, 0x4000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8010, 0x00000020, 0x7ffe8010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff003e, 0x0000007d, 0x3fff003e },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8002, 0x803e4001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0x40008000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18040, 0x0000007f, 0x7fc18040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x00007ffe, 0x7fc1bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1c002, 0xffff8003, 0xffc1c002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff0000, 0x80000001, 0x7fff0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000bfff, 0x00007ffd, 0x4000bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001bfff, 0x00007ffe, 0x4001bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8001, 0x80000001, 0xbfff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00013fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007ffe, 0x7ffffffd, 0x40007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffff, 0xfffffffd, 0xc000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff3fff, 0x7ffffffd, 0xbfff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xe665195b, 0xffffff82, 0xe665195b },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffec000, 0x80000000, 0xbffec000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xffffffff, 0xe6651999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffffffc1, 0xffffff81, 0xffffffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0010, 0x00000020, 0x3fff0010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000002, 0x40008001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001fff0, 0xffffffe0, 0xc001fff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5517, 0xffffff83, 0xaaaa5517 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4444eeef, 0x33333333, 0x4444eeef },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffffc1, 0xffffff82, 0xbfffffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aabaaab, 0x55555555, 0x6aabaaab },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013ffe, 0x00007ffd, 0x00013ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0x7fc0bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fc0, 0xffffff80, 0xbfff7fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00010000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103fff, 0x00007ffe, 0x00103fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0000, 0xffffffff, 0xfffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08001, 0x00000002, 0x7fc08001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7fffffff, 0x403e7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x00007ffd, 0x3fff3ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80018001, 0x80000001, 0x80018001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc1, 0xffffff82, 0x800f7fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad565, 0x00000020, 0x2aaad565 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000ffff, 0x00007fff, 0x0000ffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5516, 0xffffff81, 0xaaaa5516 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fff, 0x7ffffffe, 0x7fff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x95535555, 0xaaaaaaaa, 0x95535555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999a, 0x00000001, 0x6666999a },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651998, 0xfffffffd, 0xe6651998 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd554eaac, 0xffff8002, 0xd554eaac },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec010, 0x00000020, 0x7ffec010 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad595, 0x0000007f, 0x2aaad595 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x0000007f, 0x7fffc040 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001ffc2, 0xffffff83, 0xc001ffc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe664e666, 0xcccccccc, 0xe664e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xffffffff, 0xbfff7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbbbb1111, 0xcccccccc, 0xbbbb1111 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc2, 0xffffff83, 0xffff3fc2 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000bfff, 0x00007ffe, 0x4000bfff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffffff, 0x00007ffe, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007f, 0x0000c03f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00007ffd, 0x00103ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c000, 0x00000001, 0x0000c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffefc002, 0xffff8003, 0xffefc002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0002, 0xffff8003, 0xffff0002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc1, 0xffffff82, 0x80003fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40003fff, 0x7ffffffe, 0x40003fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfbfffff, 0x7ffffffd, 0xbfbfffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xffff8001, 0xfffec001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe0000, 0x7fffffff, 0xbffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5999e667, 0x80000001, 0x5999e667 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xffffffff, 0xbffe7fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff0803f, 0x0000007e, 0x7ff0803f },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc0, 0xffffff80, 0xfffeffc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651998, 0x7ffffffd, 0xa6651998 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0fff0, 0xffffffe0, 0xffc0fff0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xd515d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1803f, 0x0000007e, 0x7fc1803f },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08040, 0x0000007f, 0x7fc08040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x003f003f },
{ 0x00000000, 0x00000000, 0x00000000, 0x40010000, 0x80000000, 0x40010000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0000, 0x00000000, 0x003e0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc0, 0xffffff80, 0xfffe3fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x995a999a, 0x33333333, 0x995a999a },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffc0ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xaaaaaaaa, 0xd516d555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08040, 0x0000007f, 0x7ff08040 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff7ffe, 0x7ffffffd, 0x3fff7ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x19d81999, 0x33333333, 0x19d81999 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5554, 0xfffffffe, 0xaaaa5554 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001803f, 0x0000007d, 0x4001803f },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666999a, 0x80000000, 0xa666999a },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff81, 0xfffe3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x7ffffffe, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff3fc0, 0xffffff80, 0xffff3fc0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc001, 0x00000001, 0x7fffc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xffffff82, 0xc000ffc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8001, 0x803e4000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x3fff3fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec000, 0x00007fff, 0x7ffec000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xffff8003, 0xfffe0002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc001, 0x80000001, 0xbfffc001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe0000, 0x7fffffff, 0xbffe0000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c000, 0xffff8000, 0xffc0c000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff82, 0xfffe3fc1 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xa666e666 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc10000, 0x7fffffff, 0xbfc10000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4001c000, 0x00007fff, 0x4001c000 },
};
const Inputs kOutputs_Uhasx_RnIsRm_al_r1_r12_r12[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
};
const Inputs kOutputs_Uhasx_RnIsRm_al_r6_r9_r9[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
};
const Inputs kOutputs_Uhasx_RnIsRm_al_r12_r7_r7[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
};
const Inputs kOutputs_Uhasx_RnIsRm_al_r11_r8_r8[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
};
const Inputs kOutputs_Uhasx_RnIsRm_al_r14_r0_r0[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
};
const Inputs kOutputs_Uhasx_RnIsRm_al_r8_r4_r4[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
};
const Inputs kOutputs_Uhasx_RnIsRm_al_r0_r8_r8[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
};
const Inputs kOutputs_Uhasx_RnIsRm_al_r5_r3_r3[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
};
const Inputs kOutputs_Uhasx_RnIsRm_al_r8_r5_r5[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
};
const Inputs kOutputs_Uhasx_RnIsRm_al_r5_r10_r10[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffeffff0, 0xffffffe0, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffe, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe3fff, 0x7ffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007f, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007ffe, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x55550000, 0x55555555, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003e, 0x0000007d, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc1ffc2, 0xffffff83, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe3ffe, 0x00007ffd, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffc000, 0xffff8000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffffffff, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff81, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff4000, 0x7fffffff, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010001, 0x00000002, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffd, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x80000000, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100010, 0x00000020, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000c001, 0xffff8002, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f003f, 0x0000007e, 0x0000007e },
};
const Inputs kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r14_r3_r4[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xffff8001, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xffff8003, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x00007fff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc0, 0xffffff80, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8040, 0x0000007f, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xffffffff, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaea, 0x0000007e, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007e, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff81, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x00007ffd, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x66766666, 0xcccccccc, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aabb, 0x00000020, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e667, 0x00000002, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08040, 0x0000007f, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666d998, 0x00007ffd, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffff, 0xfffffffe, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec000, 0x00007fff, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaa1555, 0x00007fff, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666999a, 0x80000000, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0000, 0x00000001, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaaaaab, 0x55555555, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffffffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6c, 0xffffff82, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x00000002, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc0, 0xffffff80, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x00007ffd, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8002, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999a, 0x00000000, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651999, 0x7ffffffe, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x80000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0001, 0xffff8001, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x19a91999, 0x33333333, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ff0, 0xffffffe0, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaa5554, 0x7ffffffe, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe627e666, 0xcccccccc, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9989999a, 0x33333333, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0x7ffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc0, 0xffffff80, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007e, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec010, 0x00000020, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec001, 0x00000001, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007f, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffffffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fc0, 0xffffff81, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007d, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xaaaaaaaa, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0001, 0x00000002, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8001, 0x00000001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad555, 0x00000000, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5515, 0xffffff80, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007e, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55945555, 0xaaaaaaaa, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08000, 0x80000000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc0, 0xffffff80, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f4000, 0xffff8000, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc0ffff, 0x7ffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100001, 0x00000002, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7ffe, 0xfffffffd, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5517, 0xffffff83, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0xffff8001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fff, 0xfffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7fffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7ff0, 0xffffffe0, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08001, 0x00000001, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc1, 0xffffff82, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992668, 0xffff8003, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9998d99a, 0x33333333, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0xffffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007f, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa1557, 0xffff8003, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffff, 0xfffffffd, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000fff0, 0xffffffe0, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xffffff82, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000fffe, 0x00007ffd, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0001, 0x00000002, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e3ffe, 0x00007ffd, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aaa, 0x7fffffff, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xfffffffe, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd553d555, 0xaaaaaaaa, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08010, 0x00000020, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x0000007d, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80018001, 0x80000001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xffffffff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e666, 0x00000000, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80008000, 0x80000000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aea2aaa, 0x55555555, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x40100000, 0x80000001, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fc1, 0xffffff82, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec03f, 0x0000007e, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x80010000, 0x7fffffff, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55551555, 0xaaaaaaaa, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996626, 0xffffff80, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe0000, 0x80000000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaa9aaab, 0x55555555, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996627, 0xffffff81, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3ff0, 0xffffffe0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc0, 0xffffff80, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x66666666, 0xcccccccc, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0001, 0xffff8001, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd554eaab, 0xffff8001, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xfffffffe, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00007ffd, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7ffe, 0xfffffffd, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8001, 0x00000001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7ffe, 0x7ffffffd, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8002, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc1, 0xffffff82, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003f, 0x0000007f, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f3fff, 0x00007fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff81, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4001, 0xffff8003, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7fff, 0x7fffffff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc18000, 0x80000000, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x7ffffffe, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18010, 0x00000020, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc0, 0xffffff81, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c001, 0xffff8001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffffff, 0x7ffffffe, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xaaaaaaaa, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc00000, 0xffffffff, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xffff8001, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x0000007f, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff003f, 0x0000007f, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffff8000, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7ffe, 0xfffffffd, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xffffffff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x66676666, 0xcccccccc, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad594, 0x0000007e, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffffc0, 0xffffff80, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x0000007d, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0xffffff82, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaa6baaab, 0x55555555, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0xffff8001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996656, 0xffffffe0, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad556, 0x00000001, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0xffffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc000, 0x00000000, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc03f, 0x0000007d, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007e, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1c000, 0x00007fff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003e, 0x0000007d, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff81, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4001, 0xffff8002, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aea2aaa, 0x55555555, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0010, 0x00000020, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff80, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f3ffe, 0x00007ffd, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x7ffffffe, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80000000, 0xffff8001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c002, 0xffff8003, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018040, 0x0000007f, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fff, 0xffffffff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaa1555, 0x00007fff, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc1, 0xffffff82, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7ffffffe, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xffffffff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999b, 0x00000002, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xffffff81, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018010, 0x00000020, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff81, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaa5555, 0x7fffffff, 0x55555555 },
};
const Inputs kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r3_r11_r1[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xffff8001, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xffff8003, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x00007fff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc0, 0xffffff80, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8040, 0x0000007f, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xffffffff, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaea, 0x0000007e, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007e, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff81, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x00007ffd, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x66766666, 0xcccccccc, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aabb, 0x00000020, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e667, 0x00000002, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08040, 0x0000007f, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666d998, 0x00007ffd, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffff, 0xfffffffe, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec000, 0x00007fff, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaa1555, 0x00007fff, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666999a, 0x80000000, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0000, 0x00000001, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaaaaab, 0x55555555, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffffffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6c, 0xffffff82, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x00000002, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc0, 0xffffff80, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x00007ffd, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8002, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999a, 0x00000000, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651999, 0x7ffffffe, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x80000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0001, 0xffff8001, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x19a91999, 0x33333333, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ff0, 0xffffffe0, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaa5554, 0x7ffffffe, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe627e666, 0xcccccccc, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9989999a, 0x33333333, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0x7ffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc0, 0xffffff80, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007e, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec010, 0x00000020, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec001, 0x00000001, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007f, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffffffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fc0, 0xffffff81, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007d, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xaaaaaaaa, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0001, 0x00000002, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8001, 0x00000001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad555, 0x00000000, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5515, 0xffffff80, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007e, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55945555, 0xaaaaaaaa, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08000, 0x80000000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc0, 0xffffff80, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f4000, 0xffff8000, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc0ffff, 0x7ffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100001, 0x00000002, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7ffe, 0xfffffffd, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5517, 0xffffff83, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0xffff8001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fff, 0xfffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7fffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7ff0, 0xffffffe0, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08001, 0x00000001, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc1, 0xffffff82, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992668, 0xffff8003, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9998d99a, 0x33333333, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0xffffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007f, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa1557, 0xffff8003, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffff, 0xfffffffd, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000fff0, 0xffffffe0, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xffffff82, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000fffe, 0x00007ffd, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0001, 0x00000002, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e3ffe, 0x00007ffd, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aaa, 0x7fffffff, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xfffffffe, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd553d555, 0xaaaaaaaa, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08010, 0x00000020, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x0000007d, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80018001, 0x80000001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xffffffff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e666, 0x00000000, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80008000, 0x80000000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aea2aaa, 0x55555555, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x40100000, 0x80000001, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fc1, 0xffffff82, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec03f, 0x0000007e, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x80010000, 0x7fffffff, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55551555, 0xaaaaaaaa, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996626, 0xffffff80, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe0000, 0x80000000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaa9aaab, 0x55555555, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996627, 0xffffff81, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3ff0, 0xffffffe0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc0, 0xffffff80, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x66666666, 0xcccccccc, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0001, 0xffff8001, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd554eaab, 0xffff8001, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xfffffffe, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00007ffd, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7ffe, 0xfffffffd, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8001, 0x00000001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7ffe, 0x7ffffffd, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8002, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc1, 0xffffff82, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003f, 0x0000007f, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f3fff, 0x00007fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff81, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4001, 0xffff8003, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7fff, 0x7fffffff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc18000, 0x80000000, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x7ffffffe, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18010, 0x00000020, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc0, 0xffffff81, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c001, 0xffff8001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffffff, 0x7ffffffe, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xaaaaaaaa, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc00000, 0xffffffff, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xffff8001, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x0000007f, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff003f, 0x0000007f, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffff8000, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7ffe, 0xfffffffd, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xffffffff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x66676666, 0xcccccccc, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad594, 0x0000007e, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffffc0, 0xffffff80, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x0000007d, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0xffffff82, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaa6baaab, 0x55555555, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0xffff8001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996656, 0xffffffe0, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad556, 0x00000001, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0xffffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc000, 0x00000000, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc03f, 0x0000007d, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007e, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1c000, 0x00007fff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003e, 0x0000007d, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff81, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4001, 0xffff8002, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aea2aaa, 0x55555555, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0010, 0x00000020, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff80, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f3ffe, 0x00007ffd, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x7ffffffe, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80000000, 0xffff8001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c002, 0xffff8003, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018040, 0x0000007f, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fff, 0xffffffff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaa1555, 0x00007fff, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc1, 0xffffff82, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7ffffffe, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xffffffff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999b, 0x00000002, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xffffff81, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018010, 0x00000020, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff81, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaa5555, 0x7fffffff, 0x55555555 },
};
const Inputs kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r11_r2_r6[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xffff8001, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xffff8003, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x00007fff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc0, 0xffffff80, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8040, 0x0000007f, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xffffffff, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaea, 0x0000007e, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007e, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff81, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x00007ffd, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x66766666, 0xcccccccc, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aabb, 0x00000020, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e667, 0x00000002, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08040, 0x0000007f, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666d998, 0x00007ffd, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffff, 0xfffffffe, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec000, 0x00007fff, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaa1555, 0x00007fff, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666999a, 0x80000000, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0000, 0x00000001, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaaaaab, 0x55555555, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffffffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6c, 0xffffff82, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x00000002, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc0, 0xffffff80, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x00007ffd, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8002, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999a, 0x00000000, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651999, 0x7ffffffe, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x80000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0001, 0xffff8001, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x19a91999, 0x33333333, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ff0, 0xffffffe0, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaa5554, 0x7ffffffe, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe627e666, 0xcccccccc, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9989999a, 0x33333333, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0x7ffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc0, 0xffffff80, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007e, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec010, 0x00000020, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec001, 0x00000001, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007f, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffffffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fc0, 0xffffff81, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007d, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xaaaaaaaa, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0001, 0x00000002, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8001, 0x00000001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad555, 0x00000000, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5515, 0xffffff80, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007e, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55945555, 0xaaaaaaaa, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08000, 0x80000000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc0, 0xffffff80, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f4000, 0xffff8000, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc0ffff, 0x7ffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100001, 0x00000002, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7ffe, 0xfffffffd, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5517, 0xffffff83, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0xffff8001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fff, 0xfffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7fffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7ff0, 0xffffffe0, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08001, 0x00000001, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc1, 0xffffff82, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992668, 0xffff8003, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9998d99a, 0x33333333, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0xffffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007f, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa1557, 0xffff8003, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffff, 0xfffffffd, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000fff0, 0xffffffe0, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xffffff82, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000fffe, 0x00007ffd, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0001, 0x00000002, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e3ffe, 0x00007ffd, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aaa, 0x7fffffff, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xfffffffe, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd553d555, 0xaaaaaaaa, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08010, 0x00000020, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x0000007d, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80018001, 0x80000001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xffffffff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e666, 0x00000000, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80008000, 0x80000000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aea2aaa, 0x55555555, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x40100000, 0x80000001, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fc1, 0xffffff82, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec03f, 0x0000007e, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x80010000, 0x7fffffff, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55551555, 0xaaaaaaaa, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996626, 0xffffff80, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe0000, 0x80000000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaa9aaab, 0x55555555, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996627, 0xffffff81, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3ff0, 0xffffffe0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc0, 0xffffff80, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x66666666, 0xcccccccc, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0001, 0xffff8001, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd554eaab, 0xffff8001, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xfffffffe, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00007ffd, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7ffe, 0xfffffffd, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8001, 0x00000001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7ffe, 0x7ffffffd, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8002, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc1, 0xffffff82, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003f, 0x0000007f, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f3fff, 0x00007fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff81, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4001, 0xffff8003, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7fff, 0x7fffffff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc18000, 0x80000000, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x7ffffffe, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18010, 0x00000020, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc0, 0xffffff81, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c001, 0xffff8001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffffff, 0x7ffffffe, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xaaaaaaaa, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc00000, 0xffffffff, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xffff8001, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x0000007f, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff003f, 0x0000007f, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffff8000, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7ffe, 0xfffffffd, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xffffffff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x66676666, 0xcccccccc, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad594, 0x0000007e, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffffc0, 0xffffff80, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x0000007d, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0xffffff82, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaa6baaab, 0x55555555, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0xffff8001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996656, 0xffffffe0, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad556, 0x00000001, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0xffffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc000, 0x00000000, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc03f, 0x0000007d, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007e, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1c000, 0x00007fff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003e, 0x0000007d, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff81, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4001, 0xffff8002, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aea2aaa, 0x55555555, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0010, 0x00000020, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff80, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f3ffe, 0x00007ffd, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x7ffffffe, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80000000, 0xffff8001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c002, 0xffff8003, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018040, 0x0000007f, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fff, 0xffffffff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaa1555, 0x00007fff, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc1, 0xffffff82, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7ffffffe, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xffffffff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999b, 0x00000002, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xffffff81, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018010, 0x00000020, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff81, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaa5555, 0x7fffffff, 0x55555555 },
};
const Inputs kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r14_r0_r5[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xffff8001, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xffff8003, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x00007fff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc0, 0xffffff80, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8040, 0x0000007f, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xffffffff, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaea, 0x0000007e, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007e, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff81, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x00007ffd, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x66766666, 0xcccccccc, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aabb, 0x00000020, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e667, 0x00000002, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08040, 0x0000007f, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666d998, 0x00007ffd, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffff, 0xfffffffe, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec000, 0x00007fff, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaa1555, 0x00007fff, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666999a, 0x80000000, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0000, 0x00000001, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaaaaab, 0x55555555, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffffffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6c, 0xffffff82, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x00000002, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc0, 0xffffff80, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x00007ffd, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8002, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999a, 0x00000000, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651999, 0x7ffffffe, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x80000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0001, 0xffff8001, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x19a91999, 0x33333333, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ff0, 0xffffffe0, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaa5554, 0x7ffffffe, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe627e666, 0xcccccccc, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9989999a, 0x33333333, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0x7ffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc0, 0xffffff80, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007e, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec010, 0x00000020, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec001, 0x00000001, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007f, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffffffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fc0, 0xffffff81, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007d, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xaaaaaaaa, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0001, 0x00000002, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8001, 0x00000001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad555, 0x00000000, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5515, 0xffffff80, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007e, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55945555, 0xaaaaaaaa, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08000, 0x80000000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc0, 0xffffff80, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f4000, 0xffff8000, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc0ffff, 0x7ffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100001, 0x00000002, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7ffe, 0xfffffffd, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5517, 0xffffff83, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0xffff8001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fff, 0xfffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7fffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7ff0, 0xffffffe0, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08001, 0x00000001, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc1, 0xffffff82, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992668, 0xffff8003, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9998d99a, 0x33333333, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0xffffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007f, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa1557, 0xffff8003, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffff, 0xfffffffd, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000fff0, 0xffffffe0, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xffffff82, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000fffe, 0x00007ffd, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0001, 0x00000002, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e3ffe, 0x00007ffd, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aaa, 0x7fffffff, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xfffffffe, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd553d555, 0xaaaaaaaa, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08010, 0x00000020, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x0000007d, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80018001, 0x80000001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xffffffff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e666, 0x00000000, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80008000, 0x80000000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aea2aaa, 0x55555555, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x40100000, 0x80000001, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fc1, 0xffffff82, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec03f, 0x0000007e, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x80010000, 0x7fffffff, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55551555, 0xaaaaaaaa, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996626, 0xffffff80, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe0000, 0x80000000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaa9aaab, 0x55555555, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996627, 0xffffff81, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3ff0, 0xffffffe0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc0, 0xffffff80, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x66666666, 0xcccccccc, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0001, 0xffff8001, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd554eaab, 0xffff8001, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xfffffffe, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00007ffd, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7ffe, 0xfffffffd, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8001, 0x00000001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7ffe, 0x7ffffffd, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8002, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc1, 0xffffff82, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003f, 0x0000007f, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f3fff, 0x00007fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff81, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4001, 0xffff8003, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7fff, 0x7fffffff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc18000, 0x80000000, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x7ffffffe, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18010, 0x00000020, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc0, 0xffffff81, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c001, 0xffff8001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffffff, 0x7ffffffe, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xaaaaaaaa, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc00000, 0xffffffff, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xffff8001, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x0000007f, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff003f, 0x0000007f, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffff8000, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7ffe, 0xfffffffd, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xffffffff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x66676666, 0xcccccccc, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad594, 0x0000007e, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffffc0, 0xffffff80, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x0000007d, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0xffffff82, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaa6baaab, 0x55555555, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0xffff8001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996656, 0xffffffe0, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad556, 0x00000001, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0xffffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc000, 0x00000000, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc03f, 0x0000007d, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007e, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1c000, 0x00007fff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003e, 0x0000007d, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff81, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4001, 0xffff8002, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aea2aaa, 0x55555555, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0010, 0x00000020, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff80, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f3ffe, 0x00007ffd, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x7ffffffe, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80000000, 0xffff8001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c002, 0xffff8003, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018040, 0x0000007f, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fff, 0xffffffff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaa1555, 0x00007fff, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc1, 0xffffff82, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7ffffffe, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xffffffff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999b, 0x00000002, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xffffff81, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018010, 0x00000020, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff81, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaa5555, 0x7fffffff, 0x55555555 },
};
const Inputs kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r11_r6_r12[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xffff8001, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xffff8003, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x00007fff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc0, 0xffffff80, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8040, 0x0000007f, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xffffffff, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaea, 0x0000007e, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007e, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff81, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x00007ffd, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x66766666, 0xcccccccc, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aabb, 0x00000020, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e667, 0x00000002, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08040, 0x0000007f, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666d998, 0x00007ffd, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffff, 0xfffffffe, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec000, 0x00007fff, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaa1555, 0x00007fff, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666999a, 0x80000000, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0000, 0x00000001, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaaaaab, 0x55555555, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffffffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6c, 0xffffff82, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x00000002, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc0, 0xffffff80, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x00007ffd, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8002, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999a, 0x00000000, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651999, 0x7ffffffe, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x80000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0001, 0xffff8001, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x19a91999, 0x33333333, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ff0, 0xffffffe0, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaa5554, 0x7ffffffe, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe627e666, 0xcccccccc, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9989999a, 0x33333333, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0x7ffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc0, 0xffffff80, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007e, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec010, 0x00000020, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec001, 0x00000001, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007f, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffffffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fc0, 0xffffff81, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007d, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xaaaaaaaa, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0001, 0x00000002, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8001, 0x00000001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad555, 0x00000000, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5515, 0xffffff80, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007e, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55945555, 0xaaaaaaaa, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08000, 0x80000000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc0, 0xffffff80, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f4000, 0xffff8000, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc0ffff, 0x7ffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100001, 0x00000002, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7ffe, 0xfffffffd, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5517, 0xffffff83, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0xffff8001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fff, 0xfffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7fffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7ff0, 0xffffffe0, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08001, 0x00000001, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc1, 0xffffff82, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992668, 0xffff8003, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9998d99a, 0x33333333, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0xffffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007f, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa1557, 0xffff8003, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffff, 0xfffffffd, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000fff0, 0xffffffe0, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xffffff82, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000fffe, 0x00007ffd, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0001, 0x00000002, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e3ffe, 0x00007ffd, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aaa, 0x7fffffff, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xfffffffe, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd553d555, 0xaaaaaaaa, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08010, 0x00000020, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x0000007d, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80018001, 0x80000001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xffffffff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e666, 0x00000000, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80008000, 0x80000000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aea2aaa, 0x55555555, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x40100000, 0x80000001, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fc1, 0xffffff82, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec03f, 0x0000007e, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x80010000, 0x7fffffff, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55551555, 0xaaaaaaaa, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996626, 0xffffff80, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe0000, 0x80000000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaa9aaab, 0x55555555, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996627, 0xffffff81, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3ff0, 0xffffffe0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc0, 0xffffff80, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x66666666, 0xcccccccc, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0001, 0xffff8001, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd554eaab, 0xffff8001, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xfffffffe, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00007ffd, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7ffe, 0xfffffffd, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8001, 0x00000001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7ffe, 0x7ffffffd, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8002, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc1, 0xffffff82, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003f, 0x0000007f, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f3fff, 0x00007fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff81, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4001, 0xffff8003, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7fff, 0x7fffffff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc18000, 0x80000000, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x7ffffffe, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18010, 0x00000020, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc0, 0xffffff81, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c001, 0xffff8001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffffff, 0x7ffffffe, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xaaaaaaaa, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc00000, 0xffffffff, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xffff8001, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x0000007f, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff003f, 0x0000007f, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffff8000, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7ffe, 0xfffffffd, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xffffffff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x66676666, 0xcccccccc, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad594, 0x0000007e, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffffc0, 0xffffff80, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x0000007d, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0xffffff82, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaa6baaab, 0x55555555, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0xffff8001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996656, 0xffffffe0, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad556, 0x00000001, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0xffffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc000, 0x00000000, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc03f, 0x0000007d, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007e, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1c000, 0x00007fff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003e, 0x0000007d, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff81, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4001, 0xffff8002, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aea2aaa, 0x55555555, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0010, 0x00000020, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff80, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f3ffe, 0x00007ffd, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x7ffffffe, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80000000, 0xffff8001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c002, 0xffff8003, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018040, 0x0000007f, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fff, 0xffffffff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaa1555, 0x00007fff, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc1, 0xffffff82, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7ffffffe, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xffffffff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999b, 0x00000002, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xffffff81, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018010, 0x00000020, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff81, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaa5555, 0x7fffffff, 0x55555555 },
};
const Inputs kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r10_r8_r4[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xffff8001, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xffff8003, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x00007fff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc0, 0xffffff80, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8040, 0x0000007f, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xffffffff, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaea, 0x0000007e, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007e, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff81, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x00007ffd, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x66766666, 0xcccccccc, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aabb, 0x00000020, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e667, 0x00000002, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08040, 0x0000007f, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666d998, 0x00007ffd, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffff, 0xfffffffe, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec000, 0x00007fff, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaa1555, 0x00007fff, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666999a, 0x80000000, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0000, 0x00000001, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaaaaab, 0x55555555, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffffffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6c, 0xffffff82, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x00000002, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc0, 0xffffff80, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x00007ffd, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8002, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999a, 0x00000000, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651999, 0x7ffffffe, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x80000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0001, 0xffff8001, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x19a91999, 0x33333333, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ff0, 0xffffffe0, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaa5554, 0x7ffffffe, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe627e666, 0xcccccccc, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9989999a, 0x33333333, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0x7ffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc0, 0xffffff80, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007e, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec010, 0x00000020, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec001, 0x00000001, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007f, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffffffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fc0, 0xffffff81, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007d, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xaaaaaaaa, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0001, 0x00000002, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8001, 0x00000001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad555, 0x00000000, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5515, 0xffffff80, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007e, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55945555, 0xaaaaaaaa, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08000, 0x80000000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc0, 0xffffff80, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f4000, 0xffff8000, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc0ffff, 0x7ffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100001, 0x00000002, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7ffe, 0xfffffffd, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5517, 0xffffff83, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0xffff8001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fff, 0xfffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7fffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7ff0, 0xffffffe0, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08001, 0x00000001, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc1, 0xffffff82, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992668, 0xffff8003, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9998d99a, 0x33333333, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0xffffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007f, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa1557, 0xffff8003, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffff, 0xfffffffd, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000fff0, 0xffffffe0, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xffffff82, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000fffe, 0x00007ffd, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0001, 0x00000002, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e3ffe, 0x00007ffd, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aaa, 0x7fffffff, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xfffffffe, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd553d555, 0xaaaaaaaa, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08010, 0x00000020, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x0000007d, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80018001, 0x80000001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xffffffff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e666, 0x00000000, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80008000, 0x80000000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aea2aaa, 0x55555555, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x40100000, 0x80000001, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fc1, 0xffffff82, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec03f, 0x0000007e, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x80010000, 0x7fffffff, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55551555, 0xaaaaaaaa, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996626, 0xffffff80, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe0000, 0x80000000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaa9aaab, 0x55555555, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996627, 0xffffff81, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3ff0, 0xffffffe0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc0, 0xffffff80, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x66666666, 0xcccccccc, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0001, 0xffff8001, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd554eaab, 0xffff8001, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xfffffffe, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00007ffd, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7ffe, 0xfffffffd, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8001, 0x00000001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7ffe, 0x7ffffffd, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8002, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc1, 0xffffff82, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003f, 0x0000007f, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f3fff, 0x00007fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff81, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4001, 0xffff8003, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7fff, 0x7fffffff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc18000, 0x80000000, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x7ffffffe, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18010, 0x00000020, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc0, 0xffffff81, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c001, 0xffff8001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffffff, 0x7ffffffe, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xaaaaaaaa, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc00000, 0xffffffff, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xffff8001, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x0000007f, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff003f, 0x0000007f, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffff8000, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7ffe, 0xfffffffd, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xffffffff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x66676666, 0xcccccccc, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad594, 0x0000007e, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffffc0, 0xffffff80, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x0000007d, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0xffffff82, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaa6baaab, 0x55555555, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0xffff8001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996656, 0xffffffe0, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad556, 0x00000001, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0xffffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc000, 0x00000000, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc03f, 0x0000007d, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007e, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1c000, 0x00007fff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003e, 0x0000007d, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff81, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4001, 0xffff8002, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aea2aaa, 0x55555555, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0010, 0x00000020, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff80, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f3ffe, 0x00007ffd, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x7ffffffe, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80000000, 0xffff8001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c002, 0xffff8003, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018040, 0x0000007f, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fff, 0xffffffff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaa1555, 0x00007fff, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc1, 0xffffff82, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7ffffffe, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xffffffff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999b, 0x00000002, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xffffff81, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018010, 0x00000020, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff81, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaa5555, 0x7fffffff, 0x55555555 },
};
const Inputs kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r4_r3_r1[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xffff8001, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xffff8003, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x00007fff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc0, 0xffffff80, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8040, 0x0000007f, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xffffffff, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaea, 0x0000007e, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007e, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff81, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x00007ffd, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x66766666, 0xcccccccc, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aabb, 0x00000020, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e667, 0x00000002, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08040, 0x0000007f, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666d998, 0x00007ffd, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffff, 0xfffffffe, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec000, 0x00007fff, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaa1555, 0x00007fff, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666999a, 0x80000000, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0000, 0x00000001, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaaaaab, 0x55555555, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffffffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6c, 0xffffff82, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x00000002, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc0, 0xffffff80, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x00007ffd, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8002, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999a, 0x00000000, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651999, 0x7ffffffe, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x80000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0001, 0xffff8001, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x19a91999, 0x33333333, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ff0, 0xffffffe0, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaa5554, 0x7ffffffe, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe627e666, 0xcccccccc, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9989999a, 0x33333333, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0x7ffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc0, 0xffffff80, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007e, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec010, 0x00000020, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec001, 0x00000001, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007f, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffffffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fc0, 0xffffff81, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007d, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xaaaaaaaa, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0001, 0x00000002, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8001, 0x00000001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad555, 0x00000000, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5515, 0xffffff80, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007e, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55945555, 0xaaaaaaaa, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08000, 0x80000000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc0, 0xffffff80, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f4000, 0xffff8000, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc0ffff, 0x7ffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100001, 0x00000002, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7ffe, 0xfffffffd, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5517, 0xffffff83, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0xffff8001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fff, 0xfffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7fffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7ff0, 0xffffffe0, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08001, 0x00000001, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc1, 0xffffff82, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992668, 0xffff8003, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9998d99a, 0x33333333, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0xffffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007f, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa1557, 0xffff8003, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffff, 0xfffffffd, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000fff0, 0xffffffe0, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xffffff82, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000fffe, 0x00007ffd, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0001, 0x00000002, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e3ffe, 0x00007ffd, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aaa, 0x7fffffff, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xfffffffe, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd553d555, 0xaaaaaaaa, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08010, 0x00000020, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x0000007d, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80018001, 0x80000001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xffffffff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e666, 0x00000000, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80008000, 0x80000000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aea2aaa, 0x55555555, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x40100000, 0x80000001, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fc1, 0xffffff82, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec03f, 0x0000007e, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x80010000, 0x7fffffff, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55551555, 0xaaaaaaaa, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996626, 0xffffff80, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe0000, 0x80000000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaa9aaab, 0x55555555, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996627, 0xffffff81, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3ff0, 0xffffffe0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc0, 0xffffff80, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x66666666, 0xcccccccc, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0001, 0xffff8001, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd554eaab, 0xffff8001, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xfffffffe, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00007ffd, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7ffe, 0xfffffffd, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8001, 0x00000001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7ffe, 0x7ffffffd, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8002, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc1, 0xffffff82, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003f, 0x0000007f, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f3fff, 0x00007fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff81, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4001, 0xffff8003, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7fff, 0x7fffffff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc18000, 0x80000000, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x7ffffffe, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18010, 0x00000020, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc0, 0xffffff81, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c001, 0xffff8001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffffff, 0x7ffffffe, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xaaaaaaaa, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc00000, 0xffffffff, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xffff8001, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x0000007f, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff003f, 0x0000007f, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffff8000, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7ffe, 0xfffffffd, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xffffffff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x66676666, 0xcccccccc, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad594, 0x0000007e, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffffc0, 0xffffff80, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x0000007d, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0xffffff82, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaa6baaab, 0x55555555, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0xffff8001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996656, 0xffffffe0, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad556, 0x00000001, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0xffffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc000, 0x00000000, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc03f, 0x0000007d, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007e, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1c000, 0x00007fff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003e, 0x0000007d, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff81, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4001, 0xffff8002, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aea2aaa, 0x55555555, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0010, 0x00000020, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff80, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f3ffe, 0x00007ffd, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x7ffffffe, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80000000, 0xffff8001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c002, 0xffff8003, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018040, 0x0000007f, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fff, 0xffffffff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaa1555, 0x00007fff, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc1, 0xffffff82, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7ffffffe, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xffffffff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999b, 0x00000002, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xffffff81, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018010, 0x00000020, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff81, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaa5555, 0x7fffffff, 0x55555555 },
};
const Inputs kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r12_r11_r14[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xffff8001, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xffff8003, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x00007fff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc0, 0xffffff80, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8040, 0x0000007f, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xffffffff, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaea, 0x0000007e, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007e, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff81, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x00007ffd, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x66766666, 0xcccccccc, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aabb, 0x00000020, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e667, 0x00000002, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08040, 0x0000007f, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666d998, 0x00007ffd, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffff, 0xfffffffe, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec000, 0x00007fff, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaa1555, 0x00007fff, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666999a, 0x80000000, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0000, 0x00000001, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaaaaab, 0x55555555, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffffffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6c, 0xffffff82, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x00000002, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc0, 0xffffff80, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x00007ffd, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8002, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999a, 0x00000000, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651999, 0x7ffffffe, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x80000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0001, 0xffff8001, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x19a91999, 0x33333333, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ff0, 0xffffffe0, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaa5554, 0x7ffffffe, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe627e666, 0xcccccccc, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9989999a, 0x33333333, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0x7ffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc0, 0xffffff80, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007e, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec010, 0x00000020, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec001, 0x00000001, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007f, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffffffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fc0, 0xffffff81, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007d, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xaaaaaaaa, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0001, 0x00000002, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8001, 0x00000001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad555, 0x00000000, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5515, 0xffffff80, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007e, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55945555, 0xaaaaaaaa, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08000, 0x80000000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc0, 0xffffff80, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f4000, 0xffff8000, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc0ffff, 0x7ffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100001, 0x00000002, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7ffe, 0xfffffffd, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5517, 0xffffff83, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0xffff8001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fff, 0xfffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7fffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7ff0, 0xffffffe0, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08001, 0x00000001, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc1, 0xffffff82, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992668, 0xffff8003, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9998d99a, 0x33333333, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0xffffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007f, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa1557, 0xffff8003, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffff, 0xfffffffd, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000fff0, 0xffffffe0, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xffffff82, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000fffe, 0x00007ffd, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0001, 0x00000002, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e3ffe, 0x00007ffd, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aaa, 0x7fffffff, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xfffffffe, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd553d555, 0xaaaaaaaa, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08010, 0x00000020, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x0000007d, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80018001, 0x80000001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xffffffff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e666, 0x00000000, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80008000, 0x80000000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aea2aaa, 0x55555555, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x40100000, 0x80000001, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fc1, 0xffffff82, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec03f, 0x0000007e, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x80010000, 0x7fffffff, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55551555, 0xaaaaaaaa, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996626, 0xffffff80, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe0000, 0x80000000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaa9aaab, 0x55555555, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996627, 0xffffff81, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3ff0, 0xffffffe0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc0, 0xffffff80, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x66666666, 0xcccccccc, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0001, 0xffff8001, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd554eaab, 0xffff8001, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xfffffffe, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00007ffd, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7ffe, 0xfffffffd, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8001, 0x00000001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7ffe, 0x7ffffffd, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8002, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc1, 0xffffff82, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003f, 0x0000007f, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f3fff, 0x00007fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff81, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4001, 0xffff8003, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7fff, 0x7fffffff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc18000, 0x80000000, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x7ffffffe, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18010, 0x00000020, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc0, 0xffffff81, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c001, 0xffff8001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffffff, 0x7ffffffe, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xaaaaaaaa, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc00000, 0xffffffff, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xffff8001, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x0000007f, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff003f, 0x0000007f, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffff8000, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7ffe, 0xfffffffd, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xffffffff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x66676666, 0xcccccccc, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad594, 0x0000007e, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffffc0, 0xffffff80, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x0000007d, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0xffffff82, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaa6baaab, 0x55555555, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0xffff8001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996656, 0xffffffe0, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad556, 0x00000001, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0xffffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc000, 0x00000000, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc03f, 0x0000007d, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007e, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1c000, 0x00007fff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003e, 0x0000007d, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff81, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4001, 0xffff8002, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aea2aaa, 0x55555555, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0010, 0x00000020, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff80, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f3ffe, 0x00007ffd, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x7ffffffe, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80000000, 0xffff8001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c002, 0xffff8003, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018040, 0x0000007f, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fff, 0xffffffff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaa1555, 0x00007fff, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc1, 0xffffff82, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7ffffffe, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xffffffff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999b, 0x00000002, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xffffff81, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018010, 0x00000020, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff81, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaa5555, 0x7fffffff, 0x55555555 },
};
const Inputs kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r9_r4_r11[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xffff8001, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xffff8003, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x00007fff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc0, 0xffffff80, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8040, 0x0000007f, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xffffffff, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaea, 0x0000007e, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007e, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff81, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x00007ffd, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x66766666, 0xcccccccc, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aabb, 0x00000020, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e667, 0x00000002, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08040, 0x0000007f, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666d998, 0x00007ffd, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffff, 0xfffffffe, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec000, 0x00007fff, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaa1555, 0x00007fff, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666999a, 0x80000000, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0000, 0x00000001, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaaaaab, 0x55555555, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffffffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6c, 0xffffff82, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x00000002, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc0, 0xffffff80, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x00007ffd, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8002, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999a, 0x00000000, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651999, 0x7ffffffe, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x80000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0001, 0xffff8001, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x19a91999, 0x33333333, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ff0, 0xffffffe0, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaa5554, 0x7ffffffe, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe627e666, 0xcccccccc, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9989999a, 0x33333333, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0x7ffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc0, 0xffffff80, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007e, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec010, 0x00000020, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec001, 0x00000001, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007f, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffffffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fc0, 0xffffff81, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007d, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xaaaaaaaa, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0001, 0x00000002, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8001, 0x00000001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad555, 0x00000000, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5515, 0xffffff80, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007e, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55945555, 0xaaaaaaaa, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08000, 0x80000000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc0, 0xffffff80, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f4000, 0xffff8000, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc0ffff, 0x7ffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100001, 0x00000002, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7ffe, 0xfffffffd, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5517, 0xffffff83, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0xffff8001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fff, 0xfffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7fffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7ff0, 0xffffffe0, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08001, 0x00000001, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc1, 0xffffff82, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992668, 0xffff8003, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9998d99a, 0x33333333, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0xffffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007f, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa1557, 0xffff8003, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffff, 0xfffffffd, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000fff0, 0xffffffe0, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xffffff82, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000fffe, 0x00007ffd, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0001, 0x00000002, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e3ffe, 0x00007ffd, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aaa, 0x7fffffff, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xfffffffe, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd553d555, 0xaaaaaaaa, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08010, 0x00000020, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x0000007d, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80018001, 0x80000001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xffffffff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e666, 0x00000000, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80008000, 0x80000000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aea2aaa, 0x55555555, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x40100000, 0x80000001, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fc1, 0xffffff82, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec03f, 0x0000007e, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x80010000, 0x7fffffff, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55551555, 0xaaaaaaaa, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996626, 0xffffff80, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe0000, 0x80000000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaa9aaab, 0x55555555, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996627, 0xffffff81, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3ff0, 0xffffffe0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc0, 0xffffff80, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x66666666, 0xcccccccc, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0001, 0xffff8001, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd554eaab, 0xffff8001, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xfffffffe, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00007ffd, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7ffe, 0xfffffffd, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8001, 0x00000001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7ffe, 0x7ffffffd, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8002, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc1, 0xffffff82, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003f, 0x0000007f, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f3fff, 0x00007fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff81, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4001, 0xffff8003, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7fff, 0x7fffffff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc18000, 0x80000000, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x7ffffffe, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18010, 0x00000020, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc0, 0xffffff81, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c001, 0xffff8001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffffff, 0x7ffffffe, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xaaaaaaaa, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc00000, 0xffffffff, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xffff8001, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x0000007f, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff003f, 0x0000007f, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffff8000, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7ffe, 0xfffffffd, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xffffffff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x66676666, 0xcccccccc, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad594, 0x0000007e, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffffc0, 0xffffff80, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x0000007d, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0xffffff82, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaa6baaab, 0x55555555, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0xffff8001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996656, 0xffffffe0, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad556, 0x00000001, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0xffffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc000, 0x00000000, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc03f, 0x0000007d, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007e, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1c000, 0x00007fff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003e, 0x0000007d, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff81, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4001, 0xffff8002, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aea2aaa, 0x55555555, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0010, 0x00000020, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff80, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f3ffe, 0x00007ffd, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x7ffffffe, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80000000, 0xffff8001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c002, 0xffff8003, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018040, 0x0000007f, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fff, 0xffffffff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaa1555, 0x00007fff, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc1, 0xffffff82, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7ffffffe, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xffffffff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999b, 0x00000002, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xffffff81, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018010, 0x00000020, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff81, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaa5555, 0x7fffffff, 0x55555555 },
};
const Inputs kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r14_r4_r6[] = {
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4000, 0xffff8001, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0002, 0xffff8003, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000c000, 0x00007fff, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc0, 0xffffff80, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff8040, 0x0000007f, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fff, 0xffffffff, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aaea, 0x0000007e, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007e, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff81, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3ffe, 0x00007ffd, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x66766666, 0xcccccccc, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x5555aabb, 0x00000020, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e667, 0x00000002, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08040, 0x0000007f, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666d998, 0x00007ffd, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffff, 0xfffffffe, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec000, 0x00007fff, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaa1555, 0x00007fff, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666999a, 0x80000000, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0000, 0x00000001, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaaaaab, 0x55555555, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffffffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542a6c, 0xffffff82, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18001, 0x00000002, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc0, 0xffffff80, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1bfff, 0x00007ffd, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8002, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999a, 0x00000000, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xa6651999, 0x7ffffffe, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40000000, 0x80000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0001, 0xffff8001, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x19a91999, 0x33333333, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007ff0, 0xffffffe0, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaa5554, 0x7ffffffe, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xe627e666, 0xcccccccc, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9989999a, 0x33333333, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffeffff, 0x7ffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80003fc0, 0xffffff80, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007e, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec010, 0x00000020, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec001, 0x00000001, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xcccc0000, 0xcccccccc, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0x95545555, 0xaaaaaaaa, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000c03f, 0x0000007f, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbf0000, 0xffffffff, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fc0, 0xffffff81, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007d, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5541555, 0xaaaaaaaa, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff0001, 0x00000002, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8001, 0x00000001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad555, 0x00000000, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5515, 0xffffff80, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007e, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55945555, 0xaaaaaaaa, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc08000, 0x80000000, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00003ffe, 0x00007ffd, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc0, 0xffffff80, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f4000, 0xffff8000, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa0000, 0xaaaaaaaa, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc0ffff, 0x7ffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00100001, 0x00000002, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7ffe, 0xfffffffd, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa5517, 0xffffff83, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0xffff8001, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff3fff, 0x00007fff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffff, 0xfffffffe, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xffffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fff, 0xfffffffd, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7fffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7ff0, 0xffffffe0, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc08001, 0x00000001, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc1, 0xffffff82, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99992668, 0xffff8003, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x9998d99a, 0x33333333, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0xffffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003f, 0x0000007f, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaaa1557, 0xffff8003, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffff, 0xfffffffd, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000fff0, 0xffffffe0, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc000ffc1, 0xffffff82, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000fffe, 0x00007ffd, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e0001, 0x00000002, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e3ffe, 0x00007ffd, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x95542aaa, 0x7fffffff, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xd5542aaa, 0xfffffffe, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c002, 0xffff8003, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd553d555, 0xaaaaaaaa, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ff08010, 0x00000020, 0xffffffe0 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x0000007d, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x80018001, 0x80000001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xffffffff, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x1999e666, 0x00000000, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80008000, 0x80000000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aea2aaa, 0x55555555, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x40100000, 0x80000001, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7fc1, 0xffffff82, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffec03f, 0x0000007e, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x80010000, 0x7fffffff, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x55551555, 0xaaaaaaaa, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996626, 0xffffff80, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008000, 0x00000000, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xd515d555, 0xaaaaaaaa, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe0000, 0x80000000, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xaaa9aaab, 0x55555555, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996627, 0xffffff81, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3ff0, 0xffffffe0, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40008001, 0x00000001, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x800f7fc0, 0xffffff80, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x66666666, 0xcccccccc, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe0001, 0xffff8001, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd554eaab, 0xffff8001, 0xaaaaaaaa },
{ 0x00000000, 0x00000000, 0x00000000, 0xe6651999, 0xfffffffe, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xa666e666, 0xcccccccc, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00103ffe, 0x00007ffd, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7ffe, 0xfffffffd, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7ffe8001, 0x00000001, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7ffe, 0x7ffffffd, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8001, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00013fff, 0x00007ffe, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x33330000, 0x33333333, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c001, 0xffff8002, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc1, 0xffffff82, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003e003f, 0x0000007f, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f3fff, 0x00007fff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4000, 0xffff8000, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffe3fc1, 0xffffff81, 0x7ffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4001, 0xffff8003, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403f7fff, 0x7fffffff, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfc18000, 0x80000000, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x400f7fff, 0x7ffffffe, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc18010, 0x00000020, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff3fc0, 0xffffff81, 0x80000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xc001c001, 0xffff8001, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffffff, 0x7ffffffe, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff8000, 0x80000000, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xd516d555, 0xaaaaaaaa, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc00000, 0xffffffff, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffec001, 0xffff8001, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc040, 0x0000007f, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x3fff003f, 0x0000007f, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0xffff0000, 0xffff8000, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffff, 0xfffffffe, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x803f7ffe, 0xfffffffd, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfff7fff, 0xffffffff, 0x00007fff },
{ 0x00000000, 0x00000000, 0x00000000, 0x66676666, 0xcccccccc, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffbfffc0, 0xffffff80, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad594, 0x0000007e, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbfffffc0, 0xffffff80, 0xffff8000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff803f, 0x0000007d, 0xfffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fc1, 0xffffff82, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0xaa6baaab, 0x55555555, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80004000, 0xffff8001, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x99996656, 0xffffffe0, 0x33333333 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaad556, 0x00000001, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fff, 0xffffffff, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc000, 0x00000000, 0x7fffffff },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fffc03f, 0x0000007d, 0x7ffffffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x4000803f, 0x0000007e, 0xffff8001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc1c000, 0x00007fff, 0xffffff83 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0010003e, 0x0000007d, 0x00000020 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff81, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe4001, 0xffff8002, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aea2aaa, 0x55555555, 0x0000007f },
{ 0x00000000, 0x00000000, 0x00000000, 0x3ffe0010, 0x00000020, 0x00007ffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fc0, 0xffffff80, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x003f3ffe, 0x00007ffd, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x40007fff, 0x7ffffffe, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x80000000, 0xffff8001, 0x80000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e4001, 0xffff8003, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0c002, 0xffff8003, 0xffffff81 },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018040, 0x0000007f, 0xffff8003 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fff7fff, 0xffffffff, 0x00000000 },
{ 0x00000000, 0x00000000, 0x00000000, 0x2aaa1555, 0x00007fff, 0x55555555 },
{ 0x00000000, 0x00000000, 0x00000000, 0xbffe7fc1, 0xffffff82, 0x00007ffe },
{ 0x00000000, 0x00000000, 0x00000000, 0x403e7fff, 0x7ffffffe, 0x0000007e },
{ 0x00000000, 0x00000000, 0x00000000, 0x80007fff, 0xffffffff, 0x00000002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x7fc0bfff, 0x00007ffd, 0xffffff80 },
{ 0x00000000, 0x00000000, 0x00000000, 0x6666999b, 0x00000002, 0xcccccccc },
{ 0x00000000, 0x00000000, 0x00000000, 0xfffeffc1, 0xffffff81, 0xfffffffd },
{ 0x00000000, 0x00000000, 0x00000000, 0x0000003e, 0x0000007d, 0x00000001 },
{ 0x00000000, 0x00000000, 0x00000000, 0xffc0ffc1, 0xffffff82, 0xffffff82 },
{ 0x00000000, 0x00000000, 0x00000000, 0x40018010, 0x00000020, 0xffff8002 },
{ 0x00000000, 0x00000000, 0x00000000, 0x803e7fc0, 0xffffff81, 0x0000007d },
{ 0x00000000, 0x00000000, 0x00000000, 0x6aaa5555, 0x7fffffff, 0x55555555 },
};
const TestResult kReferenceUhasx[] = {
{
ARRAY_SIZE(kOutputs_Uhasx_Condition_eq_r0_r0_r0),
kOutputs_Uhasx_Condition_eq_r0_r0_r0,
},
{
ARRAY_SIZE(kOutputs_Uhasx_Condition_ne_r0_r0_r0),
kOutputs_Uhasx_Condition_ne_r0_r0_r0,
},
{
ARRAY_SIZE(kOutputs_Uhasx_Condition_cs_r0_r0_r0),
kOutputs_Uhasx_Condition_cs_r0_r0_r0,
},
{
ARRAY_SIZE(kOutputs_Uhasx_Condition_cc_r0_r0_r0),
kOutputs_Uhasx_Condition_cc_r0_r0_r0,
},
{
ARRAY_SIZE(kOutputs_Uhasx_Condition_mi_r0_r0_r0),
kOutputs_Uhasx_Condition_mi_r0_r0_r0,
},
{
ARRAY_SIZE(kOutputs_Uhasx_Condition_pl_r0_r0_r0),
kOutputs_Uhasx_Condition_pl_r0_r0_r0,
},
{
ARRAY_SIZE(kOutputs_Uhasx_Condition_vs_r0_r0_r0),
kOutputs_Uhasx_Condition_vs_r0_r0_r0,
},
{
ARRAY_SIZE(kOutputs_Uhasx_Condition_vc_r0_r0_r0),
kOutputs_Uhasx_Condition_vc_r0_r0_r0,
},
{
ARRAY_SIZE(kOutputs_Uhasx_Condition_hi_r0_r0_r0),
kOutputs_Uhasx_Condition_hi_r0_r0_r0,
},
{
ARRAY_SIZE(kOutputs_Uhasx_Condition_ls_r0_r0_r0),
kOutputs_Uhasx_Condition_ls_r0_r0_r0,
},
{
ARRAY_SIZE(kOutputs_Uhasx_Condition_ge_r0_r0_r0),
kOutputs_Uhasx_Condition_ge_r0_r0_r0,
},
{
ARRAY_SIZE(kOutputs_Uhasx_Condition_lt_r0_r0_r0),
kOutputs_Uhasx_Condition_lt_r0_r0_r0,
},
{
ARRAY_SIZE(kOutputs_Uhasx_Condition_gt_r0_r0_r0),
kOutputs_Uhasx_Condition_gt_r0_r0_r0,
},
{
ARRAY_SIZE(kOutputs_Uhasx_Condition_le_r0_r0_r0),
kOutputs_Uhasx_Condition_le_r0_r0_r0,
},
{
ARRAY_SIZE(kOutputs_Uhasx_Condition_al_r0_r0_r0),
kOutputs_Uhasx_Condition_al_r0_r0_r0,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRnIsRm_al_r0_r0_r0),
kOutputs_Uhasx_RdIsRnIsRm_al_r0_r0_r0,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRnIsRm_al_r1_r1_r1),
kOutputs_Uhasx_RdIsRnIsRm_al_r1_r1_r1,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRnIsRm_al_r2_r2_r2),
kOutputs_Uhasx_RdIsRnIsRm_al_r2_r2_r2,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRnIsRm_al_r3_r3_r3),
kOutputs_Uhasx_RdIsRnIsRm_al_r3_r3_r3,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRnIsRm_al_r4_r4_r4),
kOutputs_Uhasx_RdIsRnIsRm_al_r4_r4_r4,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRnIsRm_al_r5_r5_r5),
kOutputs_Uhasx_RdIsRnIsRm_al_r5_r5_r5,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRnIsRm_al_r6_r6_r6),
kOutputs_Uhasx_RdIsRnIsRm_al_r6_r6_r6,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRnIsRm_al_r7_r7_r7),
kOutputs_Uhasx_RdIsRnIsRm_al_r7_r7_r7,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRnIsRm_al_r8_r8_r8),
kOutputs_Uhasx_RdIsRnIsRm_al_r8_r8_r8,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRnIsRm_al_r9_r9_r9),
kOutputs_Uhasx_RdIsRnIsRm_al_r9_r9_r9,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRnIsRm_al_r10_r10_r10),
kOutputs_Uhasx_RdIsRnIsRm_al_r10_r10_r10,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRnIsRm_al_r11_r11_r11),
kOutputs_Uhasx_RdIsRnIsRm_al_r11_r11_r11,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRnIsRm_al_r12_r12_r12),
kOutputs_Uhasx_RdIsRnIsRm_al_r12_r12_r12,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRnIsRm_al_r14_r14_r14),
kOutputs_Uhasx_RdIsRnIsRm_al_r14_r14_r14,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRn_al_r14_r14_r3),
kOutputs_Uhasx_RdIsRn_al_r14_r14_r3,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRn_al_r1_r1_r2),
kOutputs_Uhasx_RdIsRn_al_r1_r1_r2,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRn_al_r12_r12_r7),
kOutputs_Uhasx_RdIsRn_al_r12_r12_r7,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRn_al_r10_r10_r6),
kOutputs_Uhasx_RdIsRn_al_r10_r10_r6,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRn_al_r4_r4_r9),
kOutputs_Uhasx_RdIsRn_al_r4_r4_r9,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRn_al_r5_r5_r6),
kOutputs_Uhasx_RdIsRn_al_r5_r5_r6,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRn_al_r2_r2_r4),
kOutputs_Uhasx_RdIsRn_al_r2_r2_r4,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRn_al_r7_r7_r11),
kOutputs_Uhasx_RdIsRn_al_r7_r7_r11,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRn_al_r7_r7_r12),
kOutputs_Uhasx_RdIsRn_al_r7_r7_r12,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRn_al_r2_r2_r10),
kOutputs_Uhasx_RdIsRn_al_r2_r2_r10,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRm_al_r1_r12_r1),
kOutputs_Uhasx_RdIsRm_al_r1_r12_r1,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRm_al_r4_r3_r4),
kOutputs_Uhasx_RdIsRm_al_r4_r3_r4,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRm_al_r0_r2_r0),
kOutputs_Uhasx_RdIsRm_al_r0_r2_r0,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRm_al_r10_r4_r10),
kOutputs_Uhasx_RdIsRm_al_r10_r4_r10,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRm_al_r4_r8_r4),
kOutputs_Uhasx_RdIsRm_al_r4_r8_r4,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRm_al_r4_r1_r4),
kOutputs_Uhasx_RdIsRm_al_r4_r1_r4,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRm_al_r8_r11_r8),
kOutputs_Uhasx_RdIsRm_al_r8_r11_r8,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRm_al_r1_r10_r1),
kOutputs_Uhasx_RdIsRm_al_r1_r10_r1,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRm_al_r2_r0_r2),
kOutputs_Uhasx_RdIsRm_al_r2_r0_r2,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsRm_al_r6_r7_r6),
kOutputs_Uhasx_RdIsRm_al_r6_r7_r6,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RnIsRm_al_r1_r12_r12),
kOutputs_Uhasx_RnIsRm_al_r1_r12_r12,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RnIsRm_al_r6_r9_r9),
kOutputs_Uhasx_RnIsRm_al_r6_r9_r9,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RnIsRm_al_r12_r7_r7),
kOutputs_Uhasx_RnIsRm_al_r12_r7_r7,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RnIsRm_al_r11_r8_r8),
kOutputs_Uhasx_RnIsRm_al_r11_r8_r8,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RnIsRm_al_r14_r0_r0),
kOutputs_Uhasx_RnIsRm_al_r14_r0_r0,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RnIsRm_al_r8_r4_r4),
kOutputs_Uhasx_RnIsRm_al_r8_r4_r4,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RnIsRm_al_r0_r8_r8),
kOutputs_Uhasx_RnIsRm_al_r0_r8_r8,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RnIsRm_al_r5_r3_r3),
kOutputs_Uhasx_RnIsRm_al_r5_r3_r3,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RnIsRm_al_r8_r5_r5),
kOutputs_Uhasx_RnIsRm_al_r8_r5_r5,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RnIsRm_al_r5_r10_r10),
kOutputs_Uhasx_RnIsRm_al_r5_r10_r10,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r14_r3_r4),
kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r14_r3_r4,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r3_r11_r1),
kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r3_r11_r1,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r11_r2_r6),
kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r11_r2_r6,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r14_r0_r5),
kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r14_r0_r5,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r11_r6_r12),
kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r11_r6_r12,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r10_r8_r4),
kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r10_r8_r4,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r4_r3_r1),
kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r4_r3_r1,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r12_r11_r14),
kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r12_r11_r14,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r9_r4_r11),
kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r9_r4_r11,
},
{
ARRAY_SIZE(kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r14_r4_r6),
kOutputs_Uhasx_RdIsNotRnIsNotRm_al_r14_r4_r6,
},
};
#endif // VIXL_SIMULATOR_COND_RD_RN_RM_T32_UHASX_H_
|
<filename>src/lib/objects.ts
import {
CommandClasses,
Duration,
enumValuesToMetadataStates,
NODE_ID_BROADCAST,
SecurityClass,
ValueID,
ValueMetadata,
} from "@zwave-js/core";
import { entries } from "alcalzone-shared/objects";
import { padStart } from "alcalzone-shared/strings";
import { isArray, isObject } from "alcalzone-shared/typeguards";
import { ControllerStatistics, RFRegion } from "zwave-js";
import type { ZWaveNotificationCallbackArgs_NotificationCC } from "zwave-js/CommandClass";
import {
NodeStatistics,
NodeStatus,
VirtualNode,
VirtualValueID,
ZWaveNode,
} from "zwave-js/Node";
import type {
TranslatedValueID,
ValueMetadataNumeric,
ValueType,
ZWaveNodeMetadataUpdatedArgs,
ZWaveNodeValueAddedArgs,
ZWaveNodeValueNotificationArgs,
ZWaveNodeValueRemovedArgs,
ZWaveNodeValueUpdatedArgs,
} from "zwave-js/Values";
import { Global as _ } from "./global";
import { buffer2hex, computeDeviceId, getErrorMessage } from "./shared";
type ZWaveNodeArgs =
| ZWaveNodeValueAddedArgs
| ZWaveNodeValueUpdatedArgs
| ZWaveNodeValueRemovedArgs
| ZWaveNodeValueNotificationArgs
| ZWaveNodeMetadataUpdatedArgs;
export function nodeStatusToStatusState(status: NodeStatus): string {
switch (status) {
case NodeStatus.Awake:
return "awake";
case NodeStatus.Asleep:
return "asleep";
case NodeStatus.Alive:
return "alive";
case NodeStatus.Dead:
return "dead";
case NodeStatus.Unknown:
return "unknown";
}
}
function safeValue(value: unknown): ioBroker.StateValue {
if (value == undefined) return null;
if (Buffer.isBuffer(value)) {
// We cannot store Buffers in ioBroker, encode them as HEX
return buffer2hex(value);
} else if (isArray(value) || isObject(value)) {
// ioBroker requires all arrays and objects to be stringified
return JSON.stringify(value);
}
return value as any;
}
const isCamelCasedSafeNameRegex = /^(?!.*[\-_]$)[a-z]([a-zA-Z0-9\-_]+)$/;
export const DEVICE_ID_BROADCAST = "Broadcast";
/** Converts a device label to a valid filename */
export function nameToStateId(label: string): string {
if (isCamelCasedSafeNameRegex.test(label)) return label;
let safeName = label;
// Since these rules influence each other, we need to do multiple passes
while (true) {
let replaced = safeName;
// Remove trailing, leading and multiple whitespace
replaced = replaced.trim();
replaced = replaced.replace(/\s+/g, " ");
// Replace all unsafe chars
replaced = replaced.replace(/[^a-zA-Z0-9\-_ ]+/g, "_");
// Replace spaces surrounded by unsafe chars with a space
replaced = replaced.replace(/_\s/g, " ");
replaced = replaced.replace(/\s_/g, " ");
// Remove trailing and leading dashes and underscores
replaced = replaced.replace(/^_\s*/, "");
replaced = replaced.replace(/\s*_$/, "");
// If nothing changed, we're done
if (safeName === replaced) break;
// Otherwise remember the intermediate result for the next pass
safeName = replaced;
}
return camelCase(safeName);
}
function camelCase(str: string): string {
return str
.split(" ")
.map((substr, i) =>
i === 0
? substr.toLowerCase()
: substr[0].toUpperCase() + substr.slice(1).toLowerCase(),
)
.join("");
}
export function ccNameToChannelIdFragment(ccName: string): string {
return ccName.replace(/[\s]+/g, "_");
}
function computeChannelIdInternal(prefix: string, ccName: string): string {
return `${prefix}.${ccNameToChannelIdFragment(ccName)}`;
}
export function computeChannelId(nodeId: number, ccName: string): string {
return computeChannelIdInternal(computeDeviceId(nodeId), ccName);
}
export function computeVirtualChannelId(
prefix: string,
ccName: string,
): string {
return computeChannelIdInternal(prefix, ccName);
}
function computeStateIdInternal(
prefix: string,
args: TranslatedValueID,
): string {
return [
prefix,
ccNameToChannelIdFragment(args.commandClassName),
[
args.propertyName?.trim() && nameToStateId(args.propertyName),
args.endpoint && padStart(args.endpoint.toString(), 3, "0"),
args.propertyKeyName?.trim() && nameToStateId(args.propertyKeyName),
]
.filter((s) => !!s)
.join("_"),
].join(".");
}
export function computeStateId(
nodeId: number,
args: TranslatedValueID,
): string {
return computeStateIdInternal(computeDeviceId(nodeId), args);
}
export function computeVirtualStateId(
prefix: string,
args: TranslatedValueID,
): string {
return computeStateIdInternal(prefix, args);
}
const secClassDefinitions = [
[SecurityClass.S2_AccessControl, CommandClasses["Security 2"]],
[SecurityClass.S2_Authenticated, CommandClasses["Security 2"]],
[SecurityClass.S2_Unauthenticated, CommandClasses["Security 2"]],
[SecurityClass.S0_Legacy, CommandClasses["Security"]],
] as const;
function securityClassesToRecord(node: ZWaveNode): Record<string, boolean> {
const ret = {} as Record<string, boolean>;
for (const [secClass, cc] of secClassDefinitions) {
if (!node.supportsCC(cc)) continue;
ret[SecurityClass[secClass]] = node.hasSecurityClass(secClass) === true;
}
return ret;
}
function nodeToNative(node: ZWaveNode): Record<string, any> {
return {
id: node.id,
isControllerNode: node.isControllerNode(),
manufacturerId: node.manufacturerId,
productType: node.productType,
productId: node.productId,
...(node.deviceClass && {
type: {
basic: node.deviceClass.basic.label,
generic: node.deviceClass.generic.label,
...(node.deviceClass.specific.key !== 0x00
? // Only use the the specific device class if it is not "Unused"
{ specific: node.deviceClass.specific.label }
: {}),
},
}),
// endpoints: node.getEndpointCount(),
endpointIndizes: node.getEndpointIndizes(),
securityClasses: securityClassesToRecord(node),
secure: node.isSecure,
supportsFirmwareUpdate: node.supportsCC(
CommandClasses["Firmware Update Meta Data"],
),
};
}
function nodeToCommon(
node: ZWaveNode,
): ioBroker.DeviceCommon & { name: string | undefined } {
return {
name: node.deviceConfig
? `${node.deviceConfig.manufacturer} ${node.deviceConfig.label}`
: `Node ${padStart(node.id.toString(), 3, "0")}`,
};
}
const fallbackNodeNameRegex = /^Node \d+$/;
export async function extendNode(node: ZWaveNode): Promise<void> {
const deviceId = computeDeviceId(node.id);
const originalObject = _.adapter.oObjects[
`${_.adapter.namespace}.${deviceId}`
] as ioBroker.DeviceObject | undefined;
// update the object while preserving the existing common properties
const nodeCommon = nodeToCommon(node);
// Overwrite empty names and placeholder/fallback names
let newName = originalObject?.common.name as string | undefined;
newName =
newName && !fallbackNodeNameRegex.test(newName)
? newName
: nodeCommon.name;
const desiredObject: ioBroker.SettableObject = {
type: "device",
common: {
...nodeCommon,
...originalObject?.common,
name: newName,
},
native: nodeToNative(node),
};
await setOrExtendObject(deviceId, desiredObject, originalObject);
}
export async function ensureBroadcastNode(): Promise<void> {
const deviceId = DEVICE_ID_BROADCAST;
const originalObject = _.adapter.oObjects[
`${_.adapter.namespace}.${deviceId}`
] as ioBroker.DeviceObject | undefined;
const desiredObject: ioBroker.SettableObject = {
type: "device",
common: {
name: originalObject?.common.name || "Broadcast",
},
native: {
broadcast: true,
},
};
await setOrExtendObject(deviceId, desiredObject, originalObject);
}
/** Removed all objects that belong to a node */
export async function removeNode(nodeId: number): Promise<void> {
const deviceId = `${_.adapter.namespace}.${computeDeviceId(nodeId)}`;
try {
await _.adapter.delForeignObjectAsync(deviceId);
} catch (e) {
/* ok */
}
// Find all channel and state objects so we can delete them
const existingObjs = {
...(await _.$$(`${deviceId}.*`, { type: "channel" })),
...(await _.$$(`${deviceId}.*`, { type: "state" })),
};
for (const [id, obj] of entries(existingObjs)) {
if (obj.type === "state") {
try {
await _.adapter.delForeignStateAsync(id);
} catch (e) {
/* ok */
}
}
try {
await _.adapter.delForeignObjectAsync(id);
} catch (e) {
/* ok */
}
}
}
async function extendCCInternal(
node: ZWaveNode | VirtualNode,
channelId: string,
cc: CommandClasses,
ccName: string,
): Promise<void> {
const common = {
name: ccName,
};
const native = {
cc,
version: node.getCCVersion(cc),
};
const originalObject =
_.adapter.oObjects[`${_.adapter.namespace}.${channelId}`];
if (originalObject == undefined) {
await _.adapter.setObjectAsync(channelId, {
type: "channel",
common,
native,
});
} else if (
JSON.stringify(common) !== JSON.stringify(originalObject.common) ||
JSON.stringify(native) !== JSON.stringify(originalObject.native)
) {
await _.adapter.extendObjectAsync(channelId, {
common,
native,
});
}
}
export async function extendCC(
node: ZWaveNode,
cc: CommandClasses,
ccName: string,
): Promise<void> {
await extendCCInternal(node, computeChannelId(node.id, ccName), cc, ccName);
}
export async function extendVirtualNodeCC(
node: VirtualNode,
deviceId: string,
cc: CommandClasses,
ccName: string,
): Promise<void> {
await extendCCInternal(
node,
computeVirtualChannelId(deviceId, ccName),
cc,
ccName,
);
}
export async function extendValue(
node: ZWaveNode,
args: ZWaveNodeValueAddedArgs | ZWaveNodeValueUpdatedArgs,
fromCache: boolean = false,
): Promise<void> {
const stateId = computeStateId(node.id, args);
await extendMetadata(node, args);
try {
const state: ioBroker.SettableState = {
val: safeValue(args.newValue),
ack: true,
};
// TODO: remove this after JS-Controller 3.2 is stable
if (fromCache) {
// Set cached values with a lower quality (substitute value from device or instance), so scripts can ignore the update
(state as any).q = 0x40;
}
if (fromCache) {
// Avoid queueing too many events when reading from cache
await _.adapter.setStateChangedAsync(stateId, state);
} else {
await _.adapter.setStateAsync(stateId, state);
}
} catch (e) {
_.adapter.log.error(
`Cannot set state "${stateId}" in ioBroker: ${getErrorMessage(e)}`,
);
}
}
export async function extendNotificationValue(
node: ZWaveNode,
args: ZWaveNodeValueNotificationArgs,
): Promise<void> {
const stateId = computeStateId(node.id, args);
await extendMetadata(node, args);
try {
const state: ioBroker.SettableState = {
val: safeValue(args.value),
ack: true,
expire: 1,
};
await _.adapter.setStateAsync(stateId, state);
} catch (e) {
_.adapter.log.error(
`Cannot set state "${stateId}" in ioBroker: ${getErrorMessage(e)}`,
);
}
}
export async function extendMetadata(
node: ZWaveNode,
args: ZWaveNodeArgs,
): Promise<void> {
const stateId = computeStateId(node.id, args);
const metadata =
("metadata" in args && args.metadata) || node.getValueMetadata(args);
await extendMetadataInternal(stateId, metadata, args, { nodeId: node.id });
}
export async function extendVirtualMetadata(
node: VirtualNode,
deviceId: string,
{ metadata, ccVersion, ...valueId }: VirtualValueID,
): Promise<void> {
const stateId = computeVirtualStateId(deviceId, valueId);
await extendMetadataInternal(
stateId,
metadata,
valueId,
node.id === NODE_ID_BROADCAST
? {
broadcast: true,
}
: {
nodeIds: node.physicalNodes.map((n) => n.id),
},
);
}
async function extendMetadataInternal(
stateId: string,
metadata: ValueMetadata,
valueId: ValueID,
nativePart: Record<string, any> = {},
) {
const stateType = valueTypeToIOBrokerType(metadata.type);
// TODO: Try to detect more specific roles depending on the CC type
const originalObject =
_.adapter.oObjects[`${_.adapter.namespace}.${stateId}`];
const newStateName =
_.adapter.config.preserveStateNames && originalObject?.common.name
? // Keep the original name if one exists and it should be preserved
originalObject.common.name
: // Otherwise try to construct a new name from the metadata
metadata.label
? `${metadata.label}${
valueId.endpoint ? ` (Endpoint ${valueId.endpoint})` : ""
}`
: // and fall back to the state ID if that is missing
stateId;
// Keep the defined role if the object already exists. Our roles are not good enough for visualizations yet
const stateRole =
originalObject?.common.role || metadataToStateRole(stateType, metadata);
const objectDefinition: ioBroker.SettableObjectWorker<ioBroker.StateObject> =
{
type: "state",
common: {
role: stateRole,
read: metadata.readable,
write: metadata.writeable,
name: newStateName,
desc: metadata.description,
type: stateType,
min: (metadata as ValueMetadataNumeric).min,
max: (metadata as ValueMetadataNumeric).max,
def: (metadata as ValueMetadataNumeric).default,
unit: (metadata as ValueMetadataNumeric).unit,
states: (metadata as any).states,
},
native: {
...nativePart,
valueId: {
commandClass: valueId.commandClass,
endpoint: valueId.endpoint,
property: valueId.property,
propertyKey: valueId.propertyKey,
},
steps: (metadata as ValueMetadataNumeric).steps,
} as any,
};
await setOrExtendObject(stateId, objectDefinition, originalObject);
}
export async function removeValue(
nodeId: number,
args: ZWaveNodeValueRemovedArgs,
): Promise<void> {
const stateId = computeStateId(nodeId, args);
try {
await _.adapter.delObjectAsync(stateId);
} catch {
// ignore, the object does not exist
}
}
function valueTypeToIOBrokerType(
valueType: ValueType,
): ioBroker.StateCommon["type"] {
switch (valueType) {
case "number":
case "boolean":
case "string":
return valueType;
case "any":
return "mixed";
default:
if (valueType.endsWith("[]")) return "array";
}
return "mixed";
}
function metadataToStateRole(
stateType: ioBroker.StateCommon["type"],
meta: ValueMetadata,
): ioBroker.StateCommon["role"] {
if (stateType === "number") {
return meta.writeable ? "level" : "value";
} else if (stateType === "boolean") {
return meta.readable && !meta.writeable ? "indicator" : "switch";
}
return "state";
}
export async function setNodeStatus(
nodeId: number,
status: string,
): Promise<void> {
const stateId = `${computeDeviceId(nodeId)}.status`;
await _.adapter.setObjectNotExistsAsync(stateId, {
type: "state",
common: {
name: "Node status",
role: "indicator",
type: "string",
read: true,
write: false,
},
native: {},
});
await _.adapter.setStateAsync(stateId, status, true);
}
/** Updates the ready state for the given node */
export async function setNodeReady(
nodeId: number,
ready: boolean,
): Promise<void> {
const stateId = `${computeDeviceId(nodeId)}.ready`;
await _.adapter.setObjectNotExistsAsync(stateId, {
type: "state",
common: {
name: "Ready to use",
role: "indicator",
type: "boolean",
read: true,
write: false,
def: false,
},
native: {},
});
await _.adapter.setStateAsync(stateId, ready, true);
}
export async function setControllerStatistics(
statistics: ControllerStatistics | null,
): Promise<void> {
const stateId = `info.statistics`;
await _.adapter.setObjectNotExistsAsync(stateId, {
type: "state",
common: {
name: "Communication statistics",
role: "indicator",
type: "object",
read: true,
write: false,
},
native: {},
});
await _.adapter.setStateAsync(
stateId,
statistics ? JSON.stringify(statistics) : null,
true,
);
}
export async function setNodeStatistics(
nodeId: number,
statistics: NodeStatistics | null,
): Promise<void> {
const channelId = `${computeDeviceId(nodeId)}.info`;
const stateId = `${channelId}.statistics`;
await _.adapter.setObjectNotExistsAsync(channelId, {
type: "channel",
common: {
name: "Information",
},
native: {},
});
await _.adapter.setObjectNotExistsAsync(stateId, {
type: "state",
common: {
name: "Transmission statistics",
role: "indicator",
type: "object",
read: true,
write: false,
},
native: {},
});
await _.adapter.setStateAsync(
stateId,
statistics ? JSON.stringify(statistics) : null,
true,
);
}
export function computeNotificationId(
nodeId: number,
notificationLabel: string,
eventLabel: string,
property?: string,
): string {
return [
computeDeviceId(nodeId),
ccNameToChannelIdFragment("Notification"),
[
nameToStateId(notificationLabel),
nameToStateId(eventLabel),
property && nameToStateId(property),
]
.filter((s) => !!s)
.join("_"),
].join(".");
}
async function setOrExtendObject(
id: string,
definition: ioBroker.SettableObject,
original: ioBroker.Object | undefined,
) {
if (original == undefined) {
await _.adapter.setObjectAsync(id, definition);
} else if (
JSON.stringify(definition.common) !== JSON.stringify(original.common) ||
JSON.stringify(definition.native) !== JSON.stringify(original.native)
) {
await _.adapter.extendObjectAsync(id, definition);
}
}
async function setNotificationValue(
nodeId: number,
notificationLabel: string,
eventLabel: string,
property: string | undefined,
value: boolean | number | string | Duration = true,
): Promise<void> {
const stateId = computeNotificationId(
nodeId,
notificationLabel,
eventLabel,
property,
);
const originalObject =
_.adapter.oObjects[`${_.adapter.namespace}.${stateId}`];
const newStateName =
_.adapter.config.preserveStateNames && originalObject?.common.name
? // Keep the original name if one exists and it should be preserved
originalObject.common.name
: // Otherwise use the given label (and property name)
`${notificationLabel}: ${eventLabel}${
!!property ? ` (${property})` : ""
}`;
const objectDefinition: ioBroker.SettableObjectWorker<ioBroker.StateObject> =
{
type: "state",
common:
typeof value === "boolean"
? {
role: "indicator",
read: true,
write: false,
name: newStateName,
type: "boolean",
}
: typeof value === "number"
? {
role: "value",
read: true,
write: false,
name: newStateName,
type: "number",
}
: value instanceof Duration
? {
role: "value.interval",
read: true,
write: false,
name: newStateName,
type: "number",
unit: "seconds",
}
: {
role: "text",
read: true,
write: false,
name: newStateName,
type: "string",
},
native: {
nodeId: nodeId,
notificationEvent: true,
},
};
// Translate the value into something useful
let val;
if (value instanceof Duration) {
val = value.toMilliseconds();
if (val == undefined) val = "unknown";
else val /= 1000;
} else {
val = value;
}
await setOrExtendObject(stateId, objectDefinition, originalObject);
await _.adapter.setStateAsync(
stateId,
{
val,
expire: _.adapter.config.notificationEventValidity ?? 1000,
},
true,
);
}
/** Translates a notification for the Notification CC into states */
export async function extendNotification_NotificationCC(
node: ZWaveNode,
args: ZWaveNotificationCallbackArgs_NotificationCC,
): Promise<void> {
const { label, eventLabel, parameters } = args;
if (parameters == undefined) {
await setNotificationValue(node.id, label, eventLabel, undefined, true);
} else if (Buffer.isBuffer(parameters)) {
await setNotificationValue(
node.id,
label,
eventLabel,
undefined,
parameters.toString("hex"),
);
} else if (parameters instanceof Duration) {
await setNotificationValue(
node.id,
label,
eventLabel,
undefined,
parameters,
);
} else {
for (const [key, value] of Object.entries(parameters)) {
await setNotificationValue(node.id, label, eventLabel, key, value);
}
}
}
export async function setRFRegionState(
rfRegion: RFRegion | undefined,
): Promise<void> {
const stateId = `info.rfRegion`;
await _.adapter.setObjectNotExistsAsync(stateId, {
type: "state",
common: {
name: "RF Region",
role: "info.region",
type: "number",
read: true,
write: false,
states: enumValuesToMetadataStates(RFRegion),
},
native: {},
});
await _.adapter.setStateAsync(stateId, rfRegion ?? null, true);
}
|
IB degradation is necessary for skeletal muscle atrophy associated with contractile claudication. The arterial blockage in patients with peripheral arterial disease (PAD) restricts oxygen delivery to skeletal muscles distal to the blockage. In advanced-stage PAD patients, this creates a chronic ischemic condition in the affected muscles. However, in the majority of PAD patients, the muscles distal to the blockage only become ischemic during physical activity when the oxygen demands of these muscles are increased. Therefore, the skeletal muscle of most PAD patients undergoes repeated cycles of low-grade ischemia-reperfusion each time the patient is active and then rests. This has been speculated to contribute to the biochemical and morphological myopathies observed in PAD patients. The current study aimed to determine, using a rodent model, whether repeated hind limb muscle contractions during blood flow restriction to the hind limb muscles increases NF-B activity. We, subsequently, determined whether an increase in NF-B activity during this condition is required for the increased transcription of specific atrophy-related genes and muscle fiber atrophy. We found that hind limb muscle contractions during blood flow restriction to the limb increased NF-B activity, the transcription of specific atrophy-related genes, and caused a 35% decrease in muscle fiber cross-sectional area. We further found that inhibition of NF-B activity, via gene transfer of a dominant-negative inhibitor of B (d.n. IB), prevented the increase in atrophy gene expression and muscle fiber atrophy. These findings demonstrate that when blood flow to skeletal muscle is restricted, repeated cycles of muscle contraction can cause muscle fiber atrophy that requires NF-B-IB signaling. |
string = input()
initial = string[:1]
therest = string[1:]
print(initial.title() + therest) |
This week’s church van is a third generation Dodge Ram Van “EXTREME” edition. This isn’t a church van exactly, but it definitely performs church van-like activities.
Third-generation Ram Vans are one of the quintessential vans for hauling large amounts of people or things when you are on a budget. They are almost disturbingly cheap and can be found for next to nothing on the internet or just the side of the road. I’m not entirely convinced that Dodge actually sold any of these vans new; the only way to buy one might have been through eBay for $500.
This specific one is a bit of a mystery, as I have no idea what “EXTREME FAMILY OUTREACH” is supposed to mean; I doubt they take kids sky-diving or snowboarding after school, though. The Dodge is also decked out with a Scooby-Doo picture on the back and eyes on the hood.
Similarly perplexing is the Mitsubishi Lancer wagon that’s forever parked next to these vans. I’ve driven past this place for years and it has never moved. Maybe the “EXTREME” pertains to some off-road rallying? |
export { default } from './notifications.view';
|
<filename>variable/variable.cpp
// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2021 Scipp contributors (https://github.com/scipp)
/// @file
/// @author <NAME>
#include <units/units.hpp>
#include "scipp/variable/variable.h"
#include "scipp/core/dtype.h"
#include "scipp/variable/arithmetic.h"
#include "scipp/variable/creation.h"
#include "scipp/variable/except.h"
#include "scipp/variable/shape.h"
#include "scipp/variable/variable_concept.h"
namespace scipp::variable {
/// Construct from parent with same dtype, unit, and hasVariances but new dims.
///
/// In the case of bucket variables the buffer size is set to zero.
Variable::Variable(const Variable &parent, const Dimensions &dims)
: m_dims(dims), m_strides(dims),
m_object(parent.data().makeDefaultFromParent(dims.volume())) {}
// TODO there is no size check here!
Variable::Variable(const Dimensions &dims, VariableConceptHandle data)
: m_dims(dims), m_strides(dims), m_object(std::move(data)) {}
Variable::Variable(const llnl::units::precise_measurement &m)
: Variable(m.value() * units::Unit(m.units())) {}
void Variable::setDataHandle(VariableConceptHandle object) {
if (object->size() != m_object->size())
throw except::DimensionError("Cannot replace by model of different size.");
m_object = object;
}
const Dimensions &Variable::dims() const {
if (!is_valid())
throw std::runtime_error("invalid variable");
return m_dims;
}
DType Variable::dtype() const { return data().dtype(); }
bool Variable::hasVariances() const { return data().hasVariances(); }
void Variable::expectCanSetUnit(const units::Unit &unit) const {
if (this->unit() != unit && is_slice())
throw except::UnitError("Partial view on data of variable cannot be used "
"to change the unit.");
}
const units::Unit &Variable::unit() const { return m_object->unit(); }
void Variable::setUnit(const units::Unit &unit) {
expectWritable();
expectCanSetUnit(unit);
m_object->setUnit(unit);
}
bool Variable::operator==(const Variable &other) const {
if (is_same(other))
return true;
if (!is_valid() || !other.is_valid())
return is_valid() == other.is_valid();
// Note: Not comparing strides
if (unit() != other.unit())
return false;
if (dims() != other.dims())
return false;
if (dtype() != other.dtype())
return false;
if (hasVariances() != other.hasVariances())
return false;
if (dims().volume() == 0 && dims() == other.dims())
return true;
return dims() == other.dims() && data().equals(*this, other);
}
bool Variable::operator!=(const Variable &other) const {
return !(*this == other);
}
const VariableConcept &Variable::data() const & { return *m_object; }
VariableConcept &Variable::data() & {
expectWritable();
return *m_object;
}
const VariableConceptHandle &Variable::data_handle() const { return m_object; }
scipp::span<const scipp::index> Variable::strides() const {
return scipp::span<const scipp::index>(&*m_strides.begin(),
&*m_strides.begin() + dims().ndim());
}
scipp::index Variable::offset() const { return m_offset; }
core::ElementArrayViewParams Variable::array_params() const noexcept {
return {m_offset, dims(), m_strides, {}};
}
Variable Variable::slice(const Slice params) const {
core::expect::validSlice(dims(), params);
Variable out(*this);
const auto dim = params.dim();
const auto begin = params.begin();
const auto end = params.end();
const auto index = out.m_dims.index(dim);
out.m_offset += begin * m_strides[index];
if (end == -1) {
out.m_strides.erase(index);
out.m_dims.erase(dim);
} else
out.m_dims.resize(dim, end - begin);
return out;
}
void Variable::validateSlice(const Slice &s, const Variable &data) const {
core::expect::validSlice(this->dims(), s);
if (data.hasVariances() != this->hasVariances()) {
auto variances_message = [](const auto &variable) {
return "does" + std::string(variable.hasVariances() ? "" : " NOT") +
" have variances.";
};
throw except::VariancesError("Invalid slice operation. Slice " +
variances_message(data) + "Variable " +
variances_message(*this));
}
if (data.unit() != this->unit())
throw except::UnitError(
"Invalid slice operation. Slice has unit: " + to_string(data.unit()) +
" Variable has unit: " + to_string(this->unit()));
if (data.dtype() != this->dtype())
throw except::TypeError("Invalid slice operation. Slice has dtype " +
to_string(data.dtype()) + ". Variable has dtype " +
to_string(this->dtype()));
}
Variable &Variable::setSlice(const Slice params, const Variable &data) {
validateSlice(params, data);
copy(data, slice(params));
return *this;
}
Variable Variable::broadcast(const Dimensions &target) const {
expect::includes(target, dims());
auto out = target.volume() == dims().volume() ? *this : as_const();
out.m_dims = target;
scipp::index i = 0;
for (const auto &d : target.labels())
out.m_strides[i++] = dims().contains(d) ? m_strides[dims().index(d)] : 0;
return out;
}
Variable Variable::fold(const Dim dim, const Dimensions &target) const {
auto out(*this);
out.m_dims = core::fold(dims(), dim, target);
const Strides substrides(target);
scipp::index i_out = 0;
for (scipp::index i_in = 0; i_in < dims().ndim(); ++i_in) {
if (dims().label(i_in) == dim)
for (scipp::index i_target = 0; i_target < target.ndim(); ++i_target)
out.m_strides[i_out++] = m_strides[i_in] * substrides[i_target];
else
out.m_strides[i_out++] = m_strides[i_in];
}
return out;
}
Variable Variable::transpose(const std::vector<Dim> &order) const {
auto transposed(*this);
transposed.m_strides = core::transpose(m_strides, dims(), order);
transposed.m_dims = core::transpose(dims(), order);
return transposed;
}
void Variable::rename(const Dim from, const Dim to) {
m_dims.replace_key(from, to);
}
bool Variable::is_valid() const noexcept { return m_object.operator bool(); }
bool Variable::is_slice() const {
// TODO Is this condition sufficient?
return m_offset != 0 || m_dims.volume() != data().size();
}
bool Variable::is_readonly() const noexcept { return m_readonly; }
bool Variable::is_same(const Variable &other) const noexcept {
return std::tie(m_dims, m_strides, m_offset, m_object) ==
std::tie(other.m_dims, other.m_strides, other.m_offset,
other.m_object);
}
void Variable::setVariances(const Variable &v) {
expectWritable();
if (is_slice())
throw except::VariancesError(
"Cannot add variances via sliced view of Variable.");
if (v.is_valid()) {
core::expect::equals(unit(), v.unit());
core::expect::equals(dims(), v.dims());
}
data().setVariances(v);
}
namespace detail {
void throw_keyword_arg_constructor_bad_dtype(const DType dtype) {
throw except::TypeError("Can't create the Variable with type " +
to_string(dtype) +
" with such values and/or variances.");
}
void expect0D(const Dimensions &dims) {
core::expect::equals(dims, Dimensions());
}
} // namespace detail
Variable Variable::bin_indices() const {
auto out{*this};
out.m_object = data().bin_indices();
return out;
}
Variable Variable::as_const() const {
Variable out(*this);
out.m_readonly = true;
return out;
}
void Variable::expectWritable() const {
if (m_readonly)
throw except::VariableError("Read-only flag is set, cannot mutate data.");
}
} // namespace scipp::variable
|
<reponame>Qasemt/golanglearning
package main
import (
"errors"
"fmt"
av "github.com/qasemt/avardstock"
h "github.com/qasemt/helper"
"os"
"strconv"
"strings"
"sync"
)
func init() {
if h.GetVerbose() {
fmt.Printf("app init \n")
}
//err := h.SetProxy("127.0.0.1:9150", true)
//err := h.SetProxy("https://127.0.0.1:5051", false) // psiphon
/* if err != nil {
return
}*/
}
func testFunction() {
//testFunctions.RunTest()
//testFunctions.RunTestInterface()
// testFunctions.RunTestGoRoot()
//testFunctions.RunTestMutex()
// testFunctions.RunTestCSV()
//testFunctions.TestRegex()
}
//:::::::::::::::::::::::::::::::::::::::: FOREX
func forex() {
//stockwork.ConvertStoockTODT7("D:/workspace/stock/data/forex/ff.csv", "D:/workspace/stock/data/forex/ff11.csv")
}
//:::::::::::::::::::::::::::::::::::::::: CONVERT STOCK TEHRAN FROM TSE
func tehranTSEC() {
//var path_dst_dir string = "D:/workspace/stock/tseclient/tmp/"
//stockwork.RUNStock("D:/workspace/stock/tseclient/normal/", "D:/out/", false)
//stockwork.RUNStock("D:/workspace/stock/tseclient/Adjusted/", "D:/out2/", true)
}
func readArgs(a []string, key string) (string, bool) {
for i := 1; i < len(a); i++ {
if strings.HasPrefix(strings.ToLower(a[i]), key) {
var p string
if strings.Contains(strings.ToLower(a[i]), "=") {
p = strings.Split(a[i], "=")[1]
p = strings.Trim(p, `"`)
}
return p, true
break
}
}
return "", false
}
func help() {
var s string
s = fmt.Sprintf("\n:::::::::::::::: HELP :::::::::::::::")
s += fmt.Sprintf("\n:::Make license\t\t-> license make <EMAIL> \n")
s += fmt.Sprintf("\n:::Mak acti\t\t-> license activated [path license] [days number] [number items stock ] [-type=cft c=crypto , f=forex , t=tehran] \n")
s += fmt.Sprintf(":::Crypto Store\t\t-> crypto [params]\n " +
"\t\t\t\t\tset proxy\t\t\t\t\t\t[proxy=http://xxx.xxx.xxx.xxx:port]\n " +
"\t\t\t\t\tset cache path\t\t\t\t\t[cachepath=]\n " +
"\t\t\t\t\tinterval time\t\t\t\t\t[timer=(value) as minuth]\n " +
"\t\t\t\t\tAdd Stock in Watch List\t\t\t[- add (stock Name) (stock Code) ]\n " +
"\t\t\t\t\tget Last data\t\t\t\t\t[-l]\n")
s += fmt.Sprintf("\n:::Tehran Store\t\t-> tehran [params]\n " +
"\t\t\t\t\tset proxy\t\t\t\t\t\t[proxy=http://xxx.xxx.xxx.xxx:port]\n " +
"\t\t\t\t\tset cache path\t\t\t\t\t[cachepath=]\n " +
"\t\t\t\t\tinterval time\t\t\t\t\t[timer=(value) as minuth]\n " +
"\t\t\t\t\tAdd Stock in Watch List\t\t\t[ -add (stock Name) (stock Code) ]\n " +
"\t\t\t\t\ttemp Watch List\t\t\t\t\t[ -tempwatchlist ]\n " +
"\t\t\t\t\tOut All stock list in txt file \t[ -o ]\n " +
"\t\t\t\t\tget Last data\t\t\t\t\t[ -l ]\n")
fmt.Println(s)
}
//_______________________________________________________________________________ COMMANDS
func commands(a []string) error {
var g *int64 = nil
li := h.LicenseGen{}
if _, ok := readArgs(a, "-v"); ok {
h.SetVerbose(true)
}
if len(a) > 0 && strings.ToLower(a[0]) == "-h" {
help()
return nil
}
//_________________________________________________________________________________________________ LICENSE
if len(a) > 0 && strings.ToLower(a[0]) == "license" {
if strings.ToLower(a[1]) == "make" {
e := li.MakeLicense(a[2])
if e != nil {
return e
}
return nil
}
//(license_path string, days int, items_num int, is_cryto bool, is_tehran bool, is_forex bool)
if strings.ToLower(a[1]) == "activated" {
var tehran, forex, crypto bool
if v, ok := readArgs(a, "type="); ok {
if len(v) == 0 {
return errors.New("add type [type=cft] c= cryoti f= forex t=tehran")
}
for _, char := range v {
if char == 'c' {
crypto = true
} else if char == 'f' {
forex = true
} else if char == 't' {
tehran = true
}
}
} else
{
return errors.New("add type [type=cft] c= cryoti f= forex t=tehran")
}
e := li.MakeActivate(a[2], h.ToINT32(a[3]), h.ToINT32(a[4]), crypto, tehran, forex)
if e != nil {
return e
}
return nil
}
return errors.New("Syntax Error")
}
result := li.Validation()
if result != nil {
if h.GetVerbose() {
fmt.Println(result)
}
fmt.Println("License Not Valid ")
return nil
}
//_________________________________________________________________________________________________ CRYPTO
if len(a) > 0 && strings.ToLower(a[0]) == "crypto" {
binance := av.NewBinance(h.OneFolder)
if v, ok := readArgs(a, "cachepath="); ok {
h.SetRootCache(v)
}
//proxy
if v, ok := readArgs(a, "proxy="); ok {
isSocks := false
if strings.HasPrefix(strings.ToLower(v), "socks5") {
isSocks = true
}
v = strings.Replace(v, "socks5://", "", -1)
err := h.SetProxy(v, isSocks)
if err != nil {
return err
}
}
//0000000000000
list, er := binance.ReadJsonWatchList()
if er != nil {
return errors.New(fmt.Sprintf("config read failed [%v] ", er))
}
k := binance.SyncDb(list)
if k != nil {
return errors.New(fmt.Sprintf("sync db failed."))
}
h.SetSecret(list.Apikey)
h.SetAPIKey(list.Secret)
if h.GetAPIKey() == "" || h.GetSecret() == "" {
return errors.New("please set api key or secret key")
}
return nil
}
//_________________________________________________________________________________________________ BINANCE
if len(a) > 0 && strings.HasPrefix(strings.ToLower(a[0]), "binance") {
biance := av.NewBinance(h.OneFolder)
if v, ok := readArgs(a, "cachepath="); ok {
h.SetRootCache(v)
}
if v, ok := readArgs(a, "timer="); ok {
i, err := strconv.ParseInt(v, 10, 64)
if err == nil {
g = &i
} else {
return fmt.Errorf("timer not valid %v", err)
}
}
isreadFromLast := false
isSeq := false
if _, ok := readArgs(a, "-l"); ok {
isreadFromLast = true
}
if _, ok := readArgs(a, "-seq"); ok {
isSeq = true
}
if _, ok := readArgs(a, "-list"); ok {
var dbLock sync.Mutex
e := biance.OutStockList(&dbLock)
if e != nil {
return errors.New(fmt.Sprintf("tehran failed: %v", e))
}
return nil
}
//0000000000000
list, er := biance.ReadJsonWatchList()
if er != nil {
return errors.New(fmt.Sprintf("config read failed [%v] ", er))
}
k := biance.SyncDb(list)
if k != nil {
return errors.New(fmt.Sprintf("sync db failed."))
}
e := biance.Run(isreadFromLast, isSeq, g)
if e != nil {
return errors.New(fmt.Sprintf("tehran failed: %v", e))
}
return nil
}
s := fmt.Sprintf("Help args : [crypto] [BTCUSDT]\nHelp args : [tehran] [src dir path ] [dst dir path]")
return errors.New(s)
}
func main() {
//t:= h.UnixTimeToTime(1580720399000);
//fmt.Printf("%v",t);
e := commands(os.Args[1:])
if e != nil {
fmt.Println(":::::::::::::::: ERROR :::::::::::::::")
fmt.Printf(e.Error())
return
}
if h.GetVerbose() {
fmt.Println("finished :)")
}
}
|
/***************************************************************
*
* Copyright (C) 1990-2011, Condor Team, Computer Sciences Department,
* University of Wisconsin-Madison, WI.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you
* may not use this file except in compliance with the License. You may
* obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
***************************************************************/
#include "condor_common.h"
#include "condor_io.h"
#include "condor_debug.h"
#include "condor_daemon_core.h"
#include "daemon.h"
#include "condor_uid.h"
#include "lsa_mgr.h"
#include "store_cred.h"
#include "condor_config.h"
#include "ipv6_hostname.h"
#include "credmon_interface.h"
#include "secure_file.h"
#include "condor_base64.h"
#include "zkm_base64.h"
#include "my_popen.h"
#include "directory.h"
#include <chrono>
#include <algorithm>
#include <iterator>
#include <unordered_set>
const int MODE_MASK = 3;
const int CRED_TYPE_MASK = 0x2C;
static const char *mode_name[] = {
ADD_CREDENTIAL,
DELETE_CREDENTIAL,
QUERY_CREDENTIAL,
CONFIG_CREDENTIAL,
};
static const char *err_strings[] = {
"Operation failed", // FAILURE
"Operation succeeded", // SUCCESS
"A credential is stored, but it is invalid", // FAILURE_BAD_PASSWORD
"Operation failed because the target daemon is not running as SYSTEM", // FAILURE_NO_IMPERSONATE
"Operation aborted because communiction was not secure", // FAILURE_NOT_SECURE
"No credential is stored", // FAILURE_NOT_FOUND
"A credential is stored, but it has not yet been processed", // SUCCESS_PENDING
"Operation failed because it is not allowed", // FAILURE_NOT_ALLOWED
"Operation aborted due to missing or bad arguments", // FAILURE_BAD_ARGS
"Arguments are missing, client and server my be mismatched", // FAILURE_PROTOCOL_MISMATCH
"The credmon did not process credentials within the timeout period", // FAILURE_CREDMON_TIMEOUT
"Operation failed because of a configuration error", // FAILURE_CONFIG_ERROR
};
// check to see if store_cred return value is a failure, and return a string for the failure code if so
bool store_cred_failed(long long ret, int mode, const char ** errstring /*=NULL*/)
{
if ((mode & MODE_MASK) != GENERIC_DELETE) {
if (ret > 100) { // return value may be a time_t for query
return false;
}
}
if (ret == SUCCESS || ret == SUCCESS_PENDING) {
return false;
}
if (errstring && ret >= 0 && ret < (int)COUNTOF(err_strings)) {
*errstring = err_strings[ret];
}
return true;
}
// check username, which may or may not end in @domain to see if the user name
// is the magic username that indicates pool password
static bool username_is_pool_password(const char *user, int * domain_pos = NULL)
{
const int pool_name_len = sizeof(POOL_PASSWORD_USERNAME) - 1;
const char *at = strchr(user, '@');
int len;
if (at) {
len = (int)(at - user);
if (domain_pos) { *domain_pos = len; }
} else {
len = (int)strlen(user);
if (domain_pos) { *domain_pos = -1; }
}
return (len == pool_name_len) && (MATCH == memcmp(user, POOL_PASSWORD_USERNAME, len));
}
// returns true if there is a credmon and we managed to kick it
static bool wake_the_credmon(int mode)
{
int cred_type = mode & CRED_TYPE_MASK;
if (cred_type == STORE_CRED_USER_KRB) {
return credmon_kick(credmon_type_KRB);
} else if (cred_type == STORE_CRED_USER_OAUTH) {
return credmon_kick(credmon_type_OAUTH);
}
return false;
}
namespace {
class NamedCredentialCache
{
private:
std::vector<std::string> m_creds;
std::chrono::steady_clock::time_point m_last_refresh;
public:
NamedCredentialCache() {}
void Refresh() {
m_creds.clear();
m_last_refresh = std::chrono::steady_clock::time_point();
}
bool List(std::vector<std::string> &creds, CondorError *err);
};
NamedCredentialCache g_cred_cache;
char *
read_password_from_filename(const char *filename, CondorError *err)
{
char *buffer = nullptr;
size_t len;
bool rc = read_secure_file(filename, (void**)(&buffer), &len, true);
if(rc) {
// buffer now contains the binary contents from the file.
// due to the way 8.4.X and earlier version wrote the file,
// there will be trailing NULL characters, although they are
// ignored in 8.4.X by the code that reads them. As such, for
// us to agree on the password, we also need to discard
// everything after the first NULL. we do this by simply
// resetting the len. there is a function "strnlen" but it's a
// GNU extension so we just do the raw scan here:
size_t newlen = 0;
while(newlen < len && buffer[newlen]) {
newlen++;
}
len = newlen;
// undo the trivial scramble
char *pw = (char *)malloc(len + 1);
simple_scramble(pw, buffer, (int)len);
pw[len] = '\0';
free(buffer);
return pw;
}
if (err) err->pushf("CRED", 1, "Failed to read file %s securely.", filename);
dprintf(D_ALWAYS, "read_password_from_filename(): read_secure_file(%s) failed!\n", filename);
return nullptr;
}
}
#ifndef WIN32
// **** UNIX CODE *****
void SecureZeroMemory(void *p, size_t n)
{
// TODO: make this Secure
memset(p, 0, n);
}
#endif
long long
PWD_STORE_CRED(const char *username, const unsigned char * rawbuf, const int rawlen, int mode, MyString & ccfile)
{
dprintf(D_ALWAYS, "PWD store cred user %s len %i mode %i\n", username, rawlen, mode);
ccfile.clear();
int rc;
MyString pw;
if ((mode & MODE_MASK) == GENERIC_ADD) {
pw.set((const char *)rawbuf, rawlen);
// check for null characters in password, we don't support those
if (pw.length() != (int)strlen(pw.c_str())) {
dprintf(D_ALWAYS, "Failed to add password for user %s, password contained NULL characters\n", username);
return FAILURE_BAD_PASSWORD;
}
rc = store_cred_password(username, pw.c_str(), mode);
if (rc == SUCCESS) {
// on success we return the current time
rc = time(NULL);
}
} else {
rc = store_cred_password(username, NULL, mode);
if (rc == SUCCESS && (mode & MODE_MASK) == GENERIC_QUERY) {
// on success we return the current time
rc = time(NULL);
}
}
return rc;
}
long long
OAUTH_STORE_CRED(const char *username, const unsigned char *cred, const int credlen, int mode, const ClassAd * ad, ClassAd & return_ad, MyString & ccfile)
{
// store an OAuth token, this is presumed to be a refresh token (*.top file) unless the classad argument
// indicates that it is not a refresh token, in which case it is stored as a *.use file
//
/*
ad arg schema is
"service" : <SERVICE> name
"handle" : optional <handle> name appended to service name to create filenames
any of the .meta JSON keywords below
<service>_<handle>.meta JSON file is
{
"use_refresh_token": true, # if false, other fields are not needed
"client_secret": user provided or credd generated from <SERVICE>_CLIENT_SECRET_FILE,
"client_id": user provided or credd generated from <SERVICE>_CLIENT_ID,
"token_url": user provided or credd generated from <SERVICE>_TOKEN_URL,
}
*/
dprintf(D_ALWAYS, "OAUTH store cred user %s len %i mode %i\n", username, credlen, mode);
if (strchr(username, '@')) {
dprintf(D_ALWAYS | D_BACKTRACE, "OAUTH store cred ERROR - username has a @, it should be bare\n");
return FAILURE_BAD_ARGS;
}
// set to full pathname of a file to watch for if the caller needs to wait for a credmon
ccfile.clear();
auto_free_ptr cred_dir( param("SEC_CREDENTIAL_DIRECTORY_OAUTH") );
if(!cred_dir) {
dprintf(D_ALWAYS, "ERROR: got STORE_CRED_USER_OAUTH but SEC_CREDENTIAL_DIRECTORY_OAUTH not defined!\n");
return FAILURE_CONFIG_ERROR;
}
// remove mark on update or query for "mark and sweep"
// if mode is QUERY or DELETE we do it because of interest
// if mode is DELETE we do it because, well... delete.
credmon_clear_mark(cred_dir, username);
// the user's creds go into a directory
MyString user_cred_path;
dircat(cred_dir, username, user_cred_path);
std::string service;
if (ad && ad->LookupString("Service", service)) {
// TODO: PRAGMA_REMIND("convert service name to filename")
}
// if this is a query, just return the timestamp on the .use file
if ((mode & MODE_MASK) == GENERIC_QUERY) {
if (service.empty()) {
Directory creddir(cred_dir, PRIV_ROOT);
if (creddir.Find_Named_Entry(username)) {
Directory dir(user_cred_path.c_str(), PRIV_ROOT);
const char * fn;
int num_top_files = 0;
int num_use_files = 0;
while ((fn = dir.Next())) {
if (ends_with(fn, ".top")) {
++num_top_files;
} else if (ends_with(fn, ".use")) {
++num_use_files;
} else {
continue;
}
return_ad.Assign(fn, dir.GetModifyTime());
}
// TODO: add code to wait for all pending creds?
if (num_top_files > 0) {
ccfile.clear();
return (num_top_files > num_use_files) ? SUCCESS_PENDING : SUCCESS;
}
}
ccfile.clear();
return FAILURE_NOT_FOUND;
} else {
// does the .use file exist already?
dircat(user_cred_path.c_str(), service.c_str(), ".use", ccfile);
struct stat cred_stat_buf;
int rc = stat(ccfile.c_str(), &cred_stat_buf);
bool got_ccfile = rc == 0;
if (got_ccfile) { // if it exists, return it's timestamp
ccfile.clear();
return_ad.Assign(service, cred_stat_buf.st_mtime);
return cred_stat_buf.st_mtime;
} else {
// if no use file, check for a .top file. if that exists return its timestamp
dircat(user_cred_path.c_str(), service.c_str(), ".top", ccfile);
if (stat(ccfile.c_str(), &cred_stat_buf) >= 0) {
std::string attr("Top"); attr += service; attr += "Time";
return_ad.Assign(attr, cred_stat_buf.st_mtime);
return SUCCESS_PENDING;
} else {
ccfile.clear();
return FAILURE_NOT_FOUND;
}
}
}
}
if ((mode & MODE_MASK) == GENERIC_DELETE) {
if (service.empty()) {
Directory creddir(cred_dir, PRIV_ROOT);
if (creddir.Find_Named_Entry(username)) {
dprintf(D_ALWAYS, "Deleting OAuth dir for user %s\n", username);
if (!creddir.Remove_Current_File()) {
dprintf(D_ALWAYS, "Could not remove %s\n", user_cred_path.c_str());
return FAILURE_NOT_ALLOWED;
}
}
} else {
dprintf(D_ALWAYS, "Deleting OAuth files for service %s for user %s\n", service.c_str(), username);
dircat(user_cred_path.c_str(), service.c_str(), ".top", ccfile);
priv_state priv = set_root_priv();
unlink(ccfile.c_str());
dircat(user_cred_path.c_str(), service.c_str(), ".use", ccfile);
unlink(ccfile.c_str());
set_priv(priv);
ccfile.clear();
}
return SUCCESS;
}
if (service.empty()) {
service = "scitokens";
}
// create dir for user's creds, note that for OAUTH we *don't* create this as ROOT
// oauth cred dir should be chmod 2770, chown root:condor (drwxrws--- root condor)
if (mkdir(user_cred_path.c_str(), 0700) < 0) {
int err = errno;
if (err != EEXIST) {
dprintf(D_ALWAYS, "Error %d, attempting to create OAuth cred subdir %s", err, user_cred_path.c_str());
if (err == EACCES || err == EPERM || err == ENOENT || err == ENOTDIR) {
// for one of several reasons, the parent directory does not allow the creation of subdirs.
return FAILURE_CONFIG_ERROR;
}
}
}
// append filename for tokens file
dircat(user_cred_path.c_str(), service.c_str(), ".top", ccfile);
// create/overwrite the credential file
dprintf(D_ALWAYS, "Writing OAuth user cred data to %s\n", ccfile.c_str());
if ( ! replace_secure_file(ccfile.c_str(), ".tmp", cred, credlen, true)) {
// replace_secure_file already logged the failure if it failed.
ccfile.clear();
return FAILURE;
}
// return the name of the file to wait for
dircat(user_cred_path.c_str(), service.c_str(), ".use", ccfile);
// credential succesfully stored
return SUCCESS;
}
// handle ADD, DELETE, & QUERY for kerberos credential.
// if command is ADD, and a credential is stored
// but the caller should wait for a .cc file before proceeding,
// the ccfile argument will be returned
long long
KRB_STORE_CRED(const char *username, const unsigned char *cred, const int credlen, int mode, ClassAd & return_ad, MyString & ccfile)
{
dprintf(D_ALWAYS, "Krb store cred user %s len %i mode %i\n", username, credlen, mode);
// make sure that the cc filename is cleared
ccfile.clear();
auto_free_ptr cred_dir( param("SEC_CREDENTIAL_DIRECTORY_KRB") );
if(!cred_dir) {
dprintf(D_ALWAYS, "ERROR: got STORE_CRED but SEC_CREDENTIAL_DIRECTORY_KRB not defined!\n");
return FAILURE_CONFIG_ERROR;
}
// remove mark on update for "mark and sweep"
// if mode is QUERY or DELETE we do it because of interest
// if mode is DELETE we do it because, well... delete.
credmon_clear_mark(cred_dir, username);
// check to see if .cc already exists
dircat(cred_dir, username, ".cc", ccfile);
struct stat cred_stat_buf;
int rc = stat(ccfile.c_str(), &cred_stat_buf);
bool got_ccfile = rc == 0;
// if the credential already exists, we should update it if
// it's more than X seconds old. if X is zero, we always
// update it. if X is negative, we never update it.
int fresh_time = param_integer("SEC_CREDENTIAL_REFRESH_INTERVAL", -1);
// if it already exists and we don't update, call it a "success".
if (got_ccfile && fresh_time < 0) {
dprintf(D_FULLDEBUG, "CREDMON: credentials for user %s already exist in %s, and interval is %i\n",
username, ccfile.c_str(), fresh_time );
if ((mode & MODE_MASK) == GENERIC_ADD) {
ccfile.clear(); // clear this so that the caller knows not to wait for it.
return cred_stat_buf.st_mtime;
}
}
// return success if the credential exists and has been recently
// updated. note that if fresh_time is zero, we'll never return
// success here, meaning we will always update the credential.
time_t now = time(NULL);
if (got_ccfile && (now - cred_stat_buf.st_mtime < fresh_time)) {
// was updated in the last X seconds, so call it a "success".
dprintf(D_FULLDEBUG, "CREDMON: credentials for user %s already exist in %s, and interval is %i\n",
username, ccfile.c_str(), fresh_time );
if ((mode & MODE_MASK) == GENERIC_ADD) {
ccfile.clear(); // clear this so that the caller knows not to wait for it.
return cred_stat_buf.st_mtime;
}
}
// if this is a query, just return the timestamp on the .cc file
if (((mode & MODE_MASK) == GENERIC_QUERY) && got_ccfile) {
ccfile.clear(); // clear this so that the caller knows not to wait for it.
return cred_stat_buf.st_mtime;
}
MyString credfile;
dircat(cred_dir, username, ".cred", credfile);
const char *filename = credfile.c_str();
if ((mode & MODE_MASK) == GENERIC_QUERY) {
if (stat(credfile.c_str(), &cred_stat_buf) >= 0) {
return_ad.Assign("CredTime", cred_stat_buf.st_mtime);
return SUCCESS_PENDING;
} else {
ccfile.clear(); // clear this so that the caller knows not to wait for it.
return FAILURE_NOT_FOUND;
}
}
// if this is a delete operation, delete .cred and .cc files
if ((mode & MODE_MASK) == GENERIC_DELETE) {
priv_state priv = set_root_priv();
if (got_ccfile) {
rc = unlink(ccfile.c_str());
}
rc = unlink(filename);
set_priv(priv);
ccfile.clear();
return SUCCESS;
}
// mode is GENERIC_ADD
// we write to a temp file, then rename it over the original
dprintf(D_ALWAYS, "Writing credential data to %s\n", filename);
if ( ! replace_secure_file(filename, "tmp", cred, credlen, true)) {
// replace_secure_file already logged the failure if it failed.
return FAILURE;
}
// credential succesfully stored
return SUCCESS;
}
unsigned char*
UNIX_GET_CRED(const char *user, const char *domain, size_t & len)
{
dprintf(D_ALWAYS, "Unix get cred user %s domain %s\n", user, domain);
len = 0;
auto_free_ptr cred_dir( param("SEC_CREDENTIAL_DIRECTORY") );
if(!cred_dir) {
dprintf(D_ALWAYS, "ERROR: got GET_CRED but SEC_CREDENTIAL_DIRECTORY not defined!\n");
return NULL;
}
// create filenames
MyString filename;
filename.formatstr("%s%c%s.cred", cred_dir.ptr(), DIR_DELIM_CHAR, user);
dprintf(D_ALWAYS, "CREDS: reading data from %s\n", filename.c_str());
// read the file (fourth argument "true" means as_root)
unsigned char *buf = 0;
if (read_secure_file(filename.c_str(), (void**)(&buf), &len, true)) {
return buf;
}
return NULL;
}
long long store_cred_blob(const char *user, int mode, const unsigned char *blob, int bloblen, const ClassAd * ad, MyString &ccfile)
{
int domain_pos = -1;
if (username_is_pool_password(user, &domain_pos)) {
return FAILURE_BAD_ARGS;
}
if (domain_pos < 1) { // no @, or no username before the @
dprintf(D_ALWAYS, "store_cred: malformed user name\n");
return FAILURE_BAD_ARGS;
}
// are we operating in backward compatibility, where the mode arg is one of the ones for storing passwords?
// in that case, we need to look at a knob to know what kind of blob we are working with
if (mode >= STORE_CRED_LEGACY_PWD && mode <= STORE_CRED_LAST_MODE) {
return FAILURE;
} else {
int cred_type = mode & CRED_TYPE_MASK;
std::string username(user, domain_pos);
if (cred_type == STORE_CRED_USER_PWD) {
dprintf(D_ALWAYS, "GOT PWD STORE CRED mode=%d\n", mode);
int pass_mode = (mode & MODE_MASK) | STORE_CRED_USER_PWD;
return PWD_STORE_CRED(username.c_str(), blob, bloblen, pass_mode, ccfile);
} else if (cred_type == STORE_CRED_USER_OAUTH) {
dprintf(D_ALWAYS, "GOT OAUTH STORE CRED mode=%d\n", mode);
int oauth_mode = (mode & MODE_MASK) | STORE_CRED_USER_OAUTH;
ClassAd return_ad;
return OAUTH_STORE_CRED(username.c_str(), blob, bloblen, oauth_mode, ad, return_ad, ccfile);
} else if (cred_type == STORE_CRED_USER_KRB) {
dprintf(D_ALWAYS, "GOT KRB STORE CRED mode=%d\n", mode);
int krb_mode = (mode & MODE_MASK) | STORE_CRED_USER_KRB;
ClassAd return_ad;
return KRB_STORE_CRED(username.c_str(), blob, bloblen, krb_mode, return_ad, ccfile);
} else {
return FAILURE;
}
}
return FAILURE_BAD_ARGS;
}
unsigned char* getStoredCredential(int mode, const char *username, const char *domain, int & credlen)
{
// TODO: add support for multiple domains
credlen = 0;
if ( !username || !domain ) {
return NULL;
}
// Support only kerberos creds for now
if ((mode & CRED_TYPE_MASK) != STORE_CRED_USER_KRB)
return NULL;
if (MATCH == strcmp(username, POOL_PASSWORD_USERNAME)) {
return NULL;
}
auto_free_ptr cred_dir( param("SEC_CREDENTIAL_DIRECTORY_KRB") );
if(!cred_dir) {
dprintf(D_ALWAYS, "ERROR: got GET_CRED but SEC_CREDENTIAL_DIRECTORY_KRB is not defined!\n");
return NULL;
}
// create filenames
MyString credfile;
const char * filename = dircat(cred_dir, username, ".cred", credfile);
dprintf(D_ALWAYS, "CREDS: reading data from %s\n", filename);
// read the file (fourth argument "true" means as_root)
unsigned char *buf = 0;
size_t len = 0;
if (read_secure_file(filename, (void**)(&buf), &len, true)) {
credlen = (int)len;
return buf;
}
dprintf(D_ALWAYS, "CREDS: failed to read securely from %s\n", filename);
return NULL;
}
#ifndef WIN32
char* getStoredPassword(const char *username, const char *domain)
{
// TODO: add support for multiple domains
if ( !username || !domain ) {
return NULL;
}
if (MATCH != strcmp(username, POOL_PASSWORD_USERNAME)) {
dprintf(D_ALWAYS, "GOT UNIX GET CRED\n");
size_t len = 0;
#if 1
return (char*)UNIX_GET_CRED(username, domain, len);
#else
unsigned char * buf = UNIX_GET_CRED(username, domain, len);
if (buf) {
// immediately convert to base64. TJ: this seems wrong to me??
char* textpw = condor_base64_encode(buf, len);
free(buf);
return textpw;
}
return NULL;
#endif
}
// See if the security manager has overridden the pool password.
const std::string &secman_pass = SecMan::getPoolPassword();
if (secman_pass.size()) {
return strdup(secman_pass.c_str());
}
// EVERYTHING BELOW HERE IS FOR POOL PASSWORD ONLY
auto_free_ptr filename( param("SEC_PASSWORD_FILE") );
if (!filename) {
dprintf(D_ALWAYS,
"error fetching pool password; "
"SEC_PASSWORD_FILE not defined\n");
return NULL;
}
return read_password_from_filename(filename.ptr(), nullptr);
}
int store_cred_password(const char *user, const char *cred, int mode)
{
int domain_pos = -1;
if ( ! username_is_pool_password(user, &domain_pos)) {
dprintf(D_ALWAYS, "store_cred: store_cred_password used with non-pool username. this is only valid on Windows\n");
return FAILURE;
}
if (domain_pos < 1) { // no @, or no username before the @
dprintf(D_ALWAYS, "store_cred: malformed user name\n");
return FAILURE;
}
//
// THIS CODE BELOW ALL DEALS EXCLUSIVELY WITH POOL PASSWORD
//
auto_free_ptr filename;
if ((mode&MODE_MASK) != GENERIC_QUERY) {
filename.set(param("SEC_PASSWORD_FILE"));
if ( ! filename) {
dprintf(D_ALWAYS, "store_cred: SEC_PASSWORD_FILE not defined\n");
return FAILURE;
}
}
int answer;
switch (mode & MODE_MASK) {
case GENERIC_ADD: {
answer = FAILURE;
size_t cred_sz = strlen(cred);
if (!cred_sz) {
dprintf(D_ALWAYS, "store_cred_password: empty password not allowed\n");
break;
}
if (cred_sz > MAX_PASSWORD_LENGTH) {
dprintf(D_ALWAYS, "store_cred_password: password too large\n");
break;
}
priv_state priv = set_root_priv();
answer = write_password_file(filename, cred);
set_priv(priv);
break;
}
case GENERIC_DELETE: {
priv_state priv = set_root_priv();
int err = unlink(filename);
set_priv(priv);
if (!err) {
answer = SUCCESS;
}
else {
answer = FAILURE_NOT_FOUND;
}
break;
}
case GENERIC_QUERY: {
char *password = getStoredPassword(POOL_PASSWORD_USERNAME, NULL);
if (password) {
answer = SUCCESS;
SecureZeroMemory(password, MAX_PASSWORD_LENGTH);
free(password);
}
else {
answer = FAILURE_NOT_FOUND;
}
break;
}
default:
dprintf(D_ALWAYS, "store_cred_password: unknown mode: %d\n", mode);
answer = FAILURE;
}
return answer;
}
#else
// **** WIN32 CODE ****
#include <conio.h>
//extern "C" FILE *DebugFP;
//extern "C" int DebugFlags;
char* getStoredPassword(const char *username, const char *domain)
{
lsa_mgr lsaMan;
char pw[255];
wchar_t w_fullname[512];
wchar_t *w_pw;
if ( !username || !domain ) {
return NULL;
}
if ( _snwprintf(w_fullname, 254, L"%S@%S", username, domain) < 0 ) {
return NULL;
}
// make sure we're SYSTEM when we do this
priv_state priv = set_root_priv();
w_pw = lsaMan.query(w_fullname);
set_priv(priv);
if ( ! w_pw ) {
dprintf(D_ALWAYS,
"getStoredPassword(): Could not locate credential for user "
"'%s@%s'\n", username, domain);
return NULL;
}
if ( _snprintf(pw, sizeof(pw), "%S", w_pw) < 0 ) {
return NULL;
}
// we don't need the wide char pw anymore, so clean it up
SecureZeroMemory(w_pw, wcslen(w_pw)*sizeof(wchar_t));
delete[](w_pw);
dprintf(D_FULLDEBUG, "Found credential for user '%s@%s'\n",
username, domain );
return strdup(pw);
}
int store_cred_password(const char *user, const char *pw, int mode)
{
wchar_t pwbuf[MAX_PASSWORD_LENGTH];
wchar_t userbuf[MAX_PASSWORD_LENGTH];
priv_state priv;
int answer = FAILURE;
lsa_mgr lsa_man;
wchar_t *pw_wc;
// we'll need a wide-char version of the user name later
if ( user ) {
swprintf_s(userbuf, COUNTOF(userbuf), L"%S", user);
}
if (!can_switch_ids()) {
answer = FAILURE_NO_IMPERSONATE;
} else {
priv = set_root_priv();
switch(mode & MODE_MASK) {
case GENERIC_ADD:
bool retval;
dprintf( D_FULLDEBUG, "Adding %S to credential storage.\n",
userbuf );
retval = isValidCredential(user, pw);
if ( ! retval ) {
dprintf(D_FULLDEBUG, "store_cred: tried to add invalid credential\n");
answer=FAILURE_BAD_PASSWORD;
break; // bail out
}
if (pw) {
swprintf_s(pwbuf, COUNTOF(pwbuf), L"%S", pw); // make a wide-char copy first
}
// call lsa_mgr api
// answer = return code
if (!lsa_man.add(userbuf, pwbuf)){
answer = FAILURE;
} else {
answer = SUCCESS;
}
SecureZeroMemory(pwbuf, MAX_PASSWORD_LENGTH*sizeof(wchar_t));
break;
case GENERIC_DELETE:
dprintf( D_FULLDEBUG, "Deleting %S from credential storage.\n",
userbuf );
pw_wc = lsa_man.query(userbuf);
if ( !pw_wc ) {
answer = FAILURE_NOT_FOUND;
break;
}
else {
SecureZeroMemory(pw_wc, wcslen(pw_wc));
delete[] pw_wc;
}
if (!isValidCredential(user, pw)) {
dprintf(D_FULLDEBUG, "store_cred: invalid credential given for delete\n");
answer = FAILURE_BAD_PASSWORD;
break;
}
// call lsa_mgr api
// answer = return code
if (!lsa_man.remove(userbuf)) {
answer = FAILURE;
} else {
answer = SUCCESS;
}
break;
case GENERIC_QUERY:
{
dprintf( D_FULLDEBUG, "Checking for %S in credential storage.\n",
userbuf );
char passw[MAX_PASSWORD_LENGTH];
pw_wc = lsa_man.query(userbuf);
if ( !pw_wc ) {
answer = FAILURE_NOT_FOUND;
} else {
sprintf(passw, "%S", pw_wc);
SecureZeroMemory(pw_wc, wcslen(pw_wc));
delete[] pw_wc;
if ( isValidCredential(user, passw) ) {
answer = SUCCESS;
} else {
answer = FAILURE_BAD_PASSWORD;
}
SecureZeroMemory(passw, MAX_PASSWORD_LENGTH);
}
break;
}
default:
dprintf( D_ALWAYS, "store_cred: Unknown access mode (%d).\n", mode );
answer=0;
break;
}
dprintf(D_FULLDEBUG, "Switching back to old priv state.\n");
set_priv(priv);
}
return answer;
}
// takes user@domain format for user argument
bool
isValidCredential( const char *input_user, const char* input_pw ) {
// see if we can get a user token from this password
HANDLE usrHnd = NULL;
char* dom;
DWORD LogonUserError;
BOOL retval;
retval = 0;
usrHnd = NULL;
char * user = strdup(input_user);
// split the domain and the user name for LogonUser
dom = strchr(user, '@');
if ( dom ) {
*dom = '\0';
dom++;
}
// the POOL_PASSWORD_USERNAME account is not a real account
if (strcmp(user, POOL_PASSWORD_USERNAME) == 0) {
free(user);
return true;
}
char * pw = strdup(input_pw);
bool wantSkipNetworkLogon = param_boolean("SKIP_WINDOWS_LOGON_NETWORK", false);
if (!wantSkipNetworkLogon) {
retval = LogonUser(
user, // user name
dom, // domain or server - local for now
pw, // password
LOGON32_LOGON_NETWORK, // NETWORK is fastest.
LOGON32_PROVIDER_DEFAULT, // logon provider
&usrHnd // receive tokens handle
);
LogonUserError = GetLastError();
}
if ( 0 == retval ) {
if (!wantSkipNetworkLogon) {
dprintf(D_FULLDEBUG, "NETWORK logon failed. Attempting INTERACTIVE\n");
} else {
dprintf(D_FULLDEBUG, "NETWORK logon disabled. Trying INTERACTIVE only!\n");
}
retval = LogonUser(
user, // user name
dom, // domain or server - local for now
pw, // password
LOGON32_LOGON_INTERACTIVE, // INTERACTIVE should be held by everyone.
LOGON32_PROVIDER_DEFAULT, // logon provider
&usrHnd // receive tokens handle
);
LogonUserError = GetLastError();
}
if (user) free(user);
if (pw) {
SecureZeroMemory(pw,strlen(pw));
free(pw);
}
if ( retval == 0 ) {
dprintf(D_ALWAYS, "Failed to log in %s with err=%d\n",
input_user, LogonUserError);
return false;
} else {
dprintf(D_FULLDEBUG, "Succeeded to log in %s\n", input_user);
CloseHandle(usrHnd);
return true;
}
}
#endif // WIN32
int
cred_get_password_handler(int /*i*/, Stream *s)
{
char *client_user = NULL;
char *client_domain = NULL;
char *client_ipaddr = NULL;
int result;
char * user = NULL;
char * domain = NULL;
char * password = NULL;
/* Check our connection. We must be very picky since we are talking
about sending out passwords. We want to make certain
a) the Stream is a ReliSock (tcp)
b) it is authenticated (and thus authorized by daemoncore)
c) it is encrypted
*/
if ( s->type() != Stream::reli_sock ) {
dprintf(D_ALWAYS,
"WARNING - password fetch attempt via UDP from %s\n",
((Sock*)s)->peer_addr().to_sinful().Value());
return TRUE;
}
ReliSock* sock = (ReliSock*)s;
// Ensure authentication happened and succeeded
// Daemons should register this command with force_authentication = true
if ( !sock->isAuthenticated() ) {
dprintf(D_ALWAYS,
"WARNING - authentication failed for password fetch attempt from %s\n",
sock->peer_addr().to_sinful().Value());
goto bail_out;
}
// Enable encryption if available. If it's not available, the next
// call will fail and we'll abort the connection.
sock->set_crypto_mode(true);
if ( !sock->get_encryption() ) {
dprintf(D_ALWAYS,
"WARNING - password fetch attempt without encryption from %s\n",
sock->peer_addr().to_sinful().Value());
goto bail_out;
}
// Get the username and domain from the wire
//dprintf (D_ALWAYS, "First potential block in get_password_handler, DC==%i\n", daemonCore != NULL);
sock->decode();
result = sock->code(user);
if( !result ) {
dprintf(D_ALWAYS, "get_passwd_handler: Failed to recv user.\n");
goto bail_out;
}
result = sock->code(domain);
if( !result ) {
dprintf(D_ALWAYS, "get_passwd_handler: Failed to recv domain.\n");
goto bail_out;
}
result = sock->end_of_message();
if( !result ) {
dprintf(D_ALWAYS, "get_passwd_handler: Failed to recv eom.\n");
goto bail_out;
}
client_user = strdup(sock->getOwner());
client_domain = strdup(sock->getDomain());
client_ipaddr = strdup(sock->peer_addr().to_sinful().Value());
// Now fetch the password from the secure store --
// If not LocalSystem, this step will fail.
password = getStoredPassword(user,domain);
if (!password) {
dprintf(D_ALWAYS,
"Failed to fetch password for %s@%s requested by %s@%s at %s\n",
user,domain,
client_user,client_domain,client_ipaddr);
goto bail_out;
}
// Got the password, send it
sock->encode();
result = sock->code(password);
if( !result ) {
dprintf(D_ALWAYS, "get_passwd_handler: Failed to send password.\n");
goto bail_out;
}
result = sock->end_of_message();
if( !result ) {
dprintf(D_ALWAYS, "get_passwd_handler: Failed to send eom.\n");
goto bail_out;
}
// Now that we sent the password, immediately zero it out from ram
SecureZeroMemory(password,strlen(password));
dprintf(D_ALWAYS,
"Fetched user %s@%s password requested by %s@%s at %s\n",
user,domain,client_user,client_domain,client_ipaddr);
bail_out:
if (client_user) free(client_user);
if (client_domain) free(client_domain);
if (client_ipaddr) free(client_ipaddr);
if (user) free(user);
if (domain) free(domain);
if (password) free(password);
return TRUE;
}
int
cred_get_cred_handler(int /*i*/, Stream *s)
{
char *client_user = NULL;
char *client_domain = NULL;
char *client_ipaddr = NULL;
int result;
int mode = 0;
char * user = NULL;
char * domain = NULL;
unsigned char * cred = NULL;
int credlen = 0;
/* Check our connection. We must be very picky since we are talking
about sending out passwords. We want to make certain
a) the Stream is a ReliSock (tcp)
b) it is authenticated (and thus authorized by daemoncore)
c) it is encrypted
*/
if ( s->type() != Stream::reli_sock ) {
dprintf(D_ALWAYS,
"WARNING - credential fetch attempt via UDP from %s\n",
((Sock*)s)->peer_addr().to_sinful().Value());
return TRUE;
}
ReliSock* sock = (ReliSock*)s;
// Ensure authentication happened and succeeded
// Daemons should register this command with force_authentication = true
if ( !sock->isAuthenticated() ) {
dprintf(D_ALWAYS,
"WARNING - authentication failed for credential fetch attempt from %s\n",
sock->peer_addr().to_sinful().Value());
goto bail_out;
}
// Enable encryption if available. If it's not available, the next
// call will fail and we'll abort the connection.
sock->set_crypto_mode(true);
if ( !sock->get_encryption() ) {
dprintf(D_ALWAYS,
"WARNING - credential fetch attempt without encryption from %s\n",
sock->peer_addr().to_sinful().Value());
goto bail_out;
}
// Get the username and domain from the wire
//dprintf (D_ALWAYS, "First potential block in get_password_handler, DC==%i\n", daemonCore != NULL);
sock->decode();
result = sock->code(user);
if( !result ) {
dprintf(D_ALWAYS, "get_cred_handler: Failed to recv user.\n");
goto bail_out;
}
result = sock->code(domain);
if( !result ) {
dprintf(D_ALWAYS, "get_cred_handler: Failed to recv domain.\n");
goto bail_out;
}
result = sock->code(mode);
if( !result ) {
dprintf(D_ALWAYS, "get_cred_handler: Failed to recv mode.\n");
goto bail_out;
}
result = sock->end_of_message();
if( !result ) {
dprintf(D_ALWAYS, "get_cred_handler: Failed to recv eom.\n");
goto bail_out;
}
client_user = strdup(sock->getOwner());
client_domain = strdup(sock->getDomain());
client_ipaddr = strdup(sock->peer_addr().to_sinful().Value());
// Now fetch the password from the secure store --
// If not LocalSystem, this step will fail.
cred = getStoredCredential(mode, user, domain, credlen);
if (!cred) {
dprintf(D_ALWAYS,
"Failed to fetch cred mode %d for %s@%s requested by %s@%s at %s\n",
mode,user,domain,
client_user,client_domain,client_ipaddr);
goto bail_out;
}
// Got the credential, send it
sock->encode();
result = sock->code(credlen);
if( !result ) {
dprintf(D_ALWAYS, "get_cred_handler: Failed to send credential size.\n");
goto bail_out;
}
result = sock->code_bytes(cred, credlen);
if( !result ) {
dprintf(D_ALWAYS, "get_cred_handler: Failed to send credential size.\n");
goto bail_out;
}
result = sock->end_of_message();
if( !result ) {
dprintf(D_ALWAYS, "get_cred_handler: Failed to send eom.\n");
goto bail_out;
}
// Now that we sent the password, immediately zero it out from ram
SecureZeroMemory(cred,credlen);
dprintf(D_ALWAYS,
"Fetched user %s@%s credential requested by %s@%s at %s\n",
user,domain,client_user,client_domain,client_ipaddr);
bail_out:
if (client_user) free(client_user);
if (client_domain) free(client_domain);
if (client_ipaddr) free(client_ipaddr);
if (user) free(user);
if (domain) free(domain);
if (cred) free(cred);
return TRUE;
}
// forward declare the non-blocking continuation function.
void store_cred_handler_continue();
// declare a simple data structure for holding the info needed
// across non-blocking retries
class StoreCredState {
public:
StoreCredState() :ccfile(NULL), retries(0), s(NULL) {};
~StoreCredState() {
delete s;
s = NULL;
if (ccfile) free(ccfile);
ccfile = NULL;
};
ClassAd return_ad;
char *ccfile;
int retries;
Stream *s;
};
/* WORKS ON BOTH WINDOWS AND UNIX */
int store_cred_handler(int /*i*/, Stream *s)
{
std::string fulluser; // full username including domain
std::string username; // just the username part before the @ of the above
std::string pass; // password, if the password is a string and mode is LEGACY
MyString ccfile; // credmon completion file to watch for before returning
ClassAd ad;
ClassAd return_ad;
auto_free_ptr cred;
int mode = 0;
int credlen = 0;
#ifdef WIN32
int64_t answer = FAILURE;
#else
long answer = FAILURE;
#endif
int cred_type = 0;
bool deferred_reply = false; // set to true when we want to defer replying to this command
bool request_credmon_wait = false; // mode on the wire requested to wait for the credmon
const char * errinfo = NULL;
//dprintf (D_ALWAYS, "First potential block in store_cred_handler, DC==%i\n", daemonCore != NULL);
if ( s->type() != Stream::reli_sock ) {
dprintf(D_ALWAYS,
"WARNING - credential store attempt via UDP from %s\n",
((Sock*)s)->peer_addr().to_sinful().Value());
return FALSE;
}
ReliSock *sock = (ReliSock*)s;
// Ensure authentication happened and succeeded and enable encryption
// Daemons should register this command with force_authentication = true
if ( !sock->isAuthenticated() ) {
dprintf(D_ALWAYS,
"WARNING - authentication failed for credential store attempt from %s\n",
sock->peer_addr().to_sinful().Value());
return FALSE;
}
s->set_crypto_mode( true );
s->decode();
bool got_message = true;
if (! s->get(fulluser) ||
! s->get(pass) ||
! s->get(mode)) {
dprintf(D_ALWAYS, "store_cred: did not receive user,pw,mode.\n");
got_message = false;
} else if (!(mode & STORE_CRED_LEGACY)) {
if ( ! sock->get(credlen)) {
got_message = false;
} else if (credlen) {
if (credlen > 0x1000000 * 100) {
dprintf(D_ALWAYS, "store_cred: ERROR cred too large (%d). possible protocol mismatch\n", credlen);
got_message = false;
} else {
cred.set((char*)malloc(credlen));
if (! sock->get_bytes(cred.ptr(), credlen)) {
got_message = false;
}
}
}
if (got_message && ! getClassAd(sock, ad)) {
got_message = false;
}
}
if ( ! got_message || !sock->end_of_message()) {
dprintf(D_ALWAYS, "store_cred: did not recieve a valid command\n");
answer = FAILURE_PROTOCOL_MISMATCH;
goto cleanup_and_exit;
}
// strip the CREDMON_WAIT flag out of the mode
if (mode & STORE_CRED_WAIT_FOR_CREDMON) {
request_credmon_wait = true;
mode &= ~STORE_CRED_WAIT_FOR_CREDMON;
}
if (mode < STORE_CRED_FIRST_MODE || mode > STORE_CRED_LAST_MODE) {
dprintf(D_ALWAYS, "store_cred: %d is not a valid mode\n", mode);
answer = FAILURE_BAD_ARGS;
goto cleanup_and_exit;
}
// if no user was sent, this instructs us to take the authenticated
// user from the socket.
if (fulluser.empty()) {
// fulluser needs to have the @domain attached to pass checks
// below, even though at the moment it ultimately gets stripped
// off.
fulluser = sock->getFullyQualifiedUser();
dprintf(D_SECURITY | D_VERBOSE, "store_cred: Storing cred for authenticated user \"%s\"\n", fulluser.c_str());
}
if ( ! fulluser.empty()) {
// ensure that the username has an '@' delimteter
size_t ix_at = fulluser.find('@');
if (ix_at == std::string::npos || ix_at == 0) {
dprintf(D_ALWAYS, "store_cred_handler: user \"%s\" not in user@domain format\n", fulluser.c_str());
answer = FAILURE_BAD_ARGS;
}
else {
username = fulluser.substr(0, ix_at);
// We don't allow one user to set another user's credential
// (except for users explicitly allowed to)
// TODO: We deliberately ignore the user domains. Isn't
// that a security issue?
// we don't allow updates to the pool password through this interface
StringList auth_users;
param_and_insert_unique_items("CRED_SUPER_USERS", auth_users);
auth_users.insert(username.c_str());
const char *sock_owner = sock->getOwner();
if ( sock_owner == NULL ||
#if defined(WIN32)
!auth_users.contains_anycase_withwildcard( sock_owner )
#else
!auth_users.contains_withwildcard( sock_owner )
#endif
)
{
dprintf( D_ALWAYS, "WARNING: store_cred() for user %s attempted by user %s, rejecting\n", fulluser.c_str(), sock_owner ? sock_owner : "<unknown>" );
answer = FAILURE_NOT_ALLOWED;
} else if (((mode&MODE_MASK) != GENERIC_QUERY) && username_is_pool_password(fulluser.c_str())) {
dprintf(D_ALWAYS, "ERROR: attempt to set pool password via STORE_CRED! (must use STORE_POOL_CRED)\n");
answer = FAILURE_NOT_ALLOWED;
} else if ((mode & ~(MODE_MASK | STORE_CRED_LEGACY)) == STORE_CRED_USER_PWD) {
answer = store_cred_password(fulluser.c_str(), pass.c_str(), mode);
} else {
// mode is either Krb or OAuth
cred_type = mode & CRED_TYPE_MASK;
if ((mode & STORE_CRED_LEGACY) && ! pass.empty()) {
// the credential was passed as a base64 encoded string in the pass field.
int rawlen = -1;
unsigned char* rawbuf = NULL;
zkm_base64_decode(pass.c_str(), &rawbuf, &rawlen);
cred.set((char*)rawbuf); // make cred responsible for freeing this
if (rawlen <= 0) {
dprintf(D_ALWAYS, "Failed to decode credential!\n");
answer = FAILURE;
goto cleanup_and_exit;
}
credlen = rawlen;
// fixup the cred type when there is a legacy mode credential by looking that the
// deprecated CREDD_OAUTH_MODE knob.
cred_type = STORE_CRED_USER_KRB;
if (param_boolean("CREDD_OAUTH_MODE", false)) {
cred_type = STORE_CRED_USER_OAUTH;
}
}
// dispatch to the correct handler
if (cred_type == STORE_CRED_USER_KRB) {
dprintf(D_ALWAYS, "GOT KRB STORE CRED mode=%d\n", mode);
int krb_mode = (mode & MODE_MASK) | STORE_CRED_USER_KRB;
answer = KRB_STORE_CRED(username.c_str(), (unsigned char*)cred.ptr(), credlen, krb_mode, return_ad, ccfile);
} else if (cred_type == STORE_CRED_USER_OAUTH) {
dprintf(D_ALWAYS, "GOT OAUTH STORE CRED mode=%d\n", mode);
int oauth_mode = (mode & MODE_MASK) | STORE_CRED_USER_OAUTH;
answer = OAUTH_STORE_CRED(username.c_str(), (unsigned char*)cred.ptr(), credlen, oauth_mode, &ad, return_ad, ccfile);
} else {
dprintf(D_ALWAYS, "unknown credential type %d\n", cred_type);
answer = FAILURE_BAD_ARGS;
}
}
}
}
// we only need to signal CREDMON if the file was just written. if it
// already existed, just leave it be, and don't signal the CREDMON.
// if we have the name of a file to watch for, then we deferr the reply
// we setup a timer to handle the reply for us once the file exists.
if (store_cred_failed(answer, mode, &errinfo)) {
dprintf(D_SECURITY | D_FULLDEBUG, "NBSTORECRED: not signaling credmon. result=%lld, ccfile=%s\n",
(long long)answer, ccfile.empty() ? "<null>" : ccfile.c_str());
} else if ( ! ccfile.empty()) {
// good so far, but the real answer is determined by our ability
// to signal the credmon and have the completion file appear. we don't
// want this to block so we go back to daemoncore and set a timer
// for 0 seconds. the timer will reset itself as needed.
if (wake_the_credmon(mode) && request_credmon_wait) {
StoreCredState* retry_state = new StoreCredState();
retry_state->ccfile = strdup(ccfile.c_str());
retry_state->retries = param_integer("CREDD_POLLING_TIMEOUT", 20);
retry_state->s = new ReliSock(*((ReliSock*)s));
dprintf( D_FULLDEBUG, "store_cred: setting timer to poll for completion file: %s, retries : %i, sock: %p\n",
retry_state->ccfile, retry_state->retries, retry_state->s);
daemonCore->Register_Timer(0, store_cred_handler_continue, "Poll for existence of .cc file");
daemonCore->Register_DataPtr(retry_state);
deferred_reply = true;
} else {
// If we got back a success, but didn't wake the credmon, or were told not to wait
// change the answer to 'pending'
if (answer == SUCCESS) {
answer = SUCCESS_PENDING;
}
}
}
cleanup_and_exit:
if (cred) {
SecureZeroMemory(cred.ptr(), credlen);
}
// if we modified the credential, then we also attempted to register a
// timer to poll for the cred file. if that happened succesfully, return
// now so we can poll in a non-blocking way.
//
// if we either had a failure, or had success but didn't modify the file,
// then there's nothing to poll for and we should not return and should
// finish the wire protocol below.
//
if ( ! deferred_reply) {
s->encode();
if (! s->put(answer)) {
dprintf(D_ALWAYS, "store_cred: Failed to send result.\n");
return FAILURE;
}
if (!(mode & STORE_CRED_LEGACY)) {
putClassAd(s, return_ad);
}
if (! s->end_of_message()) {
dprintf(D_ALWAYS, "store_cred: Failed to send end of message.\n");
}
}
return ! store_cred_failed(answer, mode);
}
void store_cred_handler_continue()
{
// can only be called when daemonCore is non-null since otherwise
// there's no data
if(!daemonCore) return;
StoreCredState *dptr = (StoreCredState*)daemonCore->GetDataPtr();
dprintf( D_FULLDEBUG, "Checking for completion file: %s, retries: %i, sock: %p\n", dptr->ccfile, dptr->retries, dptr->s);
// stat the file as root
struct stat ccfile_stat;
priv_state priv = set_root_priv();
int rc = stat(dptr->ccfile, &ccfile_stat);
set_priv(priv);
#ifdef WIN32 // CEDAR put on *nix thinks int64_t is ambiguous, so we use long instead (long on Win32 is not 64bits)
int64_t answer;
#else
long answer;
#endif
if (rc < 0) {
if (dptr->retries > 0) {
// re-register timer with one less retry
dprintf( D_FULLDEBUG, "Re-registering completion timer and dptr\n");
dptr->retries--;
daemonCore->Register_Timer(1, store_cred_handler_continue, "Poll for existence of .cc file");
daemonCore->Register_DataPtr(dptr);
return;
}
answer = FAILURE_CREDMON_TIMEOUT;
} else {
answer = ccfile_stat.st_mtime;
dprintf(D_ALWAYS, "Completion file %s exists. mtime=%lld", dptr->ccfile, (long long)answer);
}
// regardless of SUCCESS or FAILURE, if we got here we need to finish
// the wire protocol for STORE_CRED
dptr->s->encode();
if (! dptr->s->put(answer) || ! putClassAd(dptr->s, dptr->return_ad)) {
dprintf(D_ALWAYS, "store_cred: Failed to send result.\n");
} else if( ! dptr->s->end_of_message() ) {
dprintf( D_ALWAYS, "store_cred: Failed to send end of message.\n");
}
// we copied the stream and strdup'ed the user, so do a deep free of dptr
delete dptr;
return;
}
/* obsolete wire form for STORE_CRED
static int code_store_cred(Stream *socket, char* &user, char* &pw, int &mode) {
int result;
result = socket->code(user);
if( !result ) {
dprintf(D_ALWAYS, "store_cred: Failed to send/recv user.\n");
return FALSE;
}
result = socket->code(pw);
if( !result ) {
dprintf(D_ALWAYS, "store_cred: Failed to send/recv pw.\n");
return FALSE;
}
result = socket->code(mode);
if( !result ) {
dprintf(D_ALWAYS, "store_cred: Failed to send/recv mode.\n");
return FALSE;
}
result = socket->end_of_message();
if( !result ) {
dprintf(D_ALWAYS, "store_cred: Failed to send/recv eom.\n");
return FALSE;
}
return TRUE;
}
*/
int store_pool_cred_handler(int, Stream *s)
{
int result;
char *pw = NULL;
char *domain = NULL;
MyString username = POOL_PASSWORD_USERNAME "@";
if (s->type() != Stream::reli_sock) {
dprintf(D_ALWAYS, "ERROR: pool password set attempt via UDP\n");
return CLOSE_STREAM;
}
// if we're the CREDD_HOST, make sure any password setting is done locally
// (since knowing what the pool password is on the CREDD_HOST means being
// able to fetch users' passwords)
char *credd_host = param("CREDD_HOST");
if (credd_host) {
MyString my_fqdn_str = get_local_fqdn();
MyString my_hostname_str = get_local_hostname();
// TODO: Arbitrarily picking IPv4
MyString my_ip_str = get_local_ipaddr(CP_IPV4).to_ip_string();
// figure out if we're on the CREDD_HOST
bool on_credd_host = (strcasecmp(my_fqdn_str.Value(), credd_host) == MATCH);
on_credd_host = on_credd_host || (strcasecmp(my_hostname_str.Value(), credd_host) == MATCH);
on_credd_host = on_credd_host || (strcmp(my_ip_str.Value(), credd_host) == MATCH);
if (on_credd_host) {
// we're the CREDD_HOST; make sure the source address matches ours
const char *addr = ((ReliSock*)s)->peer_ip_str();
if (!addr || strcmp(my_ip_str.Value(), addr)) {
dprintf(D_ALWAYS, "ERROR: attempt to set pool password remotely\n");
free(credd_host);
return CLOSE_STREAM;
}
}
free(credd_host);
}
//dprintf (D_ALWAYS, "First potential block in store_pool_cred_handler, DC==%i\n", daemonCore != NULL);
s->decode();
if (!s->code(domain) || !s->code(pw) || !s->end_of_message()) {
dprintf(D_ALWAYS, "store_pool_cred: failed to receive all parameters\n");
goto spch_cleanup;
}
if (domain == NULL) {
dprintf(D_ALWAYS, "store_pool_cred_handler: domain is NULL\n");
goto spch_cleanup;
}
// construct the full pool username
username += domain;
// do the real work
if (pw && *pw) {
result = store_cred_password(username.Value(), pw, GENERIC_ADD);
SecureZeroMemory(pw, strlen(pw));
}
else {
result = store_cred_password(username.Value(), NULL, GENERIC_DELETE);
}
s->encode();
if (!s->code(result)) {
dprintf(D_ALWAYS, "store_pool_cred: Failed to send result.\n");
goto spch_cleanup;
}
if (!s->end_of_message()) {
dprintf(D_ALWAYS, "store_pool_cred: Failed to send end of message.\n");
}
spch_cleanup:
if (pw) free(pw);
if (domain) free(domain);
return CLOSE_STREAM;
}
// OBSOLETE!!! do_store_cred for LEGACY password modes only!!.
// use the other do_store_cred for working with Krb or OAuth creds
int
do_store_cred(const char* user, const char* pw, int mode, Daemon* d, bool force) {
int result;
int return_val;
Sock* sock = NULL;
// this function only works with password and LEGACY password
int cred_type = mode & CRED_TYPE_MASK;
if (cred_type != STORE_CRED_USER_PWD && cred_type != STORE_CRED_LEGACY_PWD) {
dprintf ( D_ALWAYS | D_BACKTRACE, "STORE_CRED: Unsupported mode %d\n", mode);
return FAILURE_BAD_ARGS;
}
// to help future debugging, print out the mode we are in
dprintf ( D_ALWAYS, "STORE_CRED: (old) In mode %d '%s', user is \"%s\"\n", mode, mode_name[mode & MODE_MASK], user);
// If we are root / SYSTEM and we want a local daemon,
// then do the work directly to the local registry.
// If not, then send the request over the wire to a remote credd or schedd.
if ( is_root() && d == NULL ) {
return_val = store_cred_password(user,pw,mode);
} else {
// send out the request remotely.
// first see if we're operating on the pool password
int cmd = STORE_CRED;
int domain_pos = -1;
if (username_is_pool_password(user, &domain_pos)) {
cmd = STORE_POOL_CRED;
user += domain_pos + 1; // we only need to send the domain name for STORE_POOL_CRED
}
if (domain_pos <= 0) {
dprintf(D_ALWAYS, "store_cred: user \"%s\" not in user@domain format\n", user);
return FAILURE_BAD_ARGS;
}
if (d == NULL) {
if (cmd == STORE_POOL_CRED) {
// need to go to the master for setting the pool password
dprintf(D_FULLDEBUG, "Storing credential to local master\n");
Daemon my_master(DT_MASTER);
sock = my_master.startCommand(cmd, Stream::reli_sock, 0);
}
else {
dprintf(D_FULLDEBUG, "Storing credential to local schedd\n");
Daemon my_schedd(DT_SCHEDD);
sock = my_schedd.startCommand(cmd, Stream::reli_sock, 0);
}
} else {
dprintf(D_FULLDEBUG, "Starting a command on %s\n", d->idStr());
sock = d->startCommand(cmd, Stream::reli_sock, 0);
}
if( !sock ) {
dprintf(D_ALWAYS,
"STORE_CRED: Failed to start command.\n");
dprintf(D_ALWAYS,
"STORE_CRED: Unable to contact the REMOTE schedd.\n");
return FAILURE;
}
// for remote updates (which send the password), verify we have a secure channel,
// unless "force" is specified
// For STORE_CRED, enable encryption.
if ( cmd == STORE_CRED ) {
sock->set_crypto_mode( true );
}
if (!force && (d != NULL) &&
((sock->type() != Stream::reli_sock) || !((ReliSock*)sock)->triedAuthentication() || !sock->get_encryption())) {
dprintf(D_ALWAYS, "STORE_CRED: blocking attempt to update over insecure channel\n");
delete sock;
return FAILURE_NOT_SECURE;
}
if (cmd == STORE_CRED) {
int legacy_mode = STORE_CRED_LEGACY_PWD | (mode & MODE_MASK); // make sure legacy bit is set because we plan to use the legacy wire form.
if (! sock->put(user) ||
! sock->put(pw) ||
! sock->put(legacy_mode) ||
! sock->end_of_message()) {
dprintf(D_ALWAYS, "store_cred: failed to send STORE_CRED (legacy) message\n");
delete sock;
return FAILURE;
}
}
else {
// only need to send the domain and password for STORE_POOL_CRED
if (!sock->put(user) ||
!sock->put(pw) ||
!sock->end_of_message()) {
dprintf(D_ALWAYS, "store_cred: failed to send STORE_POOL_CRED message\n");
delete sock;
return FAILURE;
}
}
//dprintf (D_ALWAYS, "First potential block in store_cred, DC==%i\n", daemonCore != NULL);
sock->decode();
result = sock->get(return_val);
if( !result ) {
dprintf(D_ALWAYS, "store_cred: failed to recv answer.\n");
delete sock;
return FAILURE;
}
result = sock->end_of_message();
if( !result ) {
dprintf(D_ALWAYS, "store_cred: failed to recv eom.\n");
delete sock;
return FAILURE;
}
} // end of case where we send out the request remotely
switch(mode & MODE_MASK)
{
case GENERIC_ADD:
if( return_val == SUCCESS ) {
dprintf(D_FULLDEBUG, "Addition succeeded!\n");
} else {
dprintf(D_FULLDEBUG, "Addition failed!\n");
}
break;
case GENERIC_DELETE:
if( return_val == SUCCESS ) {
dprintf(D_FULLDEBUG, "Delete succeeded!\n");
} else {
dprintf(D_FULLDEBUG, "Delete failed!\n");
}
break;
case GENERIC_QUERY:
if( return_val == SUCCESS ) {
dprintf(D_FULLDEBUG, "We have a credential stored!\n");
} else {
dprintf(D_FULLDEBUG, "Query failed!\n");
}
break;
}
if ( sock ) delete sock;
return return_val;
}
// This implentation of do_store_cred handles password, krb, or oauth credential types
// as of 8.9.7, this is the preferred method
//
long long
do_store_cred (
const char *user,
int mode,
const unsigned char * cred, int credlen,
ClassAd & return_ad, // extra return information for some command modes
ClassAd* ad /*= NULL*/,
Daemon *d /*= NULL*/)
{
const char * err = NULL;
#ifdef WIN32 // long is not 64 bits on Windows, and inta64_t results in compile errors on some platforms.
int64_t return_val;
#else
long return_val;
#endif
Sock* sock = NULL;
MyString daemonid; // for error messages
// to help future debugging, print out the mode we are in
dprintf ( D_ALWAYS, "STORE_CRED: In mode %d '%s', user is \"%s\"\n", mode, mode_name[mode & MODE_MASK], user);
// if a legacy mode is requested, no ClassAd argument can be sent
if (mode & STORE_CRED_LEGACY) {
if (ad && (ad->size() > 0)) {
dprintf(D_ALWAYS, "STORE_CRED: ERROR ClassAd argument cannot be used with legacy mode %d\n", mode);
return FAILURE_BAD_ARGS;
}
}
if (credlen && ! cred) {
return FAILURE;
}
if ((mode & MODE_MASK) == GENERIC_ADD) {
if ( ! cred) {
return FAILURE;
}
}
// If we are root / SYSTEM and we want a local daemon,
// then do the work directly to the local registry.
// If not, then send the request over the wire to a remote credd or schedd.
if ( is_root() && d == NULL ) {
MyString ccfile; // we don't care about a completion file, but we have to pass this in anyway
if (mode >= STORE_CRED_LEGACY_PWD && mode <= STORE_CRED_LAST_MODE) {
return_val = store_cred_password(user, (const char *)cred, mode);
} else {
return_val = store_cred_blob(user, mode, cred, credlen, ad, ccfile);
}
} else {
// send out the request remotely.
// first see if we're operating on the pool password
// if we are just use the version of do_store_cred that handles passwords
int domain_pos = -1;
if (username_is_pool_password(user, &domain_pos)) {
int cred_type = (mode & ~MODE_MASK);
if ((cred_type != STORE_CRED_LEGACY_PWD) && (cred_type != STORE_CRED_USER_PWD)) {
return FAILURE_BAD_ARGS;
}
MyString pw;
if (cred) pw.set((const char *)cred, credlen);
return do_store_cred(user, pw.c_str(), mode, d);
}
if ((domain_pos <= 0) && user[0]) {
dprintf(D_ALWAYS, "store_cred: FAILED. user \"%s\" not in user@domain format\n", user);
return FAILURE;
}
if (d == NULL) {
dprintf(D_FULLDEBUG, "Storing credential to local schedd\n");
Daemon my_schedd(DT_SCHEDD);
sock = my_schedd.startCommand(STORE_CRED, Stream::reli_sock, 0);
if (! sock) { daemonid = my_schedd.idStr(); }
} else {
dprintf(D_FULLDEBUG, "Starting a command on a REMOTE schedd or credd\n");
sock = d->startCommand(STORE_CRED, Stream::reli_sock, 0);
if (! sock) { daemonid = d->idStr(); }
}
if( !sock ) {
dprintf(D_ALWAYS,
"STORE_CRED: Failed to start STORE_CRED command. Unable to contact %s\n", daemonid.c_str());
return FAILURE;
}
// for remote updates (which send the password), verify we have a secure channel,
sock->set_crypto_mode( true );
if ((d != NULL) &&
((sock->type() != Stream::reli_sock) || !((ReliSock*)sock)->triedAuthentication() || !sock->get_encryption())) {
dprintf(D_ALWAYS, "STORE_CRED: blocking attempt to update over insecure channel\n");
delete sock;
return FAILURE_NOT_SECURE;
}
MyString pw;
if (mode & STORE_CRED_LEGACY) {
if (cred) pw.set((const char *)cred, credlen);
} else {
// TODO: password field could be used for other data, perhaps cred subtype?
}
bool sent = true;
// wire protocol is string, string, int. then if the mode does NOT have the LEGACY bit set : credlen, credbytes, classad
if ( ! sock->put(user) ||
! sock->put(pw) ||
! sock->put(mode)) {
dprintf(D_ALWAYS, "store_cred: Failed to send command payload\n");
sent = false;
} else if (!(mode & STORE_CRED_LEGACY)) {
if ( ! sock->put(credlen)) {
sent = false;
} else if (credlen && ! sock->put_bytes(cred, credlen)) {
sent = false;
} else if (ad && ! putClassAd(sock, *ad)) {
sent = false;
} else if (!ad) { // if no classad supplied, put a dummy ad to satisfy the wire protocol
ClassAd tmp; tmp.Clear();
if ( ! putClassAd(sock, tmp)) {
sent = false;
}
}
}
if (sent) {
if ( ! sock->end_of_message()) {
dprintf(D_ALWAYS, "store_cred: Failed to send EOM.\n");
sent = false;
}
}
if ( ! sent) {
dprintf(D_ALWAYS, "store_cred: sending of command mode=%d failed.\n", mode);
delete sock;
return FAILURE;
}
//dprintf (D_ALWAYS, "First potential block in store_cred, DC==%i\n", daemonCore != NULL);
// now the reply. For LEGACY, the reply is an integer
// for non LEGACY the reply is a long long and a ClassAd
sock->decode();
err = NULL;
if ( !sock->get(return_val)) {
err = "failed to recieve and answer";
return_val = FAILURE;
}
else if (!(mode & STORE_CRED_LEGACY)) {
if ( ! getClassAd(sock, return_ad)) {
err = "possibly protocol mismatch - remote store_cred did not return a classad";
return_val = FAILURE_PROTOCOL_MISMATCH;
}
}
if (!err && !sock->end_of_message()) {
err = "possibly protocol mismatch - end_of_message failed";
return_val = FAILURE_PROTOCOL_MISMATCH;
}
if (err) {
dprintf(D_ALWAYS, "store_cred: mode=%d %s\n", mode, err);
delete sock;
return return_val;
}
} // end of case where we send out the request remotely
switch(mode & MODE_MASK)
{
case GENERIC_ADD:
if (store_cred_failed(return_val, mode, &err)) {
dprintf(D_FULLDEBUG, "Addition failed! err=%d %s\n", (int)return_val, err?err:"");
} else {
dprintf(D_FULLDEBUG, "Addition succeeded!\n");
}
break;
case GENERIC_DELETE:
if (store_cred_failed(return_val, mode, &err)) {
dprintf(D_FULLDEBUG, "Delete failed! err=%d %s\n", (int)return_val, err?err:"");
} else {
dprintf(D_FULLDEBUG, "Delete succeeded!\n");
}
break;
case GENERIC_QUERY:
if (!store_cred_failed(return_val, mode, &err)) {
dprintf(D_FULLDEBUG, "We have a credential stored!\n");
} else if (return_val == FAILURE_NO_IMPERSONATE) {
dprintf(D_FULLDEBUG, "Running in single-user mode, credential not needed\n");
} else {
dprintf(D_FULLDEBUG, "Query failed! err=%d %s\n", (int)return_val, err?err:"");
}
break;
}
if ( sock ) delete sock;
return return_val;
}
/*
int deleteCredential( const char* user, const char* pw, Daemon *d ) {
return do_store_cred(user, pw, DELETE_MODE, d);
}
int addCredential( const char* user, const char* pw, Daemon *d ) {
return do_store_cred(user, pw, ADD_MODE, d);
}
int queryCredential( const char* user, Daemon *d ) {
return do_store_cred(user, NULL, QUERY_MODE, d);
}
*/
int do_check_oauth_creds (
const classad::ClassAd* request_ads[],
int num_ads,
std::string & outputURL,
Daemon* d /* = NULL*/)
{
ReliSock * sock;
CondorError err;
MyString daemonid;
outputURL.clear();
if (num_ads < 0) {
return -1;
}
if (num_ads == 0) {
return 0;
}
if (! d) {
Daemon my_credd(DT_CREDD);
if (my_credd.locate()) {
sock = (ReliSock*)my_credd.startCommand(CREDD_CHECK_CREDS, Stream::reli_sock, 20, &err);
if (! sock) { daemonid = my_credd.idStr(); }
} else {
dprintf(D_ALWAYS, "could not find local CredD\n");
return -2;
}
} else if (d->locate()) {
sock = (ReliSock*)d->startCommand(CREDD_CHECK_CREDS, Stream::reli_sock, 20, &err);
if (! sock) { daemonid = d->idStr(); }
} else {
daemonid = d->idStr();
dprintf(D_ALWAYS, "could not locate %s\n", daemonid.c_str());
return -2;
}
if (! sock) {
dprintf(D_ALWAYS, "startCommand(CREDD_CHECK_CREDS) failed to %s\n", daemonid.c_str());
return -3;
}
bool sent = false;
sock->encode();
if ( ! sock->put(num_ads)) {
sent = false;
} else {
sent = true;
for (int ii = 0; ii < num_ads; ++ii) {
// to insure backward compability, there are 3 fields that *must* be set to empty strings
// if they are missing or undefined. 8.9.9 and later will handle missing fields correctly
// but 8.9.* < 8.9.9 will leak values from one attribute to the other
// if Handle, Scope, or Audience are not present or are set to undefined.
// which can happen if the python-bindings or 8.9.8 submit is making the call
classad::ClassAd ad(*request_ads[ii]);
static const char * const fix_fields[] = { "Handle", "Scopes", "Audience" };
for (int ii = 0; ii < (int)(sizeof(fix_fields) / sizeof(fix_fields[0])); ++ii) {
const char * attr = fix_fields[ii];
classad::Value val;
val.SetUndefinedValue();
if (! ad.EvaluateAttr(attr, val) || val.IsUndefinedValue()) {
ad.Assign(attr, "");
}
}
if (! putClassAd(sock, ad)) {
sent = false;
break;
}
}
}
// did we send the query payload? then send EOM also, of that fails the other end probably closed the socket
if (sent) {
if ( ! sock->end_of_message()) {
sent = false;
}
}
// if we sent a the request, no wait for a response
// and then close the socket.
if (sent) {
sock->decode();
if ( ! sock->get(outputURL) || ! sock->end_of_message()) {
sent = false;
}
}
sock->close();
delete sock;
// report any failures
if ( ! sent) {
dprintf(D_ALWAYS, "Failed to query OAuth from the CredD\n");
return -4;
}
// return 0 or positive values for success
// an empty URL indicates that the creds are already stored
// a non-empty URL must be visited to create the requested creds
return (int)outputURL.size();
}
#if !defined(WIN32)
// helper routines for UNIX keyboard input
#include <termios.h>
static struct termios stored_settings;
static void echo_off(void)
{
struct termios new_settings;
tcgetattr(0, &stored_settings);
memcpy(&new_settings, &stored_settings, sizeof(struct termios));
new_settings.c_lflag &= (~ECHO);
tcsetattr(0, TCSANOW, &new_settings);
return;
}
static void echo_on(void)
{
tcsetattr(0,TCSANOW,&stored_settings);
return;
}
#endif
// reads at most maxlength chars without echoing to the terminal into buf
bool
read_from_keyboard(char* buf, int maxlength, bool echo) {
#if !defined(WIN32)
int ch, ch_count;
ch = ch_count = 0;
fflush(stdout);
const char end_char = '\n';
if (!echo) echo_off();
while ( ch_count < maxlength-1 ) {
ch = getchar();
if ( ch == end_char ) {
break;
} else if ( ch == '\b') { // backspace
if ( ch_count > 0 ) { ch_count--; }
continue;
} else if ( ch == '\003' ) { // CTRL-C
return FALSE;
}
buf[ch_count++] = (char) ch;
}
buf[ch_count] = '\0';
if (!echo) echo_on();
#else
/*
The Windows method for getting keyboard input is very different due to
issues encountered by British users trying to use the pound character in their
passwords. _getch did not accept any input from using the alt+#### method of
inputting characters nor the pound symbol when using a British keyboard layout.
The solution was to explicitly use ReadConsoleW, the unicode version of ReadConsole,
to take in the password and down convert it into ascii.
See Ticket #1639
*/
HANDLE hStdin = GetStdHandle(STD_INPUT_HANDLE);
/*
There is a difference between the code page the console is reporting and
the code page that needs to be used for the ascii conversion. Below code
acts to provide additional debug information should the need arise.
*/
//UINT cPage = GetConsoleCP();
//printf("Console CP: %d\n", cPage);
//Preserve the previous console mode and switch back once input is complete.
DWORD oldMode;
GetConsoleMode(hStdin, &oldMode);
//Default entry method is to not echo back what is entered.
DWORD newMode = ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT;
if(echo)
{
newMode |= ENABLE_ECHO_INPUT;
}
SetConsoleMode(hStdin, newMode);
int cch;
//maxlength is passed in even though it is a fairly constant value, so need to dynamically allocate.
wchar_t *wbuffer = new wchar_t[maxlength];
if(!wbuffer)
{
return FALSE;
}
ReadConsoleW(hStdin, wbuffer, maxlength, (DWORD*)&cch, NULL);
SetConsoleMode(hStdin, oldMode);
//Zero terminate the input.
cch = MIN(cch, maxlength-1);
wbuffer[cch] = '\0';
--cch;
//Strip out the newline and return that ReadConsoleW appends and zero terminate again.
while (cch >= 0)
{
if(wbuffer[cch] == '\r' || wbuffer[cch] == '\n')
wbuffer[cch] = '\0';
else
break;
--cch;
}
//Down convert the input into ASCII.
int converted = WideCharToMultiByte(CP_ACP, WC_COMPOSITECHECK, wbuffer, -1, buf, maxlength, NULL, NULL);
delete[] wbuffer;
#endif
return TRUE;
}
char*
get_password() {
char *buf;
buf = (char *)malloc(MAX_PASSWORD_LENGTH + 1);
if (! buf) { fprintf(stderr, "Out of Memory!\n\n"); return NULL; }
printf("Enter password: ");
if ( ! read_from_keyboard(buf, MAX_PASSWORD_LENGTH + 1, false) ) {
free(buf);
return NULL;
}
return buf;
}
bool
NamedCredentialCache::List(std::vector<std::string> &creds, CondorError *err)
{
// First, check to see if our cache is still usable; if so, make a copy.
auto current = std::chrono::steady_clock::now();
if (std::chrono::duration_cast<std::chrono::seconds>(current - m_last_refresh).count() < 10) {
std::copy(m_creds.begin(), m_creds.end(), std::back_inserter(creds));
return true;
}
// Next, iterate through the passwords directory and cache the names
// Note we reuse the exclude regexp from the configuration subsys.
std::string dirpath;
if (!param(dirpath, "SEC_PASSWORD_DIRECTORY")) {
if (err) err->push("CRED", 1, "SEC_PASSWORD_DIRECTORY is undefined");
return false;
}
const char* _errstr;
int _erroffset;
std::string excludeRegex;
// We simply fail invalid regex as the config subsys should have EXCEPT'd
// in this case.
if (!param(excludeRegex, "LOCAL_CONFIG_DIR_EXCLUDE_REGEXP")) {
if (err) err->push("CRED", 1, "LOCAL_CONFIG_DIR_EXCLUDE_REGEXP is unset");
return false;
}
Regex excludeFilesRegex;
if (!excludeFilesRegex.compile(excludeRegex, &_errstr, &_erroffset)) {
if (err) err->pushf("CRED", 1, "LOCAL_CONFIG_DIR_EXCLUDE_REGEXP "
"config parameter is not a valid "
"regular expression. Value: %s, Error: %s",
excludeRegex.c_str(), _errstr ? _errstr : "");
return false;
}
if(!excludeFilesRegex.isInitialized() ) {
if (err) err->push("CRED", 1, "Failed to initialize exclude files regex.");
return false;
}
// If we can, try reading out the passwords as root.
TemporaryPrivSentry sentry(get_priv_state() == PRIV_UNKNOWN ? PRIV_UNKNOWN : PRIV_ROOT);
m_creds.clear();
std::unordered_set<std::string> tmp_creds;
std::string pool_password;
if (param(pool_password, "SEC_PASSWORD_FILE")) {
if (0 == access(pool_password.c_str(), R_OK)) {
tmp_creds.insert("POOL");
}
}
Directory dir(dirpath.c_str());
if (!dir.Rewind()) {
if (err) {
err->pushf("CRED", 1, "Cannot open %s: %s (errno=%d)",
dirpath.c_str(), strerror(errno), errno);
}
if (!tmp_creds.empty()) {
std::copy(tmp_creds.begin(), tmp_creds.end(), std::back_inserter(m_creds));
std::copy(m_creds.begin(), m_creds.end(), std::back_inserter(creds));
} else {
return false;
}
}
const char *file;
while( (file = dir.Next()) ) {
if (dir.IsDirectory()) {
continue;
}
if(!excludeFilesRegex.match(file)) {
if (0 == access(dir.GetFullPath(), R_OK)) {
tmp_creds.insert(file);
}
} else {
dprintf(D_FULLDEBUG|D_SECURITY, "Ignoring password file "
"based on LOCAL_CONFIG_DIR_EXCLUDE_REGEXP: "
"'%s'\n", dir.GetFullPath());
}
}
std::copy(tmp_creds.begin(), tmp_creds.end(), std::back_inserter(m_creds));
std::sort(m_creds.begin(), m_creds.end());
std::copy(m_creds.begin(), m_creds.end(), std::back_inserter(creds));
return true;
}
bool getNamedCredential(const std::string &cred, std::string &contents, CondorError *err) {
std::string dirpath;
if (!param(dirpath, "SEC_PASSWORD_DIRECTORY")) {
if (err) err->push("CRED", 1, "SEC_PASSWORD_DIRECTORY is undefined");
return false;
}
std::string fullpath = dirpath + DIR_DELIM_CHAR + cred;
std::unique_ptr<char> password(read_password_from_filename(fullpath.c_str(), err));
if (!password.get()) {
return false;
}
contents = std::string(password.get());
return true;
}
bool
listNamedCredentials(std::vector<std::string> &creds, CondorError *err) {
return g_cred_cache.List(creds, err);
}
void refreshNamedCredentials() {
g_cred_cache.Refresh();
}
|
package ru.skbkontur.octopnp.agent;
import com.intellij.openapi.diagnostic.Logger;
import jetbrains.buildServer.RunBuildException;
import jetbrains.buildServer.agent.*;
import jetbrains.buildServer.util.StringUtil;
import jetbrains.buildServer.util.pathMatcher.AntPatternFileCollector;
import org.apache.commons.io.FileUtils;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import ru.skbkontur.octopnp.CommonConstants;
import java.io.File;
import java.io.FilenameFilter;
import java.net.MalformedURLException;
import java.net.URL;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.concurrent.*;
class PackAndPublishBuildProcess implements BuildProcess, Callable<BuildFinishedStatus> {
private final Logger LOG = Logger.getInstance(getClass().getName());
private final BuildProgressLogger logger;
private final boolean failBuildOnExitCode;
private final File checkoutDir;
private final File workingDir;
private final Map<String, String> runnerParameters;
private final CommonConstants octopnpConstants;
private List<String> nuspecFiles;
private Future<BuildFinishedStatus> buildProcessFuture;
PackAndPublishBuildProcess(@NotNull AgentRunningBuild runningBuild, @NotNull BuildRunnerContext buildRunnerContext) {
logger = runningBuild.getBuildLogger();
failBuildOnExitCode = runningBuild.getFailBuildOnExitCode();
checkoutDir = runningBuild.getCheckoutDirectory();
workingDir = new File(runningBuild.getBuildTempDirectory(), "octopnpTmp");
runnerParameters = buildRunnerContext.getRunnerParameters();
octopnpConstants = new CommonConstants();
}
public void interrupt() {
LOG.info("BuildProcess interrupt");
buildProcessFuture.cancel(true);
}
public boolean isInterrupted() {
return buildProcessFuture.isCancelled() && isFinished();
}
public boolean isFinished() {
return buildProcessFuture.isDone();
}
public void start() throws RunBuildException {
final String nuspecPaths = runnerParameters.get(octopnpConstants.getNuspecPathsKey());
nuspecFiles = resolveNuspecAbsoluteFileNames(nuspecPaths);
resetWorkingDir();
extractNugetExe();
try {
buildProcessFuture = Executors.newSingleThreadExecutor().submit(this);
LOG.info("BuildProcess started");
} catch (final RejectedExecutionException e) {
String message = "BuildProcess couldn't start";
LOG.error(message, e);
throw new RunBuildException(message, e);
}
}
@NotNull
public BuildFinishedStatus waitFor() throws RunBuildException {
try {
final BuildFinishedStatus status = buildProcessFuture.get();
LOG.info("BuildProcess finished");
if (status.isFailed()) {
logger.buildFailureDescription("Pack or publish failed. Please check the build log for details.");
}
return status;
} catch (final ExecutionException e) {
String message = "BuildProcess failed";
LOG.error(message, e);
throw new RunBuildException(message, e);
} catch (final InterruptedException e) {
Thread.interrupted();
String message = "BuildProcess thread was interrupted";
LOG.error(message, e);
throw new RunBuildException(message, e);
} catch (final CancellationException e) {
LOG.info("BuildProcess was interrupted", e);
return BuildFinishedStatus.INTERRUPTED;
}
}
@Override
public BuildFinishedStatus call() throws Exception {
final List<Future<Long>> packExitCodes = runPackCommands();
for (Future<Long> exitCode : packExitCodes) {
if (failBuildOnExitCode && exitCode.get() != 0) {
return BuildFinishedStatus.FINISHED_FAILED;
}
}
final List<Future<Long>> pushExitCodes = runPushCommands();
for (Future<Long> exitCode : pushExitCodes) {
if (failBuildOnExitCode && exitCode.get() != 0) {
return BuildFinishedStatus.FINISHED_FAILED;
}
}
return BuildFinishedStatus.FINISHED_SUCCESS;
}
@NotNull
private List<Future<Long>> runPackCommands() throws InterruptedException {
final int watchdogTimeoutInSeconds = NugetCommandBuilder.timeoutInSeconds + 5;
final ArrayList<TeamCityProcessCallable> packTasks = new ArrayList<>(nuspecFiles.size());
for (int i = 0; i < nuspecFiles.size(); i++) {
final String nuspecFile = nuspecFiles.get(i);
final Path relativeNuspecPath = Paths.get(checkoutDir.getAbsolutePath()).relativize(Paths.get(nuspecFile));
final String taskName = "Pack " + String.valueOf(i + 1) + "/" + String.valueOf(nuspecFiles.size()) + ": " + relativeNuspecPath;
final BuildProgressLogger taskLogger = logger.getFlowLogger(nuspecFile);
final NugetCommandBuilder commandBuilder = createNugetPackCommandBuilder(nuspecFile);
packTasks.add(new TeamCityProcessCallable(commandBuilder, taskLogger, taskName, watchdogTimeoutInSeconds));
}
return Executors.newFixedThreadPool(8).invokeAll(packTasks);
}
@NotNull
private List<Future<Long>> runPushCommands() throws InterruptedException, RunBuildException {
File[] nupkgFiles = workingDir.listFiles(new FilenameFilter() {
@Override
public boolean accept(File dir, String name) {
return name.endsWith(".nupkg");
}
});
if (nupkgFiles == null || nupkgFiles.length == 0) {
throw new RunBuildException("There are no packages to push");
}
final int watchdogTimeoutInSeconds = NugetCommandBuilder.timeoutInSeconds + 5;
final ArrayList<TeamCityProcessCallable> pushTasks = new ArrayList<>(nupkgFiles.length);
for (int i = 0; i < nupkgFiles.length; i++) {
final String nupkgFile = nupkgFiles[i].getAbsolutePath();
final String taskName = "Push " + String.valueOf(i + 1) + "/" + String.valueOf(nupkgFiles.length) + ": " + nupkgFiles[i].getName() + " (" + nupkgFiles[i].length()/1024 + " kb)";
final BuildProgressLogger taskLogger = logger.getFlowLogger(nupkgFile);
final NugetCommandBuilder commandBuilder = createNugetPushCommandBuilder(nupkgFile);
pushTasks.add(new TeamCityProcessCallable(commandBuilder, taskLogger, taskName, watchdogTimeoutInSeconds));
}
int pushConcurrency = getPushConcurrencyParameter();
if (pushConcurrency <= 0)
pushConcurrency = pushTasks.size();
logger.message("Using pushConcurrency value: " + pushConcurrency);
return Executors.newFixedThreadPool(pushConcurrency).invokeAll(pushTasks);
}
private int getPushConcurrencyParameter() {
final String pushConcurrencyKey = octopnpConstants.getPushConcurrencyKey();
if (!runnerParameters.containsKey(pushConcurrencyKey)) {
return -1;
}
final String pushConcurrencyString = runnerParameters.get(pushConcurrencyKey);
try {
return Integer.parseInt(pushConcurrencyString);
} catch (NumberFormatException e) {
logger.message("Wrong format for push concurrency parameter: " + pushConcurrencyString);
return -1;
}
}
@NotNull
private NugetCommandBuilder createNugetPackCommandBuilder(@NotNull final String nuspecFile) {
String packageVersion = null;
final String packageVersionKey = octopnpConstants.getPackageVersionKey();
if (runnerParameters.containsKey(packageVersionKey)) {
packageVersion = runnerParameters.get(packageVersionKey);
}
return NugetCommandBuilder.forPack(workingDir, nuspecFile, packageVersion);
}
@NotNull
private NugetCommandBuilder createNugetPushCommandBuilder(@NotNull final String nupkgFile) throws RunBuildException {
final String octopusApiKey = runnerParameters.get(octopnpConstants.getOctopusApiKey());
final String octopusServerUrl = runnerParameters.get(octopnpConstants.getOctopusServerUrlKey());
String pushToUrl;
try {
URL url = new URL(octopusServerUrl);
pushToUrl = url.getProtocol() + "://" + url.getAuthority() + "/nuget/packages?replace=true";
} catch (MalformedURLException e) {
throw new RunBuildException("Failed to parse octopusServerUrl: " + octopusServerUrl, e);
}
return NugetCommandBuilder.forPush(workingDir, nupkgFile, octopusApiKey, pushToUrl);
}
private void extractNugetExe() throws RunBuildException {
try {
new EmbeddedResourceExtractor().extractNugetTo(workingDir.getAbsolutePath());
} catch (Exception e) {
throw new RunBuildException("Unable to extract nuget.exe into " + workingDir, e);
}
}
private void resetWorkingDir() throws RunBuildException {
try {
FileUtils.deleteDirectory(workingDir);
} catch (Exception e) {
throw new RunBuildException("Unable to delete working directory " + workingDir, e);
}
if (!workingDir.mkdirs())
throw new RunBuildException("Unable to create working directory " + workingDir);
}
@NotNull
private List<String> resolveNuspecAbsoluteFileNames(@Nullable final String nuspecPaths) throws RunBuildException {
logger.message("Resolving nuspecPaths: " + nuspecPaths);
final List<File> files = AntPatternFileCollector.scanDir(checkoutDir, splitFileWildcards(nuspecPaths), new String[0], null);
logger.message("Matched .nuspec files:");
final List<String> result = new ArrayList<>(files.size());
if (files.size() == 0) {
logger.message(" none");
} else {
for (File file : files) {
final String absoluteFileName = file.getAbsolutePath();
result.add(absoluteFileName);
logger.message(" " + absoluteFileName);
}
}
if (result.size() == 0) {
throw new RunBuildException("No files matched the pattern: " + nuspecPaths);
}
return result;
}
@NotNull
private static String[] splitFileWildcards(@Nullable final String string) {
if (string == null) return new String[0];
final String filesStringWithSpaces = string.replace('\n', ' ').replace('\r', ' ').replace('\\', '/');
final List<String> split = StringUtil.splitCommandArgumentsAndUnquote(filesStringWithSpaces);
return split.toArray(new String[split.size()]);
}
} |
<reponame>Undiscovered-Data/rust_hashes<filename>sha3/src/main.rs
use sha3::{Digest, Keccak224, Keccak256, Keccak256Full, Keccak384,
Keccak512, Sha3_224, Sha3_256, Sha3_384, Sha3_512};
fn main() {
let mut hash1 = Keccak224::new();
let mut hash2 = Keccak256::new();
let mut hash3 = Keccak256Full::new();
let mut hash4 = Keccak384::new();
let mut hash5 = Keccak512::new();
let mut hash6 = Sha3_224::new();
let mut hash7 = Sha3_256::new();
let mut hash8 = Sha3_384::new();
let mut hash9 = Sha3_512::new();
hash1.update("hello");
hash2.update("hello");
hash3.update("hello");
hash4.update("hello");
hash5.update("hello");
hash6.update("hello");
hash7.update("hello");
hash8.update("hello");
hash9.update("hello");
let res1 = hash1.finalize();
let res2 = hash2.finalize();
let res3 = hash3.finalize();
let res4 = hash4.finalize();
let res5 = hash5.finalize();
let res6 = hash6.finalize();
let res7 = hash7.finalize();
let res8 = hash8.finalize();
let res9 = hash9.finalize();
println!("\nThe Keccak224 hash for \"Hello\" is:");
println!("{:x}\n", res1);
println!("The Keccak256 hash for \"Hello\" is:");
println!("{:x}\n", res2);
println!("The Keccak256Full hash for \"Hello\" is:");
println!("{:x}\n", res3);
println!("The Keccak384 hash for \"Hello\" is:");
println!("{:x}\n", res4);
println!("The Keccak512 hash for \"Hello\" is:");
println!("{:x}\n", res5);
println!("The Sha3_224 hash for \"Hello\" is:");
println!("{:x}\n", res6);
println!("The Sha3_256 hash for \"Hello\" is:");
println!("{:x}\n", res7);
println!("The Sha3_384 hash for \"Hello\" is:");
println!("{:x}\n", res8);
println!("The Sha3_512 hash for \"Hello\" is:");
println!("{:x}\n", res9);
}
|
MUNDY TOWNSHIP, MI -- Mark Bauman was in his second year of college and had only been running competitively for a few years when his coach had an idea.
Why not run a marathon?
Bauman had already ran in a half-marathon but tackling a 26.2-mile race was another matter entirely. Yet the idea appealed to Bauman.
So when Paul Griffin, his coach at what is now Flint's Mott Community College, successfully lobbied to get Bauman a spot in the world's most famous road race as coaches could do back then, Bauman agreed to give it a shot.
Bauman ran in his first Boston Marathon back in April 1970, when Richard Nixon was President, Apollo 13's ill-fated trip to the moon captivated the entire world and "Let it Be" by the Beatles was America's No. 1 song.
It was the start of an annual tradition for the Flushing resident.
Today, Bauman is preparing to make history Monday by running the Boston Marathon for the 50th consecutive year, becoming just the second runner in history to hit the half-century mark without missing a race.
Bauman, 69, credits several things -- healthy living, a good training regimen, genetics and good luck -- with never missing a race in Boston over the past half-century.
"It just doesn't seem that long," he said recently while taking a break at his business, Bauman's Running & Walking Shop in Mundy Township outside Flint. "Blessed and a lot of luck to get to that. How can you say it any other way? You just have to be extremely lucky.
"I had an injury once where I was very slow, not sick, and heat one year really got me. I ended up walking the last six miles with cramps in my legs. That's all been the last few years. I was lucky. For 30 years, I ran an average of 3,000 miles a year. You can't have injuries and do that.
"I remember the first race in Boston was actually the first marathon that I finished. I was scared to death -- 26.2 miles is a long way. I was a 20-year-old kid, my longest run had been 20 miles and there was a lot of people there."
Training properly since Day 1 has been crucial to Bauman's longevity.
Speed isn't something he focuses on when he trains. Instead, Bauman concentrates on mileage.
"I wasn't out there on the track running intervals like a lot of people do," he said. "That's a good way to injure yourself. I would (go for speed) in races but not in training." |
Coupling Coordination Degree Measurement and Forecast of Poverty Alleviation, Energy Conservation, and Ecological Protection: Evidence from 30 Provinces and Cities in China As China experiences rapid economic development, tasks involving poverty alleviation, energy conservation and ecological protection need to be addressed. Whether poverty alleviation, energy conservation and ecological protection in China have coordinated development has become a question worth studying. Based on the coupling coordination degree model and the GM model, this paper calculates and forecasts the development level of poverty alleviation, energy conservation and ecological protection of 30 provinces (cities) in China and analyses the synergy of the three systems spatially and temporally. The results show that first, from 2010 to 2019, the development level of Chinas poverty alleviation system, energy conservation system and ecological protection system presented increasing trends, but regional differences could be seen in development trends. Second, the coupling coordination degree of the three systems in China showed an upwards trend. The average coupling coordination degree of 30 provinces (cities) rose from slight coordination in 2010 to moderate coordination in 2019. Third, in the following years, development level will still be on an upwards trend in the four regions of China from 2020 to 2025. The development level of the ecological protection system will be the highest in China, and poverty alleviation and energy conservation will rank second and third. Fourth, the coupling coordination degree of the three systems of 30 provinces (cities) in China will rise significantly, indicating that the development of the three systems in China will be more coordinated in the following Introduction Since the reform and opening up in the late 1970s, China's economy has developed rapidly. According to the National Bureau of Statistics, China's GDP exceeded 100 trillion yuan in 2020, making it the world's second largest economy. Scholars believe that China's economy was in an extensive development stage in recent years, which depended on factor input and fossil energy consumption that has caused ecological and environmental deterioration. Meanwhile, according to the 3% threshold set by the World Bank, China has already eliminated abject poverty. However, the Gini coefficient of Chinese residents' income has been above 0.4 for a long time, which means that the challenge of relative poverty remains to be addressed. With rapid economic development, China needs to address the tasks of poverty alleviation, energy conservation and ecological protection. Whether poverty alleviation, energy conservation and ecological protection in different regions of China have coordinated development has become a question worth studying. Research on the relationship among the economy, energy and ecological environment has evolved from the dual system of economy and ecological environment, economy and energy, and energy and ecological environment to the multisystem. e famous environmental Kuznets curve (EKC) is used to show the inverted U-shaped relationship between the ecological environment and economic development. Scholars have analysed the relationship between environmental pollution and residents' income through the EKC and found that when in the low-income level, people would rather sacrifice the environment to pursue higher income, but when at the high-income level, people's tolerance of environmental pollution decreases. In terms of the relationship between the ecological environment and energy, scholars have reached a consensus that the increase in energy consumption and the problem of energy consumption structure have aggravated ecological environmental pollution. In terms of the relationship between the economy and energy, scholars have found that socioeconomic factors are direct and important factors that affect residents' energy choice through the energy ladder hypothesis. With the improvement of economic development and the increase in income, household energy consumption will gradually shift to clean and efficient modern low-carbon energy. In addition, with more in-depth research, scholars found that there have been interactions among multiple systems and began to study the relationship among the economy system, energy system and ecological environment system, thus forming the 3E (Economy-Energy-Environment) system theory. Research on the 3E system mainly focused on the measurement of its coordinated level, and the methods of the coordination level mainly include the analytic hierarchy process method, principal component analysis method, entropy weight method, data envelopment analysis method, and fuzzy comprehensive evaluation method. For example, Zhu and Wang demonstrated the feedback among the economy, resources and ecology environment through the system dynamic production model and explored the sustainable development capacity of Jiangxi, China. Wang et al. used the entropy weight method to establish the capability evaluation index system and measured the regional sustainable development capacity of Shandong, China. Scholars also studied the key influencing factors of the coordination development of the 3E system. Wu and Ning combined a system dynamics model and geographic information system to analyse the 3E system both temporally and spatially, which explored the interaction of economics, energy, and the ecological environment and the effects of key influencing factors. Zhao et al. constructed a 3E system model based on the theory of system dynamics and studied the internal operation mechanism of the carbon emissions trading system and its impact on the 3E system of the Beijing-Tianjin-Hebei region. By reviewing the above studies, we found that most of the existing studies focused on the relationship among economic development, energy conservation and ecological protection systems, while few studies focused on poverty alleviation, energy conservation and ecological protection systems. e economic development of a region does not equal poverty alleviation. Poverty was initially defined as an economic phenomenon, a condition in which the income of an individual household does not meet the basic standards of living. With socioeconomic development, the definition of poverty has gradually shifted from the shortage of an economic income to a multidimensional measurement, including the lack of access to basic education, medical care, housing and other social deprivations. erefore, based on studies of the relationship of the 3E system, this paper builds a poverty alleviation indicator system using an economic development indicator, income indicator, education indicator, medical and health indicator and public service indicator. e coupling coordination degree model and the GM model were used to measure and forecast the development level of each system and the relationships between poverty alleviation, energy conservation and ecological protection systems to analyse the coordination degree of the four major regions in China spatially and temporally, thus promoting high-quality development in the poverty alleviation, energy conservation and ecological protection of China. Study Area. To formulate long-term national development plans, regional policies and services, China is divided into four major regions: the eastern region, northeast region, central region, and western region. To observe the results of the study, we selected 30 Chinese provinces (cities) and divided them into four regions. e eastern region includes ten provinces (cities): Beijing, Tianjin, Hebei, Shandong, Jiangsu, Shanghai, Zhejiang, Fujian, Guangdong, and Hainan. e northeast region includes three provinces: Liaoning, Jilin, and Heilongjiang. e central region includes six provinces: Shanxi, Henan, Hubei, Hunan, Anhui, and Jiangxi. e western region includes twelve provinces (cities): Guangxi, Chongqing, Sichuan, Guizhou, Yunnan, Shaanxi, Gansu, Qinghai, Inner Mongolia, Ningxia, Xinjiang, and Tibet. Due to the unavailability of data from Tibet, the sample for statistical analysis does not include Tibet. is paper separately calculates different provinces (cities) or regions for a more convenient analysis. Data Source. To ensure the study's authenticity, integrity, and continuity, all data used for this paper are from the China Statistical Yearbook, China Energy Statistical Yearbook, China Statistical Yearbook on Environment, China Health Yearbook, and the official website of the National Bureau of Statistics (http://www.stats.gov.cn/). Index Selection. Researchers have studied poverty alleviation, energy conservation, and ecological protection and presented different evaluation indicators. Among them, Xin et al. evaluated poverty alleviation from two aspects, infrastructure perfection and residents' living standards. Qin et al. used poverty alleviation pressures, poverty alleviation inputs, and poverty alleviation effects and fifteen basic indicators to evaluate the poverty alleviation system. In terms of energy conservation, Wang et al. established an indicator system based on three input indicators, one good output indicator, and four bad output indicators to estimate energy-environment efficiency. Yan et al. used six indicators to build up the energy system, such as primary energy production, primary energy consumption, energy intensity index, net energy imports, and carbon dioxide emissions. Regarding the ecological environment, Liu et al. studied the ecological environment from three aspects with seven basic indicators, such as total water resources, the green coverage rate of builtup areas, green areas, and household garbage harmless disposal rates. Liao established an ecological environment system with two targets: ecological environmental pollution and ecological environment management. Based on the research above and considering data availability and regional situation, we establish a comprehensive evaluation index system including three parts: the poverty alleviation index, energy conservation index, and ecological protection index. e detailed explanation of the three parts is as follows: Poverty Alleviation System Index Selection. e poverty alleviation system index includes three scales: the economic development scale, livelihood scale, and social security scale. First, the economic development scale adopts per capita GDP, ratio of the output value of the service industry, and gross industrial output value. e per capita GDP reflects the overall level of economic development, and the ratio of the output value of the service industry and gross industrial output value are used to reflect the promotion of economic growth. Second, the livelihood scale adopts the per capita disposable income of the urban population, which reflects the livelihood of the urban population. ird, the social security scale adopts fiscal expenditures on public services, total retail sales of consumer goods, the studentteacher ratio of primary schools, the number of medical staff, and the number of beds in health care institutions. Fiscal expenditure on public services and total retail sales of consumer goods reflects the structure of social security, and the student-teacher ratio of primary schools, number of medical staff for every 10000 people, and number of beds in health care institutions for every 10000 people reflects the situation of social security. Energy Conservation System Index Selection. e energy conservation system index includes four scales: energy security pressure, energy supply and demand state, energy system impact and energy development response. First, we use the ratio of energy consumption per GDP to reflect the energy security pressure scale, which combines energy pressure with economic development. Second, the energy supply and demand state scale adopts the energy supply and demand rate, fossil energy production share, growth rate of total energy consumption, and fossil energy consumption share. ese indicators reflect the current situation and development of China's energy supply and demand, and the indicators of fossil energy production and consumption reflect the development of nonrenewable energy. ird, the energy system impact scale adopts energy consumption elasticity. Finally, we use the proportion of electrical energy to reflect the energy development response, which could provide a decision-making reference for the sustainable and healthy development of energy consumption and utilization. Ecological Protection System Index Selection. e ecological protection system index includes three scales: ecological environment level, ecological environment pollution and ecological environment protection. First, we use the cover rate of forests and water resources per capita to reflect the state of the ecological environment. e increase in forest and water resources is conducive to improving the ecological environment. Second, the ecological environment pollution scale adopts the discharge capacity of wastewater and the discharge capacity of sulfur dioxide, since they are the main pollutants of the urban ecological environment, and the increase in wastewater and sulfur dioxide emissions can increase the degree of ecological pollution. ird, the ecological environment protection scale adopts the investment in environmental pollution regulation and the harmless treatment rate of domestic garbage. Increasing investment and ratios in government environmental pollution regulations and improving the harmless treatment rate of domestic garbage are conducive to the improvement of ecological environmental protection. e indices of the poverty alleviation system, energy conservation system and ecological protection system and the corresponding variables are shown in Table 1. Coupling Coordination Degree (CCD) Model. Coupling is a concept in physics that describes the interaction and degree of interaction between two or more related systems. e CCD model can be used for research in multiple fields, such as the relationship between tourism and finance, urbanisation and geological hazards, and water governance and tourism. To reflect the development level and the coordination effect of the regional poverty alleviation system, energy conservation system and ecological protection system and to measure the level of coordinated development among the three systems effectively, we collect the relevant data of the three systems in 30 provinces (cities) in China. e coupling definition and coefficient model in physics are used to measure the coupling coordination degree of the poverty alleviation system, energy conservation system and ecological protection system. First, we employ the entropy value method to evaluate the comprehensive indices for the poverty alleviation system, energy conservation system and ecological protection system. According to the methods, the raw data are standardised by formula or in positive or negative dimensions, respectively, to reduce the differences caused by the different units of measurement of different indicators: Discrete Dynamics in Nature and Society where x ij represents the value of indicator j in region i (i �1,...,n, j � 1,...,m), max x 1j,..., x nj and min x 1j,..., x nj are the maximum and minimum values of indicator x ij, respectively, x + ij represents the positive dimension indicator, and x − ij represents the negative dimension indicator. en, we can calculate the sample index weight p ij by To avoid the situation of ln p ij � 0, the denominator and numerator of p ij need to pulse 1 by Second, we calculate the entropy of indicator j by where the constant variable k is related to the sample number n and estimated by k � 1/ln n, and 0 ≤e j ≤ 1. We obtain the utility value d j of each index by using d j � 1 − e j, and the informational entropy weight w j can be calculated by. w j � d j / m j�1 d j ird, the standardised data of each description index are multiplied by the corresponding weight value, and the development level U of the poverty alleviation system, energy conservation system and ecological protection system is calculated by We calculate the coupling correlation of the three systems as follows: For formulas -, c indicates the degree of coupling correlation among the three systems, d indicates the degree of coupling coordination among the three systems, t indicates the comprehensive development level of the three systems, and,, and c are weights of the three systems. We consider,, and c to be 1/3 in this study. e coupling coordination degree refers to the relative product coefficient. According to the research, we classify the coupling of these three systems into the following levels, as shown in Table 2. Model. e grey forecasting model theory includes four kinds of models, the GM model, the and annual net income of rural households. In addition, scholars found that the GM model can be used to predict the coupling coordination degree. e GM model, i.e., a single variable first-order grey model, is summarised as follows: e GM First, for an initial time sequence where X (i) is the time series data at time i, and n must be equal to or larger than 4. Second, a new sequence X is set up on the basis of the initial sequence X through the accumulated generating operation to provide the middle message of building a model and to weaken the variation tendency, as follows: ird, the first-order differential equation of the GM model is then the following: and its difference equation is and from formula, we can obtain where a and b are the coefficients to be identified. Let Take and where Y(n) and B are the constant vector and the accumulated matrix, respectively. Z (k + 1) is the (k + 1) th background value. Applying the ordinary least-square method to formula based on formulas -, the coefficient A becomes Fourth, substituting A in formula with, the approximate equation becomes where x (k + 1) is the predicted value of x (k + 1) at time (k + 1). After the completion of an inverse-accumulated generating operation on formula, x (k + 1), the predicted value of x (k + 1) at time (k + 1) becomes available and Figure 1. Figure 1 shows the calculation results of the development levels for the three systems in different regions, which comprehensively reflects China's developing trends in the poverty alleviation system, energy conservation system and ecological protection system. From the perspective of the time series, the development level of the poverty alleviation system, energy conservation system and ecological protection system in the four regions showed upward trends from 2010 to 2019, but the trends of the development level for the three systems showed differences during the study period. First, the poverty alleviation system level in 2010 was lower Superior coordination (V1) 0.7 < D ≤ 0. 8 Moderate coordination (V2) 0.6 < D ≤ 0. 7 Slight coordination (V3) 0.5 < D ≤ 0. 6 Slightly incoordination (V4) 0.4 < D ≤ 0. 5 Moderately incoordination (V5) 0 < D ≤ 0. 4 Extremely incoordination (V6) Discrete Dynamics in Nature and Society 5 than 0.3 in all four regions, which was the lowest among the three systems. However, the increase in the poverty alleviation system level was obvious, and in 2019, it was higher than the energy conservation system level in the eastern and northeast regions. Second, the energy conservation system level showed an upward trend during the study period, but the added value was lower than that of the poverty alleviation system level and the ecological protection system level. In 2019, the index for the energy conservation system level was lower than that of the poverty alleviation system level in the eastern and northeast regions and lower than the index of the ecological protection system level in the central and western regions. ird, the ecological protection system level was the highest among the three systems at the end of the study period. In terms of regional differences, the tendency of the three systems showed two types. In the first type, the ecological protection system level was always the highest in the study period, and the poverty alleviation system level was the lowest at the beginning of the study period, but it was higher than the energy conservation system level at the end of the study period. e second type was in the central and western regions, which showed that the energy conservation system level was the highest at the beginning of the study period but lower than the ecological protection system level at the end of the study period, while the poverty alleviation system level was the lowest during the study period. Although the three systems showed a positive correlation during the study period and were in a state of mutual promotion and coordinated development, there were great differences in the development level and developing speed of China's poverty alleviation system, energy conservation system and ecological protection system. erefore, we next analyse the coupling coordinated development among the poverty alleviation system, energy conservation system and ecological protection system. e Temporal Trend of the Coupling Coordination Degree. We calculate the average coupling coordination degree of the poverty alleviation system, energy conservation system and ecological protection system of 30 provinces (cities) in China from 2010 to 2019 and present it as a time series. e result is shown in Figure 2. e result can be seen in Figure 2. From the perspective of the time series, the average coupling coordination degree of 30 provinces (cities) in China shows fluctuations, but overall, there is an upward trend and three stages in the standard of coupling coordination degree can be seen during the study period. e first stage was from 2010 to 2011. During this period, the average coupling coordination Discrete Dynamics in Nature and Society degree in China was between 0.5 and 0.6, which was at the slightly incoordination (V4) stage. e second stage was from 2012 to 2018. In this period, the average coupling coordination degree in China was between 0.6 and 0.7, which was slight coordinated (V3). e last stage was in 2019. During this period, the average coupling coordination degree in China rose to 0.709, which was moderate coordinated (V2). In general, the average coupling coordination degree of poverty alleviation, energy conservation and ecological protection in 30 provinces (cities) in China has risen from slightly incoordination (V4) to slight coordination (V3) in seven years and entered the stage of moderate coordination (V2) in 2019. Figure 3 shows the coupling coordination degree distribution of 30 provinces (cities) in China. From 2010-2019, the coupling coordination degrees were 0.33%, 21.67%, 52.00%, 25.67%, and 0.33%, corresponding to superior coordination (V1), moderate coordination (V2), slight coordination (V3), slightly incoordination (V4), and moderately incoordination (V5), respectively. e order of proportion from large to small was slight coordination (V3), slightly incoordination (V4), moderate coordination (V2), moderately incoordination (V5) and superior coordination (V1). From 2010 to 2019, the superior coordination (V1) and moderate coordination (V2) increased gradually, slightly incoordination (V4) decreased from 76.67% in 2010 to 0 in 2017, and moderately incoordination (V5) decreased from 3.33% in 2010 to 0 in 2011. From the above analysis, we concluded that the coupling coordination degree of the poverty alleviation system, energy conservation system and ecological protection system in China steadily improved during the study period. e Temporal Differences of Coupling Coordination Degree among Regions. We calculated the coupling coordination degree of four regions in China from 2010 to 2019 based on the CCD model, and the regional coupling coordination degree is shown in Figure 4. e result can be seen from Figure 4. e coupling coordination degrees of the poverty alleviation system, energy conservation system and ecological protection system in the four regions of China show upward trends during the study period. In 2010, the four regions in China were categorised as slightly incoordination (V4) and slight coordinated (V3) in the coupling coordination degree standard. However, in 2019, the coupling coordination degree of the four regions increased to some extent. e coupling coordination degree was categorised as slight coordinated (V3) or moderate coordinated (V2). In terms of regional differences, the average coupling coordination degree of the eastern region during the study period was the highest of all four regions in China in terms of the standard of coupling Discrete Dynamics in Nature and Society coordination degree, from slight coordination (V3) to moderate coordination (V2), reflecting that the poverty alleviation, energy conservation and ecological protection systems had more coupling coordination in the eastern region. In 2010, the average coupling coordination degree in the central region and the western region was close, both at the level of slightly coordination (V4). However, in 2019, the average coupling coordination degree in the central region was at the stage of moderate coordination (V2), which was higher than the stage of slight coordination (V3) in the western region. It is worth noting that the change in the average coupling coordination degree in the northeast region was the smallest among the four regions. In 2010, the average coupling coordination degree in the northeast region was in second place among the four regions and was slightly coordinated (V4), but in 2019, the average coupling coordination degree in the northeast region was slight coordinated (V3) and ranked last among the four regions. e Spatial Distribution of the Coupling Coordination Degree. e spatial distribution of the regional coupling coordination degree from 2010 to 2019 was drawn by ArcGIS 10.5 software, as shown in Figure 5. e spatial distribution of coupling coordination degrees in China from 2010 to 2019 is shown in Figure 5. e coupling coordination degree of the four regions in China shows a great difference in spatial distribution. First, Guangdong achieved the highest degree of coupling coordination in eastern China, and China's first superior coordination (V1) stage emerged in Guangdong Province in 2019. Other coastal provinces in the eastern region, such as Fujian, Zhejiang, Shanghai, Jiangsu and Shandong, also achieved a high value of coupling coordination degree. However, Tianjin and Hebei in the eastern region performed poorly, with a slight coordination (V3) coupling coordination degree in 2019, which was lower than that in other provinces in the eastern region. Second, the coupling coordination degree in the northeast region was the lowest among the four regions. From 2010 to 2019, the coupling coordination degree of all three provinces in the northeast region increased from slightly incoordination (V4) to slight coordination (V3). ird, the coupling coordination degree in the western region increased greatly. In 2010, 10 out of 11 provinces in western China had a slightly incoordination (V4) degree, while Gansu had a moderately incoordination (V5) degree. However, in 2019, Shaanxi, Qinghai, Ningxia and Xinjiang's coupling coordination degree rose by one stage to slight coordination (V3). e coupling coordination degree of Inner Mongolia, Guangxi, Chongqing, Sichuan, Guizhou and Yunnan increased by two stages, reaching moderate coordination (V2). According to the definition of the index, we replace the indices above 1 with 1. e results are shown in Figure 6. In Figure 6, the development levels of 2019 and before are the actual measured data, while the development levels of 2020 and after are the predicted data using the GM model. As seen in the figure, on the premise that other socioeconomic factors remain unchanged, the poverty alleviation system level, energy conservation system level and ecological protection system level would still be on an upwards trend in the four regions of China from 2020 to 2025. Among the indices of the three systems, the development value of the ecological protection system level was the highest in the four regions. However, there would be regional differences in the trends of the energy conservation system level and poverty alleviation system level. e trends of the energy conservation system level and the poverty alleviation system level in the eastern and northeast regions would be similar. In the next few years, the poverty alleviation system level would be higher than the energy conservation system level, but the added value of the poverty alleviation system level in the eastern region would be greater than that in the northeast region. e trends of the energy conservation system level and the poverty alleviation system level would be similar in the central and western regions. e poverty alleviation system level would surpass the energy conservation system level in the next few years, in the central region in 2023 and the western region in 2025. It is also worth noting that in 2025, the ecological protection system level and poverty alleviation system level in the eastern and central regions would be similar. Estimation of the Coupling Coordination Degree. Based on the CCD model, we estimate the coupling coordination degree of the three systems by using the development level indices of the poverty alleviation system, energy conservation system and ecological protection system of the four regions in China from 2020 to 2025. e estimated results are shown in Figure 7. Figure 7 shows the coupling coordination degree distribution in the sample area. From 2020 to 2025, the coupling coordination degree will be 37.78%, 47.78%, and 14.44%, corresponding to the stages of superior coordination (V1), moderate coordination (V2) and slight coordination (V3), respectively. e order of proportion from large to small would be moderate coordination (V2), superior 8 Discrete Dynamics in Nature and Society coordination (V1), and slight coordination (V3). By 2025, the coupling coordination degree of 30 provinces (cities) in China would be mainly in the stage of superior coordination (V1), and there would be 22 provinces (cities) in this stage. Six provinces (cities) would be in the stage of moderate coordination (V2), among which all three provinces in the northeast region would be in this stage. Tianjin and Ningxia would be in the stage of slight coordination (V3). e poverty alleviation system, energy conservation system and environmental protection system in most provinces will be further coordinated in the coming years. e spatial distribution of the coupling coordination degree stage in China from 2020 to 2025 is shown in Figure 8. First, the spatial difference in the coupling coordination degree among the four regions in China will gradually decrease in the following years. In 2022, the coupling coordination degree of more than half of China's provinces (cities) would be moderate coordinated (V2) and exceed 50% in each region. In the eastern region, 40% of provinces (cities) would be in the stage of superior coordination (V1), 50% in the stage of moderate coordination (V2), and 10% in the stage of slight coordination (V3). All three provinces in the northeast region would be moderate coordinated (V2). In the central region, 33% of provinces (cities) would be in the superior coordination stage (V1), and 67% would be in the moderate coordination stage (V2). In the western region, 27% of the provinces (cities) would be in superior coordination (V1), 55% would be in the stage of moderate coordination (V2), and 18% would be in slight coordination (V3). In 2025, the coupling coordination stage of most provinces (cities) in China would be superior coordination (V1). Among the provinces, 80% are in the eastern region, 100% are in the central region and 73% are in the western region. However, the coupling coordination degree of all three provinces in the northeast region would be moderate coordinated (V2), unlike the other three regions in China. Conclusion. is paper constructs the coupling coordination model of poverty alleviation, energy conservation and ecological protection among the four major regions of China through coupling theory, calculates the poverty alleviation system development level, energy conservation system development level and ecological protection system development level of 30 provinces (cities) in China, and analyses and studies the spatial and temporal distribution and changing trend of the coupling coordination degree. In addition, the tendency of the poverty alleviation system level, energy conservation system level, ecological protection system level and coupling coordination degree of the three systems and the tendency of the spatial and temporal distribution in China in the following years are estimated by the GM model. e results show that first, from 2010 to 2019, the development level of China's poverty alleviation system, energy conservation system and ecological protection system presented upward trends. Regional differences could be seen through the development trends of the development level indices; that of the eastern region was similar to that of the northeast region, and that of the western region was similar to that of the central region. Second, the coupling coordination degree of the three systems in China showed an upward trend. e average coupling coordination degree of 30 provinces (cities) rose from slightly incoordination (V4) in 2010 to moderate coordination (V2) in 2019. However, differences in spatial distribution could also be seen in the study. e average coupling coordination degree of the eastern region was the highest among the four regions in 2019, with the central and western regions ranking second and third, respectively, and the northeast region ranking last. ird, the coupling coordination degree stage distribution in China has improved. In 2010, the coupling coordination degree of more than half of China's provinces (cities) was in the slightly incoordination stage (V4), while by 2019, more than half of China's provinces (cities) were in the moderate coordination stage (V2). Among them, the provinces (cities) with high values were concentrated in the eastern and central regions, while the regions with low values were concentrated in the western and northeast regions. Fourth, the GM model predicted that in the following years, the development level of these three systems in China will increase. However, the poverty alleviation system level in western and central China would exceed the energy conservation system level, while the eastern and northeast regions would not show this trend. Fifth, the coupling coordination degree index of 30 provinces (cities) in China would rise significantly in the following years, and the coupling coordination degree of more than half of the provinces (cities) would be in the stage of superior coordination (V1). Among them, in 2025, 80% will be in the eastern region, 100% in the central region and 73% in the western region. However, the coupling coordination degree of all three provinces in the northeast region would be moderate coordinated (V2), unlike the other three regions in China. Discussion According to the outline of China's 14th Five-Year Plan, China will step up the implementation of the country's regional development strategies and continue to promote large-scale development in the western region, the full revitalization of the northeast region, the rise of the central region, and the trailblazing development of the eastern region. e conclusion of this paper supports China's regional development strategy. e results show that there will be differences in the development of the poverty alleviation system, energy conservation system and ecological protection system in different regions of China, and the synergy of the three systems is also obviously different. e coupling coordination degree will be the highest in the eastern region in the next few years. e coupling coordination degree in Discrete Dynamics in Nature and Society the central region and western region will increase rapidly. e coupling coordination degree in the northeast region will be lower than that in the other three regions of China. erefore, corresponding policies need to be formulated according to the situation of different regions in China. e main contributions of this paper are as follows: first, China's poverty alleviation task in the following years will be to reduce relative poverty; therefore, this paper reflects the poverty alleviation system of different provinces (cities) by introducing indicators of income, education, medical and health care, and public services and studies the relationship among the poverty alleviation system, energy conservation system and ecological protection system, thus expanding the research on the 3E system. Second, based on the CCD model and the GM model, this paper calculates the comprehensive development level of the three systems of poverty alleviation, energy conservation and ecological protection of 30 provinces (cities) in China, showing the development status of each of the three systems. ird, this paper shows the tendency of the development level of the poverty alleviation system, energy conservation system and ecological protection system and the synergy of the three systems in the following years. Last, this paper analyses the internal causes of the development differences among regions, which will be helpful in recommending a strategy for future development. e link between this paper and existing theories is that the discussion of the relationship among poverty alleviation, energy conservation and ecological protection is a further study on the research of the 3E system. China has achieved remarkable achievements in economic development and poverty alleviation and has contributed to the achievement of global poverty alleviation goals. However, unbalanced development among the regional economy, education, medical and health and public services persists in China, leading to regional relative poverty. Exploring the relationship among the poverty alleviation system, energy conservation system and ecological protection system is in line with the research of the 3E system. us, this paper expands upon the field of study of the 3E system relationship. is paper presents some shortcomings, which are as follows. First, this paper uses the CCD model to study the relationship among poverty alleviation systems, energy conservation systems and ecological protection systems, and there are other methods that can be used in future studies. Second, due to the complexity of the poverty alleviation system, energy conservation system, and ecological protection system, the selection of the indicators needs to be further improved. ird, in view of the lack of Tibetan data, the data for the western region may lead to biased results. Data Availability e original data used to support the findings of this study are available from the corresponding author upon request. Conflicts of Interest e authors declare that there are no conflicts of interest regarding the publication of this paper. |
1. Field of the Invention
The invention relates generally to the field of welding, and more particularly to welding brittle materials such as cast iron or stainless steel.
2. Description of Related Art
While many methods exist for joining metals together, welding is generally the most preferable because of the following reasons: 1) welding can be used with nearly all metals; 2) welding yields high-strength joints; and 3) welding avoids the galvanic-corrosion problems that can result from soldering or brazing. Metals that are not very reactive, such as steels, can be welded using a simple torch flame, often oxyacetylene, in air. More reactive metals require an electric arc in an inert atmosphere, such as argon, to prevent excessive oxidation.
In the welding process, adjacent regions of two or more discrete pieces of metal are locally heated to the point of fusion and then allowed to run together. Filler metal of similar composition is often added to the molten pool to bridge and unite the separate pieces when the melt cools.
Because welding involves the use of localized high temperatures, and because virtually all materials expand when heated, stress and/or distortion may appear in welded pieces as they cool. In relatively malleable metals, such as steel and wrought iron, this is not a problem since the metal is able to deform slightly and relieve the stress. Moreover, it is relatively simple to position the pieces before the main welding operation through small "tack welds" to minimize the overall distortion after welding.
Unfortunately, welding brittle metals poses a special problem. Examples of brittle metals include cast iron and stainless steel. In the nuclear industry, stainless steel can become highly embrittled through prolonged exposure to high levels of radiation. When such brittle metals cool after welding, the stress cannot be adequately relieved by deformation and cracking occurs instead. Attempts to repair the resulting cracks by further welding serve only to worsen the problem since the resulting stresses create new cracks or cause existing cracks to grow.
Traditionally, cast iron welders used a technique known as "peening" to minimize cracking from a weld. Using this technique, the welder simply taps the metal repeatedly with a hammer up and down the weld seam as it cools. Peening has been proven to be very effective in reducing cracking; however, the exact mechanism by which it works is far from clear.
Not wishing to be limited by this theory, one explanation for the success of peening is that the sharp acoustic waves launched into the metal provide the grain structure of the metal just enough extra energy to slip past each other and relieve stress. Both acoustic and thermal energy are in the form of phonons. However, the phonons resulting from acoustic energy are coherent, in phase, and travel in parallel. Conversely, the phonons resulting from thermal energy are incoherent and travel in random directions with random wavelengths. It is theorized that, due to their coherence, the phonons from peening become focused to relieve stress in the metal and therefore prevent cracking.
While traditional peening has been successful, its effectiveness is due in large part to the skill and intuition of the welder. Thus, for the technique to receive widespread acceptance, it must be refined to produce results that are both reliable and reproducible. Moreover, hazardous applications, such as those involving radioactivity, would require peening to be done remotely to minimize the welders' exposure to radiation.
Modern applications for peening have generally employed a vibrating member to impart the ultrasonic waves into the welded element. For example, U.S. Pat. Nos. 4,466,565 to Miyazima and 5,494,207 to Asanasavest both teach the use of vibrating members to assist in bonding wires on an integrated circuit board or chip. Similarly, U.S. Pat. Nos. 5,364,005 to Whelan et al. and 5,540,807 to Akiike et al. teach the use of a general purpose welding tool that incorporates a vibrating member to generate the ultrasonic waveforms. While these inventions are all useful for their intended purposes, they are not readily adaptable for use in hazardous environments and are generally geared toward micro-weld applications. Thus, there is room for improvement in the art. |
Persian Keyphrase Generation Using Sequence-to-Sequence Models Keyphrases are a very short summary of an input text and provide the main subjects discussed in the text. Keyphrase extraction is a useful upstream task and can be used in various natural language processing problems, for example, text summarization and information retrieval, to name a few. However, not all the keyphrases are explicitly mentioned in the body of the text. In real-world examples there are always some topics that are discussed implicitly. Extracting such keyphrases requires a generative approach, which is adopted here. In this paper, we try to tackle the problem of keyphrase generation and extraction from news articles using deep sequence-to-sequence models. These models significantly outperform the conventional methods such as Topic Rank, KPMiner, and KEA in the task of keyphrase extraction. I. INTRODUCTION Keyphrases are single words or sequences of words that express the main topics discussed in a piece of text. Knowing the main topics discussed in a text can play an important role in a variety of downstream tasks such as text categorization, opinion mining, information retrieval and text summarization. Keyphrases themselves can be regarded as very dense summarization of the input text which can come of help in many problems. Keyphrase extraction is quite a well-known task in Natural Language Processing, the purpose of which is to extract words pertaining to the main topics discussed in the input piece of text. The purpose of keyphrase extraction task is to extract explicit keyphrases from a given text. Keyphrase generation on the other hand, is a task of extracting explicit and implicit keyphrases. In real-world examples, there are always keyphrases that are not present in the article, but rather hinted at implicitly. Since we are dealing with implicit keyphrases in this paper, such a task cannot be treated as a sequence labeling, phrase/word classification or scoring problem. In this paper we take an approach of deep sequence-to-sequence learning, similar to neural machine translation. In the next section we discuss the different approaches to keyphrase extraction and generation in English and Persian. In section III, we define our problem and elaborate on the specific approach we take in this paper. In section IV, we discuss the training and test data, implementation details, baseline models, and our evaluation metrics. Then, we discuss the results in section V and VI. We conclude the paper and discuss the future work in section VII. A. Work on English Most keyphrase extraction algorithms operate in two steps; they first make a list of keyphrase candidates, and then choose the keyphrases from them. The candidate list is made according to several features, namely statistical (e.g. tf idf ), structural (e.g. location of the candidate keyphrase in the text), syntactic (e.g. Part of Speech tags), and external resource features (e.g. Wikipedia titles). As for the second step, the early approaches to keyphrase extraction deal with it as a problem of binary classification, ; whether a candidate phrase in a text can be classified as 1, present in keyphrases, or 0, not present in the keyphrases, using different approaches such as decision trees, nave Bayes, maximum entropy, and support vector machines. A binary classifier classifies each keyphrase independent of the other keyphrases, hence it may classify several keyphrases pointing to a similar subject. To tackle this drawback, Jiang et al. offered a pairwise ranking system. However, a substantial number of approaches to keyphrase extraction are unsupervised, including graph-based ranking and topic-based clustering. In graph-based ranking it is assumed that keyphrases are the most important words/phrases in a document and if we build a graph in which words/phrases are the nodes and the edges represent the relation between them, we can find the keyphrases by ranking its nodes according to their importance using a graph-based ranking method. Topic-based clustering methods on the other hand, try to cluster candidate keyphrases in a document into topics. For instance KeyCluster clusters semantically similar candidates, selects the candidates close to the centroid of each cluster and Topical PageRank runs TextRank once for each topic induced by LDA. As for deep approaches to keyphrase extraction, Zhang et al. use joint-layer recurrent neural networks to extract keyphrases from tweets, treating the problem as a sequence labelling task. Another work that takes the same approach is that aims to extract keyphrases from microblog posts with the help of encoding the context. However, in this work we also focus on the problem of keyphrase generation, as well as extraction. The first work to address this problem using deep neural networks is that of Meng et al. which tries to tackle the problem using an encoder-decoder, attention, and copying mechanism. Their bidirectional RNN with gated recurrent units cannot outperform non-deep approaches in extracting present keyphrases from most of the datasets, but Copynet does significantly. Some other works taking the same approach are and, the latter of which uses a convolutional sequence-to-sequence model. As for the other works, Zhang et al. try to tackle the problem of keyphrase extraction from microblogs. They make use of the context, which is other blog posts, to inform the model of the previous events. Chen et al. address the problem of keyphrase duplication and try to solve it by taking previous phrases into account. B. Work on Persian Literature of keyphrase/keyword extraction from Persian texts is quite minimal. Mohammadi and Analoui, after removing stop words and stemming, extracts keywords using TF (Term Frequency), TTF (Total Term Frequency), and DF (Document Frequency) matrices and fuzzification. Khozani and Bayat, after stemming and removing stop words, uses TFIDF (Term Frequency times Inverse Document Frequency) to calculate the weights of the words in the documents. After calculating the weights of the tokens, the weights of the bi-token keyphrases are calculated using a cooccurrence matrix. Kian and Zahedi uses attention attractive strings to improve keyword extraction from 800 documents from Hamshahri news collection. Three to seven keyphrases were assigned to each document, the length of each keyphrase ranging from two to four words. The best result, an F 1 of 40.23, is achieved using attention attractive strings and training on 400 documents. III. METHODOLOGY In this paper, we use an encoder-decoder model, with Bahdanau's attention mechanism. In the training phase, the data is converted from (x j, y ji, y ji+1,..., y j T ) format to (x j, y ji ), (x j, y ji+1 ),..., (x j, y j T ), x being the concatenation of the news article's title and body, and y, it's keyphrases. It means that a training sample is repeated to the number of its keyphrases which increases training samples from the number of the news articles to the number of their keyphrases. A. Encoder-Decoder Model An encoder-decoder model consists of two RNNs, the last hidden layer or the concatenation of all hidden layers of the first one considered an encoded representation of the input document the second one is going to decode. Here, the input for the encoder is the concatenation of the title and the body of the news and the output of the decoder, the words in the keyphrase. The hidden layer of the encoder, as explained in, is calculated as: in which, f is a nonlinear function (as we use GRU, f is a Gated Recurrent Unit here) which takes the input x at timestep j and the hidden state of the last timestep, h j−1. By obtaining h j, the hidden state of the encoder at timestep j, we can easily calculate p(y i |y 1,..., y i1, X), the probability of producing the output y at timestep i, given the previous y's and the input X, by the equation below: s i−1 being the representation of all previous y's, except the most previous one and c, the context vector, being the representation of X, which is either the output of the last timestep, h T, or the context vector computed by the attention mechanism. B. Attention Mechanism Attention mechanism gives different weights to different timestemps from the encoder, presuming that different words in an input sentence have different levels of importance to a timestep of the output. So, a hidden state in the decoder is calculated as s i = q(s i1, y i1, c i ). The context vector c t can be obtained using the formula below: ij being the weight of the state h j of the encoder to the state s i of the decoder which is calculated as: where a is a feed forward neural network, a soft alignment (not a latent variable as in traditional machine translation), a model which scores how well the inputs around position j and the output at position i match. You can see the schema of the model in figure 1. A. Training and Testing Datasets Here, we use a subset of the PerKey dataset introduced in with at least 3 keyphrases for each news article. As concluded in PerKey paper, news articles with at least 3 keyphrases are more reliable in terms of recall. The dataset is stored in JSON format, each news article containing the following information: {title, body, summary, keyphrases, category, url} The data used in this paper comprises 395,645 news articles crawled from 6 news websites and agencies which provided high-quality keyphrases. After cleaning the data, an assessment was conducted by 5 human evaluators to ensure the quality of the keyphrases. The result was an F 1 -score of 4.264 which guarantees the quality of the keyprhases. As shown in table I, most of the articles contain less than 300 tokens and only 25% of them contain more than that. It appears that half of the articles have 3 keyphrases and 20% of them have 4. More information on the number of the keyphrases in news articles can be found in table II. Table V shows that most of the keyphrases contain either 1 or 2 tokens. News articles containing keyphrases with more than 7 tokens in them were removed. Finally, it appears that 543,005 of the keyphrases, which constitute 31.44% of all keyphrases, are not present in the body of the news articles. This number shows why we need keyphrase generation as well as extraction. As discussed for test. The dataset can be found in this project's Github repository. B. Implementation Details We used dynamic word embeddings for the 100,000 most frequent words in the training set with embedding size of 150. Number of the units in the GRU cell for both the encoder and the decoder is 256. As for the beam search decoding hyperparameters, we set the beam width to 50 and beam depth to 5. Finally we used batch size of 32, Adam Optimizer with learning rate of 1e − 3 and gradient clipping by 0.1. We also used dropout of 0.5 as regularization on the input embeddings and the output of the encoder. D. Evaluation Metrics Following the convention, we use precision, recall, and their harmonic average, F 1 -score, to evaluate the models. As these metrics may be too strict, we also measure the performance of the keyphrases using ROUGE-1 and ROUGE-2. Using ROUGE metrics may help with the instances where there is only one (usually optional) word difference between gold keyphrase and the predicted one. V. EXPERIMENTAL RESULTS We evaluated the performance of each method with their k best outputs, k being 5 and 10, using precision, recall and F 1 -score. As expected, RNN with GRU cell outperformed all the other supervised and unsupervised (statistical and graph-based) methods by a great margin. Table V contains the results for performance of all the mathods on whole dataset, i.e. absent and present keyphrases. After RNN, the best performance belongs to statistical methods, supervised and unsupervised, and lastly graph-based methods. TFIDF, as the simplest method, shows a good performance, especially regarding the recall. The best performance in each column is in bold, the second underlined, and the third in italics. However, it is not fair to evaluate extractive methods, such as KPMiner and SingleRank, on absent keyprhases, as they fail to generate any. In table VI, we compare the evaluation results only on the present keyphrases. Here, RNN obtained more than twice the F 1 -score of the second-best approach, KEA, when k is 5, and KPMiner, when k is 10. RNN succeeded to obtain higher precision, compating to table V, which is the main reason for its exceptional F 1 -score, 44.69%. Table VII belongs to the results on the absent keyphrases. As other methods cannot generate absent keyphrases, we have only the results of RNN. In table VIII you can see the results of the ROUGE-1 and ROUGE-2 metrics on the predictions. We measured the performance of the model using these metrics as suggested in. The metrics may appear to be less strict as they show 8 percent more F 1 -score, but the precision drops when k is 10, as the reference keyphrases decrease, and so does the F 1 -score, consequently. This shows that ROUGE metric may not be a better choice to measure the performance of the keyphrase extraction and generation models. VI. DISCUSSION We saw that the recurrent neural network with gated recurrent units could outperform other methods by a huge margin, especially in predicting present keyphrases. One may argue that despite the high performance of such algorithms, they require huge amount of training data. In this paper, we showed that we can overcome the barrier, having access to the vastest database of all times, internet. However, not all the supervised.1524 [email protected] [email protected] F 1 @20.0905 [email protected] [email protected] F 1 @50.0421 Another problem we addressed in this paper was measuring the performance of the models. As discussed in other papers on keyphrase extraction and generation, the current performance measure is not perfectly suitable for the task, as it is too strict, meaning that it does not tolerate even a single word difference with the reference keyphrases, let alone understanding the different ways of expressing the same concept. The reference keyphrases themselves are another matter. Choosing them is quite subjective, in a way that different annotators most probably come up with different keyphrases, not even agreeing on the number of them. As an example to illustrate this, in table IX, you see the predicted keyphrases of a random news article and its reference keyphrases annotated by the author of it. For these predictions, the precision will be 0.2 and recall 0.5, you can see that they are of more quality however. Most of these keyphrases are related to the main topics of the news article, expect for the last two. They are generated most probably because of some mentions of Iraq's 'territorial integrity' and 'security'. One interesting predicted keyphrase in this example is 'Rajab Tayyeb Ardogn,' which is not mentioned in the article, except for an implicit mention of the title, 'Turkey's president'. We also measured the performance of the models using another suggested performance measure, ROUGE, which was not a better measurement, as discussed in section V. VII. CONCLUSION AND FUTURE WORK In this work, we compared the results of a couple of unsupervised and supervised methods on the tasks of keyphrase extraction and generation in Persian language, concluding that RNN with GRU cells can significantly outperform other methods in both tasks. We also measured the performance using ROUGE-1 and ROUGE-2 metrics, as they are less strict and may be more accurate and discuss their shortcomings. As of the future work, we are going to address the task of multi-document keyphrase extraction and generation from Persian news articles. |
Polymers from sugars : Chemoenzymatic synthesis and polymerization of vinylethylglucoside Carbohydrates are inexpensive renewable resources that may prove valuable when incorporated into polymers. Of critical importance is to establish efficient routes to synthesize these carbohydrate monomers. To that end, the esterification of ethylglucoside with vinyl acrylate was studied without solvent and in THF. In one example, using the immobilized Lipase B from Candida antartica (Novozyme-435) at 35°C, 6-O'-vinylethylglucoside was obtained in 70% yield in 24 h. The monomer was homopolymerized with AIBN to yield water-soluble polymers of M n 82-90K in 80% yield. Copolymers of 6-O'-vinylethylglucoside with methacrylic acid were also synthesized and studied. |
<filename>src/UI/Buyer/src/app/services/route/route.service.ts<gh_stars>1-10
import { Injectable } from '@angular/core'
import { Router, NavigationEnd } from '@angular/router'
import { ProductFilterService } from '../product-filter/product-filter.service'
import { filter, map } from 'rxjs/operators'
import { OrderFilterService } from '../order-history/order-filter.service'
import { ProfileRoutes } from './profile-routing.config'
import { OrderRoutes } from './order-routing.config'
import { SupplierFilterService } from '../supplier-filter/supplier-filter.service'
import { TokenHelperService } from '../token-helper/token-helper.service'
import { Title } from '@angular/platform-browser'
import { AppConfig } from 'src/app/models/environment.types'
import { RouteConfig } from 'src/app/models/shared.types'
import { OrderFilters, HeadstartOrderStatus } from 'src/app/models/order.types'
import {
ProductFilters,
SupplierFilters,
} from 'src/app/models/filter-config.types'
@Injectable({
providedIn: 'root',
})
export class RouteService {
constructor(
private router: Router,
private supplierFilterService: SupplierFilterService,
private productFilterService: ProductFilterService,
private orderFilterService: OrderFilterService,
private tokenHelperService: TokenHelperService,
private titleService: Title,
private appConfig: AppConfig
) {}
getActiveUrl(): string {
return this.router.url
}
getProfileRoutes(): RouteConfig[] {
const allSections = ProfileRoutes
const roles = this.tokenHelperService.getDecodedOCToken().role
return allSections.filter(
(s) =>
!s.rolesWithAccess ||
!s.rolesWithAccess.length ||
roles.some((r) => s.rolesWithAccess.includes(r))
)
}
getOrderRoutes(): RouteConfig[] {
const allSections = OrderRoutes
const roles = this.tokenHelperService.getDecodedOCToken().role
return allSections.filter(
(s) =>
!s.rolesWithAccess ||
!s.rolesWithAccess.length ||
roles.some((r) => s.rolesWithAccess.includes(r))
)
}
onUrlChange(callback: (path: string) => void): void {
this.router.events
.pipe(
filter((e) => e instanceof NavigationEnd),
map((e) => (e as any).url)
)
.subscribe(callback)
}
setPageTitle(titleString?: string) {
const title = titleString
? this.appConfig.appname + ': ' + titleString
: this.appConfig.appname
this.titleService.setTitle(title)
}
toProductDetails(productID: string): void {
this.router.navigateByUrl(`/products/${productID}`)
}
toProductList(options: ProductFilters = {}): void {
const queryParams = this.productFilterService.mapToUrlQueryParams(options)
this.router.navigate(['/products'], { queryParams })
}
toHome(): void {
this.toRoute('/home')
}
toUsers(): void {
this.toRoute('/profile/users')
}
toCheckout(): void {
this.toRoute('/checkout')
}
toCart(): void {
this.toRoute('/cart')
}
toLogin(): void {
this.toRoute('/login')
}
toForgotPassword(): void {
this.toRoute('/forgot-password')
}
toRegister(): void {
this.toRoute('/register')
}
toMyProfile(): void {
this.router.navigateByUrl('/profile')
}
toMyAddresses(): void {
this.toRoute('/profile/addresses')
}
toMyLocations(): void {
this.toRoute('/profile/locations')
}
toLocationManagement(addressID: string): void {
this.toRoute(`/profile/locations/${addressID}`)
}
toMyPaymentMethods(): void {
this.toRoute('/profile/payment-methods')
}
toMyOrders(options: OrderFilters = {}): void {
// routing directly to unsubmitted orders
if (!options.status) {
options.status = HeadstartOrderStatus.AllSubmitted
}
const queryParams = this.orderFilterService.mapToUrlQueryParams(options)
this.router.navigate(['/orders'], { queryParams })
}
toOrdersByLocation(options: OrderFilters = {}): void {
// routing directly to unsubmitted orders
if (!options.status) {
options.status = HeadstartOrderStatus.AllSubmitted
}
const queryParams = this.orderFilterService.mapToUrlQueryParams(options)
this.router.navigate(['/orders/location'], { queryParams })
}
toMyOrderDetails(orderID: string): void {
this.toRoute(`/orders/${orderID}`)
}
toOrdersToApprove(options: OrderFilters = {}): void {
const queryParams = this.orderFilterService.mapToUrlQueryParams(options)
this.router.navigate(['/orders/approve'], { queryParams })
}
toOrderToAppoveDetails(orderID: string): void {
this.toRoute(`/orders/approve/${orderID}`)
}
toSupplierList(options: SupplierFilters = {}): void {
const queryParams = this.supplierFilterService.mapToUrlQueryParams(options)
this.router.navigate(['/suppliers'], { queryParams })
}
toChangePassword(): void {
this.toRoute('/profile/change-password')
}
toRoute(path: string): void {
this.router.navigateByUrl(path)
}
}
|
Both institutional and consumer automatic dishwashers or warewashing machines have been in use for many years. These dishwashers typically function with two or more cycles, including various combinations of a soak or prewash, a main wash, a rinse, a sanitize and a dry cycle. A dishwasher detergent composition is typically utilized during the wash cycle to remove soil and stains. Often, the detergent composition will include water softeners, bleaching and sanitizing agents, and an alkali source.
For many reasons, separate rinse additives or aids are an important part of the automatic dishwasher operation. In general, rinse aids minimize spotting and promote faster drying, by causing the rinse water to sheet off of the clean dishes evenly and quickly. Rinse aids are generally used in a cycle separate from cycles using the detergent composition, although some detergent residue may be present in the rinse water.
Rinse aids are currently available in liquid or solid form. The use of a solid rinse aid can be much preferred. Solid rinse aids can be more convenient, safe and economical than liquids because they do not spill or splash. In addition, dispensers for solid rinse aids tend to be less expensive and more durable because generally they have no moving parts. However, many surfactants with good rinse performance are commonly available only in a liquid or paste form at room temperature. The invention provides solid rinse aids from liquid, paste-like, or solid surfactants.
Solid rinse aids are available for consumer and institutional warewashing machines. For use in a typical consumer machine, each solid rinse aid generally incorporates a disposable container or basket which is hung directly inside the machine. This container is also referred to as a dispenser. Circulation of water within the machine in the normal course of the machine cycles slowly dissolves the solid rinse aid, thus dispensing it. The water temperature in consumer machines typically falls between 60.degree.-180.degree. F.
Institutional machines are generally either low temperature machines with a water temperature of from about 120.degree.-140.degree. F., or high temperature machines with a water temperature of about 160.degree.-180.degree. F. A low temperature warewashing system can be more desirable than a high temperature system because it avoids the heating expenses associated with the hotter water. In addition, it is much simpler to dispense a rinse aid in a low temperature system. In a low temperature system, a quantity of rinse water can be added to the sump of the automatic dishwashing machine and circulated to rinse the dishes, before draining. In such a system, the rinse aid need only be provided to the sump, and will function as the water circulates.
By contrast, in a higher temperature system dissolved rinse aid is injected into the rinse water line prior to entering the machine and is then sprayed over the dishes from a rotation spray arm. A continuous stream of hot water is commonly provided through the spray arm for rinsing. Consequently, a rinse aid for use in a high temperature system must be dispensed into and sufficiently dissolved in the hot water stream against a back pressure before the water leaves the spray arm and contacts the dishes. This generally requires a more complex dispensing system.
There are two aspects to surfactant solubility which must be considered in the context of a solid rinse aid. First, the surfactant itself must be sufficiently water soluble to function as a rinse aid. This requires a surfactant solubility of at least about 5-10 ppm, or more commonly, about 40-80 ppm in water somewhere between 60.degree.-180.degree. F. depending upon the warewashing system. Many surfactants meet this requirement.
However, some slid surfactants, which in view of their solubility and performance could be very effective rinse aids, are not in use because their low water solubility prevents effective dispensing. This illustrates the second and more important aspect of solubility, namely, the surfactant must be soluble enough to dispense in an effective quantity during the short time that water impinges the solid to dispense it. For example, a solid surfactant may be soluble enough to function as an effective rinse aid if an appropriate amount were dissolved in the rinse water; however, if an attempt were made to dispense the solid into the rinse water in the typical way, that is, by solubilziing a portion through impingement with a brief water spray, the solid may not solubilize quickly enough to be useful. In the context of this invention, the solid rinse aid (which may have been formed of a solid, paste-like, or liquid surfactant according to the invention) is soluble enough to dispense in an effective amount, even if the surfactant alone would be too insoluble for effective dispensing. |
I know you are all going to be as shocked as I am to discover that Donald Trump would actually connive to have his own brother’s children cut out of the will of their father, Fred Trump Sr., who was suffering from senile dementia… something that seems to be an inherited condition. You would be further heart-broken and gobsmacked to learn that even though he had promised to pay the medical bills of an infant nephew who had cerebral palsy. But truth, as they say, is stranger than fiction.
Donald Trump’s tumultuous relationship with his older brother was capped off by the brother’s children being cut out of Trump’s father’s will, according to a Saturday report in The New York Times. … When Donald Trump’s father, Fred Sr., died in 1999, the roughly $20 million inheritance was divided up among his children and their descendants, “other than my son Fred C. Trump Jr.,” according to the Times. Donald Trump had helped draft the will. At the time, Freddy Trump’s children sued, claiming Donald Trump and his siblings had used “undue influence” over their grandfather, who had dementia. Donald retaliated by withdrawing the medical benefits he had promised to his nephew’s infant son, who suffered from seizures that led to cerebral palsy, according to the Times. “I was angry because they sued,” Trump told the Times.
Did you learn anything new here? Did you not know Donald Trump was greedy? Or dishonest? Or without even a vestigial sense of decency? Or petty? This is the problem oppo researchers are going to have with Donald Trump. No matter what you tell us he did, we know. It is already baked in our view of Trump. His supporters are going to laugh about this and cheer on Trump for cutting a great deal and punishing losers, like his brother and his family. The only way you can hurt Donald Trump’s image is to find that he was secretly giving money to Mother Theresa. |
<reponame>wdrDarx/DEngine3
#pragma once
#include "Core/Core.h"
#include "Serialization/Buffer.h"
#define FILE_THREADED
/*
Class for opening file dialogs
*/
class DENGINE_API FileDialog
{
public:
static std::string OpenFile(const char* filter);
static std::string SaveFile(const char* filter);
};
/*
Utility class for the filesystem
*/
class DENGINE_API File
{
public:
static void ReadFile(const std::string& path, Buffer& buffer);
static void ReadFile(const std::string& path, Buffer& buffer, const size_t& bytesToRead);
static std::future<void> AsyncReadFile(const std::string& path, Buffer& buffer);
static std::string ReadFileAsString(const std::string& path);
static void WriteFileAsString(const std::string& path, const std::string& string);
static std::string GetFileExtenstionFromPath(const std::string& path);
static std::string RemoveFileExtensionFromPath(const std::string& path);
static std::string GetFileNameFromPath(const std::string& path);
static std::wstring StringToWideString(const std::string& str);
static std::string WideStringToString(const std::wstring& str);
static void WriteFile(const std::string& path, const Buffer& buffer);
static std::future<void> AsyncWriteFile(const std::string& path, const Buffer& buffer);
static int GetFileSize(const std::string& path);
static bool DoesFileExist(const std::string& path);
static bool DoesPathExist(const std::string& path);
static void MakePath(const std::string& path);
};
|
<reponame>eofs/django-rest-framework-core-filters
from collections import OrderedDict
import copy
from django.utils import six
from core_filters.filters import FilterField
class FilterSetMetaClass(type):
"""
This metaclass sets a dictionary named `_declared_fields` on the class.
Any instances of `FilterField` included as attributes on either the class
or on any of its superclasses will be include in the
`_declared_fields` dictionary.
"""
@classmethod
def _get_declared_fields(cls, bases, attrs):
fields = [(field_name, attrs.pop(field_name))
for field_name, obj in list(attrs.items())
if isinstance(obj, FilterField)]
fields.sort(key=lambda x: x[1]._creation_counter)
# If this class is subclassing another FilterSet, add that FilterSet's
# fields. Note that we loop over the bases in *reverse*. This is necessary
# in order to maintain the correct order of fields.
for base in reversed(bases):
if hasattr(base, '_declared_fields'):
fields = list(base._declared_fields.items()) + fields
return OrderedDict(fields)
def __new__(cls, name, bases, attrs):
attrs['_declared_fields'] = cls._get_declared_fields(bases, attrs)
return super(FilterSetMetaClass, cls).__new__(cls, name, bases, attrs)
@six.add_metaclass(FilterSetMetaClass)
class FilterSet(object):
def __init__(self, data, queryset=None):
self.data = data
self.queryset = queryset
def get_fields(self):
return copy.deepcopy(self._declared_fields)
def is_valid(self, raise_exception=False):
if not hasattr(self, '_validated_data'):
self._validated_data = {}
self._errors = {}
return not bool(self._errors)
@property
def errors(self):
if not hasattr(self, '_errors'):
msg = 'You must call `.is_valid()` before accessing `.errors`.'
raise AssertionError(msg)
return self._errors
@property
def validated_data(self):
if not hasattr(self, '_validated_data'):
msg = 'You must call `.is_valid()` before accessing `.validated_data`.'
raise AssertionError(msg)
return self._validated_data
@property
def qs(self):
return self.queryset
class ModelFilterSet(FilterSet):
def get_fields(self):
assert hasattr(self, 'Meta'), (
'Class {viewset_class} missing "Meta" attribute'.format(
viewset_class=self.__class__.__name__
)
)
# TODO Get fields from Meta class
return super(ModelFilterSet, self).get_fields() |
def identify_reference_punctuation_pattern(
self, token, pattern, parens=False, forward=2
):
output = []
parse_return = pattern.searchString(token)
if parse_return:
substring = "".join(parse_return[0][forward:])
index = token.find(substring)
word = token[:index]
if self.end_parens_match(parse_return[0], parens=True):
end_offset = len(parse_return[0][-1]) * -1
reference = token[len(word) : end_offset]
else:
reference = token[len(word) :]
output.append(word)
if self.reference_token:
ref_token = (REFERENCE_PREFIX + reference).translate(
strip_table
)
output.append(ref_token)
if (
len(substring) > 2
and substring[-2] in "])}"
and substring[-3] in "])}"
):
output[-1] += substring[-2]
if self.reference_token:
if substring[-1] in ".,?!;:":
output[-1] += substring[-1]
if substring[0] in ".,?!;:":
output[-1] += substring[0]
if self.end_parens_match(parse_return[0], parens=parens):
output[-1] = output[-1] + parse_return[0][-1]
else:
output = False
if output and reference[-1] in ".,?!;:" and not self.reference_token:
output[-1] += reference[-1]
return output |
<gh_stars>10-100
/*
* Copyright (c) 2015-2021, <NAME> <antoniogmc at gmail dot com>
* Distributed under the terms of the MIT License
*/
package com.github.tonivade.claudb.command.pubsub;
import static com.github.tonivade.resp.protocol.RedisToken.array;
import static com.github.tonivade.resp.protocol.RedisToken.string;
import com.github.tonivade.claudb.DBServerContext;
import com.github.tonivade.claudb.data.Database;
import com.github.tonivade.claudb.data.DatabaseKey;
import com.github.tonivade.claudb.data.DatabaseValue;
import com.github.tonivade.purefun.Tuple;
import com.github.tonivade.purefun.Tuple2;
import com.github.tonivade.purefun.data.ImmutableMap;
import com.github.tonivade.purefun.data.ImmutableSet;
import com.github.tonivade.resp.protocol.RedisToken;
import com.github.tonivade.resp.protocol.SafeString;
public interface SubscriptionSupport extends BaseSubscriptionSupport {
String SUBSCRIPTION_PREFIX = "subscription:";
String MESSAGE = "message";
default void addSubscription(Database admin, String sessionId, SafeString channel) {
addSubscription(SUBSCRIPTION_PREFIX, admin, sessionId, channel);
}
default void removeSubscription(Database admin, String sessionId, SafeString channel) {
removeSubscription(SUBSCRIPTION_PREFIX, admin, sessionId, channel);
}
default ImmutableSet<SafeString> getSubscription(Database admin, String channel) {
return getSubscriptions(admin).getOrDefault(channel, ImmutableSet::empty);
}
default ImmutableMap<String, ImmutableSet<SafeString>> getSubscriptions(Database admin) {
return ImmutableMap.from(admin.entrySet()
.filter(SubscriptionSupport::isSubscription)
.map(SubscriptionSupport::toEntry));
}
default int publish(DBServerContext server, String channel, SafeString message) {
return publish(server, getSubscription(server.getAdminDatabase(), channel), toMessage(channel, message));
}
static Tuple2<String, ImmutableSet<SafeString>> toEntry(Tuple2<DatabaseKey, DatabaseValue> entry) {
return Tuple.of(toChannel(entry.get1()), entry.get2().getSet());
}
static String toChannel(DatabaseKey key) {
return key.getValue().substring(SUBSCRIPTION_PREFIX.length());
}
static boolean isSubscription(Tuple2<DatabaseKey, DatabaseValue> entry) {
return entry.get1().getValue().toString().startsWith(SUBSCRIPTION_PREFIX);
}
static RedisToken toMessage(String channel, SafeString message) {
return array(string(MESSAGE), string(channel), string(message));
}
}
|
import os
import subprocess
from io import StringIO
from rkd.api.inputoutput import BufferedSystemIO
from rkd.api.inputoutput import IO
from rkd.api.contract import ExecutionContext
from rkd.api.syntax import TaskDeclaration
from rkd_harbor.test import BaseHarborTestClass
from rkd_harbor.test import TestTask
class TestHooksFeature(BaseHarborTestClass):
def _prepare_test_data(self):
with open(self.get_test_env_subdirectory('hooks.d/pre-upgrade') + '/whoami.sh', 'w') as fw:
fw.write('''
#!/bin/bash
echo " >> This is a whoami.sh hook, test: $(whoami)"
''')
with open(self.get_test_env_subdirectory('hooks.d/post-upgrade') + '/history.sh', 'w') as fw:
fw.write('''
#!/bin/bash
echo "25 June 1978 the rainbow flag was first flown at the San Francisco Gay Freedom Day Parade. The flag was designed by artist <NAME>, and hand-dyed and stitched by 30 volunteers."
''')
subprocess.check_call(['chmod', '+x', self.get_test_env_subdirectory('hooks.d/pre-upgrade') + '/whoami.sh'])
subprocess.check_call(['chmod', '+x', self.get_test_env_subdirectory('hooks.d/post-upgrade') + '/history.sh'])
def test_functional_hooks_are_executed_when_exists_and_files_with_extension_only_are_skipped(self):
"""Given we have an example hooks in pre-upgrade/whoami.sh and in post-upgrade/history.sh
And we try to run those hooks using hooks_executed()
Then we will see output produced by those scripts
And .dotfiles will be ignored
"""
self._prepare_test_data()
buffer = StringIO()
hooks_capturing_io = IO()
task = TestTask()
task._io = BufferedSystemIO()
ctx = ExecutionContext(
TaskDeclaration(task),
args={},
env={}
)
with hooks_capturing_io.capture_descriptors(stream=buffer, enable_standard_out=True):
with task.hooks_executed(ctx, 'upgrade'):
pass
self.assertIn('>> This is a whoami.sh hook, test:', buffer.getvalue(),
msg='Expected pre-upgrade hook to be ran')
self.assertIn('25 June 1978 the rainbow flag was first flown', buffer.getvalue(),
msg='Expected post-upgrade hook to be ran')
self.assertIn('pre-upgrade/whoami.sh', task._io.get_value())
self.assertNotIn('.gitkeep', task._io.get_value())
def test_functional_execute_hooks_executes_post_upgrade_hooks(self):
"""Assert that post-upgrade/history.sh is executed"""
self._prepare_test_data()
buffer = StringIO()
hooks_capturing_io = IO()
task = TestTask()
task._io = BufferedSystemIO()
ctx = ExecutionContext(
TaskDeclaration(task),
args={},
env={}
)
with hooks_capturing_io.capture_descriptors(stream=buffer, enable_standard_out=True):
task.execute_hooks(ctx, 'post-upgrade')
self.assertIn('25 June 1978 the rainbow flag was first flown', buffer.getvalue(),
msg='Expected post-upgrade hook to be ran')
def test_non_existing_dir_is_skipped(self):
"""Assert that non-existing directory does not cause exception, but will be skipped"""
task = TestTask()
task._io = BufferedSystemIO()
task._io.set_log_level('debug')
ctx = ExecutionContext(
TaskDeclaration(task),
args={},
env={}
)
task.execute_hooks(ctx, 'non-existing-directory')
self.assertIn('Hooks dir "./hooks.d//non-existing-directory/" not present, skipping', task._io.get_value())
|
Systems genetics: elucidating networks that underlie heritable variation in adipose function Excess adipose tissue not only physically stresses the organism but also disrupts homeostasis through release of adipokines. Our long term goal is to determine how heritable differences in adipose function impact risk for obesity and its consequences. We employ systems genetics, anchoring phenotypic variation to naturally occurring genetic polymorphisms in two mouse genetic reference populations (GRP): |
/**
* Returns name of the resource relative to the project directory.
*
* @param resourceUrl absolute name/URL of the resource.
* @param project project owning the resource.
* @return relative name of the resource.
*/
public static String relativeResourceName(String resourceUrl, Project project) {
String name = resourceUrl;
if (project != null) {
FileObject fob = new Resource(project, resourceUrl).toFileObject();
if (fob != null) {
FileObject projectDir = project.getProjectDirectory();
String relativePath = FileUtil.getRelativePath(projectDir, fob);
if (relativePath != null) {
name = relativePath;
}
}
}
return name;
} |
/*
-----------------------------------------------------------------------------
This source file is part of OGRE
(Object-oriented Graphics Rendering Engine)
For the latest info, see http://www.ogre3d.org/
Copyright (c) 2000-2014 Tor<NAME>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-----------------------------------------------------------------------------
*/
#ifndef __CompositorLogic_H__
#define __CompositorLogic_H__
#include "OgrePrerequisites.h"
namespace Ogre {
/** \addtogroup Core
* @{
*/
/** \addtogroup Effects
* @{
*/
/** Interface for compositor logics, which can be automatically binded to compositors,
* allowing per-compositor logic (such as attaching a relevant listener) to happen
* automatically.
* @remarks All methods have empty implementations to not force an implementer into
* extending all of them.
*/
class _OgreExport CompositorLogic
{
public:
/** Called when a compositor instance has been created.
@remarks
This happens after its setup was finished, so the chain is also accessible.
This is an ideal method to automatically attach a compositor listener.
*/
virtual void compositorInstanceCreated(CompositorInstance* newInstance) {}
/** Called when a compositor instance has been destroyed
@remarks
The chain that contained the compositor is still alive during this call.
*/
virtual void compositorInstanceDestroyed(CompositorInstance* destroyedInstance) {}
virtual ~CompositorLogic() {}
};
/** @} */
/** @} */
}
#endif
|
from pygments.lexer import RegexLexer, bygroups
from pygments.token import *
class AbruptProxyLexer(RegexLexer):
name = 'abrupt-proxy'
aliases = ['abr-proxy']
filenames = ['']
tokens = {
'root': [
(r'^(\[[0-9]\]\s+<)(GET)(.*)$', bygroups( Text, String, Text)),
(r'^(\[[0-9]\]\s+<)(200)(.*)$', bygroups( Text, String.Symbol, Text)),
(r'.*\n', Text),
]
}
def setup(app):
app.add_lexer("abrupt-proxy", AbruptProxyLexer())
|
// CodepointToUtf8 function as declared in src/raylib.h:1311
func CodepointToUtf8(codepoint int32, byteLength *int32) string {
ccodepoint, _ := (C.int)(codepoint), cgoAllocsUnknown
cbyteLength, _ := (*C.int)(unsafe.Pointer(byteLength)), cgoAllocsUnknown
__ret := C.CodepointToUtf8(ccodepoint, cbyteLength)
__v := packPCharString(__ret)
return __v
} |
// Collect implements the prometheus.Collector interface.
func (e *Exporter) Collect(ch chan<- prometheus.Metric) {
hostName, osErr := os.Hostname()
if osErr != nil {
fmt.Printf("%s", osErr)
}
resp, err := http.Get(e.url)
if err != nil {
fmt.Errorf("erro:", err)
}
defer resp.Body.Close()
data, err := ioutil.ReadAll(resp.Body)
if err != nil {
fmt.Errorf("erro:", err)
}
var f interface{}
err = json.Unmarshal(data, &f)
if err != nil {
fmt.Errorf("erro:", err)
}
defer func() {
if err := recover(); err != nil {
fmt.Println("error...")
}
}()
m := f.(map[string]interface{})
var nameList = m["beans"].([]interface{})
for _, nameData := range nameList {
nameDataMap := nameData.(map[string]interface{})
if nameDataMap["name"] == "Hadoop:service=DataNode,name=DataNodeActivity-"+hostName+"-50010" {
e.WritesFromRemoteClient.Set(nameDataMap["WritesFromRemoteClient"].(float64))
e.WritesFromLocalClient.Set(nameDataMap["WritesFromLocalClient"].(float64))
e.WriteBlockOpNumOps.Set(nameDataMap["WriteBlockOpNumOps"].(float64))
e.VolumeFailures.Set(nameDataMap["VolumeFailures"].(float64))
e.TotalWriteTime.Set(nameDataMap["TotalWriteTime"].(float64))
e.ReadBlockOpAvgTime.Set(nameDataMap["ReadBlockOpAvgTime"].(float64))
e.HeartbeatsNumOps.Set(nameDataMap["HeartbeatsNumOps"].(float64))
e.HeartbeatsAvgTime.Set(nameDataMap["HeartbeatsAvgTime"].(float64))
e.DatanodeNetworkErrors.Set(nameDataMap["DatanodeNetworkErrors"].(float64))
e.BytesWritten.Set(nameDataMap["BytesWritten"].(float64))
e.BlocksReplicated.Set(nameDataMap["BlocksReplicated"].(float64))
e.BlockReportsNumOps.Set(nameDataMap["BlockReportsNumOps"].(float64))
e.BlockReportsAvgTime.Set(nameDataMap["BlockReportsAvgTime"].(float64))
}
if nameDataMap["name"] == "Hadoop:service=DataNode,name=JvmMetrics" {
e.GcTimeMillis.Set(nameDataMap["GcTimeMillis"].(float64))
e.GcCount.Set(nameDataMap["GcCount"].(float64))
e.ThreadsBlocked.Set(nameDataMap["ThreadsBlocked"].(float64))
}
ConvertMetrics(nameDataMap)
}
e.WritesFromRemoteClient.Collect(ch)
e.WritesFromLocalClient.Collect(ch)
e.WriteBlockOpNumOps.Collect(ch)
e.VolumeFailures.Collect(ch)
e.TotalWriteTime.Collect(ch)
e.ThreadsBlocked.Collect(ch)
e.ReadBlockOpAvgTime.Collect(ch)
e.HeartbeatsNumOps.Collect(ch)
e.HeartbeatsAvgTime.Collect(ch)
e.GcTimeMillis.Collect(ch)
e.GcCount.Collect(ch)
e.DatanodeNetworkErrors.Collect(ch)
e.BytesWritten.Collect(ch)
e.BlocksReplicated.Collect(ch)
e.BlockReportsNumOps.Collect(ch)
e.BlockReportsAvgTime.Collect(ch)
} |
Rehabilitation - is an Essential Part of Universal Health Coverage Rehabilitation, like promotion of good health, disease prevention, treatment, and palliative care, is an important aspect of universal health coverage. Rehabilitation enables a child, adult, or elderly person to be as self-sufficient as possible in daily activities, allowing them to participate in education, job, recreation, and meaningful life tasks such as caring for family members. An estimated 2.4 billion people worldwide suffer from a health condition that could benefit from rehabilitation. Changes in population health and features are expected to increase the demand for rehabilitation services around the world. People are living longer, for example, but with more chronic disease and incapacity. The requirement for rehabilitation is now largely unmet. More than half of people in several low- and middle-income nations do not obtain the rehabilitation services they require. The COVID-19 pandemic has wreaked havoc on rehabilitation programmes, as well as other health services1. |
An Uncultivated Nitrate-Reducing Member of the Genus Herminiimonas Degrades Toluene ABSTRACT Stable isotope probing (SIP) is a cultivation-free methodology that provides information about the identity of microorganisms participating in assimilatory processes in complex communities. In this study, a Herminiimonas-related bacterium was identified as the dominant member of a denitrifying microcosm fed toluene. The genome of the uncultivated toluene-degrading bacterium was obtained by applying pyrosequencing to the heavy DNA fraction. The draft genome comprised ∼3.8 Mb, in 131 assembled contigs. Metabolic reconstruction of aromatic hydrocarbon (toluene, benzoate, p-cresol, 4-hydroxybenzoate, phenylacetate, and cyclohexane carboxylate) degradation indicated that the bacterium might specialize in anaerobic hydrocarbon degradation. This characteristic is novel for the order Burkholderiales within the class Betaproteobacteria. Under aerobic conditions, the benzoate oxidation gene cluster (BOX) system is likely involved in the degradation of benzoate via benzoyl coenzyme A. Many putative genes for aromatic hydrocarbon degradation were closely related to those in the Rhodocyclaceae (particularly Aromatoleum aromaticum EbN1) with respect to organization and sequence similarity. Putative mobile genetic elements associated with these catabolic genes were highly abundant, suggesting gene acquisition by Herminiimonas via horizontal gene transfer. |
package com.jonki.popcorn.web.controller;
import com.jonki.popcorn.core.service.UserSearchService;
import com.jonki.popcorn.core.util.EncryptUtils;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseStatus;
import org.springframework.web.bind.annotation.RestController;
import java.security.Principal;
/**
* REST end-point for supporting checking the uniqueness of users with the given data.
* Methods used to validate data for asynchronous calls in forms on pages.
*/
@RestController
@PreAuthorize("permitAll()")
@RequestMapping(value = "/api/v1.0/users/check")
@Slf4j
@Api(value = "Check User Data API", description = "Provides a list of methods for checking user data")
public class CheckUserDataRestController {
private final UserSearchService userSearchService;
/**
* Constructor.
*
* @param userSearchService The user search service to use
*/
@Autowired
public CheckUserDataRestController(
final UserSearchService userSearchService
) {
this.userSearchService = userSearchService;
}
/**
* Check if there is a user with the given name.
*
* @param username The username to check uniqueness. Not null/empty/blank
* @param negation Negation of the returned value (optional, default false)
*/
@ApiOperation(value = "Check if the username exists")
@GetMapping(value = "/username", produces = MediaType.APPLICATION_JSON_VALUE)
@ResponseStatus(HttpStatus.OK)
public
boolean checkUsername(
@ApiParam(value = "The user's name", required = true)
@RequestParam final String username,
@ApiParam(value = "Negation of the returned value")
@RequestParam(defaultValue = "false", required = false) final boolean negation
) {
log.info("Called with username {}, negation {}", username, negation);
if(!negation) {
return this.userSearchService.existsUserByUsername(username);
} else {
return !this.userSearchService.existsUserByUsername(username);
}
}
/**
* Check if there is a user with the given e-mail.
*
* @param email The e-mail to check uniqueness. Not null/empty/blank
* @param negation Negation of the returned value (optional, default false)
*/
@ApiOperation(value = "Check if the e-mail exists")
@GetMapping(value = "/email", produces = MediaType.APPLICATION_JSON_VALUE)
@ResponseStatus(HttpStatus.OK)
public
boolean checkEmail(
@ApiParam(value = "The user's e-mail", required = true)
@RequestParam final String email,
@ApiParam(value = "Negation of the returned value")
@RequestParam(defaultValue = "false", required = false) final boolean negation
) {
log.info("Called with email {}, negation {}", email, negation);
if(!negation) {
return this.userSearchService.existsUserByEmail(email);
} else {
return !this.userSearchService.existsUserByEmail(email);
}
}
/**
* Check that the user's password is the same.
*
* @param password The password to check the correctness
* @param negation Negation of the returned value (optional, default false)
* @param principal An authorized user {@link Principal}
*/
@ApiOperation(value = "Check that the user's password is the same")
@PreAuthorize("hasRole('ROLE_USER')")
@GetMapping(value = "/password", produces = MediaType.APPLICATION_JSON_VALUE)
@ResponseStatus(HttpStatus.OK)
public
boolean checkPassword(
@ApiParam(value = "The user's password", required = true)
@RequestParam final String password,
@ApiParam(value = "Negation of the returned value")
@RequestParam(defaultValue = "false", required = false) final boolean negation,
final Principal principal
) {
log.info("Called with password {}, negation {}", password, negation);
if(!negation) {
return EncryptUtils.matches(password, this.userSearchService.getUserPassword(principal.getName()));
} else {
return !(EncryptUtils.matches(password, this.userSearchService.getUserPassword(principal.getName())));
}
}
}
|
<reponame>vineeraj/minimap2<filename>options.c
#include <stdio.h>
#include "mmpriv.h"
void mm_idxopt_init(mm_idxopt_t *opt)
{
memset(opt, 0, sizeof(mm_idxopt_t));
opt->k = 15, opt->w = 10, opt->flag = 0;
opt->bucket_bits = 14;
opt->mini_batch_size = 50000000;
opt->batch_size = 4000000000ULL;
}
void mm_mapopt_init(mm_mapopt_t *opt)
{
memset(opt, 0, sizeof(mm_mapopt_t));
opt->seed = 11;
opt->mid_occ_frac = 2e-4f;
opt->sdust_thres = 0; // no SDUST masking
opt->min_cnt = 3;
opt->min_chain_score = 40;
opt->bw = 500;
opt->max_gap = 5000;
opt->max_gap_ref = -1;
opt->max_chain_skip = 25;
opt->mask_level = 0.5f;
opt->pri_ratio = 0.8f;
opt->best_n = 5;
opt->max_join_long = 20000;
opt->max_join_short = 2000;
opt->min_join_flank_sc = 1000;
opt->min_join_flank_ratio = 0.5f;
opt->a = 2, opt->b = 4, opt->q = 4, opt->e = 2, opt->q2 = 24, opt->e2 = 1;
opt->sc_ambi = 1;
opt->zdrop = 400, opt->zdrop_inv = 200;
opt->end_bonus = -1;
opt->min_dp_max = opt->min_chain_score * opt->a;
opt->min_ksw_len = 200;
opt->anchor_ext_len = 20, opt->anchor_ext_shift = 6;
opt->max_clip_ratio = 1.0f;
opt->mini_batch_size = 500000000;
opt->pe_ori = 0; // FF
opt->pe_bonus = 33;
}
void mm_mapopt_update(mm_mapopt_t *opt, const mm_idx_t *mi)
{
if ((opt->flag & MM_F_SPLICE_FOR) && (opt->flag & MM_F_SPLICE_REV))
opt->flag |= MM_F_SPLICE;
if (opt->mid_occ <= 0)
opt->mid_occ = mm_idx_cal_max_occ(mi, opt->mid_occ_frac);
if (opt->mid_occ < opt->min_mid_occ)
opt->mid_occ = opt->min_mid_occ;
if (mm_verbose >= 3)
fprintf(stderr, "[M::%s::%.3f*%.2f] mid_occ = %d\n", __func__, realtime() - mm_realtime0, cputime() / (realtime() - mm_realtime0), opt->mid_occ);
}
void mm_mapopt_max_intron_len(mm_mapopt_t *opt, int max_intron_len)
{
if ((opt->flag & MM_F_SPLICE) && max_intron_len > 0)
opt->max_gap_ref = opt->bw = max_intron_len;
}
int mm_set_opt(const char *preset, mm_idxopt_t *io, mm_mapopt_t *mo)
{
if (preset == 0) {
mm_idxopt_init(io);
mm_mapopt_init(mo);
} else if (strcmp(preset, "ava-ont") == 0) {
io->flag = 0, io->k = 15, io->w = 5;
mo->flag |= MM_F_ALL_CHAINS | MM_F_NO_DIAG | MM_F_NO_DUAL | MM_F_NO_LJOIN;
mo->min_chain_score = 100, mo->pri_ratio = 0.0f, mo->max_gap = 10000, mo->max_chain_skip = 25;
} else if (strcmp(preset, "ava-pb") == 0) {
io->flag |= MM_I_HPC, io->k = 19, io->w = 5;
mo->flag |= MM_F_ALL_CHAINS | MM_F_NO_DIAG | MM_F_NO_DUAL | MM_F_NO_LJOIN;
mo->min_chain_score = 100, mo->pri_ratio = 0.0f, mo->max_gap = 10000, mo->max_chain_skip = 25;
mo->bw = 2000;
} else if (strcmp(preset, "map10k") == 0 || strcmp(preset, "map-pb") == 0) {
io->flag |= MM_I_HPC, io->k = 19;
} else if (strcmp(preset, "map-ont") == 0) {
io->flag = 0, io->k = 15;
} else if (strcmp(preset, "asm5") == 0) {
io->flag = 0, io->k = 19, io->w = 19;
mo->a = 1, mo->b = 19, mo->q = 39, mo->q2 = 81, mo->e = 3, mo->e2 = 1, mo->zdrop = mo->zdrop_inv = 200;
mo->min_mid_occ = 100;
mo->min_dp_max = 200;
mo->best_n = 50;
} else if (strcmp(preset, "asm10") == 0) {
io->flag = 0, io->k = 19, io->w = 19;
mo->a = 1, mo->b = 9, mo->q = 16, mo->q2 = 41, mo->e = 2, mo->e2 = 1, mo->zdrop = mo->zdrop_inv = 200;
mo->min_mid_occ = 100;
mo->min_dp_max = 200;
mo->best_n = 50;
} else if (strcmp(preset, "asm20") == 0) {
io->flag = 0, io->k = 19, io->w = 10;
mo->a = 1, mo->b = 4, mo->q = 6, mo->q2 = 26, mo->e = 2, mo->e2 = 1, mo->zdrop = mo->zdrop_inv = 200;
mo->min_mid_occ = 100;
mo->min_dp_max = 200;
mo->best_n = 50;
} else if (strcmp(preset, "short") == 0 || strcmp(preset, "sr") == 0) {
io->flag = 0, io->k = 21, io->w = 11;
mo->flag |= MM_F_SR | MM_F_FRAG_MODE | MM_F_NO_PRINT_2ND | MM_F_2_IO_THREADS | MM_F_HEAP_SORT;
mo->pe_ori = 0<<1|1; // FR
mo->a = 2, mo->b = 8, mo->q = 12, mo->e = 2, mo->q2 = 24, mo->e2 = 1;
mo->zdrop = mo->zdrop_inv = 100;
mo->end_bonus = 10;
mo->max_frag_len = 800;
mo->max_gap = 100;
mo->bw = 100;
mo->pri_ratio = 0.5f;
mo->min_cnt = 2;
mo->min_chain_score = 25;
mo->min_dp_max = 40;
mo->best_n = 20;
mo->mid_occ = 1000;
mo->max_occ = 5000;
mo->mini_batch_size = 50000000;
} else if (strcmp(preset, "splice") == 0 || strcmp(preset, "cdna") == 0) {
io->flag = 0, io->k = 15, io->w = 5;
mo->flag |= MM_F_SPLICE | MM_F_SPLICE_FOR | MM_F_SPLICE_REV | MM_F_SPLICE_FLANK;
mo->max_gap = 2000, mo->max_gap_ref = mo->bw = 200000;
mo->a = 1, mo->b = 2, mo->q = 2, mo->e = 1, mo->q2 = 32, mo->e2 = 0;
mo->noncan = 9;
mo->zdrop = 200, mo->zdrop_inv = 100; // because mo->a is halved
} else return -1;
return 0;
}
int mm_check_opt(const mm_idxopt_t *io, const mm_mapopt_t *mo)
{
if (mo->best_n < 0) {
if (mm_verbose >= 1)
fprintf(stderr, "[ERROR]\033[1;31m -N must be no less than 0\033[0m\n");
return -4;
}
if (mo->best_n == 0 && mm_verbose >= 2)
fprintf(stderr, "[WARNING]\033[1;31m '-N 0' reduces mapping accuracy. Please use '--secondary=no' instead.\033[0m\n");
if (mo->pri_ratio < 0.0f || mo->pri_ratio > 1.0f) {
if (mm_verbose >= 1)
fprintf(stderr, "[ERROR]\033[1;31m -p must be within 0 and 1 (including 0 and 1)\033[0m\n");
return -4;
}
if ((mo->flag & MM_F_FOR_ONLY) && (mo->flag & MM_F_REV_ONLY)) {
if (mm_verbose >= 1)
fprintf(stderr, "[ERROR]\033[1;31m --for-only and --rev-only can't be applied at the same time\033[0m\n");
return -3;
}
if ((mo->q != mo->q2 || mo->e != mo->e2) && !(mo->e > mo->e2 && mo->q + mo->e < mo->q2 + mo->e2)) {
if (mm_verbose >= 1)
fprintf(stderr, "[ERROR]\033[1;31m dual gap penalties violating E1>E2 and O1+E1<O2+E2\033[0m\n");
return -2;
}
if ((mo->q + mo->e) + (mo->q2 + mo->e2) > 127) {
if (mm_verbose >= 1)
fprintf(stderr, "[ERROR]\033[1;31m scoring system violating ({-O}+{-E})+({-O2}+{-E2}) <= 127\033[0m\n");
return -1;
}
if (mo->zdrop < mo->zdrop_inv) {
if (mm_verbose >= 1)
fprintf(stderr, "[ERROR]\033[1;31m Z-drop should not be less than inversion-Z-drop\033[0m\n");
return -5;
}
return 0;
}
|
Predatory Behaviour of the Gough Moorhen Gallinula comeri: Conservation Implications The Gough Moorhen is endemic to Gough Island and is classified by the IUCN as Threatened. We present several observations of Gough Moorhens preying on introduced House Mice Mus musculus and on eggs and chicks of burrow-nesting procellariiform seabirds. The incidence of egg predation is almost certainly related to incubation breaks or abandonment. We estimate that Moorhens could access and depredate unattended eggs of at least five species but levels of predation appear to be low and are unlikely to affect population parameters of impacted species. Moorhens hunting live mice and scavenging carcasses presents a significant conservation concern. A possible eradication of mice from Gough Island is likely to employ poisons that are toxic to the Moorhens. Therefore secondary poisoning of Moorhens, by eating poisoned mice, is a threat to the Gough Moorhens. An eradication effort will be required to take appropriate mitigation measures. The introduced Gough Moorhen population on Tristan da Cunha serves as an ex situ population and could, if required, be used to re-stock Gough. |
The Loss of the Christian Mind in Biblical Scholarship Nothing nobler can engage the Christian mind than to think God's thoughts after him. The mind is undoubtedly God's supreme creation, endowed with the capacity to know its creator. Should not its first response, indeed its chief end, be to seek after and know God? Yet knowledge-in particular, the knowledge of God-is not without its pitfalls. To embark on a quest for such knowledge is to embark on a perilous journey. With knowledge comes accountability. In knowledge there are the dangers of pride and selfgratification. In seeking after knowledge we may mistake falsehood for truth, illusion for reality, the peripheral for the essential. We may be successful in our enterprise, but successful in what ultimately does not matter. This paper examines one such course in the purSuit of knowledge. It is the study of the Bible in the field of biblical scholarship. More specifically, we are concerned with what is commonly called historical biblical criticism, the study of the biblical documents in their historical context with a critical mind. Our study is prompted by two observations. The first is made by James D. Smart who speaks ofthe 'strange silence' of the Bible in the church today. He observes '... Strangely, the steady progress of scholarship, constantly perfecting its methodology for dealing with the problems that the text of Scripture provides for it, has been paralleled by this equally steady recession in the attention that the church and Christians give to the Bible. '1 As the Bible is studied more and more by |
Remington Follows Beretta Firearms In Evacuating States Hostile To Their Business
HUNTSVILLE, AL – It appears that Remington Arms took New York Gov. Andrew Cuomo’s hint after he said that “extreme conservatives” who are “pro-assault-weapon” have “no place in the state of New York,” and are expanding their facilities to Huntsville, Alabama.
Follow TLR on Google+
According to high-level sources working with Yellowhammer News, Alabama Governor Robert Bentley will announce on Monday that the Big Green is expanding their operations significantly into the state. [contextly_auto_sidebar id=”XN7y3o3HjWpa6DzTdFuOVKH2m3umHYEG”]
This move comes not long after Beretta made a similar decision to ditch the anti-gun state of Maryland. Like Beretta, Remington began looking for new facilities outside of its home state after the legislature passed highly political gun control laws.
“In Alabama we strongly support and uphold our great U.S. Constitution on which our nation and our states were founded,” said Governor Bently. “The Constitution serves to protect individual Freedoms. Among them are those guaranteed in the Second Amendment, which protects the right of the people to keep and bear Arms. We will protect the Freedoms of individuals and welcome any one or any company to Alabama to discover as so many have, that we are a pro-business state filled with good, hardworking people.”
According to estimates, the move will bring over 2000 jobs and $87 million to the Alabama economy.
New York is currently the second most in-dept state in the nation, with outstanding debt averaging $3,253 per state resident. |
package com.jzy.service;
import com.jzy.BaseTest;
import com.jzy.manager.util.FileUtils;
import com.jzy.model.excel.input.StudentListImportToDatabaseExcel;
import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;
import java.util.ArrayList;
public class StudentServiceTest extends BaseTest {
@Autowired
private StudentService studentService;
@Test
public void insertAndUpdateStudentsFromExcel() throws Exception {
StudentListImportToDatabaseExcel excel = new StudentListImportToDatabaseExcel("D:\\aows_resources\\toolbox\\example\\"+FileUtils.EXAMPLES.get(4));
excel.readStudentDetailInfoFromExcel();
studentService.insertAndUpdateStudentsDetailedFromExcel(new ArrayList<>(excel.getStudents()));
}
} |
Improved stability of photorefractive polymer composites by use of eutectic mixture of EO chromophores Summary form only given. Recently, organic photorefractive (PR) materials have attracted a lot of attention as recording media for photonic applications, including real-time optical processing and holographic data storage. The latest PR polymers show steady-state performance that compete and in some cases even surpass the performance of traditional inorganic materials. However, a drawback of these high-performance materials is their short shelf-life time, in particular in humid environments. Here we use an eutectic EO chromophore mixture. |
The whole point of TLC's All-American Muslim — which follows families living in Dearborn, Michigan — is to humanize folks who live in the U.S. and practice Islam. They have close-knit relationships, love football, and feel anxious about the first day of school, just like any other Americans. But home improvement retailer Lowe's has pulled ads from the program following a complaint from the Florida Family Association. The Florida Family Association is allegedly devoted to "improving America's moral environment." Yet the group calls the show "propaganda that riskily hides the Islamic agenda's clear and present danger to American liberties and traditional values."
The Florida Family Association also states:
Clearly this program is attempting to manipulate Americans into ignoring the threat of jihad and to influence them to believe that being concerned about the jihad threat would somehow victimize these nice people in this show.
It should come as no shock to you that the Florida Family Association is associated with evangelical Christians. The organization's goal is to "defend, protect and promote traditional, biblical values." Ah yes, the Bible. The book that declares you may not wear a garment made of wool and linen. The Florida Family Association has campaigned against Degrassi, since the show "promotes the transgender and homosexual lifestyles and other inappropriate behavior." The group claims to have succeeded in getting Macy's and Mars Candy to pull ads from Degrassi, and has urged Home Depot and Sweet 'N Low to pull ads from All-American Muslim.
Senator Ted Lieu, from Southern California, is appalled that Lowe's has pulled ads. "The show is about what it's like to be a Muslim in America, and it touches on the discrimination they sometimes face. And that kind of discrimination is exactly what's happening here with Lowe's," he tells the AP.
Hip-hop mogul Russell Simmons is also irate. "This can't happen in America," he tells EW.com. "There are American principles at stake here… This country is built on religious freedom. This is the kind of hate that tears this country apart." Simmons also insinuates that he may try and start a boycott.
In last night's episode of the show, Suehaila Amen visited Washington, D.C. to speak on a panel coinciding with the 10th anniversary of the September 11th attacks. (As seen in the clip above.) As her father drove her to the airport, he said, "They make you feel like no matter what you do, you'll always be a third class." He also said, "There's a lot of people who [don't know anything] about Islam and think all Muslims are all the same."
Some other castmembers also discussed discrimination last night (as seen in the clip at left); Nina Bazzy sighed, "People seem to confuse culture with religion. And so when they see people in the Taliban, they associate it with us."
The most ridiculous part of this debacle is that the show features some of the most close-knit families, ever. If David Caton of the Florida Family Association actually watched All-American Muslimlast night, he would have seen new mom Nawal Aoude struggle with her infant and feelings of loneliness, with her husband trying to do whatever he could to support her. He would have seen Jeff McDermott, who converted to Islam for his wife Shadia, give up the dog he's had for ten years because his wife is allergic. He would have seen the Jaafars and the Zabans waiting for the school bus, anxious as their kids went off for the first day of school. How could Caton, who considers himself a "general in the morality war," and considers himself "pro-family," find any of these people a threat to so-called traditional values?
Advertisement
Backlash For Lowe's As Ads Pulled From Muslim Show [AP]
Russell Simmons Blasts Lowe's For Pulling Muslim Show Ads: 'This Can't Happen In America' — EXCLUSIVE [Entertainment Weekly]
Lowe's Pulls Ads From TLC Show About Muslims [CBS News]
Russell Simmons: Lowe's wrong to pull ads from 'All-American Muslim' [Detroit Free Press]
Florida Family Association [Official Site] |
<gh_stars>10-100
/**
* @file max_pq.h
* @author <NAME> <<EMAIL>>
* @date 19 Mar 2020
* @brief Header file for Max Priority Queue module.
*
* Defines the prototypes for the routines of the Max Priority Queue module.
*/
#ifndef MAX_PQ_H
#define MAX_PQ_H
#include <register.h>
#include <stdbool.h>
/** @brief Extracts maximum value from Max Priority Queue (max-heap).
*
* Extracts maximum value from max-heap if heap contains at least one element.
* Reorganizes heap to maintain heap property and decreases heap size. Returns
* a boolean value to denote whether extraction was successful. If extraction
* was successful given pointer is set to maximum value.
*
* @param array Array of Registers containing heap elements.
* @param heap_size Pointer that contains number of elements in heap.
* @param extracted Pointer where to store Register containing maximum value.
* @param compare Pointer to function that compares two union Keys.
* @return Whether extraction was successful.
*/
bool heap_extract_max(Register array[], int* heap_size, Register* extracted,
int (*compare)(union Key, union Key));
/** @brief Gets maximum value / priority in Max Priority Queue (max-heap).
*
* If there's at least one element in heap returns its maximum value.
* Otherwise, its behavior is undefined.
*
* @param array Array of Registers containing heap elements.
* @return Register containing maximum value in max-heap.
*/
Register heap_maximum(Register array[]);
/** @brief Increases key/priority of element in Max Priority Queue (max-heap).
*
* Increases key (priority) of element in max-heap to given value. Reorganizes
* heap to maintain the heap property. The value can only be increased, and a
* decrease is invalid. Returns a boolean value to denote whether key update
* was successful.
*
* @param array Array of Registers containing heap elements.
* @param i Index of element whose priority is to be increased.
* @param key New priority value as union Key.
* @param compare Pointer to function that compares two union Keys.
* @return Whether key increase was successful.
*/
bool heap_increase_key(Register array[], int i, union Key,
int (*compare)(union Key, union Key));
/** @brief Inserts element of given key into Max Priority Queue (max-heap).
*
* Inserts element of given key into max-heap. Reorganizes max-heap to
* maintain heap property and updates heap size.
*
* @param array Array of Registers containing heap elements.
* @param key Key (Priority) of element to be inserted as union Key.
* @param heap_size Pointer to number of elements in heap.
* @param compare Pointer to function that compares two union Keys.
* @return Void.
*/
void max_heap_insert(Register array[], union Key, int* heap_size,
int (*compare)(union Key, union Key));
#endif
|
Comparison of Estradiol Cypionate, Estradiol Benzoate and Gonadotropin-Releasing Hormone in Fixed-Time Artificial Insemination in Multiparous Murrah Buffaloes The present study was aimed to evaluate the efficiency of estradiol cypionate, estradiol benzoate and gonadotropin-releasing hormone during fixed-time artificial insemination (FTAI) protocols in multiparous Murrah buffaloes. A total of 35 buffaloes were used between September and November 2021 and subjected to a synchronization protocol. On day 0, insertion of an intravaginal progesterone device (CIDR, 1.38 g) was made with intramuscular (i/m) injection of estradiol benzoate (EB, 2 mg); On day 9: CIDR removed with i/m injections of Dinoprost (12.5 mg) and eCG (400 IU), and then buffaloes were randomized into three treatment group: 1) EB 1 mg on day 10 (n=13). 2) estradiol cypionate (EC) 1 mg on day 9 (n=12), and 3) Buserelin acetate (GnRH) 0.0105 mg on day 10 (n=10). The estrus signs observed during the FTAI (56 h after CIDR withdrawal) and conception rate at 90 days after FTAI were recorded. The conception rates were 61.5, 58.3 and 60.0% for EB, EC and GnRH treatment groups, respectively. There was no significant difference between the treatment groups for conception rate and signs of estrus. Therefore, it was concluded that all three treatments can be efficiently used during estrus synchronization protocol with FTAI in multiparous Murrah buffaloes. |
You need not be a media historian to notice that we live in a golden age of press harassment, domestic propaganda and coercive efforts to control political debate. The Trump White House repeatedly seeks to discredit the press, threatens to strip broadcasters of their licenses and calls for the firing of journalists and football players for speaking their minds. A foreign government tries to hack our elections, and journalists and public speakers are regularly attacked by vicious, online troll armies whose aim is to silence opponents.
In this age of “new” censorship and blunt manipulation of political speech, where is the First Amendment? Americans like to think of it as the great protector of the press and of public debate. Yet it seems to have become a bit player, confined to a narrow and often irrelevant role. It is time to ask: Is the First Amendment obsolete? If so, what can be done?
These questions arise because the jurisprudence of the First Amendment was written for a different set of problems in a very different world. The First Amendment was ignored for much of American history, coming to life only in the 1920s thanks to the courage of judges like Learned Hand, Louis Brandeis and Oliver Wendell Holmes. Courts and civil libertarians used the amendment to protect speakers from government prosecution and censorship as it was practiced in the 20th century, such as the arrest of pamphleteers and the seizure of anarchist newspapers by the Post Office.
But in the 21st century, censorship works differently, as the writer and academic Zeynep Tufekci has illustrated. The complete suppression of dissenting speech isn’t feasible in our “cheap speech” era. Instead, the world’s most sophisticated censors, including Russia and China, have spent a decade pioneering tools and techniques that are better suited to the internet age. Unfortunately, those new censorship tools have become unwelcome imports in the United States, with catastrophic results for our democracy.
Our distressing state of public discourse stems from the widespread use of these new tools of censorship and speech control, including by the White House. The administration habitually crosses the line between fact and propaganda. Instead of taking action itself, it demands that others punish its supposed enemies. To add to the mess, it is apparent that the Russian government and possibly others hope to manipulate American political debate, as its exploitation of Facebook and Twitter in the last election shows.
What can be done? It is time to recognize that the American political process and marketplace for ideas are under attack, and that reinvigorating the First Amendment is vital. First, it is an imperative that law enforcement and lawmakers do more to protect journalists and other public speakers from harassment and threats. Cyberstalking is a crime. And as the Supreme Court has made clear, threats of violence are not protected speech. A country where speaking one’s mind always results in death threats is not a country that can be said to be truly free.
Second, too little is being done to protect American politics from foreign attack. The Russian efforts to use Facebook, YouTube and other social media to influence American politics should compel Congress to act. Social media has as much impact as broadcasting on elections, yet unlike broadcasting it is unregulated and has proved easy to manipulate. At a minimum, new rules should bar social media companies from accepting money for political advertising by foreign governments or their agents. And more aggressive anti-bot laws are needed to fight impersonation of humans for propaganda purposes.
Finally, the White House needs to be held accountable when it tries to use private parties to circumvent First Amendment protections. When it encourages others to punish its critics — as when it demanded that the N.F.L., on pain of tax penalties, censor players — it is wielding state power to punish disfavored speech. There is precedent for such abuses to be challenged in court.
Some might argue, based on the sophomoric premise that “more speech is always better,” that the current state of chaos is what the First Amendment intended. But no defensible free-speech tradition accepts harassment and threats as speech, treats foreign propaganda campaigns as legitimate debate or thinks that social-media bots ought to enjoy constitutional protection. A robust and unfiltered debate is one thing; corruption of debate itself is another. We have entered a far more dangerous place for the republic; its defense requires stronger protections for what we once called the public sphere.
An Op-Ed essay on Saturday about the First Amendment used an incorrect name for the government agency that seized anarchist newspapers in the early 20th century. It was the United States Post Office, not the United States Postal Service (the agency was renamed in 1971).
Tim Wu, the author of “The Attention Merchants: The Epic Struggle to Get Inside Our Heads,” is a professor at Columbia Law School and a contributing opinion writer. This essay is adapted from a paper written for the Knight First Amendment Institute. |
#include "shared.h"
using namespace render::low_level;
using namespace render::low_level::opengl;
namespace
{
template <class Fn>
inline void init_entry (ILibrary& library, const char* name, Fn& fn)
{
fn = reinterpret_cast<Fn> (library.GetProcAddress (name, EntrySearch_Library));
}
template <class Fn>
inline void init_extension_entry (ILibrary& library, const char* name, Fn& fn)
{
fn = reinterpret_cast<Fn> (library.GetProcAddress (name, EntrySearch_Context | EntrySearch_NoThrow));
}
}
/*
Инициализация точек входа OpenGL
*/
void GlEntries::Init (ILibrary& library)
{
//обнуление адресов точек входа
memset (this, 0, sizeof (GlEntries));
#if !defined(OPENGL_ES_SUPPORT) && !defined(OPENGL_ES2_SUPPORT)
//получение адресов точек входа OpenGL 1.1
init_entry (library, "glAccum", Accum);
init_entry (library, "glAlphaFunc", AlphaFunc);
init_entry (library, "glAreTexturesResident", AreTexturesResident);
init_entry (library, "glArrayElement", ArrayElement);
init_entry (library, "glBegin", Begin);
init_entry (library, "glBindTexture", BindTexture);
init_entry (library, "glBitmap", Bitmap);
init_entry (library, "glBlendFunc", BlendFunc);
init_entry (library, "glCallList", CallList);
init_entry (library, "glCallLists", CallLists);
init_entry (library, "glClear", Clear);
init_entry (library, "glClearAccum", ClearAccum);
init_entry (library, "glClearColor", ClearColor);
init_entry (library, "glClearDepth", ClearDepth);
init_entry (library, "glClearIndex", ClearIndex);
init_entry (library, "glClearStencil", ClearStencil);
init_entry (library, "glClipPlane", ClipPlane);
init_entry (library, "glColor3b", Color3b);
init_entry (library, "glColor3bv", Color3bv);
init_entry (library, "glColor3d", Color3d);
init_entry (library, "glColor3dv", Color3dv);
init_entry (library, "glColor3f", Color3f);
init_entry (library, "glColor3fv", Color3fv);
init_entry (library, "glColor3i", Color3i);
init_entry (library, "glColor3iv", Color3iv);
init_entry (library, "glColor3s", Color3s);
init_entry (library, "glColor3sv", Color3sv);
init_entry (library, "glColor3ub", Color3ub);
init_entry (library, "glColor3ubv", Color3ubv);
init_entry (library, "glColor3ui", Color3ui);
init_entry (library, "glColor3uiv", Color3uiv);
init_entry (library, "glColor3us", Color3us);
init_entry (library, "glColor3usv", Color3usv);
init_entry (library, "glColor4b", Color4b);
init_entry (library, "glColor4bv", Color4bv);
init_entry (library, "glColor4d", Color4d);
init_entry (library, "glColor4dv", Color4dv);
init_entry (library, "glColor4f", Color4f);
init_entry (library, "glColor4fv", Color4fv);
init_entry (library, "glColor4i", Color4i);
init_entry (library, "glColor4iv", Color4iv);
init_entry (library, "glColor4s", Color4s);
init_entry (library, "glColor4sv", Color4sv);
init_entry (library, "glColor4ub", Color4ub);
init_entry (library, "glColor4ubv", Color4ubv);
init_entry (library, "glColor4ui", Color4ui);
init_entry (library, "glColor4uiv", Color4uiv);
init_entry (library, "glColor4us", Color4us);
init_entry (library, "glColor4usv", Color4usv);
init_entry (library, "glColorMask", ColorMask);
init_entry (library, "glColorMaterial", ColorMaterial);
init_entry (library, "glColorPointer", ColorPointer);
init_entry (library, "glCopyPixels", CopyPixels);
init_entry (library, "glCopyTexImage1D", CopyTexImage1D);
init_entry (library, "glCopyTexImage2D", CopyTexImage2D);
init_entry (library, "glCopyTexSubImage1D", CopyTexSubImage1D);
init_entry (library, "glCopyTexSubImage2D", CopyTexSubImage2D);
init_entry (library, "glCullFace", CullFace);
init_entry (library, "glDeleteLists", DeleteLists);
init_entry (library, "glDeleteTextures", DeleteTextures);
init_entry (library, "glDepthFunc", DepthFunc);
init_entry (library, "glDepthMask", DepthMask);
init_entry (library, "glDepthRange", DepthRange);
init_entry (library, "glDisable", Disable);
init_entry (library, "glDisableClientState", DisableClientState);
init_entry (library, "glDrawArrays", DrawArrays);
init_entry (library, "glDrawBuffer", DrawBuffer);
init_entry (library, "glDrawElements", DrawElements);
init_entry (library, "glDrawPixels", DrawPixels);
init_entry (library, "glEdgeFlag", EdgeFlag);
init_entry (library, "glEdgeFlagPointer", EdgeFlagPointer);
init_entry (library, "glEdgeFlagv", EdgeFlagv);
init_entry (library, "glEnable", Enable);
init_entry (library, "glEnableClientState", EnableClientState);
init_entry (library, "glEnd", End);
init_entry (library, "glEndList", EndList);
init_entry (library, "glEvalCoord1d", EvalCoord1d);
init_entry (library, "glEvalCoord1dv", EvalCoord1dv);
init_entry (library, "glEvalCoord1f", EvalCoord1f);
init_entry (library, "glEvalCoord1fv", EvalCoord1fv);
init_entry (library, "glEvalCoord2d", EvalCoord2d);
init_entry (library, "glEvalCoord2dv", EvalCoord2dv);
init_entry (library, "glEvalCoord2f", EvalCoord2f);
init_entry (library, "glEvalCoord2fv", EvalCoord2fv);
init_entry (library, "glEvalMesh1", EvalMesh1);
init_entry (library, "glEvalMesh2", EvalMesh2);
init_entry (library, "glEvalPoint1", EvalPoint1);
init_entry (library, "glEvalPoint2", EvalPoint2);
init_entry (library, "glFeedbackBuffer", FeedbackBuffer);
init_entry (library, "glFinish", Finish);
init_entry (library, "glFlush", Flush);
init_entry (library, "glFogf", Fogf);
init_entry (library, "glFogfv", Fogfv);
init_entry (library, "glFogi", Fogi);
init_entry (library, "glFogiv", Fogiv);
init_entry (library, "glFrontFace", FrontFace);
init_entry (library, "glFrustum", Frustum);
init_entry (library, "glGenLists", GenLists);
init_entry (library, "glGenTextures", GenTextures);
init_entry (library, "glGetBooleanv", GetBooleanv);
init_entry (library, "glGetClipPlane", GetClipPlane);
init_entry (library, "glGetDoublev", GetDoublev);
init_entry (library, "glGetError", GetError);
init_entry (library, "glGetFloatv", GetFloatv);
init_entry (library, "glGetIntegerv", GetIntegerv);
init_entry (library, "glGetLightfv", GetLightfv);
init_entry (library, "glGetLightiv", GetLightiv);
init_entry (library, "glGetMapdv", GetMapdv);
init_entry (library, "glGetMapfv", GetMapfv);
init_entry (library, "glGetMapiv", GetMapiv);
init_entry (library, "glGetMaterialfv", GetMaterialfv);
init_entry (library, "glGetMaterialiv", GetMaterialiv);
init_entry (library, "glGetPixelMapfv", GetPixelMapfv);
init_entry (library, "glGetPixelMapuiv", GetPixelMapuiv);
init_entry (library, "glGetPixelMapusv", GetPixelMapusv);
init_entry (library, "glGetPointerv", GetPointerv);
init_entry (library, "glGetPolygonStipple", GetPolygonStipple);
init_entry (library, "glGetString", GetString);
init_entry (library, "glGetTexEnvfv", GetTexEnvfv);
init_entry (library, "glGetTexEnviv", GetTexEnviv);
init_entry (library, "glGetTexGendv", GetTexGendv);
init_entry (library, "glGetTexGenfv", GetTexGenfv);
init_entry (library, "glGetTexGeniv", GetTexGeniv);
init_entry (library, "glGetTexImage", GetTexImage);
init_entry (library, "glGetTexLevelParameterfv", GetTexLevelParameterfv);
init_entry (library, "glGetTexLevelParameteriv", GetTexLevelParameteriv);
init_entry (library, "glGetTexParameterfv", GetTexParameterfv);
init_entry (library, "glGetTexParameteriv", GetTexParameteriv);
init_entry (library, "glHint", Hint);
init_entry (library, "glIndexMask", IndexMask);
init_entry (library, "glIndexPointer", IndexPointer);
init_entry (library, "glIndexd", Indexd);
init_entry (library, "glIndexdv", Indexdv);
init_entry (library, "glIndexf", Indexf);
init_entry (library, "glIndexfv", Indexfv);
init_entry (library, "glIndexi", Indexi);
init_entry (library, "glIndexiv", Indexiv);
init_entry (library, "glIndexs", Indexs);
init_entry (library, "glIndexsv", Indexsv);
init_entry (library, "glIndexub", Indexub);
init_entry (library, "glIndexubv", Indexubv);
init_entry (library, "glInitNames", InitNames);
init_entry (library, "glInterleavedArrays", InterleavedArrays);
init_entry (library, "glIsEnabled", IsEnabled);
init_entry (library, "glIsList", IsList);
init_entry (library, "glIsTexture", IsTexture);
init_entry (library, "glLightModelf", LightModelf);
init_entry (library, "glLightModelfv", LightModelfv);
init_entry (library, "glLightModeli", LightModeli);
init_entry (library, "glLightModeliv", LightModeliv);
init_entry (library, "glLightf", Lightf);
init_entry (library, "glLightfv", Lightfv);
init_entry (library, "glLighti", Lighti);
init_entry (library, "glLightiv", Lightiv);
init_entry (library, "glLineStipple", LineStipple);
init_entry (library, "glLineWidth", LineWidth);
init_entry (library, "glListBase", ListBase);
init_entry (library, "glLoadIdentity", LoadIdentity);
init_entry (library, "glLoadMatrixd", LoadMatrixd);
init_entry (library, "glLoadMatrixf", LoadMatrixf);
init_entry (library, "glLoadName", LoadName);
init_entry (library, "glLogicOp", LogicOp);
init_entry (library, "glMap1d", Map1d);
init_entry (library, "glMap1f", Map1f);
init_entry (library, "glMap2d", Map2d);
init_entry (library, "glMap2f", Map2f);
init_entry (library, "glMapGrid1d", MapGrid1d);
init_entry (library, "glMapGrid1f", MapGrid1f);
init_entry (library, "glMapGrid2d", MapGrid2d);
init_entry (library, "glMapGrid2f", MapGrid2f);
init_entry (library, "glMaterialf", Materialf);
init_entry (library, "glMaterialfv", Materialfv);
init_entry (library, "glMateriali", Materiali);
init_entry (library, "glMaterialiv", Materialiv);
init_entry (library, "glMatrixMode", MatrixMode);
init_entry (library, "glMultMatrixd", MultMatrixd);
init_entry (library, "glMultMatrixf", MultMatrixf);
init_entry (library, "glNewList", NewList);
init_entry (library, "glNormal3b", Normal3b);
init_entry (library, "glNormal3bv", Normal3bv);
init_entry (library, "glNormal3d", Normal3d);
init_entry (library, "glNormal3dv", Normal3dv);
init_entry (library, "glNormal3f", Normal3f);
init_entry (library, "glNormal3fv", Normal3fv);
init_entry (library, "glNormal3i", Normal3i);
init_entry (library, "glNormal3iv", Normal3iv);
init_entry (library, "glNormal3s", Normal3s);
init_entry (library, "glNormal3sv", Normal3sv);
init_entry (library, "glNormalPointer", NormalPointer);
init_entry (library, "glOrtho", Ortho);
init_entry (library, "glPassThrough", PassThrough);
init_entry (library, "glPixelMapfv", PixelMapfv);
init_entry (library, "glPixelMapuiv", PixelMapuiv);
init_entry (library, "glPixelMapusv", PixelMapusv);
init_entry (library, "glPixelStoref", PixelStoref);
init_entry (library, "glPixelStorei", PixelStorei);
init_entry (library, "glPixelTransferf", PixelTransferf);
init_entry (library, "glPixelTransferi", PixelTransferi);
init_entry (library, "glPixelZoom", PixelZoom);
init_entry (library, "glPointSize", PointSize);
init_entry (library, "glPolygonMode", PolygonMode);
init_entry (library, "glPolygonOffset", PolygonOffset);
init_entry (library, "glPolygonStipple", PolygonStipple);
init_entry (library, "glPopAttrib", PopAttrib);
init_entry (library, "glPopClientAttrib", PopClientAttrib);
init_entry (library, "glPopMatrix", PopMatrix);
init_entry (library, "glPopName", PopName);
init_entry (library, "glPrioritizeTextures", PrioritizeTextures);
init_entry (library, "glPushAttrib", PushAttrib);
init_entry (library, "glPushClientAttrib", PushClientAttrib);
init_entry (library, "glPushMatrix", PushMatrix);
init_entry (library, "glPushName", PushName);
init_entry (library, "glRasterPos2d", RasterPos2d);
init_entry (library, "glRasterPos2dv", RasterPos2dv);
init_entry (library, "glRasterPos2f", RasterPos2f);
init_entry (library, "glRasterPos2fv", RasterPos2fv);
init_entry (library, "glRasterPos2i", RasterPos2i);
init_entry (library, "glRasterPos2iv", RasterPos2iv);
init_entry (library, "glRasterPos2s", RasterPos2s);
init_entry (library, "glRasterPos2sv", RasterPos2sv);
init_entry (library, "glRasterPos3d", RasterPos3d);
init_entry (library, "glRasterPos3dv", RasterPos3dv);
init_entry (library, "glRasterPos3f", RasterPos3f);
init_entry (library, "glRasterPos3fv", RasterPos3fv);
init_entry (library, "glRasterPos3i", RasterPos3i);
init_entry (library, "glRasterPos3iv", RasterPos3iv);
init_entry (library, "glRasterPos3s", RasterPos3s);
init_entry (library, "glRasterPos3sv", RasterPos3sv);
init_entry (library, "glRasterPos4d", RasterPos4d);
init_entry (library, "glRasterPos4dv", RasterPos4dv);
init_entry (library, "glRasterPos4f", RasterPos4f);
init_entry (library, "glRasterPos4fv", RasterPos4fv);
init_entry (library, "glRasterPos4i", RasterPos4i);
init_entry (library, "glRasterPos4iv", RasterPos4iv);
init_entry (library, "glRasterPos4s", RasterPos4s);
init_entry (library, "glRasterPos4sv", RasterPos4sv);
init_entry (library, "glReadBuffer", ReadBuffer);
init_entry (library, "glReadPixels", ReadPixels);
init_entry (library, "glRectd", Rectd);
init_entry (library, "glRectdv", Rectdv);
init_entry (library, "glRectf", Rectf);
init_entry (library, "glRectfv", Rectfv);
init_entry (library, "glRecti", Recti);
init_entry (library, "glRectiv", Rectiv);
init_entry (library, "glRects", Rects);
init_entry (library, "glRectsv", Rectsv);
init_entry (library, "glRenderMode", RenderMode);
init_entry (library, "glRotated", Rotated);
init_entry (library, "glRotatef", Rotatef);
init_entry (library, "glScaled", Scaled);
init_entry (library, "glScalef", Scalef);
init_entry (library, "glScissor", Scissor);
init_entry (library, "glSelectBuffer", SelectBuffer);
init_entry (library, "glShadeModel", ShadeModel);
init_entry (library, "glStencilFunc", StencilFunc);
init_entry (library, "glStencilMask", StencilMask);
init_entry (library, "glStencilOp", StencilOp);
init_entry (library, "glTexCoord1d", TexCoord1d);
init_entry (library, "glTexCoord1dv", TexCoord1dv);
init_entry (library, "glTexCoord1f", TexCoord1f);
init_entry (library, "glTexCoord1fv", TexCoord1fv);
init_entry (library, "glTexCoord1i", TexCoord1i);
init_entry (library, "glTexCoord1iv", TexCoord1iv);
init_entry (library, "glTexCoord1s", TexCoord1s);
init_entry (library, "glTexCoord1sv", TexCoord1sv);
init_entry (library, "glTexCoord2d", TexCoord2d);
init_entry (library, "glTexCoord2dv", TexCoord2dv);
init_entry (library, "glTexCoord2f", TexCoord2f);
init_entry (library, "glTexCoord2fv", TexCoord2fv);
init_entry (library, "glTexCoord2i", TexCoord2i);
init_entry (library, "glTexCoord2iv", TexCoord2iv);
init_entry (library, "glTexCoord2s", TexCoord2s);
init_entry (library, "glTexCoord2sv", TexCoord2sv);
init_entry (library, "glTexCoord3d", TexCoord3d);
init_entry (library, "glTexCoord3dv", TexCoord3dv);
init_entry (library, "glTexCoord3f", TexCoord3f);
init_entry (library, "glTexCoord3fv", TexCoord3fv);
init_entry (library, "glTexCoord3i", TexCoord3i);
init_entry (library, "glTexCoord3iv", TexCoord3iv);
init_entry (library, "glTexCoord3s", TexCoord3s);
init_entry (library, "glTexCoord3sv", TexCoord3sv);
init_entry (library, "glTexCoord4d", TexCoord4d);
init_entry (library, "glTexCoord4dv", TexCoord4dv);
init_entry (library, "glTexCoord4f", TexCoord4f);
init_entry (library, "glTexCoord4fv", TexCoord4fv);
init_entry (library, "glTexCoord4i", TexCoord4i);
init_entry (library, "glTexCoord4iv", TexCoord4iv);
init_entry (library, "glTexCoord4s", TexCoord4s);
init_entry (library, "glTexCoord4sv", TexCoord4sv);
init_entry (library, "glTexCoordPointer", TexCoordPointer);
init_entry (library, "glTexEnvf", TexEnvf);
init_entry (library, "glTexEnvfv", TexEnvfv);
init_entry (library, "glTexEnvi", TexEnvi);
init_entry (library, "glTexEnviv", TexEnviv);
init_entry (library, "glTexGend", TexGend);
init_entry (library, "glTexGendv", TexGendv);
init_entry (library, "glTexGenf", TexGenf);
init_entry (library, "glTexGenfv", TexGenfv);
init_entry (library, "glTexGeni", TexGeni);
init_entry (library, "glTexGeniv", TexGeniv);
init_entry (library, "glTexImage1D", TexImage1D);
init_entry (library, "glTexImage2D", TexImage2D);
init_entry (library, "glTexParameterf", TexParameterf);
init_entry (library, "glTexParameterfv", TexParameterfv);
init_entry (library, "glTexParameteri", TexParameteri);
init_entry (library, "glTexParameteriv", TexParameteriv);
init_entry (library, "glTexSubImage1D", TexSubImage1D);
init_entry (library, "glTexSubImage2D", TexSubImage2D);
init_entry (library, "glTranslated", Translated);
init_entry (library, "glTranslatef", Translatef);
init_entry (library, "glVertex2d", Vertex2d);
init_entry (library, "glVertex2dv", Vertex2dv);
init_entry (library, "glVertex2f", Vertex2f);
init_entry (library, "glVertex2fv", Vertex2fv);
init_entry (library, "glVertex2i", Vertex2i);
init_entry (library, "glVertex2iv", Vertex2iv);
init_entry (library, "glVertex2s", Vertex2s);
init_entry (library, "glVertex2sv", Vertex2sv);
init_entry (library, "glVertex3d", Vertex3d);
init_entry (library, "glVertex3dv", Vertex3dv);
init_entry (library, "glVertex3f", Vertex3f);
init_entry (library, "glVertex3fv", Vertex3fv);
init_entry (library, "glVertex3i", Vertex3i);
init_entry (library, "glVertex3iv", Vertex3iv);
init_entry (library, "glVertex3s", Vertex3s);
init_entry (library, "glVertex3sv", Vertex3sv);
init_entry (library, "glVertex4d", Vertex4d);
init_entry (library, "glVertex4dv", Vertex4dv);
init_entry (library, "glVertex4f", Vertex4f);
init_entry (library, "glVertex4fv", Vertex4fv);
init_entry (library, "glVertex4i", Vertex4i);
init_entry (library, "glVertex4iv", Vertex4iv);
init_entry (library, "glVertex4s", Vertex4s);
init_entry (library, "glVertex4sv", Vertex4sv);
init_entry (library, "glVertexPointer", VertexPointer);
init_entry (library, "glViewport", Viewport);
//получение адресов точек входа расширений OpenGL
init_extension_entry (library, "glBlendColor", BlendColor);
init_extension_entry (library, "glBlendEquation", BlendEquation);
init_extension_entry (library, "glDrawRangeElements", DrawRangeElements);
init_extension_entry (library, "glTexImage3D", TexImage3D);
init_extension_entry (library, "glTexSubImage3D", TexSubImage3D);
init_extension_entry (library, "glCopyTexSubImage3D", CopyTexSubImage3D);
init_extension_entry (library, "glColorTable", ColorTable);
init_extension_entry (library, "glColorTableParameterfv", ColorTableParameterfv);
init_extension_entry (library, "glColorTableParameteriv", ColorTableParameteriv);
init_extension_entry (library, "glCopyColorTable", CopyColorTable);
init_extension_entry (library, "glGetColorTable", GetColorTable);
init_extension_entry (library, "glGetColorTableParameterfv", GetColorTableParameterfv);
init_extension_entry (library, "glGetColorTableParameteriv", GetColorTableParameteriv);
init_extension_entry (library, "glColorSubTable", ColorSubTable);
init_extension_entry (library, "glCopyColorSubTable", CopyColorSubTable);
init_extension_entry (library, "glConvolutionFilter1D", ConvolutionFilter1D);
init_extension_entry (library, "glConvolutionFilter2D", ConvolutionFilter2D);
init_extension_entry (library, "glConvolutionParameterf", ConvolutionParameterf);
init_extension_entry (library, "glConvolutionParameterfv", ConvolutionParameterfv);
init_extension_entry (library, "glConvolutionParameteri", ConvolutionParameteri);
init_extension_entry (library, "glConvolutionParameteriv", ConvolutionParameteriv);
init_extension_entry (library, "glCopyConvolutionFilter1D", CopyConvolutionFilter1D);
init_extension_entry (library, "glCopyConvolutionFilter2D", CopyConvolutionFilter2D);
init_extension_entry (library, "glGetConvolutionFilter", GetConvolutionFilter);
init_extension_entry (library, "glGetConvolutionParameterfv", GetConvolutionParameterfv);
init_extension_entry (library, "glGetConvolutionParameteriv", GetConvolutionParameteriv);
init_extension_entry (library, "glGetSeparableFilter", GetSeparableFilter);
init_extension_entry (library, "glSeparableFilter2D", SeparableFilter2D);
init_extension_entry (library, "glGetHistogram", GetHistogram);
init_extension_entry (library, "glGetHistogramParameterfv", GetHistogramParameterfv);
init_extension_entry (library, "glGetHistogramParameteriv", GetHistogramParameteriv);
init_extension_entry (library, "glGetMinmax", GetMinmax);
init_extension_entry (library, "glGetMinmaxParameterfv", GetMinmaxParameterfv);
init_extension_entry (library, "glGetMinmaxParameteriv", GetMinmaxParameteriv);
init_extension_entry (library, "glHistogram", Histogram);
init_extension_entry (library, "glMinmax", Minmax);
init_extension_entry (library, "glResetHistogram", ResetHistogram);
init_extension_entry (library, "glResetMinmax", ResetMinmax);
init_extension_entry (library, "glActiveTexture", ActiveTexture);
init_extension_entry (library, "glSampleCoverage", SampleCoverage);
init_extension_entry (library, "glCompressedTexImage3D", CompressedTexImage3D);
init_extension_entry (library, "glCompressedTexImage2D", CompressedTexImage2D);
init_extension_entry (library, "glCompressedTexImage1D", CompressedTexImage1D);
init_extension_entry (library, "glCompressedTexSubImage3D", CompressedTexSubImage3D);
init_extension_entry (library, "glCompressedTexSubImage2D", CompressedTexSubImage2D);
init_extension_entry (library, "glCompressedTexSubImage1D", CompressedTexSubImage1D);
init_extension_entry (library, "glGetCompressedTexImage", GetCompressedTexImage);
init_extension_entry (library, "glClientActiveTexture", ClientActiveTexture);
init_extension_entry (library, "glMultiTexCoord1d", MultiTexCoord1d);
init_extension_entry (library, "glMultiTexCoord1dv", MultiTexCoord1dv);
init_extension_entry (library, "glMultiTexCoord1f", MultiTexCoord1f);
init_extension_entry (library, "glMultiTexCoord1fv", MultiTexCoord1fv);
init_extension_entry (library, "glMultiTexCoord1i", MultiTexCoord1i);
init_extension_entry (library, "glMultiTexCoord1iv", MultiTexCoord1iv);
init_extension_entry (library, "glMultiTexCoord1s", MultiTexCoord1s);
init_extension_entry (library, "glMultiTexCoord1sv", MultiTexCoord1sv);
init_extension_entry (library, "glMultiTexCoord2d", MultiTexCoord2d);
init_extension_entry (library, "glMultiTexCoord2dv", MultiTexCoord2dv);
init_extension_entry (library, "glMultiTexCoord2f", MultiTexCoord2f);
init_extension_entry (library, "glMultiTexCoord2fv", MultiTexCoord2fv);
init_extension_entry (library, "glMultiTexCoord2i", MultiTexCoord2i);
init_extension_entry (library, "glMultiTexCoord2iv", MultiTexCoord2iv);
init_extension_entry (library, "glMultiTexCoord2s", MultiTexCoord2s);
init_extension_entry (library, "glMultiTexCoord2sv", MultiTexCoord2sv);
init_extension_entry (library, "glMultiTexCoord3d", MultiTexCoord3d);
init_extension_entry (library, "glMultiTexCoord3dv", MultiTexCoord3dv);
init_extension_entry (library, "glMultiTexCoord3f", MultiTexCoord3f);
init_extension_entry (library, "glMultiTexCoord3fv", MultiTexCoord3fv);
init_extension_entry (library, "glMultiTexCoord3i", MultiTexCoord3i);
init_extension_entry (library, "glMultiTexCoord3iv", MultiTexCoord3iv);
init_extension_entry (library, "glMultiTexCoord3s", MultiTexCoord3s);
init_extension_entry (library, "glMultiTexCoord3sv", MultiTexCoord3sv);
init_extension_entry (library, "glMultiTexCoord4d", MultiTexCoord4d);
init_extension_entry (library, "glMultiTexCoord4dv", MultiTexCoord4dv);
init_extension_entry (library, "glMultiTexCoord4f", MultiTexCoord4f);
init_extension_entry (library, "glMultiTexCoord4fv", MultiTexCoord4fv);
init_extension_entry (library, "glMultiTexCoord4i", MultiTexCoord4i);
init_extension_entry (library, "glMultiTexCoord4iv", MultiTexCoord4iv);
init_extension_entry (library, "glMultiTexCoord4s", MultiTexCoord4s);
init_extension_entry (library, "glMultiTexCoord4sv", MultiTexCoord4sv);
init_extension_entry (library, "glLoadTransposeMatrixf", LoadTransposeMatrixf);
init_extension_entry (library, "glLoadTransposeMatrixd", LoadTransposeMatrixd);
init_extension_entry (library, "glMultTransposeMatrixf", MultTransposeMatrixf);
init_extension_entry (library, "glMultTransposeMatrixd", MultTransposeMatrixd);
init_extension_entry (library, "glBlendFuncSeparate", BlendFuncSeparate);
init_extension_entry (library, "glMultiDrawArrays", MultiDrawArrays);
init_extension_entry (library, "glMultiDrawElements", MultiDrawElements);
init_extension_entry (library, "glPointParameterf", PointParameterf);
init_extension_entry (library, "glPointParameterfv", PointParameterfv);
init_extension_entry (library, "glPointParameteri", PointParameteri);
init_extension_entry (library, "glPointParameteriv", PointParameteriv);
init_extension_entry (library, "glFogCoordf", FogCoordf);
init_extension_entry (library, "glFogCoordfv", FogCoordfv);
init_extension_entry (library, "glFogCoordd", FogCoordd);
init_extension_entry (library, "glFogCoorddv", FogCoorddv);
init_extension_entry (library, "glFogCoordPointer", FogCoordPointer);
init_extension_entry (library, "glSecondaryColor3b", SecondaryColor3b);
init_extension_entry (library, "glSecondaryColor3bv", SecondaryColor3bv);
init_extension_entry (library, "glSecondaryColor3d", SecondaryColor3d);
init_extension_entry (library, "glSecondaryColor3dv", SecondaryColor3dv);
init_extension_entry (library, "glSecondaryColor3f", SecondaryColor3f);
init_extension_entry (library, "glSecondaryColor3fv", SecondaryColor3fv);
init_extension_entry (library, "glSecondaryColor3i", SecondaryColor3i);
init_extension_entry (library, "glSecondaryColor3iv", SecondaryColor3iv);
init_extension_entry (library, "glSecondaryColor3s", SecondaryColor3s);
init_extension_entry (library, "glSecondaryColor3sv", SecondaryColor3sv);
init_extension_entry (library, "glSecondaryColor3ub", SecondaryColor3ub);
init_extension_entry (library, "glSecondaryColor3ubv", SecondaryColor3ubv);
init_extension_entry (library, "glSecondaryColor3ui", SecondaryColor3ui);
init_extension_entry (library, "glSecondaryColor3uiv", SecondaryColor3uiv);
init_extension_entry (library, "glSecondaryColor3us", SecondaryColor3us);
init_extension_entry (library, "glSecondaryColor3usv", SecondaryColor3usv);
init_extension_entry (library, "glSecondaryColorPointer", SecondaryColorPointer);
init_extension_entry (library, "glWindowPos2d", WindowPos2d);
init_extension_entry (library, "glWindowPos2dv", WindowPos2dv);
init_extension_entry (library, "glWindowPos2f", WindowPos2f);
init_extension_entry (library, "glWindowPos2fv", WindowPos2fv);
init_extension_entry (library, "glWindowPos2i", WindowPos2i);
init_extension_entry (library, "glWindowPos2iv", WindowPos2iv);
init_extension_entry (library, "glWindowPos2s", WindowPos2s);
init_extension_entry (library, "glWindowPos2sv", WindowPos2sv);
init_extension_entry (library, "glWindowPos3d", WindowPos3d);
init_extension_entry (library, "glWindowPos3dv", WindowPos3dv);
init_extension_entry (library, "glWindowPos3f", WindowPos3f);
init_extension_entry (library, "glWindowPos3fv", WindowPos3fv);
init_extension_entry (library, "glWindowPos3i", WindowPos3i);
init_extension_entry (library, "glWindowPos3iv", WindowPos3iv);
init_extension_entry (library, "glWindowPos3s", WindowPos3s);
init_extension_entry (library, "glWindowPos3sv", WindowPos3sv);
init_extension_entry (library, "glGenQueries", GenQueries);
init_extension_entry (library, "glDeleteQueries", DeleteQueries);
init_extension_entry (library, "glIsQuery", IsQuery);
init_extension_entry (library, "glBeginQuery", BeginQuery);
init_extension_entry (library, "glEndQuery", EndQuery);
init_extension_entry (library, "glGetQueryiv", GetQueryiv);
init_extension_entry (library, "glGetQueryObjectiv", GetQueryObjectiv);
init_extension_entry (library, "glGetQueryObjectuiv", GetQueryObjectuiv);
init_extension_entry (library, "glBindBuffer", BindBuffer);
init_extension_entry (library, "glDeleteBuffers", DeleteBuffers);
init_extension_entry (library, "glGenBuffers", GenBuffers);
init_extension_entry (library, "glIsBuffer", IsBuffer);
init_extension_entry (library, "glBufferData", BufferData);
init_extension_entry (library, "glBufferSubData", BufferSubData);
init_extension_entry (library, "glGetBufferSubData", GetBufferSubData);
init_extension_entry (library, "glMapBuffer", MapBuffer);
init_extension_entry (library, "glUnmapBuffer", UnmapBuffer);
init_extension_entry (library, "glGetBufferParameteriv", GetBufferParameteriv);
init_extension_entry (library, "glGetBufferPointerv", GetBufferPointerv);
init_extension_entry (library, "glBlendEquationSeparate", BlendEquationSeparate);
init_extension_entry (library, "glDrawBuffers", DrawBuffers);
init_extension_entry (library, "glStencilOpSeparate", StencilOpSeparate);
init_extension_entry (library, "glStencilFuncSeparate", StencilFuncSeparate);
init_extension_entry (library, "glStencilMaskSeparate", StencilMaskSeparate);
init_extension_entry (library, "glAttachShader", AttachShader);
init_extension_entry (library, "glBindAttribLocation", BindAttribLocation);
init_extension_entry (library, "glCompileShader", CompileShader);
init_extension_entry (library, "glCreateProgram", CreateProgram);
init_extension_entry (library, "glCreateShader", CreateShader);
init_extension_entry (library, "glDeleteProgram", DeleteProgram);
init_extension_entry (library, "glDeleteShader", DeleteShader);
init_extension_entry (library, "glDetachShader", DetachShader);
init_extension_entry (library, "glDisableVertexAttribArray", DisableVertexAttribArray);
init_extension_entry (library, "glEnableVertexAttribArray", EnableVertexAttribArray);
init_extension_entry (library, "glGetActiveAttrib", GetActiveAttrib);
init_extension_entry (library, "glGetActiveUniform", GetActiveUniform);
init_extension_entry (library, "glGetAttachedShaders", GetAttachedShaders);
init_extension_entry (library, "glGetAttribLocation", GetAttribLocation);
init_extension_entry (library, "glGetProgramiv", GetProgramiv);
init_extension_entry (library, "glGetProgramInfoLog", GetProgramInfoLog);
init_extension_entry (library, "glGetShaderiv", GetShaderiv);
init_extension_entry (library, "glGetShaderInfoLog", GetShaderInfoLog);
init_extension_entry (library, "glGetShaderSource", GetShaderSource);
init_extension_entry (library, "glGetUniformLocation", GetUniformLocation);
init_extension_entry (library, "glGetUniformfv", GetUniformfv);
init_extension_entry (library, "glGetUniformiv", GetUniformiv);
init_extension_entry (library, "glGetVertexAttribdv", GetVertexAttribdv);
init_extension_entry (library, "glGetVertexAttribfv", GetVertexAttribfv);
init_extension_entry (library, "glGetVertexAttribiv", GetVertexAttribiv);
init_extension_entry (library, "glGetVertexAttribPointerv", GetVertexAttribPointerv);
init_extension_entry (library, "glIsProgram", IsProgram);
init_extension_entry (library, "glIsShader", IsShader);
init_extension_entry (library, "glLinkProgram", LinkProgram);
init_extension_entry (library, "glShaderSource", ShaderSource);
init_extension_entry (library, "glUseProgram", UseProgram);
init_extension_entry (library, "glUniform1f", Uniform1f);
init_extension_entry (library, "glUniform2f", Uniform2f);
init_extension_entry (library, "glUniform3f", Uniform3f);
init_extension_entry (library, "glUniform4f", Uniform4f);
init_extension_entry (library, "glUniform1i", Uniform1i);
init_extension_entry (library, "glUniform2i", Uniform2i);
init_extension_entry (library, "glUniform3i", Uniform3i);
init_extension_entry (library, "glUniform4i", Uniform4i);
init_extension_entry (library, "glUniform1fv", Uniform1fv);
init_extension_entry (library, "glUniform2fv", Uniform2fv);
init_extension_entry (library, "glUniform3fv", Uniform3fv);
init_extension_entry (library, "glUniform4fv", Uniform4fv);
init_extension_entry (library, "glUniform1iv", Uniform1iv);
init_extension_entry (library, "glUniform2iv", Uniform2iv);
init_extension_entry (library, "glUniform3iv", Uniform3iv);
init_extension_entry (library, "glUniform4iv", Uniform4iv);
init_extension_entry (library, "glUniformMatrix2fv", UniformMatrix2fv);
init_extension_entry (library, "glUniformMatrix3fv", UniformMatrix3fv);
init_extension_entry (library, "glUniformMatrix4fv", UniformMatrix4fv);
init_extension_entry (library, "glValidateProgram", ValidateProgram);
init_extension_entry (library, "glVertexAttrib1d", VertexAttrib1d);
init_extension_entry (library, "glVertexAttrib1dv", VertexAttrib1dv);
init_extension_entry (library, "glVertexAttrib1f", VertexAttrib1f);
init_extension_entry (library, "glVertexAttrib1fv", VertexAttrib1fv);
init_extension_entry (library, "glVertexAttrib1s", VertexAttrib1s);
init_extension_entry (library, "glVertexAttrib1sv", VertexAttrib1sv);
init_extension_entry (library, "glVertexAttrib2d", VertexAttrib2d);
init_extension_entry (library, "glVertexAttrib2dv", VertexAttrib2dv);
init_extension_entry (library, "glVertexAttrib2f", VertexAttrib2f);
init_extension_entry (library, "glVertexAttrib2fv", VertexAttrib2fv);
init_extension_entry (library, "glVertexAttrib2s", VertexAttrib2s);
init_extension_entry (library, "glVertexAttrib2sv", VertexAttrib2sv);
init_extension_entry (library, "glVertexAttrib3d", VertexAttrib3d);
init_extension_entry (library, "glVertexAttrib3dv", VertexAttrib3dv);
init_extension_entry (library, "glVertexAttrib3f", VertexAttrib3f);
init_extension_entry (library, "glVertexAttrib3fv", VertexAttrib3fv);
init_extension_entry (library, "glVertexAttrib3s", VertexAttrib3s);
init_extension_entry (library, "glVertexAttrib3sv", VertexAttrib3sv);
init_extension_entry (library, "glVertexAttrib4Nbv", VertexAttrib4Nbv);
init_extension_entry (library, "glVertexAttrib4Niv", VertexAttrib4Niv);
init_extension_entry (library, "glVertexAttrib4Nsv", VertexAttrib4Nsv);
init_extension_entry (library, "glVertexAttrib4Nub", VertexAttrib4Nub);
init_extension_entry (library, "glVertexAttrib4Nubv", VertexAttrib4Nubv);
init_extension_entry (library, "glVertexAttrib4Nuiv", VertexAttrib4Nuiv);
init_extension_entry (library, "glVertexAttrib4Nusv", VertexAttrib4Nusv);
init_extension_entry (library, "glVertexAttrib4bv", VertexAttrib4bv);
init_extension_entry (library, "glVertexAttrib4d", VertexAttrib4d);
init_extension_entry (library, "glVertexAttrib4dv", VertexAttrib4dv);
init_extension_entry (library, "glVertexAttrib4f", VertexAttrib4f);
init_extension_entry (library, "glVertexAttrib4fv", VertexAttrib4fv);
init_extension_entry (library, "glVertexAttrib4iv", VertexAttrib4iv);
init_extension_entry (library, "glVertexAttrib4s", VertexAttrib4s);
init_extension_entry (library, "glVertexAttrib4sv", VertexAttrib4sv);
init_extension_entry (library, "glVertexAttrib4ubv", VertexAttrib4ubv);
init_extension_entry (library, "glVertexAttrib4uiv", VertexAttrib4uiv);
init_extension_entry (library, "glVertexAttrib4usv", VertexAttrib4usv);
init_extension_entry (library, "glVertexAttribPointer", VertexAttribPointer);
init_extension_entry (library, "glUniformMatrix2x3fv", UniformMatrix2x3fv);
init_extension_entry (library, "glUniformMatrix3x2fv", UniformMatrix3x2fv);
init_extension_entry (library, "glUniformMatrix2x4fv", UniformMatrix2x4fv);
init_extension_entry (library, "glUniformMatrix4x2fv", UniformMatrix4x2fv);
init_extension_entry (library, "glUniformMatrix3x4fv", UniformMatrix3x4fv);
init_extension_entry (library, "glUniformMatrix4x3fv", UniformMatrix4x3fv);
init_extension_entry (library, "glColorMaski", ColorMaski);
init_extension_entry (library, "glGetBooleani_v", GetBooleani_v);
init_extension_entry (library, "glGetIntegeri_v", GetIntegeri_v);
init_extension_entry (library, "glEnablei", Enablei);
init_extension_entry (library, "glDisablei", Disablei);
init_extension_entry (library, "glIsEnabledi", IsEnabledi);
init_extension_entry (library, "glBeginTransformFeedback", BeginTransformFeedback);
init_extension_entry (library, "glEndTransformFeedback", EndTransformFeedback);
init_extension_entry (library, "glBindBufferRange", BindBufferRange);
init_extension_entry (library, "glBindBufferBase", BindBufferBase);
init_extension_entry (library, "glTransformFeedbackVaryings", TransformFeedbackVaryings);
init_extension_entry (library, "glGetTransformFeedbackVarying", GetTransformFeedbackVarying);
init_extension_entry (library, "glClampColor", ClampColor);
init_extension_entry (library, "glBeginConditionalRender", BeginConditionalRender);
init_extension_entry (library, "glEndConditionalRender", EndConditionalRender);
init_extension_entry (library, "glVertexAttribIPointer", VertexAttribIPointer);
init_extension_entry (library, "glGetVertexAttribIiv", GetVertexAttribIiv);
init_extension_entry (library, "glGetVertexAttribIuiv", GetVertexAttribIuiv);
init_extension_entry (library, "glVertexAttribI1i", VertexAttribI1i);
init_extension_entry (library, "glVertexAttribI2i", VertexAttribI2i);
init_extension_entry (library, "glVertexAttribI3i", VertexAttribI3i);
init_extension_entry (library, "glVertexAttribI4i", VertexAttribI4i);
init_extension_entry (library, "glVertexAttribI1ui", VertexAttribI1ui);
init_extension_entry (library, "glVertexAttribI2ui", VertexAttribI2ui);
init_extension_entry (library, "glVertexAttribI3ui", VertexAttribI3ui);
init_extension_entry (library, "glVertexAttribI4ui", VertexAttribI4ui);
init_extension_entry (library, "glVertexAttribI1iv", VertexAttribI1iv);
init_extension_entry (library, "glVertexAttribI2iv", VertexAttribI2iv);
init_extension_entry (library, "glVertexAttribI3iv", VertexAttribI3iv);
init_extension_entry (library, "glVertexAttribI4iv", VertexAttribI4iv);
init_extension_entry (library, "glVertexAttribI1uiv", VertexAttribI1uiv);
init_extension_entry (library, "glVertexAttribI2uiv", VertexAttribI2uiv);
init_extension_entry (library, "glVertexAttribI3uiv", VertexAttribI3uiv);
init_extension_entry (library, "glVertexAttribI4uiv", VertexAttribI4uiv);
init_extension_entry (library, "glVertexAttribI4bv", VertexAttribI4bv);
init_extension_entry (library, "glVertexAttribI4sv", VertexAttribI4sv);
init_extension_entry (library, "glVertexAttribI4ubv", VertexAttribI4ubv);
init_extension_entry (library, "glVertexAttribI4usv", VertexAttribI4usv);
init_extension_entry (library, "glGetUniformuiv", GetUniformuiv);
init_extension_entry (library, "glBindFragDataLocation", BindFragDataLocation);
init_extension_entry (library, "glGetFragDataLocation", GetFragDataLocation);
init_extension_entry (library, "glUniform1ui", Uniform1ui);
init_extension_entry (library, "glUniform2ui", Uniform2ui);
init_extension_entry (library, "glUniform3ui", Uniform3ui);
init_extension_entry (library, "glUniform4ui", Uniform4ui);
init_extension_entry (library, "glUniform1uiv", Uniform1uiv);
init_extension_entry (library, "glUniform2uiv", Uniform2uiv);
init_extension_entry (library, "glUniform3uiv", Uniform3uiv);
init_extension_entry (library, "glUniform4uiv", Uniform4uiv);
init_extension_entry (library, "glTexParameterIiv", TexParameterIiv);
init_extension_entry (library, "glTexParameterIuiv", TexParameterIuiv);
init_extension_entry (library, "glGetTexParameterIiv", GetTexParameterIiv);
init_extension_entry (library, "glGetTexParameterIuiv", GetTexParameterIuiv);
init_extension_entry (library, "glClearBufferiv", ClearBufferiv);
init_extension_entry (library, "glClearBufferuiv", ClearBufferuiv);
init_extension_entry (library, "glClearBufferfv", ClearBufferfv);
init_extension_entry (library, "glClearBufferfi", ClearBufferfi);
init_extension_entry (library, "glGetStringi", GetStringi);
init_extension_entry (library, "glDrawArraysInstanced", DrawArraysInstanced);
init_extension_entry (library, "glDrawElementsInstanced", DrawElementsInstanced);
init_extension_entry (library, "glTexBuffer", TexBuffer);
init_extension_entry (library, "glPrimitiveRestartIndex", PrimitiveRestartIndex);
init_extension_entry (library, "glGetInteger64i_v", GetInteger64i_v);
init_extension_entry (library, "glGetBufferParameteri64v", GetBufferParameteri64v);
init_extension_entry (library, "glFramebufferTexture", FramebufferTexture);
init_extension_entry (library, "glVertexAttribDivisor", VertexAttribDivisor);
init_extension_entry (library, "glMinSampleShading", MinSampleShading);
init_extension_entry (library, "glBlendEquationi", BlendEquationi);
init_extension_entry (library, "glBlendEquationSeparatei", BlendEquationSeparatei);
init_extension_entry (library, "glBlendFunci", BlendFunci);
init_extension_entry (library, "glBlendFuncSeparatei", BlendFuncSeparatei);
init_extension_entry (library, "glActiveTextureARB", ActiveTextureARB);
init_extension_entry (library, "glClientActiveTextureARB", ClientActiveTextureARB);
init_extension_entry (library, "glMultiTexCoord1dARB", MultiTexCoord1dARB);
init_extension_entry (library, "glMultiTexCoord1dvARB", MultiTexCoord1dvARB);
init_extension_entry (library, "glMultiTexCoord1fARB", MultiTexCoord1fARB);
init_extension_entry (library, "glMultiTexCoord1fvARB", MultiTexCoord1fvARB);
init_extension_entry (library, "glMultiTexCoord1iARB", MultiTexCoord1iARB);
init_extension_entry (library, "glMultiTexCoord1ivARB", MultiTexCoord1ivARB);
init_extension_entry (library, "glMultiTexCoord1sARB", MultiTexCoord1sARB);
init_extension_entry (library, "glMultiTexCoord1svARB", MultiTexCoord1svARB);
init_extension_entry (library, "glMultiTexCoord2dARB", MultiTexCoord2dARB);
init_extension_entry (library, "glMultiTexCoord2dvARB", MultiTexCoord2dvARB);
init_extension_entry (library, "glMultiTexCoord2fARB", MultiTexCoord2fARB);
init_extension_entry (library, "glMultiTexCoord2fvARB", MultiTexCoord2fvARB);
init_extension_entry (library, "glMultiTexCoord2iARB", MultiTexCoord2iARB);
init_extension_entry (library, "glMultiTexCoord2ivARB", MultiTexCoord2ivARB);
init_extension_entry (library, "glMultiTexCoord2sARB", MultiTexCoord2sARB);
init_extension_entry (library, "glMultiTexCoord2svARB", MultiTexCoord2svARB);
init_extension_entry (library, "glMultiTexCoord3dARB", MultiTexCoord3dARB);
init_extension_entry (library, "glMultiTexCoord3dvARB", MultiTexCoord3dvARB);
init_extension_entry (library, "glMultiTexCoord3fARB", MultiTexCoord3fARB);
init_extension_entry (library, "glMultiTexCoord3fvARB", MultiTexCoord3fvARB);
init_extension_entry (library, "glMultiTexCoord3iARB", MultiTexCoord3iARB);
init_extension_entry (library, "glMultiTexCoord3ivARB", MultiTexCoord3ivARB);
init_extension_entry (library, "glMultiTexCoord3sARB", MultiTexCoord3sARB);
init_extension_entry (library, "glMultiTexCoord3svARB", MultiTexCoord3svARB);
init_extension_entry (library, "glMultiTexCoord4dARB", MultiTexCoord4dARB);
init_extension_entry (library, "glMultiTexCoord4dvARB", MultiTexCoord4dvARB);
init_extension_entry (library, "glMultiTexCoord4fARB", MultiTexCoord4fARB);
init_extension_entry (library, "glMultiTexCoord4fvARB", MultiTexCoord4fvARB);
init_extension_entry (library, "glMultiTexCoord4iARB", MultiTexCoord4iARB);
init_extension_entry (library, "glMultiTexCoord4ivARB", MultiTexCoord4ivARB);
init_extension_entry (library, "glMultiTexCoord4sARB", MultiTexCoord4sARB);
init_extension_entry (library, "glMultiTexCoord4svARB", MultiTexCoord4svARB);
init_extension_entry (library, "glLoadTransposeMatrixfARB", LoadTransposeMatrixfARB);
init_extension_entry (library, "glLoadTransposeMatrixdARB", LoadTransposeMatrixdARB);
init_extension_entry (library, "glMultTransposeMatrixfARB", MultTransposeMatrixfARB);
init_extension_entry (library, "glMultTransposeMatrixdARB", MultTransposeMatrixdARB);
init_extension_entry (library, "glSampleCoverageARB", SampleCoverageARB);
init_extension_entry (library, "glCompressedTexImage3DARB", CompressedTexImage3DARB);
init_extension_entry (library, "glCompressedTexImage2DARB", CompressedTexImage2DARB);
init_extension_entry (library, "glCompressedTexImage1DARB", CompressedTexImage1DARB);
init_extension_entry (library, "glCompressedTexSubImage3DARB", CompressedTexSubImage3DARB);
init_extension_entry (library, "glCompressedTexSubImage2DARB", CompressedTexSubImage2DARB);
init_extension_entry (library, "glCompressedTexSubImage1DARB", CompressedTexSubImage1DARB);
init_extension_entry (library, "glGetCompressedTexImageARB", GetCompressedTexImageARB);
init_extension_entry (library, "glPointParameterfARB", PointParameterfARB);
init_extension_entry (library, "glPointParameterfvARB", PointParameterfvARB);
init_extension_entry (library, "glWeightbvARB", WeightbvARB);
init_extension_entry (library, "glWeightsvARB", WeightsvARB);
init_extension_entry (library, "glWeightivARB", WeightivARB);
init_extension_entry (library, "glWeightfvARB", WeightfvARB);
init_extension_entry (library, "glWeightdvARB", WeightdvARB);
init_extension_entry (library, "glWeightubvARB", WeightubvARB);
init_extension_entry (library, "glWeightusvARB", WeightusvARB);
init_extension_entry (library, "glWeightuivARB", WeightuivARB);
init_extension_entry (library, "glWeightPointerARB", WeightPointerARB);
init_extension_entry (library, "glVertexBlendARB", VertexBlendARB);
init_extension_entry (library, "glCurrentPaletteMatrixARB", CurrentPaletteMatrixARB);
init_extension_entry (library, "glMatrixIndexubvARB", MatrixIndexubvARB);
init_extension_entry (library, "glMatrixIndexusvARB", MatrixIndexusvARB);
init_extension_entry (library, "glMatrixIndexuivARB", MatrixIndexuivARB);
init_extension_entry (library, "glMatrixIndexPointerARB", MatrixIndexPointerARB);
init_extension_entry (library, "glWindowPos2dARB", WindowPos2dARB);
init_extension_entry (library, "glWindowPos2dvARB", WindowPos2dvARB);
init_extension_entry (library, "glWindowPos2fARB", WindowPos2fARB);
init_extension_entry (library, "glWindowPos2fvARB", WindowPos2fvARB);
init_extension_entry (library, "glWindowPos2iARB", WindowPos2iARB);
init_extension_entry (library, "glWindowPos2ivARB", WindowPos2ivARB);
init_extension_entry (library, "glWindowPos2sARB", WindowPos2sARB);
init_extension_entry (library, "glWindowPos2svARB", WindowPos2svARB);
init_extension_entry (library, "glWindowPos3dARB", WindowPos3dARB);
init_extension_entry (library, "glWindowPos3dvARB", WindowPos3dvARB);
init_extension_entry (library, "glWindowPos3fARB", WindowPos3fARB);
init_extension_entry (library, "glWindowPos3fvARB", WindowPos3fvARB);
init_extension_entry (library, "glWindowPos3iARB", WindowPos3iARB);
init_extension_entry (library, "glWindowPos3ivARB", WindowPos3ivARB);
init_extension_entry (library, "glWindowPos3sARB", WindowPos3sARB);
init_extension_entry (library, "glWindowPos3svARB", WindowPos3svARB);
init_extension_entry (library, "glVertexAttrib1dARB", VertexAttrib1dARB);
init_extension_entry (library, "glVertexAttrib1dvARB", VertexAttrib1dvARB);
init_extension_entry (library, "glVertexAttrib1fARB", VertexAttrib1fARB);
init_extension_entry (library, "glVertexAttrib1fvARB", VertexAttrib1fvARB);
init_extension_entry (library, "glVertexAttrib1sARB", VertexAttrib1sARB);
init_extension_entry (library, "glVertexAttrib1svARB", VertexAttrib1svARB);
init_extension_entry (library, "glVertexAttrib2dARB", VertexAttrib2dARB);
init_extension_entry (library, "glVertexAttrib2dvARB", VertexAttrib2dvARB);
init_extension_entry (library, "glVertexAttrib2fARB", VertexAttrib2fARB);
init_extension_entry (library, "glVertexAttrib2fvARB", VertexAttrib2fvARB);
init_extension_entry (library, "glVertexAttrib2sARB", VertexAttrib2sARB);
init_extension_entry (library, "glVertexAttrib2svARB", VertexAttrib2svARB);
init_extension_entry (library, "glVertexAttrib3dARB", VertexAttrib3dARB);
init_extension_entry (library, "glVertexAttrib3dvARB", VertexAttrib3dvARB);
init_extension_entry (library, "glVertexAttrib3fARB", VertexAttrib3fARB);
init_extension_entry (library, "glVertexAttrib3fvARB", VertexAttrib3fvARB);
init_extension_entry (library, "glVertexAttrib3sARB", VertexAttrib3sARB);
init_extension_entry (library, "glVertexAttrib3svARB", VertexAttrib3svARB);
init_extension_entry (library, "glVertexAttrib4NbvARB", VertexAttrib4NbvARB);
init_extension_entry (library, "glVertexAttrib4NivARB", VertexAttrib4NivARB);
init_extension_entry (library, "glVertexAttrib4NsvARB", VertexAttrib4NsvARB);
init_extension_entry (library, "glVertexAttrib4NubARB", VertexAttrib4NubARB);
init_extension_entry (library, "glVertexAttrib4NubvARB", VertexAttrib4NubvARB);
init_extension_entry (library, "glVertexAttrib4NuivARB", VertexAttrib4NuivARB);
init_extension_entry (library, "glVertexAttrib4NusvARB", VertexAttrib4NusvARB);
init_extension_entry (library, "glVertexAttrib4bvARB", VertexAttrib4bvARB);
init_extension_entry (library, "glVertexAttrib4dARB", VertexAttrib4dARB);
init_extension_entry (library, "glVertexAttrib4dvARB", VertexAttrib4dvARB);
init_extension_entry (library, "glVertexAttrib4fARB", VertexAttrib4fARB);
init_extension_entry (library, "glVertexAttrib4fvARB", VertexAttrib4fvARB);
init_extension_entry (library, "glVertexAttrib4ivARB", VertexAttrib4ivARB);
init_extension_entry (library, "glVertexAttrib4sARB", VertexAttrib4sARB);
init_extension_entry (library, "glVertexAttrib4svARB", VertexAttrib4svARB);
init_extension_entry (library, "glVertexAttrib4ubvARB", VertexAttrib4ubvARB);
init_extension_entry (library, "glVertexAttrib4uivARB", VertexAttrib4uivARB);
init_extension_entry (library, "glVertexAttrib4usvARB", VertexAttrib4usvARB);
init_extension_entry (library, "glVertexAttribPointerARB", VertexAttribPointerARB);
init_extension_entry (library, "glEnableVertexAttribArrayARB", EnableVertexAttribArrayARB);
init_extension_entry (library, "glDisableVertexAttribArrayARB", DisableVertexAttribArrayARB);
init_extension_entry (library, "glProgramStringARB", ProgramStringARB);
init_extension_entry (library, "glBindProgramARB", BindProgramARB);
init_extension_entry (library, "glDeleteProgramsARB", DeleteProgramsARB);
init_extension_entry (library, "glGenProgramsARB", GenProgramsARB);
init_extension_entry (library, "glProgramEnvParameter4dARB", ProgramEnvParameter4dARB);
init_extension_entry (library, "glProgramEnvParameter4dvARB", ProgramEnvParameter4dvARB);
init_extension_entry (library, "glProgramEnvParameter4fARB", ProgramEnvParameter4fARB);
init_extension_entry (library, "glProgramEnvParameter4fvARB", ProgramEnvParameter4fvARB);
init_extension_entry (library, "glProgramLocalParameter4dARB", ProgramLocalParameter4dARB);
init_extension_entry (library, "glProgramLocalParameter4dvARB", ProgramLocalParameter4dvARB);
init_extension_entry (library, "glProgramLocalParameter4fARB", ProgramLocalParameter4fARB);
init_extension_entry (library, "glProgramLocalParameter4fvARB", ProgramLocalParameter4fvARB);
init_extension_entry (library, "glGetProgramEnvParameterdvARB", GetProgramEnvParameterdvARB);
init_extension_entry (library, "glGetProgramEnvParameterfvARB", GetProgramEnvParameterfvARB);
init_extension_entry (library, "glGetProgramLocalParameterdvARB", GetProgramLocalParameterdvARB);
init_extension_entry (library, "glGetProgramLocalParameterfvARB", GetProgramLocalParameterfvARB);
init_extension_entry (library, "glGetProgramivARB", GetProgramivARB);
init_extension_entry (library, "glGetProgramStringARB", GetProgramStringARB);
init_extension_entry (library, "glGetVertexAttribdvARB", GetVertexAttribdvARB);
init_extension_entry (library, "glGetVertexAttribfvARB", GetVertexAttribfvARB);
init_extension_entry (library, "glGetVertexAttribivARB", GetVertexAttribivARB);
init_extension_entry (library, "glGetVertexAttribPointervARB", GetVertexAttribPointervARB);
init_extension_entry (library, "glIsProgramARB", IsProgramARB);
init_extension_entry (library, "glBindBufferARB", BindBufferARB);
init_extension_entry (library, "glDeleteBuffersARB", DeleteBuffersARB);
init_extension_entry (library, "glGenBuffersARB", GenBuffersARB);
init_extension_entry (library, "glIsBufferARB", IsBufferARB);
init_extension_entry (library, "glBufferDataARB", BufferDataARB);
init_extension_entry (library, "glBufferSubDataARB", BufferSubDataARB);
init_extension_entry (library, "glGetBufferSubDataARB", GetBufferSubDataARB);
init_extension_entry (library, "glMapBufferARB", MapBufferARB);
init_extension_entry (library, "glUnmapBufferARB", UnmapBufferARB);
init_extension_entry (library, "glGetBufferParameterivARB", GetBufferParameterivARB);
init_extension_entry (library, "glGetBufferPointervARB", GetBufferPointervARB);
init_extension_entry (library, "glGenQueriesARB", GenQueriesARB);
init_extension_entry (library, "glDeleteQueriesARB", DeleteQueriesARB);
init_extension_entry (library, "glIsQueryARB", IsQueryARB);
init_extension_entry (library, "glBeginQueryARB", BeginQueryARB);
init_extension_entry (library, "glEndQueryARB", EndQueryARB);
init_extension_entry (library, "glGetQueryivARB", GetQueryivARB);
init_extension_entry (library, "glGetQueryObjectivARB", GetQueryObjectivARB);
init_extension_entry (library, "glGetQueryObjectuivARB", GetQueryObjectuivARB);
init_extension_entry (library, "glDeleteObjectARB", DeleteObjectARB);
init_extension_entry (library, "glGetHandleARB", GetHandleARB);
init_extension_entry (library, "glDetachObjectARB", DetachObjectARB);
init_extension_entry (library, "glCreateShaderObjectARB", CreateShaderObjectARB);
init_extension_entry (library, "glShaderSourceARB", ShaderSourceARB);
init_extension_entry (library, "glCompileShaderARB", CompileShaderARB);
init_extension_entry (library, "glCreateProgramObjectARB", CreateProgramObjectARB);
init_extension_entry (library, "glAttachObjectARB", AttachObjectARB);
init_extension_entry (library, "glLinkProgramARB", LinkProgramARB);
init_extension_entry (library, "glUseProgramObjectARB", UseProgramObjectARB);
init_extension_entry (library, "glValidateProgramARB", ValidateProgramARB);
init_extension_entry (library, "glUniform1fARB", Uniform1fARB);
init_extension_entry (library, "glUniform2fARB", Uniform2fARB);
init_extension_entry (library, "glUniform3fARB", Uniform3fARB);
init_extension_entry (library, "glUniform4fARB", Uniform4fARB);
init_extension_entry (library, "glUniform1iARB", Uniform1iARB);
init_extension_entry (library, "glUniform2iARB", Uniform2iARB);
init_extension_entry (library, "glUniform3iARB", Uniform3iARB);
init_extension_entry (library, "glUniform4iARB", Uniform4iARB);
init_extension_entry (library, "glUniform1fvARB", Uniform1fvARB);
init_extension_entry (library, "glUniform2fvARB", Uniform2fvARB);
init_extension_entry (library, "glUniform3fvARB", Uniform3fvARB);
init_extension_entry (library, "glUniform4fvARB", Uniform4fvARB);
init_extension_entry (library, "glUniform1ivARB", Uniform1ivARB);
init_extension_entry (library, "glUniform2ivARB", Uniform2ivARB);
init_extension_entry (library, "glUniform3ivARB", Uniform3ivARB);
init_extension_entry (library, "glUniform4ivARB", Uniform4ivARB);
init_extension_entry (library, "glUniformMatrix2fvARB", UniformMatrix2fvARB);
init_extension_entry (library, "glUniformMatrix3fvARB", UniformMatrix3fvARB);
init_extension_entry (library, "glUniformMatrix4fvARB", UniformMatrix4fvARB);
init_extension_entry (library, "glGetObjectParameterfvARB", GetObjectParameterfvARB);
init_extension_entry (library, "glGetObjectParameterivARB", GetObjectParameterivARB);
init_extension_entry (library, "glGetInfoLogARB", GetInfoLogARB);
init_extension_entry (library, "glGetAttachedObjectsARB", GetAttachedObjectsARB);
init_extension_entry (library, "glGetUniformLocationARB", GetUniformLocationARB);
init_extension_entry (library, "glGetActiveUniformARB", GetActiveUniformARB);
init_extension_entry (library, "glGetUniformfvARB", GetUniformfvARB);
init_extension_entry (library, "glGetUniformivARB", GetUniformivARB);
init_extension_entry (library, "glGetShaderSourceARB", GetShaderSourceARB);
init_extension_entry (library, "glBindAttribLocationARB", BindAttribLocationARB);
init_extension_entry (library, "glGetActiveAttribARB", GetActiveAttribARB);
init_extension_entry (library, "glGetAttribLocationARB", GetAttribLocationARB);
init_extension_entry (library, "glDrawBuffersARB", DrawBuffersARB);
init_extension_entry (library, "glClampColorARB", ClampColorARB);
init_extension_entry (library, "glDrawArraysInstancedARB", DrawArraysInstancedARB);
init_extension_entry (library, "glDrawElementsInstancedARB", DrawElementsInstancedARB);
init_extension_entry (library, "glIsRenderbuffer", IsRenderbuffer);
init_extension_entry (library, "glBindRenderbuffer", BindRenderbuffer);
init_extension_entry (library, "glDeleteRenderbuffers", DeleteRenderbuffers);
init_extension_entry (library, "glGenRenderbuffers", GenRenderbuffers);
init_extension_entry (library, "glRenderbufferStorage", RenderbufferStorage);
init_extension_entry (library, "glGetRenderbufferParameteriv", GetRenderbufferParameteriv);
init_extension_entry (library, "glIsFramebuffer", IsFramebuffer);
init_extension_entry (library, "glBindFramebuffer", BindFramebuffer);
init_extension_entry (library, "glDeleteFramebuffers", DeleteFramebuffers);
init_extension_entry (library, "glGenFramebuffers", GenFramebuffers);
init_extension_entry (library, "glCheckFramebufferStatus", CheckFramebufferStatus);
init_extension_entry (library, "glFramebufferTexture1D", FramebufferTexture1D);
init_extension_entry (library, "glFramebufferTexture2D", FramebufferTexture2D);
init_extension_entry (library, "glFramebufferTexture3D", FramebufferTexture3D);
init_extension_entry (library, "glFramebufferRenderbuffer", FramebufferRenderbuffer);
init_extension_entry (library, "glGetFramebufferAttachmentParameteriv", GetFramebufferAttachmentParameteriv);
init_extension_entry (library, "glGenerateMipmap", GenerateMipmap);
init_extension_entry (library, "glBlitFramebuffer", BlitFramebuffer);
init_extension_entry (library, "glRenderbufferStorageMultisample", RenderbufferStorageMultisample);
init_extension_entry (library, "glFramebufferTextureLayer", FramebufferTextureLayer);
init_extension_entry (library, "glProgramParameteriARB", ProgramParameteriARB);
init_extension_entry (library, "glFramebufferTextureARB", FramebufferTextureARB);
init_extension_entry (library, "glFramebufferTextureLayerARB", FramebufferTextureLayerARB);
init_extension_entry (library, "glFramebufferTextureFaceARB", FramebufferTextureFaceARB);
init_extension_entry (library, "glVertexAttribDivisorARB", VertexAttribDivisorARB);
init_extension_entry (library, "glMapBufferRange", MapBufferRange);
init_extension_entry (library, "glFlushMappedBufferRange", FlushMappedBufferRange);
init_extension_entry (library, "glTexBufferARB", TexBufferARB);
init_extension_entry (library, "glBindVertexArray", BindVertexArray);
init_extension_entry (library, "glDeleteVertexArrays", DeleteVertexArrays);
init_extension_entry (library, "glGenVertexArrays", GenVertexArrays);
init_extension_entry (library, "glIsVertexArray", IsVertexArray);
init_extension_entry (library, "glGetUniformIndices", GetUniformIndices);
init_extension_entry (library, "glGetActiveUniformsiv", GetActiveUniformsiv);
init_extension_entry (library, "glGetActiveUniformName", GetActiveUniformName);
init_extension_entry (library, "glGetUniformBlockIndex", GetUniformBlockIndex);
init_extension_entry (library, "glGetActiveUniformBlockiv", GetActiveUniformBlockiv);
init_extension_entry (library, "glGetActiveUniformBlockName", GetActiveUniformBlockName);
init_extension_entry (library, "glUniformBlockBinding", UniformBlockBinding);
init_extension_entry (library, "glCopyBufferSubData", CopyBufferSubData);
init_extension_entry (library, "glDrawElementsBaseVertex", DrawElementsBaseVertex);
init_extension_entry (library, "glDrawRangeElementsBaseVertex", DrawRangeElementsBaseVertex);
init_extension_entry (library, "glDrawElementsInstancedBaseVertex", DrawElementsInstancedBaseVertex);
init_extension_entry (library, "glMultiDrawElementsBaseVertex", MultiDrawElementsBaseVertex);
init_extension_entry (library, "glProvokingVertex", ProvokingVertex);
init_extension_entry (library, "glFenceSync", FenceSync);
init_extension_entry (library, "glIsSync", IsSync);
init_extension_entry (library, "glDeleteSync", DeleteSync);
init_extension_entry (library, "glClientWaitSync", ClientWaitSync);
init_extension_entry (library, "glWaitSync", WaitSync);
init_extension_entry (library, "glGetInteger64v", GetInteger64v);
init_extension_entry (library, "glGetSynciv", GetSynciv);
init_extension_entry (library, "glTexImage2DMultisample", TexImage2DMultisample);
init_extension_entry (library, "glTexImage3DMultisample", TexImage3DMultisample);
init_extension_entry (library, "glGetMultisamplefv", GetMultisamplefv);
init_extension_entry (library, "glSampleMaski", SampleMaski);
init_extension_entry (library, "glBlendEquationiARB", BlendEquationiARB);
init_extension_entry (library, "glBlendEquationSeparateiARB", BlendEquationSeparateiARB);
init_extension_entry (library, "glBlendFunciARB", BlendFunciARB);
init_extension_entry (library, "glBlendFuncSeparateiARB", BlendFuncSeparateiARB);
init_extension_entry (library, "glMinSampleShadingARB", MinSampleShadingARB);
init_extension_entry (library, "glNamedStringARB", NamedStringARB);
init_extension_entry (library, "glDeleteNamedStringARB", DeleteNamedStringARB);
init_extension_entry (library, "glCompileShaderIncludeARB", CompileShaderIncludeARB);
init_extension_entry (library, "glIsNamedStringARB", IsNamedStringARB);
init_extension_entry (library, "glGetNamedStringARB", GetNamedStringARB);
init_extension_entry (library, "glGetNamedStringivARB", GetNamedStringivARB);
init_extension_entry (library, "glBindFragDataLocationIndexed", BindFragDataLocationIndexed);
init_extension_entry (library, "glGetFragDataIndex", GetFragDataIndex);
init_extension_entry (library, "glGenSamplers", GenSamplers);
init_extension_entry (library, "glDeleteSamplers", DeleteSamplers);
init_extension_entry (library, "glIsSampler", IsSampler);
init_extension_entry (library, "glBindSampler", BindSampler);
init_extension_entry (library, "glSamplerParameteri", SamplerParameteri);
init_extension_entry (library, "glSamplerParameteriv", SamplerParameteriv);
init_extension_entry (library, "glSamplerParameterf", SamplerParameterf);
init_extension_entry (library, "glSamplerParameterfv", SamplerParameterfv);
init_extension_entry (library, "glSamplerParameterIiv", SamplerParameterIiv);
init_extension_entry (library, "glSamplerParameterIuiv", SamplerParameterIuiv);
init_extension_entry (library, "glGetSamplerParameteriv", GetSamplerParameteriv);
init_extension_entry (library, "glGetSamplerParameterIiv", GetSamplerParameterIiv);
init_extension_entry (library, "glGetSamplerParameterfv", GetSamplerParameterfv);
init_extension_entry (library, "glGetSamplerParameterIuiv", GetSamplerParameterIuiv);
init_extension_entry (library, "glQueryCounter", QueryCounter);
init_extension_entry (library, "glGetQueryObjecti64v", GetQueryObjecti64v);
init_extension_entry (library, "glGetQueryObjectui64v", GetQueryObjectui64v);
init_extension_entry (library, "glVertexP2ui", VertexP2ui);
init_extension_entry (library, "glVertexP2uiv", VertexP2uiv);
init_extension_entry (library, "glVertexP3ui", VertexP3ui);
init_extension_entry (library, "glVertexP3uiv", VertexP3uiv);
init_extension_entry (library, "glVertexP4ui", VertexP4ui);
init_extension_entry (library, "glVertexP4uiv", VertexP4uiv);
init_extension_entry (library, "glTexCoordP1ui", TexCoordP1ui);
init_extension_entry (library, "glTexCoordP1uiv", TexCoordP1uiv);
init_extension_entry (library, "glTexCoordP2ui", TexCoordP2ui);
init_extension_entry (library, "glTexCoordP2uiv", TexCoordP2uiv);
init_extension_entry (library, "glTexCoordP3ui", TexCoordP3ui);
init_extension_entry (library, "glTexCoordP3uiv", TexCoordP3uiv);
init_extension_entry (library, "glTexCoordP4ui", TexCoordP4ui);
init_extension_entry (library, "glTexCoordP4uiv", TexCoordP4uiv);
init_extension_entry (library, "glMultiTexCoordP1ui", MultiTexCoordP1ui);
init_extension_entry (library, "glMultiTexCoordP1uiv", MultiTexCoordP1uiv);
init_extension_entry (library, "glMultiTexCoordP2ui", MultiTexCoordP2ui);
init_extension_entry (library, "glMultiTexCoordP2uiv", MultiTexCoordP2uiv);
init_extension_entry (library, "glMultiTexCoordP3ui", MultiTexCoordP3ui);
init_extension_entry (library, "glMultiTexCoordP3uiv", MultiTexCoordP3uiv);
init_extension_entry (library, "glMultiTexCoordP4ui", MultiTexCoordP4ui);
init_extension_entry (library, "glMultiTexCoordP4uiv", MultiTexCoordP4uiv);
init_extension_entry (library, "glNormalP3ui", NormalP3ui);
init_extension_entry (library, "glNormalP3uiv", NormalP3uiv);
init_extension_entry (library, "glColorP3ui", ColorP3ui);
init_extension_entry (library, "glColorP3uiv", ColorP3uiv);
init_extension_entry (library, "glColorP4ui", ColorP4ui);
init_extension_entry (library, "glColorP4uiv", ColorP4uiv);
init_extension_entry (library, "glSecondaryColorP3ui", SecondaryColorP3ui);
init_extension_entry (library, "glSecondaryColorP3uiv", SecondaryColorP3uiv);
init_extension_entry (library, "glVertexAttribP1ui", VertexAttribP1ui);
init_extension_entry (library, "glVertexAttribP1uiv", VertexAttribP1uiv);
init_extension_entry (library, "glVertexAttribP2ui", VertexAttribP2ui);
init_extension_entry (library, "glVertexAttribP2uiv", VertexAttribP2uiv);
init_extension_entry (library, "glVertexAttribP3ui", VertexAttribP3ui);
init_extension_entry (library, "glVertexAttribP3uiv", VertexAttribP3uiv);
init_extension_entry (library, "glVertexAttribP4ui", VertexAttribP4ui);
init_extension_entry (library, "glVertexAttribP4uiv", VertexAttribP4uiv);
init_extension_entry (library, "glDrawArraysIndirect", DrawArraysIndirect);
init_extension_entry (library, "glDrawElementsIndirect", DrawElementsIndirect);
init_extension_entry (library, "glUniform1d", Uniform1d);
init_extension_entry (library, "glUniform2d", Uniform2d);
init_extension_entry (library, "glUniform3d", Uniform3d);
init_extension_entry (library, "glUniform4d", Uniform4d);
init_extension_entry (library, "glUniform1dv", Uniform1dv);
init_extension_entry (library, "glUniform2dv", Uniform2dv);
init_extension_entry (library, "glUniform3dv", Uniform3dv);
init_extension_entry (library, "glUniform4dv", Uniform4dv);
init_extension_entry (library, "glUniformMatrix2dv", UniformMatrix2dv);
init_extension_entry (library, "glUniformMatrix3dv", UniformMatrix3dv);
init_extension_entry (library, "glUniformMatrix4dv", UniformMatrix4dv);
init_extension_entry (library, "glUniformMatrix2x3dv", UniformMatrix2x3dv);
init_extension_entry (library, "glUniformMatrix2x4dv", UniformMatrix2x4dv);
init_extension_entry (library, "glUniformMatrix3x2dv", UniformMatrix3x2dv);
init_extension_entry (library, "glUniformMatrix3x4dv", UniformMatrix3x4dv);
init_extension_entry (library, "glUniformMatrix4x2dv", UniformMatrix4x2dv);
init_extension_entry (library, "glUniformMatrix4x3dv", UniformMatrix4x3dv);
init_extension_entry (library, "glGetUniformdv", GetUniformdv);
init_extension_entry (library, "glGetSubroutineUniformLocation", GetSubroutineUniformLocation);
init_extension_entry (library, "glGetSubroutineIndex", GetSubroutineIndex);
init_extension_entry (library, "glGetActiveSubroutineUniformiv", GetActiveSubroutineUniformiv);
init_extension_entry (library, "glGetActiveSubroutineUniformName", GetActiveSubroutineUniformName);
init_extension_entry (library, "glGetActiveSubroutineName", GetActiveSubroutineName);
init_extension_entry (library, "glUniformSubroutinesuiv", UniformSubroutinesuiv);
init_extension_entry (library, "glGetUniformSubroutineuiv", GetUniformSubroutineuiv);
init_extension_entry (library, "glGetProgramStageiv", GetProgramStageiv);
init_extension_entry (library, "glPatchParameteri", PatchParameteri);
init_extension_entry (library, "glPatchParameterfv", PatchParameterfv);
init_extension_entry (library, "glBindTransformFeedback", BindTransformFeedback);
init_extension_entry (library, "glDeleteTransformFeedbacks", DeleteTransformFeedbacks);
init_extension_entry (library, "glGenTransformFeedbacks", GenTransformFeedbacks);
init_extension_entry (library, "glIsTransformFeedback", IsTransformFeedback);
init_extension_entry (library, "glPauseTransformFeedback", PauseTransformFeedback);
init_extension_entry (library, "glResumeTransformFeedback", ResumeTransformFeedback);
init_extension_entry (library, "glDrawTransformFeedback", DrawTransformFeedback);
init_extension_entry (library, "glDrawTransformFeedbackStream", DrawTransformFeedbackStream);
init_extension_entry (library, "glBeginQueryIndexed", BeginQueryIndexed);
init_extension_entry (library, "glEndQueryIndexed", EndQueryIndexed);
init_extension_entry (library, "glGetQueryIndexediv", GetQueryIndexediv);
init_extension_entry (library, "glReleaseShaderCompiler", ReleaseShaderCompiler);
init_extension_entry (library, "glShaderBinary", ShaderBinary);
init_extension_entry (library, "glGetShaderPrecisionFormat", GetShaderPrecisionFormat);
init_extension_entry (library, "glDepthRangef", DepthRangef);
init_extension_entry (library, "glClearDepthf", ClearDepthf);
init_extension_entry (library, "glGetProgramBinary", GetProgramBinary);
init_extension_entry (library, "glProgramBinary", ProgramBinary);
init_extension_entry (library, "glProgramParameteri", ProgramParameteri);
init_extension_entry (library, "glUseProgramStages", UseProgramStages);
init_extension_entry (library, "glActiveShaderProgram", ActiveShaderProgram);
init_extension_entry (library, "glCreateShaderProgramv", CreateShaderProgramv);
init_extension_entry (library, "glBindProgramPipeline", BindProgramPipeline);
init_extension_entry (library, "glDeleteProgramPipelines", DeleteProgramPipelines);
init_extension_entry (library, "glGenProgramPipelines", GenProgramPipelines);
init_extension_entry (library, "glIsProgramPipeline", IsProgramPipeline);
init_extension_entry (library, "glGetProgramPipelineiv", GetProgramPipelineiv);
init_extension_entry (library, "glProgramUniform1i", ProgramUniform1i);
init_extension_entry (library, "glProgramUniform1iv", ProgramUniform1iv);
init_extension_entry (library, "glProgramUniform1f", ProgramUniform1f);
init_extension_entry (library, "glProgramUniform1fv", ProgramUniform1fv);
init_extension_entry (library, "glProgramUniform1d", ProgramUniform1d);
init_extension_entry (library, "glProgramUniform1dv", ProgramUniform1dv);
init_extension_entry (library, "glProgramUniform1ui", ProgramUniform1ui);
init_extension_entry (library, "glProgramUniform1uiv", ProgramUniform1uiv);
init_extension_entry (library, "glProgramUniform2i", ProgramUniform2i);
init_extension_entry (library, "glProgramUniform2iv", ProgramUniform2iv);
init_extension_entry (library, "glProgramUniform2f", ProgramUniform2f);
init_extension_entry (library, "glProgramUniform2fv", ProgramUniform2fv);
init_extension_entry (library, "glProgramUniform2d", ProgramUniform2d);
init_extension_entry (library, "glProgramUniform2dv", ProgramUniform2dv);
init_extension_entry (library, "glProgramUniform2ui", ProgramUniform2ui);
init_extension_entry (library, "glProgramUniform2uiv", ProgramUniform2uiv);
init_extension_entry (library, "glProgramUniform3i", ProgramUniform3i);
init_extension_entry (library, "glProgramUniform3iv", ProgramUniform3iv);
init_extension_entry (library, "glProgramUniform3f", ProgramUniform3f);
init_extension_entry (library, "glProgramUniform3fv", ProgramUniform3fv);
init_extension_entry (library, "glProgramUniform3d", ProgramUniform3d);
init_extension_entry (library, "glProgramUniform3dv", ProgramUniform3dv);
init_extension_entry (library, "glProgramUniform3ui", ProgramUniform3ui);
init_extension_entry (library, "glProgramUniform3uiv", ProgramUniform3uiv);
init_extension_entry (library, "glProgramUniform4i", ProgramUniform4i);
init_extension_entry (library, "glProgramUniform4iv", ProgramUniform4iv);
init_extension_entry (library, "glProgramUniform4f", ProgramUniform4f);
init_extension_entry (library, "glProgramUniform4fv", ProgramUniform4fv);
init_extension_entry (library, "glProgramUniform4d", ProgramUniform4d);
init_extension_entry (library, "glProgramUniform4dv", ProgramUniform4dv);
init_extension_entry (library, "glProgramUniform4ui", ProgramUniform4ui);
init_extension_entry (library, "glProgramUniform4uiv", ProgramUniform4uiv);
init_extension_entry (library, "glProgramUniformMatrix2fv", ProgramUniformMatrix2fv);
init_extension_entry (library, "glProgramUniformMatrix3fv", ProgramUniformMatrix3fv);
init_extension_entry (library, "glProgramUniformMatrix4fv", ProgramUniformMatrix4fv);
init_extension_entry (library, "glProgramUniformMatrix2dv", ProgramUniformMatrix2dv);
init_extension_entry (library, "glProgramUniformMatrix3dv", ProgramUniformMatrix3dv);
init_extension_entry (library, "glProgramUniformMatrix4dv", ProgramUniformMatrix4dv);
init_extension_entry (library, "glProgramUniformMatrix2x3fv", ProgramUniformMatrix2x3fv);
init_extension_entry (library, "glProgramUniformMatrix3x2fv", ProgramUniformMatrix3x2fv);
init_extension_entry (library, "glProgramUniformMatrix2x4fv", ProgramUniformMatrix2x4fv);
init_extension_entry (library, "glProgramUniformMatrix4x2fv", ProgramUniformMatrix4x2fv);
init_extension_entry (library, "glProgramUniformMatrix3x4fv", ProgramUniformMatrix3x4fv);
init_extension_entry (library, "glProgramUniformMatrix4x3fv", ProgramUniformMatrix4x3fv);
init_extension_entry (library, "glProgramUniformMatrix2x3dv", ProgramUniformMatrix2x3dv);
init_extension_entry (library, "glProgramUniformMatrix3x2dv", ProgramUniformMatrix3x2dv);
init_extension_entry (library, "glProgramUniformMatrix2x4dv", ProgramUniformMatrix2x4dv);
init_extension_entry (library, "glProgramUniformMatrix4x2dv", ProgramUniformMatrix4x2dv);
init_extension_entry (library, "glProgramUniformMatrix3x4dv", ProgramUniformMatrix3x4dv);
init_extension_entry (library, "glProgramUniformMatrix4x3dv", ProgramUniformMatrix4x3dv);
init_extension_entry (library, "glValidateProgramPipeline", ValidateProgramPipeline);
init_extension_entry (library, "glGetProgramPipelineInfoLog", GetProgramPipelineInfoLog);
init_extension_entry (library, "glVertexAttribL1d", VertexAttribL1d);
init_extension_entry (library, "glVertexAttribL2d", VertexAttribL2d);
init_extension_entry (library, "glVertexAttribL3d", VertexAttribL3d);
init_extension_entry (library, "glVertexAttribL4d", VertexAttribL4d);
init_extension_entry (library, "glVertexAttribL1dv", VertexAttribL1dv);
init_extension_entry (library, "glVertexAttribL2dv", VertexAttribL2dv);
init_extension_entry (library, "glVertexAttribL3dv", VertexAttribL3dv);
init_extension_entry (library, "glVertexAttribL4dv", VertexAttribL4dv);
init_extension_entry (library, "glVertexAttribLPointer", VertexAttribLPointer);
init_extension_entry (library, "glGetVertexAttribLdv", GetVertexAttribLdv);
init_extension_entry (library, "glViewportArrayv", ViewportArrayv);
init_extension_entry (library, "glViewportIndexedf", ViewportIndexedf);
init_extension_entry (library, "glViewportIndexedfv", ViewportIndexedfv);
init_extension_entry (library, "glScissorArrayv", ScissorArrayv);
init_extension_entry (library, "glScissorIndexed", ScissorIndexed);
init_extension_entry (library, "glScissorIndexedv", ScissorIndexedv);
init_extension_entry (library, "glDepthRangeArrayv", DepthRangeArrayv);
init_extension_entry (library, "glDepthRangeIndexed", DepthRangeIndexed);
init_extension_entry (library, "glGetFloati_v", GetFloati_v);
init_extension_entry (library, "glGetDoublei_v", GetDoublei_v);
init_extension_entry (library, "glCreateSyncFromCLeventARB", CreateSyncFromCLeventARB);
init_extension_entry (library, "glDebugMessageControlARB", DebugMessageControlARB);
init_extension_entry (library, "glDebugMessageInsertARB", DebugMessageInsertARB);
init_extension_entry (library, "glDebugMessageCallbackARB", DebugMessageCallbackARB);
init_extension_entry (library, "glGetDebugMessageLogARB", GetDebugMessageLogARB);
init_extension_entry (library, "glGetGraphicsResetStatusARB", GetGraphicsResetStatusARB);
init_extension_entry (library, "glGetnMapdvARB", GetnMapdvARB);
init_extension_entry (library, "glGetnMapfvARB", GetnMapfvARB);
init_extension_entry (library, "glGetnMapivARB", GetnMapivARB);
init_extension_entry (library, "glGetnPixelMapfvARB", GetnPixelMapfvARB);
init_extension_entry (library, "glGetnPixelMapuivARB", GetnPixelMapuivARB);
init_extension_entry (library, "glGetnPixelMapusvARB", GetnPixelMapusvARB);
init_extension_entry (library, "glGetnPolygonStippleARB", GetnPolygonStippleARB);
init_extension_entry (library, "glGetnColorTableARB", GetnColorTableARB);
init_extension_entry (library, "glGetnConvolutionFilterARB", GetnConvolutionFilterARB);
init_extension_entry (library, "glGetnSeparableFilterARB", GetnSeparableFilterARB);
init_extension_entry (library, "glGetnHistogramARB", GetnHistogramARB);
init_extension_entry (library, "glGetnMinmaxARB", GetnMinmaxARB);
init_extension_entry (library, "glGetnTexImageARB", GetnTexImageARB);
init_extension_entry (library, "glReadnPixelsARB", ReadnPixelsARB);
init_extension_entry (library, "glGetnCompressedTexImageARB", GetnCompressedTexImageARB);
init_extension_entry (library, "glGetnUniformfvARB", GetnUniformfvARB);
init_extension_entry (library, "glGetnUniformivARB", GetnUniformivARB);
init_extension_entry (library, "glGetnUniformuivARB", GetnUniformuivARB);
init_extension_entry (library, "glGetnUniformdvARB", GetnUniformdvARB);
init_extension_entry (library, "glDrawArraysInstancedBaseInstance", DrawArraysInstancedBaseInstance);
init_extension_entry (library, "glDrawElementsInstancedBaseInstance", DrawElementsInstancedBaseInstance);
init_extension_entry (library, "glDrawElementsInstancedBaseVertexBaseInstance", DrawElementsInstancedBaseVertexBaseInstance);
init_extension_entry (library, "glDrawTransformFeedbackInstanced", DrawTransformFeedbackInstanced);
init_extension_entry (library, "glDrawTransformFeedbackStreamInstanced", DrawTransformFeedbackStreamInstanced);
init_extension_entry (library, "glGetInternalformativ", GetInternalformativ);
init_extension_entry (library, "glGetActiveAtomicCounterBufferiv", GetActiveAtomicCounterBufferiv);
init_extension_entry (library, "glBindImageTexture", BindImageTexture);
init_extension_entry (library, "glMemoryBarrier", MemoryBarrier);
init_extension_entry (library, "glTexStorage1D", TexStorage1D);
init_extension_entry (library, "glTexStorage2D", TexStorage2D);
init_extension_entry (library, "glTexStorage3D", TexStorage3D);
init_extension_entry (library, "glTextureStorage1DEXT", TextureStorage1DEXT);
init_extension_entry (library, "glTextureStorage2DEXT", TextureStorage2DEXT);
init_extension_entry (library, "glTextureStorage3DEXT", TextureStorage3DEXT);
init_extension_entry (library, "glDebugMessageControl", DebugMessageControl);
init_extension_entry (library, "glDebugMessageInsert", DebugMessageInsert);
init_extension_entry (library, "glDebugMessageCallback", DebugMessageCallback);
init_extension_entry (library, "glGetDebugMessageLog", GetDebugMessageLog);
init_extension_entry (library, "glPushDebugGroup", PushDebugGroup);
init_extension_entry (library, "glPopDebugGroup", PopDebugGroup);
init_extension_entry (library, "glObjectLabel", ObjectLabel);
init_extension_entry (library, "glGetObjectLabel", GetObjectLabel);
init_extension_entry (library, "glObjectPtrLabel", ObjectPtrLabel);
init_extension_entry (library, "glGetObjectPtrLabel", GetObjectPtrLabel);
init_extension_entry (library, "glClearBufferData", ClearBufferData);
init_extension_entry (library, "glClearBufferSubData", ClearBufferSubData);
init_extension_entry (library, "glClearNamedBufferDataEXT", ClearNamedBufferDataEXT);
init_extension_entry (library, "glClearNamedBufferSubDataEXT", ClearNamedBufferSubDataEXT);
init_extension_entry (library, "glDispatchCompute", DispatchCompute);
init_extension_entry (library, "glDispatchComputeIndirect", DispatchComputeIndirect);
init_extension_entry (library, "glCopyImageSubData", CopyImageSubData);
init_extension_entry (library, "glTextureView", TextureView);
init_extension_entry (library, "glBindVertexBuffer", BindVertexBuffer);
init_extension_entry (library, "glVertexAttribFormat", VertexAttribFormat);
init_extension_entry (library, "glVertexAttribIFormat", VertexAttribIFormat);
init_extension_entry (library, "glVertexAttribLFormat", VertexAttribLFormat);
init_extension_entry (library, "glVertexAttribBinding", VertexAttribBinding);
init_extension_entry (library, "glVertexBindingDivisor", VertexBindingDivisor);
init_extension_entry (library, "glVertexArrayBindVertexBufferEXT", VertexArrayBindVertexBufferEXT);
init_extension_entry (library, "glVertexArrayVertexAttribFormatEXT", VertexArrayVertexAttribFormatEXT);
init_extension_entry (library, "glVertexArrayVertexAttribIFormatEXT", VertexArrayVertexAttribIFormatEXT);
init_extension_entry (library, "glVertexArrayVertexAttribLFormatEXT", VertexArrayVertexAttribLFormatEXT);
init_extension_entry (library, "glVertexArrayVertexAttribBindingEXT", VertexArrayVertexAttribBindingEXT);
init_extension_entry (library, "glVertexArrayVertexBindingDivisorEXT", VertexArrayVertexBindingDivisorEXT);
init_extension_entry (library, "glFramebufferParameteri", FramebufferParameteri);
init_extension_entry (library, "glGetFramebufferParameteriv", GetFramebufferParameteriv);
init_extension_entry (library, "glNamedFramebufferParameteriEXT", NamedFramebufferParameteriEXT);
init_extension_entry (library, "glGetNamedFramebufferParameterivEXT", GetNamedFramebufferParameterivEXT);
init_extension_entry (library, "glGetInternalformati64v", GetInternalformati64v);
init_extension_entry (library, "glInvalidateTexSubImage", InvalidateTexSubImage);
init_extension_entry (library, "glInvalidateTexImage", InvalidateTexImage);
init_extension_entry (library, "glInvalidateBufferSubData", InvalidateBufferSubData);
init_extension_entry (library, "glInvalidateBufferData", InvalidateBufferData);
init_extension_entry (library, "glInvalidateFramebuffer", InvalidateFramebuffer);
init_extension_entry (library, "glInvalidateSubFramebuffer", InvalidateSubFramebuffer);
init_extension_entry (library, "glMultiDrawArraysIndirect", MultiDrawArraysIndirect);
init_extension_entry (library, "glMultiDrawElementsIndirect", MultiDrawElementsIndirect);
init_extension_entry (library, "glGetProgramInterfaceiv", GetProgramInterfaceiv);
init_extension_entry (library, "glGetProgramResourceIndex", GetProgramResourceIndex);
init_extension_entry (library, "glGetProgramResourceName", GetProgramResourceName);
init_extension_entry (library, "glGetProgramResourceiv", GetProgramResourceiv);
init_extension_entry (library, "glGetProgramResourceLocation", GetProgramResourceLocation);
init_extension_entry (library, "glGetProgramResourceLocationIndex", GetProgramResourceLocationIndex);
init_extension_entry (library, "glShaderStorageBlockBinding", ShaderStorageBlockBinding);
init_extension_entry (library, "glTexBufferRange", TexBufferRange);
init_extension_entry (library, "glTextureBufferRangeEXT", TextureBufferRangeEXT);
init_extension_entry (library, "glTexStorage2DMultisample", TexStorage2DMultisample);
init_extension_entry (library, "glTexStorage3DMultisample", TexStorage3DMultisample);
init_extension_entry (library, "glTextureStorage2DMultisampleEXT", TextureStorage2DMultisampleEXT);
init_extension_entry (library, "glTextureStorage3DMultisampleEXT", TextureStorage3DMultisampleEXT);
init_extension_entry (library, "glBlendColorEXT", BlendColorEXT);
init_extension_entry (library, "glPolygonOffsetEXT", PolygonOffsetEXT);
init_extension_entry (library, "glTexImage3DEXT", TexImage3DEXT);
init_extension_entry (library, "glTexSubImage3DEXT", TexSubImage3DEXT);
init_extension_entry (library, "glGetTexFilterFuncSGIS", GetTexFilterFuncSGIS);
init_extension_entry (library, "glTexFilterFuncSGIS", TexFilterFuncSGIS);
init_extension_entry (library, "glTexSubImage1DEXT", TexSubImage1DEXT);
init_extension_entry (library, "glTexSubImage2DEXT", TexSubImage2DEXT);
init_extension_entry (library, "glCopyTexImage1DEXT", CopyTexImage1DEXT);
init_extension_entry (library, "glCopyTexImage2DEXT", CopyTexImage2DEXT);
init_extension_entry (library, "glCopyTexSubImage1DEXT", CopyTexSubImage1DEXT);
init_extension_entry (library, "glCopyTexSubImage2DEXT", CopyTexSubImage2DEXT);
init_extension_entry (library, "glCopyTexSubImage3DEXT", CopyTexSubImage3DEXT);
init_extension_entry (library, "glGetHistogramEXT", GetHistogramEXT);
init_extension_entry (library, "glGetHistogramParameterfvEXT", GetHistogramParameterfvEXT);
init_extension_entry (library, "glGetHistogramParameterivEXT", GetHistogramParameterivEXT);
init_extension_entry (library, "glGetMinmaxEXT", GetMinmaxEXT);
init_extension_entry (library, "glGetMinmaxParameterfvEXT", GetMinmaxParameterfvEXT);
init_extension_entry (library, "glGetMinmaxParameterivEXT", GetMinmaxParameterivEXT);
init_extension_entry (library, "glHistogramEXT", HistogramEXT);
init_extension_entry (library, "glMinmaxEXT", MinmaxEXT);
init_extension_entry (library, "glResetHistogramEXT", ResetHistogramEXT);
init_extension_entry (library, "glResetMinmaxEXT", ResetMinmaxEXT);
init_extension_entry (library, "glConvolutionFilter1DEXT", ConvolutionFilter1DEXT);
init_extension_entry (library, "glConvolutionFilter2DEXT", ConvolutionFilter2DEXT);
init_extension_entry (library, "glConvolutionParameterfEXT", ConvolutionParameterfEXT);
init_extension_entry (library, "glConvolutionParameterfvEXT", ConvolutionParameterfvEXT);
init_extension_entry (library, "glConvolutionParameteriEXT", ConvolutionParameteriEXT);
init_extension_entry (library, "glConvolutionParameterivEXT", ConvolutionParameterivEXT);
init_extension_entry (library, "glCopyConvolutionFilter1DEXT", CopyConvolutionFilter1DEXT);
init_extension_entry (library, "glCopyConvolutionFilter2DEXT", CopyConvolutionFilter2DEXT);
init_extension_entry (library, "glGetConvolutionFilterEXT", GetConvolutionFilterEXT);
init_extension_entry (library, "glGetConvolutionParameterfvEXT", GetConvolutionParameterfvEXT);
init_extension_entry (library, "glGetConvolutionParameterivEXT", GetConvolutionParameterivEXT);
init_extension_entry (library, "glGetSeparableFilterEXT", GetSeparableFilterEXT);
init_extension_entry (library, "glSeparableFilter2DEXT", SeparableFilter2DEXT);
init_extension_entry (library, "glColorTableSGI", ColorTableSGI);
init_extension_entry (library, "glColorTableParameterfvSGI", ColorTableParameterfvSGI);
init_extension_entry (library, "glColorTableParameterivSGI", ColorTableParameterivSGI);
init_extension_entry (library, "glCopyColorTableSGI", CopyColorTableSGI);
init_extension_entry (library, "glGetColorTableSGI", GetColorTableSGI);
init_extension_entry (library, "glGetColorTableParameterfvSGI", GetColorTableParameterfvSGI);
init_extension_entry (library, "glGetColorTableParameterivSGI", GetColorTableParameterivSGI);
init_extension_entry (library, "glPixelTexGenSGIX", PixelTexGenSGIX);
init_extension_entry (library, "glPixelTexGenParameteriSGIS", PixelTexGenParameteriSGIS);
init_extension_entry (library, "glPixelTexGenParameterivSGIS", PixelTexGenParameterivSGIS);
init_extension_entry (library, "glPixelTexGenParameterfSGIS", PixelTexGenParameterfSGIS);
init_extension_entry (library, "glPixelTexGenParameterfvSGIS", PixelTexGenParameterfvSGIS);
init_extension_entry (library, "glGetPixelTexGenParameterivSGIS", GetPixelTexGenParameterivSGIS);
init_extension_entry (library, "glGetPixelTexGenParameterfvSGIS", GetPixelTexGenParameterfvSGIS);
init_extension_entry (library, "glTexImage4DSGIS", TexImage4DSGIS);
init_extension_entry (library, "glTexSubImage4DSGIS", TexSubImage4DSGIS);
init_extension_entry (library, "glAreTexturesResidentEXT", AreTexturesResidentEXT);
init_extension_entry (library, "glBindTextureEXT", BindTextureEXT);
init_extension_entry (library, "glDeleteTexturesEXT", DeleteTexturesEXT);
init_extension_entry (library, "glGenTexturesEXT", GenTexturesEXT);
init_extension_entry (library, "glIsTextureEXT", IsTextureEXT);
init_extension_entry (library, "glPrioritizeTexturesEXT", PrioritizeTexturesEXT);
init_extension_entry (library, "glDetailTexFuncSGIS", DetailTexFuncSGIS);
init_extension_entry (library, "glGetDetailTexFuncSGIS", GetDetailTexFuncSGIS);
init_extension_entry (library, "glSharpenTexFuncSGIS", SharpenTexFuncSGIS);
init_extension_entry (library, "glGetSharpenTexFuncSGIS", GetSharpenTexFuncSGIS);
init_extension_entry (library, "glSampleMaskSGIS", SampleMaskSGIS);
init_extension_entry (library, "glSamplePatternSGIS", SamplePatternSGIS);
init_extension_entry (library, "glArrayElementEXT", ArrayElementEXT);
init_extension_entry (library, "glColorPointerEXT", ColorPointerEXT);
init_extension_entry (library, "glDrawArraysEXT", DrawArraysEXT);
init_extension_entry (library, "glEdgeFlagPointerEXT", EdgeFlagPointerEXT);
init_extension_entry (library, "glGetPointervEXT", GetPointervEXT);
init_extension_entry (library, "glIndexPointerEXT", IndexPointerEXT);
init_extension_entry (library, "glNormalPointerEXT", NormalPointerEXT);
init_extension_entry (library, "glTexCoordPointerEXT", TexCoordPointerEXT);
init_extension_entry (library, "glVertexPointerEXT", VertexPointerEXT);
init_extension_entry (library, "glBlendEquationEXT", BlendEquationEXT);
init_extension_entry (library, "glSpriteParameterfSGIX", SpriteParameterfSGIX);
init_extension_entry (library, "glSpriteParameterfvSGIX", SpriteParameterfvSGIX);
init_extension_entry (library, "glSpriteParameteriSGIX", SpriteParameteriSGIX);
init_extension_entry (library, "glSpriteParameterivSGIX", SpriteParameterivSGIX);
init_extension_entry (library, "glPointParameterfEXT", PointParameterfEXT);
init_extension_entry (library, "glPointParameterfvEXT", PointParameterfvEXT);
init_extension_entry (library, "glPointParameterfSGIS", PointParameterfSGIS);
init_extension_entry (library, "glPointParameterfvSGIS", PointParameterfvSGIS);
init_extension_entry (library, "glGetInstrumentsSGIX", GetInstrumentsSGIX);
init_extension_entry (library, "glInstrumentsBufferSGIX", InstrumentsBufferSGIX);
init_extension_entry (library, "glPollInstrumentsSGIX", PollInstrumentsSGIX);
init_extension_entry (library, "glReadInstrumentsSGIX", ReadInstrumentsSGIX);
init_extension_entry (library, "glStartInstrumentsSGIX", StartInstrumentsSGIX);
init_extension_entry (library, "glStopInstrumentsSGIX", StopInstrumentsSGIX);
init_extension_entry (library, "glFrameZoomSGIX", FrameZoomSGIX);
init_extension_entry (library, "glTagSampleBufferSGIX", TagSampleBufferSGIX);
init_extension_entry (library, "glDeformationMap3dSGIX", DeformationMap3dSGIX);
init_extension_entry (library, "glDeformationMap3fSGIX", DeformationMap3fSGIX);
init_extension_entry (library, "glDeformSGIX", DeformSGIX);
init_extension_entry (library, "glLoadIdentityDeformationMapSGIX", LoadIdentityDeformationMapSGIX);
init_extension_entry (library, "glReferencePlaneSGIX", ReferencePlaneSGIX);
init_extension_entry (library, "glFlushRasterSGIX", FlushRasterSGIX);
init_extension_entry (library, "glFogFuncSGIS", FogFuncSGIS);
init_extension_entry (library, "glGetFogFuncSGIS", GetFogFuncSGIS);
init_extension_entry (library, "glImageTransformParameteriHP", ImageTransformParameteriHP);
init_extension_entry (library, "glImageTransformParameterfHP", ImageTransformParameterfHP);
init_extension_entry (library, "glImageTransformParameterivHP", ImageTransformParameterivHP);
init_extension_entry (library, "glImageTransformParameterfvHP", ImageTransformParameterfvHP);
init_extension_entry (library, "glGetImageTransformParameterivHP", GetImageTransformParameterivHP);
init_extension_entry (library, "glGetImageTransformParameterfvHP", GetImageTransformParameterfvHP);
init_extension_entry (library, "glColorSubTableEXT", ColorSubTableEXT);
init_extension_entry (library, "glCopyColorSubTableEXT", CopyColorSubTableEXT);
init_extension_entry (library, "glHintPGI", HintPGI);
init_extension_entry (library, "glColorTableEXT", ColorTableEXT);
init_extension_entry (library, "glGetColorTableEXT", GetColorTableEXT);
init_extension_entry (library, "glGetColorTableParameterivEXT", GetColorTableParameterivEXT);
init_extension_entry (library, "glGetColorTableParameterfvEXT", GetColorTableParameterfvEXT);
init_extension_entry (library, "glGetListParameterfvSGIX", GetListParameterfvSGIX);
init_extension_entry (library, "glGetListParameterivSGIX", GetListParameterivSGIX);
init_extension_entry (library, "glListParameterfSGIX", ListParameterfSGIX);
init_extension_entry (library, "glListParameterfvSGIX", ListParameterfvSGIX);
init_extension_entry (library, "glListParameteriSGIX", ListParameteriSGIX);
init_extension_entry (library, "glListParameterivSGIX", ListParameterivSGIX);
init_extension_entry (library, "glIndexMaterialEXT", IndexMaterialEXT);
init_extension_entry (library, "glIndexFuncEXT", IndexFuncEXT);
init_extension_entry (library, "glLockArraysEXT", LockArraysEXT);
init_extension_entry (library, "glUnlockArraysEXT", UnlockArraysEXT);
init_extension_entry (library, "glCullParameterdvEXT", CullParameterdvEXT);
init_extension_entry (library, "glCullParameterfvEXT", CullParameterfvEXT);
init_extension_entry (library, "glFragmentColorMaterialSGIX", FragmentColorMaterialSGIX);
init_extension_entry (library, "glFragmentLightfSGIX", FragmentLightfSGIX);
init_extension_entry (library, "glFragmentLightfvSGIX", FragmentLightfvSGIX);
init_extension_entry (library, "glFragmentLightiSGIX", FragmentLightiSGIX);
init_extension_entry (library, "glFragmentLightivSGIX", FragmentLightivSGIX);
init_extension_entry (library, "glFragmentLightModelfSGIX", FragmentLightModelfSGIX);
init_extension_entry (library, "glFragmentLightModelfvSGIX", FragmentLightModelfvSGIX);
init_extension_entry (library, "glFragmentLightModeliSGIX", FragmentLightModeliSGIX);
init_extension_entry (library, "glFragmentLightModelivSGIX", FragmentLightModelivSGIX);
init_extension_entry (library, "glFragmentMaterialfSGIX", FragmentMaterialfSGIX);
init_extension_entry (library, "glFragmentMaterialfvSGIX", FragmentMaterialfvSGIX);
init_extension_entry (library, "glFragmentMaterialiSGIX", FragmentMaterialiSGIX);
init_extension_entry (library, "glFragmentMaterialivSGIX", FragmentMaterialivSGIX);
init_extension_entry (library, "glGetFragmentLightfvSGIX", GetFragmentLightfvSGIX);
init_extension_entry (library, "glGetFragmentLightivSGIX", GetFragmentLightivSGIX);
init_extension_entry (library, "glGetFragmentMaterialfvSGIX", GetFragmentMaterialfvSGIX);
init_extension_entry (library, "glGetFragmentMaterialivSGIX", GetFragmentMaterialivSGIX);
init_extension_entry (library, "glLightEnviSGIX", LightEnviSGIX);
init_extension_entry (library, "glDrawRangeElementsEXT", DrawRangeElementsEXT);
init_extension_entry (library, "glApplyTextureEXT", ApplyTextureEXT);
init_extension_entry (library, "glTextureLightEXT", TextureLightEXT);
init_extension_entry (library, "glTextureMaterialEXT", TextureMaterialEXT);
init_extension_entry (library, "glAsyncMarkerSGIX", AsyncMarkerSGIX);
init_extension_entry (library, "glFinishAsyncSGIX", FinishAsyncSGIX);
init_extension_entry (library, "glPollAsyncSGIX", PollAsyncSGIX);
init_extension_entry (library, "glGenAsyncMarkersSGIX", GenAsyncMarkersSGIX);
init_extension_entry (library, "glDeleteAsyncMarkersSGIX", DeleteAsyncMarkersSGIX);
init_extension_entry (library, "glIsAsyncMarkerSGIX", IsAsyncMarkerSGIX);
init_extension_entry (library, "glVertexPointervINTEL", VertexPointervINTEL);
init_extension_entry (library, "glNormalPointervINTEL", NormalPointervINTEL);
init_extension_entry (library, "glColorPointervINTEL", ColorPointervINTEL);
init_extension_entry (library, "glTexCoordPointervINTEL", TexCoordPointervINTEL);
init_extension_entry (library, "glPixelTransformParameteriEXT", PixelTransformParameteriEXT);
init_extension_entry (library, "glPixelTransformParameterfEXT", PixelTransformParameterfEXT);
init_extension_entry (library, "glPixelTransformParameterivEXT", PixelTransformParameterivEXT);
init_extension_entry (library, "glPixelTransformParameterfvEXT", PixelTransformParameterfvEXT);
init_extension_entry (library, "glGetPixelTransformParameterivEXT", GetPixelTransformParameterivEXT);
init_extension_entry (library, "glGetPixelTransformParameterfvEXT", GetPixelTransformParameterfvEXT);
init_extension_entry (library, "glSecondaryColor3bEXT", SecondaryColor3bEXT);
init_extension_entry (library, "glSecondaryColor3bvEXT", SecondaryColor3bvEXT);
init_extension_entry (library, "glSecondaryColor3dEXT", SecondaryColor3dEXT);
init_extension_entry (library, "glSecondaryColor3dvEXT", SecondaryColor3dvEXT);
init_extension_entry (library, "glSecondaryColor3fEXT", SecondaryColor3fEXT);
init_extension_entry (library, "glSecondaryColor3fvEXT", SecondaryColor3fvEXT);
init_extension_entry (library, "glSecondaryColor3iEXT", SecondaryColor3iEXT);
init_extension_entry (library, "glSecondaryColor3ivEXT", SecondaryColor3ivEXT);
init_extension_entry (library, "glSecondaryColor3sEXT", SecondaryColor3sEXT);
init_extension_entry (library, "glSecondaryColor3svEXT", SecondaryColor3svEXT);
init_extension_entry (library, "glSecondaryColor3ubEXT", SecondaryColor3ubEXT);
init_extension_entry (library, "glSecondaryColor3ubvEXT", SecondaryColor3ubvEXT);
init_extension_entry (library, "glSecondaryColor3uiEXT", SecondaryColor3uiEXT);
init_extension_entry (library, "glSecondaryColor3uivEXT", SecondaryColor3uivEXT);
init_extension_entry (library, "glSecondaryColor3usEXT", SecondaryColor3usEXT);
init_extension_entry (library, "glSecondaryColor3usvEXT", SecondaryColor3usvEXT);
init_extension_entry (library, "glSecondaryColorPointerEXT", SecondaryColorPointerEXT);
init_extension_entry (library, "glTextureNormalEXT", TextureNormalEXT);
init_extension_entry (library, "glMultiDrawArraysEXT", MultiDrawArraysEXT);
init_extension_entry (library, "glMultiDrawElementsEXT", MultiDrawElementsEXT);
init_extension_entry (library, "glFogCoordfEXT", FogCoordfEXT);
init_extension_entry (library, "glFogCoordfvEXT", FogCoordfvEXT);
init_extension_entry (library, "glFogCoorddEXT", FogCoorddEXT);
init_extension_entry (library, "glFogCoorddvEXT", FogCoorddvEXT);
init_extension_entry (library, "glFogCoordPointerEXT", FogCoordPointerEXT);
init_extension_entry (library, "glTangent3bEXT", Tangent3bEXT);
init_extension_entry (library, "glTangent3bvEXT", Tangent3bvEXT);
init_extension_entry (library, "glTangent3dEXT", Tangent3dEXT);
init_extension_entry (library, "glTangent3dvEXT", Tangent3dvEXT);
init_extension_entry (library, "glTangent3fEXT", Tangent3fEXT);
init_extension_entry (library, "glTangent3fvEXT", Tangent3fvEXT);
init_extension_entry (library, "glTangent3iEXT", Tangent3iEXT);
init_extension_entry (library, "glTangent3ivEXT", Tangent3ivEXT);
init_extension_entry (library, "glTangent3sEXT", Tangent3sEXT);
init_extension_entry (library, "glTangent3svEXT", Tangent3svEXT);
init_extension_entry (library, "glBinormal3bEXT", Binormal3bEXT);
init_extension_entry (library, "glBinormal3bvEXT", Binormal3bvEXT);
init_extension_entry (library, "glBinormal3dEXT", Binormal3dEXT);
init_extension_entry (library, "glBinormal3dvEXT", Binormal3dvEXT);
init_extension_entry (library, "glBinormal3fEXT", Binormal3fEXT);
init_extension_entry (library, "glBinormal3fvEXT", Binormal3fvEXT);
init_extension_entry (library, "glBinormal3iEXT", Binormal3iEXT);
init_extension_entry (library, "glBinormal3ivEXT", Binormal3ivEXT);
init_extension_entry (library, "glBinormal3sEXT", Binormal3sEXT);
init_extension_entry (library, "glBinormal3svEXT", Binormal3svEXT);
init_extension_entry (library, "glTangentPointerEXT", TangentPointerEXT);
init_extension_entry (library, "glBinormalPointerEXT", BinormalPointerEXT);
init_extension_entry (library, "glFinishTextureSUNX", FinishTextureSUNX);
init_extension_entry (library, "glGlobalAlphaFactorbSUN", GlobalAlphaFactorbSUN);
init_extension_entry (library, "glGlobalAlphaFactorsSUN", GlobalAlphaFactorsSUN);
init_extension_entry (library, "glGlobalAlphaFactoriSUN", GlobalAlphaFactoriSUN);
init_extension_entry (library, "glGlobalAlphaFactorfSUN", GlobalAlphaFactorfSUN);
init_extension_entry (library, "glGlobalAlphaFactordSUN", GlobalAlphaFactordSUN);
init_extension_entry (library, "glGlobalAlphaFactorubSUN", GlobalAlphaFactorubSUN);
init_extension_entry (library, "glGlobalAlphaFactorusSUN", GlobalAlphaFactorusSUN);
init_extension_entry (library, "glGlobalAlphaFactoruiSUN", GlobalAlphaFactoruiSUN);
init_extension_entry (library, "glReplacementCodeuiSUN", ReplacementCodeuiSUN);
init_extension_entry (library, "glReplacementCodeusSUN", ReplacementCodeusSUN);
init_extension_entry (library, "glReplacementCodeubSUN", ReplacementCodeubSUN);
init_extension_entry (library, "glReplacementCodeuivSUN", ReplacementCodeuivSUN);
init_extension_entry (library, "glReplacementCodeusvSUN", ReplacementCodeusvSUN);
init_extension_entry (library, "glReplacementCodeubvSUN", ReplacementCodeubvSUN);
init_extension_entry (library, "glReplacementCodePointerSUN", ReplacementCodePointerSUN);
init_extension_entry (library, "glColor4ubVertex2fSUN", Color4ubVertex2fSUN);
init_extension_entry (library, "glColor4ubVertex2fvSUN", Color4ubVertex2fvSUN);
init_extension_entry (library, "glColor4ubVertex3fSUN", Color4ubVertex3fSUN);
init_extension_entry (library, "glColor4ubVertex3fvSUN", Color4ubVertex3fvSUN);
init_extension_entry (library, "glColor3fVertex3fSUN", Color3fVertex3fSUN);
init_extension_entry (library, "glColor3fVertex3fvSUN", Color3fVertex3fvSUN);
init_extension_entry (library, "glNormal3fVertex3fSUN", Normal3fVertex3fSUN);
init_extension_entry (library, "glNormal3fVertex3fvSUN", Normal3fVertex3fvSUN);
init_extension_entry (library, "glColor4fNormal3fVertex3fSUN", Color4fNormal3fVertex3fSUN);
init_extension_entry (library, "glColor4fNormal3fVertex3fvSUN", Color4fNormal3fVertex3fvSUN);
init_extension_entry (library, "glTexCoord2fVertex3fSUN", TexCoord2fVertex3fSUN);
init_extension_entry (library, "glTexCoord2fVertex3fvSUN", TexCoord2fVertex3fvSUN);
init_extension_entry (library, "glTexCoord4fVertex4fSUN", TexCoord4fVertex4fSUN);
init_extension_entry (library, "glTexCoord4fVertex4fvSUN", TexCoord4fVertex4fvSUN);
init_extension_entry (library, "glTexCoord2fColor4ubVertex3fSUN", TexCoord2fColor4ubVertex3fSUN);
init_extension_entry (library, "glTexCoord2fColor4ubVertex3fvSUN", TexCoord2fColor4ubVertex3fvSUN);
init_extension_entry (library, "glTexCoord2fColor3fVertex3fSUN", TexCoord2fColor3fVertex3fSUN);
init_extension_entry (library, "glTexCoord2fColor3fVertex3fvSUN", TexCoord2fColor3fVertex3fvSUN);
init_extension_entry (library, "glTexCoord2fNormal3fVertex3fSUN", TexCoord2fNormal3fVertex3fSUN);
init_extension_entry (library, "glTexCoord2fNormal3fVertex3fvSUN", TexCoord2fNormal3fVertex3fvSUN);
init_extension_entry (library, "glTexCoord2fColor4fNormal3fVertex3fSUN", TexCoord2fColor4fNormal3fVertex3fSUN);
init_extension_entry (library, "glTexCoord2fColor4fNormal3fVertex3fvSUN", TexCoord2fColor4fNormal3fVertex3fvSUN);
init_extension_entry (library, "glTexCoord4fColor4fNormal3fVertex4fSUN", TexCoord4fColor4fNormal3fVertex4fSUN);
init_extension_entry (library, "glTexCoord4fColor4fNormal3fVertex4fvSUN", TexCoord4fColor4fNormal3fVertex4fvSUN);
init_extension_entry (library, "glReplacementCodeuiVertex3fSUN", ReplacementCodeuiVertex3fSUN);
init_extension_entry (library, "glReplacementCodeuiVertex3fvSUN", ReplacementCodeuiVertex3fvSUN);
init_extension_entry (library, "glReplacementCodeuiColor4ubVertex3fSUN", ReplacementCodeuiColor4ubVertex3fSUN);
init_extension_entry (library, "glReplacementCodeuiColor4ubVertex3fvSUN", ReplacementCodeuiColor4ubVertex3fvSUN);
init_extension_entry (library, "glReplacementCodeuiColor3fVertex3fSUN", ReplacementCodeuiColor3fVertex3fSUN);
init_extension_entry (library, "glReplacementCodeuiColor3fVertex3fvSUN", ReplacementCodeuiColor3fVertex3fvSUN);
init_extension_entry (library, "glReplacementCodeuiNormal3fVertex3fSUN", ReplacementCodeuiNormal3fVertex3fSUN);
init_extension_entry (library, "glReplacementCodeuiNormal3fVertex3fvSUN", ReplacementCodeuiNormal3fVertex3fvSUN);
init_extension_entry (library, "glReplacementCodeuiColor4fNormal3fVertex3fSUN", ReplacementCodeuiColor4fNormal3fVertex3fSUN);
init_extension_entry (library, "glReplacementCodeuiColor4fNormal3fVertex3fvSUN", ReplacementCodeuiColor4fNormal3fVertex3fvSUN);
init_extension_entry (library, "glReplacementCodeuiTexCoord2fVertex3fSUN", ReplacementCodeuiTexCoord2fVertex3fSUN);
init_extension_entry (library, "glReplacementCodeuiTexCoord2fVertex3fvSUN", ReplacementCodeuiTexCoord2fVertex3fvSUN);
init_extension_entry (library, "glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN", ReplacementCodeuiTexCoord2fNormal3fVertex3fSUN);
init_extension_entry (library, "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN", ReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN);
init_extension_entry (library, "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN", ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN);
init_extension_entry (library, "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN", ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN);
init_extension_entry (library, "glBlendFuncSeparateEXT", BlendFuncSeparateEXT);
init_extension_entry (library, "glBlendFuncSeparateINGR", BlendFuncSeparateINGR);
init_extension_entry (library, "glVertexWeightfEXT", VertexWeightfEXT);
init_extension_entry (library, "glVertexWeightfvEXT", VertexWeightfvEXT);
init_extension_entry (library, "glVertexWeightPointerEXT", VertexWeightPointerEXT);
init_extension_entry (library, "glFlushVertexArrayRangeNV", FlushVertexArrayRangeNV);
init_extension_entry (library, "glVertexArrayRangeNV", VertexArrayRangeNV);
init_extension_entry (library, "glCombinerParameterfvNV", CombinerParameterfvNV);
init_extension_entry (library, "glCombinerParameterfNV", CombinerParameterfNV);
init_extension_entry (library, "glCombinerParameterivNV", CombinerParameterivNV);
init_extension_entry (library, "glCombinerParameteriNV", CombinerParameteriNV);
init_extension_entry (library, "glCombinerInputNV", CombinerInputNV);
init_extension_entry (library, "glCombinerOutputNV", CombinerOutputNV);
init_extension_entry (library, "glFinalCombinerInputNV", FinalCombinerInputNV);
init_extension_entry (library, "glGetCombinerInputParameterfvNV", GetCombinerInputParameterfvNV);
init_extension_entry (library, "glGetCombinerInputParameterivNV", GetCombinerInputParameterivNV);
init_extension_entry (library, "glGetCombinerOutputParameterfvNV", GetCombinerOutputParameterfvNV);
init_extension_entry (library, "glGetCombinerOutputParameterivNV", GetCombinerOutputParameterivNV);
init_extension_entry (library, "glGetFinalCombinerInputParameterfvNV", GetFinalCombinerInputParameterfvNV);
init_extension_entry (library, "glGetFinalCombinerInputParameterivNV", GetFinalCombinerInputParameterivNV);
init_extension_entry (library, "glResizeBuffersMESA", ResizeBuffersMESA);
init_extension_entry (library, "glWindowPos2dMESA", WindowPos2dMESA);
init_extension_entry (library, "glWindowPos2dvMESA", WindowPos2dvMESA);
init_extension_entry (library, "glWindowPos2fMESA", WindowPos2fMESA);
init_extension_entry (library, "glWindowPos2fvMESA", WindowPos2fvMESA);
init_extension_entry (library, "glWindowPos2iMESA", WindowPos2iMESA);
init_extension_entry (library, "glWindowPos2ivMESA", WindowPos2ivMESA);
init_extension_entry (library, "glWindowPos2sMESA", WindowPos2sMESA);
init_extension_entry (library, "glWindowPos2svMESA", WindowPos2svMESA);
init_extension_entry (library, "glWindowPos3dMESA", WindowPos3dMESA);
init_extension_entry (library, "glWindowPos3dvMESA", WindowPos3dvMESA);
init_extension_entry (library, "glWindowPos3fMESA", WindowPos3fMESA);
init_extension_entry (library, "glWindowPos3fvMESA", WindowPos3fvMESA);
init_extension_entry (library, "glWindowPos3iMESA", WindowPos3iMESA);
init_extension_entry (library, "glWindowPos3ivMESA", WindowPos3ivMESA);
init_extension_entry (library, "glWindowPos3sMESA", WindowPos3sMESA);
init_extension_entry (library, "glWindowPos3svMESA", WindowPos3svMESA);
init_extension_entry (library, "glWindowPos4dMESA", WindowPos4dMESA);
init_extension_entry (library, "glWindowPos4dvMESA", WindowPos4dvMESA);
init_extension_entry (library, "glWindowPos4fMESA", WindowPos4fMESA);
init_extension_entry (library, "glWindowPos4fvMESA", WindowPos4fvMESA);
init_extension_entry (library, "glWindowPos4iMESA", WindowPos4iMESA);
init_extension_entry (library, "glWindowPos4ivMESA", WindowPos4ivMESA);
init_extension_entry (library, "glWindowPos4sMESA", WindowPos4sMESA);
init_extension_entry (library, "glWindowPos4svMESA", WindowPos4svMESA);
init_extension_entry (library, "glMultiModeDrawArraysIBM", MultiModeDrawArraysIBM);
init_extension_entry (library, "glMultiModeDrawElementsIBM", MultiModeDrawElementsIBM);
init_extension_entry (library, "glColorPointerListIBM", ColorPointerListIBM);
init_extension_entry (library, "glSecondaryColorPointerListIBM", SecondaryColorPointerListIBM);
init_extension_entry (library, "glEdgeFlagPointerListIBM", EdgeFlagPointerListIBM);
init_extension_entry (library, "glFogCoordPointerListIBM", FogCoordPointerListIBM);
init_extension_entry (library, "glIndexPointerListIBM", IndexPointerListIBM);
init_extension_entry (library, "glNormalPointerListIBM", NormalPointerListIBM);
init_extension_entry (library, "glTexCoordPointerListIBM", TexCoordPointerListIBM);
init_extension_entry (library, "glVertexPointerListIBM", VertexPointerListIBM);
init_extension_entry (library, "glTbufferMask3DFX", TbufferMask3DFX);
init_extension_entry (library, "glSampleMaskEXT", SampleMaskEXT);
init_extension_entry (library, "glSamplePatternEXT", SamplePatternEXT);
init_extension_entry (library, "glTextureColorMaskSGIS", TextureColorMaskSGIS);
init_extension_entry (library, "glIglooInterfaceSGIX", IglooInterfaceSGIX);
init_extension_entry (library, "glDeleteFencesNV", DeleteFencesNV);
init_extension_entry (library, "glGenFencesNV", GenFencesNV);
init_extension_entry (library, "glIsFenceNV", IsFenceNV);
init_extension_entry (library, "glTestFenceNV", TestFenceNV);
init_extension_entry (library, "glGetFenceivNV", GetFenceivNV);
init_extension_entry (library, "glFinishFenceNV", FinishFenceNV);
init_extension_entry (library, "glSetFenceNV", SetFenceNV);
init_extension_entry (library, "glMapControlPointsNV", MapControlPointsNV);
init_extension_entry (library, "glMapParameterivNV", MapParameterivNV);
init_extension_entry (library, "glMapParameterfvNV", MapParameterfvNV);
init_extension_entry (library, "glGetMapControlPointsNV", GetMapControlPointsNV);
init_extension_entry (library, "glGetMapParameterivNV", GetMapParameterivNV);
init_extension_entry (library, "glGetMapParameterfvNV", GetMapParameterfvNV);
init_extension_entry (library, "glGetMapAttribParameterivNV", GetMapAttribParameterivNV);
init_extension_entry (library, "glGetMapAttribParameterfvNV", GetMapAttribParameterfvNV);
init_extension_entry (library, "glEvalMapsNV", EvalMapsNV);
init_extension_entry (library, "glCombinerStageParameterfvNV", CombinerStageParameterfvNV);
init_extension_entry (library, "glGetCombinerStageParameterfvNV", GetCombinerStageParameterfvNV);
init_extension_entry (library, "glAreProgramsResidentNV", AreProgramsResidentNV);
init_extension_entry (library, "glBindProgramNV", BindProgramNV);
init_extension_entry (library, "glDeleteProgramsNV", DeleteProgramsNV);
init_extension_entry (library, "glExecuteProgramNV", ExecuteProgramNV);
init_extension_entry (library, "glGenProgramsNV", GenProgramsNV);
init_extension_entry (library, "glGetProgramParameterdvNV", GetProgramParameterdvNV);
init_extension_entry (library, "glGetProgramParameterfvNV", GetProgramParameterfvNV);
init_extension_entry (library, "glGetProgramivNV", GetProgramivNV);
init_extension_entry (library, "glGetProgramStringNV", GetProgramStringNV);
init_extension_entry (library, "glGetTrackMatrixivNV", GetTrackMatrixivNV);
init_extension_entry (library, "glGetVertexAttribdvNV", GetVertexAttribdvNV);
init_extension_entry (library, "glGetVertexAttribfvNV", GetVertexAttribfvNV);
init_extension_entry (library, "glGetVertexAttribivNV", GetVertexAttribivNV);
init_extension_entry (library, "glGetVertexAttribPointervNV", GetVertexAttribPointervNV);
init_extension_entry (library, "glIsProgramNV", IsProgramNV);
init_extension_entry (library, "glLoadProgramNV", LoadProgramNV);
init_extension_entry (library, "glProgramParameter4dNV", ProgramParameter4dNV);
init_extension_entry (library, "glProgramParameter4dvNV", ProgramParameter4dvNV);
init_extension_entry (library, "glProgramParameter4fNV", ProgramParameter4fNV);
init_extension_entry (library, "glProgramParameter4fvNV", ProgramParameter4fvNV);
init_extension_entry (library, "glProgramParameters4dvNV", ProgramParameters4dvNV);
init_extension_entry (library, "glProgramParameters4fvNV", ProgramParameters4fvNV);
init_extension_entry (library, "glRequestResidentProgramsNV", RequestResidentProgramsNV);
init_extension_entry (library, "glTrackMatrixNV", TrackMatrixNV);
init_extension_entry (library, "glVertexAttribPointerNV", VertexAttribPointerNV);
init_extension_entry (library, "glVertexAttrib1dNV", VertexAttrib1dNV);
init_extension_entry (library, "glVertexAttrib1dvNV", VertexAttrib1dvNV);
init_extension_entry (library, "glVertexAttrib1fNV", VertexAttrib1fNV);
init_extension_entry (library, "glVertexAttrib1fvNV", VertexAttrib1fvNV);
init_extension_entry (library, "glVertexAttrib1sNV", VertexAttrib1sNV);
init_extension_entry (library, "glVertexAttrib1svNV", VertexAttrib1svNV);
init_extension_entry (library, "glVertexAttrib2dNV", VertexAttrib2dNV);
init_extension_entry (library, "glVertexAttrib2dvNV", VertexAttrib2dvNV);
init_extension_entry (library, "glVertexAttrib2fNV", VertexAttrib2fNV);
init_extension_entry (library, "glVertexAttrib2fvNV", VertexAttrib2fvNV);
init_extension_entry (library, "glVertexAttrib2sNV", VertexAttrib2sNV);
init_extension_entry (library, "glVertexAttrib2svNV", VertexAttrib2svNV);
init_extension_entry (library, "glVertexAttrib3dNV", VertexAttrib3dNV);
init_extension_entry (library, "glVertexAttrib3dvNV", VertexAttrib3dvNV);
init_extension_entry (library, "glVertexAttrib3fNV", VertexAttrib3fNV);
init_extension_entry (library, "glVertexAttrib3fvNV", VertexAttrib3fvNV);
init_extension_entry (library, "glVertexAttrib3sNV", VertexAttrib3sNV);
init_extension_entry (library, "glVertexAttrib3svNV", VertexAttrib3svNV);
init_extension_entry (library, "glVertexAttrib4dNV", VertexAttrib4dNV);
init_extension_entry (library, "glVertexAttrib4dvNV", VertexAttrib4dvNV);
init_extension_entry (library, "glVertexAttrib4fNV", VertexAttrib4fNV);
init_extension_entry (library, "glVertexAttrib4fvNV", VertexAttrib4fvNV);
init_extension_entry (library, "glVertexAttrib4sNV", VertexAttrib4sNV);
init_extension_entry (library, "glVertexAttrib4svNV", VertexAttrib4svNV);
init_extension_entry (library, "glVertexAttrib4ubNV", VertexAttrib4ubNV);
init_extension_entry (library, "glVertexAttrib4ubvNV", VertexAttrib4ubvNV);
init_extension_entry (library, "glVertexAttribs1dvNV", VertexAttribs1dvNV);
init_extension_entry (library, "glVertexAttribs1fvNV", VertexAttribs1fvNV);
init_extension_entry (library, "glVertexAttribs1svNV", VertexAttribs1svNV);
init_extension_entry (library, "glVertexAttribs2dvNV", VertexAttribs2dvNV);
init_extension_entry (library, "glVertexAttribs2fvNV", VertexAttribs2fvNV);
init_extension_entry (library, "glVertexAttribs2svNV", VertexAttribs2svNV);
init_extension_entry (library, "glVertexAttribs3dvNV", VertexAttribs3dvNV);
init_extension_entry (library, "glVertexAttribs3fvNV", VertexAttribs3fvNV);
init_extension_entry (library, "glVertexAttribs3svNV", VertexAttribs3svNV);
init_extension_entry (library, "glVertexAttribs4dvNV", VertexAttribs4dvNV);
init_extension_entry (library, "glVertexAttribs4fvNV", VertexAttribs4fvNV);
init_extension_entry (library, "glVertexAttribs4svNV", VertexAttribs4svNV);
init_extension_entry (library, "glVertexAttribs4ubvNV", VertexAttribs4ubvNV);
init_extension_entry (library, "glTexBumpParameterivATI", TexBumpParameterivATI);
init_extension_entry (library, "glTexBumpParameterfvATI", TexBumpParameterfvATI);
init_extension_entry (library, "glGetTexBumpParameterivATI", GetTexBumpParameterivATI);
init_extension_entry (library, "glGetTexBumpParameterfvATI", GetTexBumpParameterfvATI);
init_extension_entry (library, "glGenFragmentShadersATI", GenFragmentShadersATI);
init_extension_entry (library, "glBindFragmentShaderATI", BindFragmentShaderATI);
init_extension_entry (library, "glDeleteFragmentShaderATI", DeleteFragmentShaderATI);
init_extension_entry (library, "glBeginFragmentShaderATI", BeginFragmentShaderATI);
init_extension_entry (library, "glEndFragmentShaderATI", EndFragmentShaderATI);
init_extension_entry (library, "glPassTexCoordATI", PassTexCoordATI);
init_extension_entry (library, "glSampleMapATI", SampleMapATI);
init_extension_entry (library, "glColorFragmentOp1ATI", ColorFragmentOp1ATI);
init_extension_entry (library, "glColorFragmentOp2ATI", ColorFragmentOp2ATI);
init_extension_entry (library, "glColorFragmentOp3ATI", ColorFragmentOp3ATI);
init_extension_entry (library, "glAlphaFragmentOp1ATI", AlphaFragmentOp1ATI);
init_extension_entry (library, "glAlphaFragmentOp2ATI", AlphaFragmentOp2ATI);
init_extension_entry (library, "glAlphaFragmentOp3ATI", AlphaFragmentOp3ATI);
init_extension_entry (library, "glSetFragmentShaderConstantATI", SetFragmentShaderConstantATI);
init_extension_entry (library, "glPNTrianglesiATI", PNTrianglesiATI);
init_extension_entry (library, "glPNTrianglesfATI", PNTrianglesfATI);
init_extension_entry (library, "glNewObjectBufferATI", NewObjectBufferATI);
init_extension_entry (library, "glIsObjectBufferATI", IsObjectBufferATI);
init_extension_entry (library, "glUpdateObjectBufferATI", UpdateObjectBufferATI);
init_extension_entry (library, "glGetObjectBufferfvATI", GetObjectBufferfvATI);
init_extension_entry (library, "glGetObjectBufferivATI", GetObjectBufferivATI);
init_extension_entry (library, "glFreeObjectBufferATI", FreeObjectBufferATI);
init_extension_entry (library, "glArrayObjectATI", ArrayObjectATI);
init_extension_entry (library, "glGetArrayObjectfvATI", GetArrayObjectfvATI);
init_extension_entry (library, "glGetArrayObjectivATI", GetArrayObjectivATI);
init_extension_entry (library, "glVariantArrayObjectATI", VariantArrayObjectATI);
init_extension_entry (library, "glGetVariantArrayObjectfvATI", GetVariantArrayObjectfvATI);
init_extension_entry (library, "glGetVariantArrayObjectivATI", GetVariantArrayObjectivATI);
init_extension_entry (library, "glBeginVertexShaderEXT", BeginVertexShaderEXT);
init_extension_entry (library, "glEndVertexShaderEXT", EndVertexShaderEXT);
init_extension_entry (library, "glBindVertexShaderEXT", BindVertexShaderEXT);
init_extension_entry (library, "glGenVertexShadersEXT", GenVertexShadersEXT);
init_extension_entry (library, "glDeleteVertexShaderEXT", DeleteVertexShaderEXT);
init_extension_entry (library, "glShaderOp1EXT", ShaderOp1EXT);
init_extension_entry (library, "glShaderOp2EXT", ShaderOp2EXT);
init_extension_entry (library, "glShaderOp3EXT", ShaderOp3EXT);
init_extension_entry (library, "glSwizzleEXT", SwizzleEXT);
init_extension_entry (library, "glWriteMaskEXT", WriteMaskEXT);
init_extension_entry (library, "glInsertComponentEXT", InsertComponentEXT);
init_extension_entry (library, "glExtractComponentEXT", ExtractComponentEXT);
init_extension_entry (library, "glGenSymbolsEXT", GenSymbolsEXT);
init_extension_entry (library, "glSetInvariantEXT", SetInvariantEXT);
init_extension_entry (library, "glSetLocalConstantEXT", SetLocalConstantEXT);
init_extension_entry (library, "glVariantbvEXT", VariantbvEXT);
init_extension_entry (library, "glVariantsvEXT", VariantsvEXT);
init_extension_entry (library, "glVariantivEXT", VariantivEXT);
init_extension_entry (library, "glVariantfvEXT", VariantfvEXT);
init_extension_entry (library, "glVariantdvEXT", VariantdvEXT);
init_extension_entry (library, "glVariantubvEXT", VariantubvEXT);
init_extension_entry (library, "glVariantusvEXT", VariantusvEXT);
init_extension_entry (library, "glVariantuivEXT", VariantuivEXT);
init_extension_entry (library, "glVariantPointerEXT", VariantPointerEXT);
init_extension_entry (library, "glEnableVariantClientStateEXT", EnableVariantClientStateEXT);
init_extension_entry (library, "glDisableVariantClientStateEXT", DisableVariantClientStateEXT);
init_extension_entry (library, "glBindLightParameterEXT", BindLightParameterEXT);
init_extension_entry (library, "glBindMaterialParameterEXT", BindMaterialParameterEXT);
init_extension_entry (library, "glBindTexGenParameterEXT", BindTexGenParameterEXT);
init_extension_entry (library, "glBindTextureUnitParameterEXT", BindTextureUnitParameterEXT);
init_extension_entry (library, "glBindParameterEXT", BindParameterEXT);
init_extension_entry (library, "glIsVariantEnabledEXT", IsVariantEnabledEXT);
init_extension_entry (library, "glGetVariantBooleanvEXT", GetVariantBooleanvEXT);
init_extension_entry (library, "glGetVariantIntegervEXT", GetVariantIntegervEXT);
init_extension_entry (library, "glGetVariantFloatvEXT", GetVariantFloatvEXT);
init_extension_entry (library, "glGetVariantPointervEXT", GetVariantPointervEXT);
init_extension_entry (library, "glGetInvariantBooleanvEXT", GetInvariantBooleanvEXT);
init_extension_entry (library, "glGetInvariantIntegervEXT", GetInvariantIntegervEXT);
init_extension_entry (library, "glGetInvariantFloatvEXT", GetInvariantFloatvEXT);
init_extension_entry (library, "glGetLocalConstantBooleanvEXT", GetLocalConstantBooleanvEXT);
init_extension_entry (library, "glGetLocalConstantIntegervEXT", GetLocalConstantIntegervEXT);
init_extension_entry (library, "glGetLocalConstantFloatvEXT", GetLocalConstantFloatvEXT);
init_extension_entry (library, "glVertexStream1sATI", VertexStream1sATI);
init_extension_entry (library, "glVertexStream1svATI", VertexStream1svATI);
init_extension_entry (library, "glVertexStream1iATI", VertexStream1iATI);
init_extension_entry (library, "glVertexStream1ivATI", VertexStream1ivATI);
init_extension_entry (library, "glVertexStream1fATI", VertexStream1fATI);
init_extension_entry (library, "glVertexStream1fvATI", VertexStream1fvATI);
init_extension_entry (library, "glVertexStream1dATI", VertexStream1dATI);
init_extension_entry (library, "glVertexStream1dvATI", VertexStream1dvATI);
init_extension_entry (library, "glVertexStream2sATI", VertexStream2sATI);
init_extension_entry (library, "glVertexStream2svATI", VertexStream2svATI);
init_extension_entry (library, "glVertexStream2iATI", VertexStream2iATI);
init_extension_entry (library, "glVertexStream2ivATI", VertexStream2ivATI);
init_extension_entry (library, "glVertexStream2fATI", VertexStream2fATI);
init_extension_entry (library, "glVertexStream2fvATI", VertexStream2fvATI);
init_extension_entry (library, "glVertexStream2dATI", VertexStream2dATI);
init_extension_entry (library, "glVertexStream2dvATI", VertexStream2dvATI);
init_extension_entry (library, "glVertexStream3sATI", VertexStream3sATI);
init_extension_entry (library, "glVertexStream3svATI", VertexStream3svATI);
init_extension_entry (library, "glVertexStream3iATI", VertexStream3iATI);
init_extension_entry (library, "glVertexStream3ivATI", VertexStream3ivATI);
init_extension_entry (library, "glVertexStream3fATI", VertexStream3fATI);
init_extension_entry (library, "glVertexStream3fvATI", VertexStream3fvATI);
init_extension_entry (library, "glVertexStream3dATI", VertexStream3dATI);
init_extension_entry (library, "glVertexStream3dvATI", VertexStream3dvATI);
init_extension_entry (library, "glVertexStream4sATI", VertexStream4sATI);
init_extension_entry (library, "glVertexStream4svATI", VertexStream4svATI);
init_extension_entry (library, "glVertexStream4iATI", VertexStream4iATI);
init_extension_entry (library, "glVertexStream4ivATI", VertexStream4ivATI);
init_extension_entry (library, "glVertexStream4fATI", VertexStream4fATI);
init_extension_entry (library, "glVertexStream4fvATI", VertexStream4fvATI);
init_extension_entry (library, "glVertexStream4dATI", VertexStream4dATI);
init_extension_entry (library, "glVertexStream4dvATI", VertexStream4dvATI);
init_extension_entry (library, "glNormalStream3bATI", NormalStream3bATI);
init_extension_entry (library, "glNormalStream3bvATI", NormalStream3bvATI);
init_extension_entry (library, "glNormalStream3sATI", NormalStream3sATI);
init_extension_entry (library, "glNormalStream3svATI", NormalStream3svATI);
init_extension_entry (library, "glNormalStream3iATI", NormalStream3iATI);
init_extension_entry (library, "glNormalStream3ivATI", NormalStream3ivATI);
init_extension_entry (library, "glNormalStream3fATI", NormalStream3fATI);
init_extension_entry (library, "glNormalStream3fvATI", NormalStream3fvATI);
init_extension_entry (library, "glNormalStream3dATI", NormalStream3dATI);
init_extension_entry (library, "glNormalStream3dvATI", NormalStream3dvATI);
init_extension_entry (library, "glClientActiveVertexStreamATI", ClientActiveVertexStreamATI);
init_extension_entry (library, "glVertexBlendEnviATI", VertexBlendEnviATI);
init_extension_entry (library, "glVertexBlendEnvfATI", VertexBlendEnvfATI);
init_extension_entry (library, "glElementPointerATI", ElementPointerATI);
init_extension_entry (library, "glDrawElementArrayATI", DrawElementArrayATI);
init_extension_entry (library, "glDrawRangeElementArrayATI", DrawRangeElementArrayATI);
init_extension_entry (library, "glDrawMeshArraysSUN", DrawMeshArraysSUN);
init_extension_entry (library, "glGenOcclusionQueriesNV", GenOcclusionQueriesNV);
init_extension_entry (library, "glDeleteOcclusionQueriesNV", DeleteOcclusionQueriesNV);
init_extension_entry (library, "glIsOcclusionQueryNV", IsOcclusionQueryNV);
init_extension_entry (library, "glBeginOcclusionQueryNV", BeginOcclusionQueryNV);
init_extension_entry (library, "glEndOcclusionQueryNV", EndOcclusionQueryNV);
init_extension_entry (library, "glGetOcclusionQueryivNV", GetOcclusionQueryivNV);
init_extension_entry (library, "glGetOcclusionQueryuivNV", GetOcclusionQueryuivNV);
init_extension_entry (library, "glPointParameteriNV", PointParameteriNV);
init_extension_entry (library, "glPointParameterivNV", PointParameterivNV);
init_extension_entry (library, "glActiveStencilFaceEXT", ActiveStencilFaceEXT);
init_extension_entry (library, "glElementPointerAPPLE", ElementPointerAPPLE);
init_extension_entry (library, "glDrawElementArrayAPPLE", DrawElementArrayAPPLE);
init_extension_entry (library, "glDrawRangeElementArrayAPPLE", DrawRangeElementArrayAPPLE);
init_extension_entry (library, "glMultiDrawElementArrayAPPLE", MultiDrawElementArrayAPPLE);
init_extension_entry (library, "glMultiDrawRangeElementArrayAPPLE", MultiDrawRangeElementArrayAPPLE);
init_extension_entry (library, "glGenFencesAPPLE", GenFencesAPPLE);
init_extension_entry (library, "glDeleteFencesAPPLE", DeleteFencesAPPLE);
init_extension_entry (library, "glSetFenceAPPLE", SetFenceAPPLE);
init_extension_entry (library, "glIsFenceAPPLE", IsFenceAPPLE);
init_extension_entry (library, "glTestFenceAPPLE", TestFenceAPPLE);
init_extension_entry (library, "glFinishFenceAPPLE", FinishFenceAPPLE);
init_extension_entry (library, "glTestObjectAPPLE", TestObjectAPPLE);
init_extension_entry (library, "glFinishObjectAPPLE", FinishObjectAPPLE);
init_extension_entry (library, "glBindVertexArrayAPPLE", BindVertexArrayAPPLE);
init_extension_entry (library, "glDeleteVertexArraysAPPLE", DeleteVertexArraysAPPLE);
init_extension_entry (library, "glGenVertexArraysAPPLE", GenVertexArraysAPPLE);
init_extension_entry (library, "glIsVertexArrayAPPLE", IsVertexArrayAPPLE);
init_extension_entry (library, "glVertexArrayRangeAPPLE", VertexArrayRangeAPPLE);
init_extension_entry (library, "glFlushVertexArrayRangeAPPLE", FlushVertexArrayRangeAPPLE);
init_extension_entry (library, "glVertexArrayParameteriAPPLE", VertexArrayParameteriAPPLE);
init_extension_entry (library, "glDrawBuffersATI", DrawBuffersATI);
init_extension_entry (library, "glProgramNamedParameter4fNV", ProgramNamedParameter4fNV);
init_extension_entry (library, "glProgramNamedParameter4dNV", ProgramNamedParameter4dNV);
init_extension_entry (library, "glProgramNamedParameter4fvNV", ProgramNamedParameter4fvNV);
init_extension_entry (library, "glProgramNamedParameter4dvNV", ProgramNamedParameter4dvNV);
init_extension_entry (library, "glGetProgramNamedParameterfvNV", GetProgramNamedParameterfvNV);
init_extension_entry (library, "glGetProgramNamedParameterdvNV", GetProgramNamedParameterdvNV);
init_extension_entry (library, "glVertex2hNV", Vertex2hNV);
init_extension_entry (library, "glVertex2hvNV", Vertex2hvNV);
init_extension_entry (library, "glVertex3hNV", Vertex3hNV);
init_extension_entry (library, "glVertex3hvNV", Vertex3hvNV);
init_extension_entry (library, "glVertex4hNV", Vertex4hNV);
init_extension_entry (library, "glVertex4hvNV", Vertex4hvNV);
init_extension_entry (library, "glNormal3hNV", Normal3hNV);
init_extension_entry (library, "glNormal3hvNV", Normal3hvNV);
init_extension_entry (library, "glColor3hNV", Color3hNV);
init_extension_entry (library, "glColor3hvNV", Color3hvNV);
init_extension_entry (library, "glColor4hNV", Color4hNV);
init_extension_entry (library, "glColor4hvNV", Color4hvNV);
init_extension_entry (library, "glTexCoord1hNV", TexCoord1hNV);
init_extension_entry (library, "glTexCoord1hvNV", TexCoord1hvNV);
init_extension_entry (library, "glTexCoord2hNV", TexCoord2hNV);
init_extension_entry (library, "glTexCoord2hvNV", TexCoord2hvNV);
init_extension_entry (library, "glTexCoord3hNV", TexCoord3hNV);
init_extension_entry (library, "glTexCoord3hvNV", TexCoord3hvNV);
init_extension_entry (library, "glTexCoord4hNV", TexCoord4hNV);
init_extension_entry (library, "glTexCoord4hvNV", TexCoord4hvNV);
init_extension_entry (library, "glMultiTexCoord1hNV", MultiTexCoord1hNV);
init_extension_entry (library, "glMultiTexCoord1hvNV", MultiTexCoord1hvNV);
init_extension_entry (library, "glMultiTexCoord2hNV", MultiTexCoord2hNV);
init_extension_entry (library, "glMultiTexCoord2hvNV", MultiTexCoord2hvNV);
init_extension_entry (library, "glMultiTexCoord3hNV", MultiTexCoord3hNV);
init_extension_entry (library, "glMultiTexCoord3hvNV", MultiTexCoord3hvNV);
init_extension_entry (library, "glMultiTexCoord4hNV", MultiTexCoord4hNV);
init_extension_entry (library, "glMultiTexCoord4hvNV", MultiTexCoord4hvNV);
init_extension_entry (library, "glFogCoordhNV", FogCoordhNV);
init_extension_entry (library, "glFogCoordhvNV", FogCoordhvNV);
init_extension_entry (library, "glSecondaryColor3hNV", SecondaryColor3hNV);
init_extension_entry (library, "glSecondaryColor3hvNV", SecondaryColor3hvNV);
init_extension_entry (library, "glVertexWeighthNV", VertexWeighthNV);
init_extension_entry (library, "glVertexWeighthvNV", VertexWeighthvNV);
init_extension_entry (library, "glVertexAttrib1hNV", VertexAttrib1hNV);
init_extension_entry (library, "glVertexAttrib1hvNV", VertexAttrib1hvNV);
init_extension_entry (library, "glVertexAttrib2hNV", VertexAttrib2hNV);
init_extension_entry (library, "glVertexAttrib2hvNV", VertexAttrib2hvNV);
init_extension_entry (library, "glVertexAttrib3hNV", VertexAttrib3hNV);
init_extension_entry (library, "glVertexAttrib3hvNV", VertexAttrib3hvNV);
init_extension_entry (library, "glVertexAttrib4hNV", VertexAttrib4hNV);
init_extension_entry (library, "glVertexAttrib4hvNV", VertexAttrib4hvNV);
init_extension_entry (library, "glVertexAttribs1hvNV", VertexAttribs1hvNV);
init_extension_entry (library, "glVertexAttribs2hvNV", VertexAttribs2hvNV);
init_extension_entry (library, "glVertexAttribs3hvNV", VertexAttribs3hvNV);
init_extension_entry (library, "glVertexAttribs4hvNV", VertexAttribs4hvNV);
init_extension_entry (library, "glPixelDataRangeNV", PixelDataRangeNV);
init_extension_entry (library, "glFlushPixelDataRangeNV", FlushPixelDataRangeNV);
init_extension_entry (library, "glPrimitiveRestartNV", PrimitiveRestartNV);
init_extension_entry (library, "glPrimitiveRestartIndexNV", PrimitiveRestartIndexNV);
init_extension_entry (library, "glMapObjectBufferATI", MapObjectBufferATI);
init_extension_entry (library, "glUnmapObjectBufferATI", UnmapObjectBufferATI);
init_extension_entry (library, "glStencilOpSeparateATI", StencilOpSeparateATI);
init_extension_entry (library, "glStencilFuncSeparateATI", StencilFuncSeparateATI);
init_extension_entry (library, "glVertexAttribArrayObjectATI", VertexAttribArrayObjectATI);
init_extension_entry (library, "glGetVertexAttribArrayObjectfvATI", GetVertexAttribArrayObjectfvATI);
init_extension_entry (library, "glGetVertexAttribArrayObjectivATI", GetVertexAttribArrayObjectivATI);
init_extension_entry (library, "glDepthBoundsEXT", DepthBoundsEXT);
init_extension_entry (library, "glBlendEquationSeparateEXT", BlendEquationSeparateEXT);
init_extension_entry (library, "glIsRenderbufferEXT", IsRenderbufferEXT);
init_extension_entry (library, "glBindRenderbufferEXT", BindRenderbufferEXT);
init_extension_entry (library, "glDeleteRenderbuffersEXT", DeleteRenderbuffersEXT);
init_extension_entry (library, "glGenRenderbuffersEXT", GenRenderbuffersEXT);
init_extension_entry (library, "glRenderbufferStorageEXT", RenderbufferStorageEXT);
init_extension_entry (library, "glGetRenderbufferParameterivEXT", GetRenderbufferParameterivEXT);
init_extension_entry (library, "glIsFramebufferEXT", IsFramebufferEXT);
init_extension_entry (library, "glBindFramebufferEXT", BindFramebufferEXT);
init_extension_entry (library, "glDeleteFramebuffersEXT", DeleteFramebuffersEXT);
init_extension_entry (library, "glGenFramebuffersEXT", GenFramebuffersEXT);
init_extension_entry (library, "glCheckFramebufferStatusEXT", CheckFramebufferStatusEXT);
init_extension_entry (library, "glFramebufferTexture1DEXT", FramebufferTexture1DEXT);
init_extension_entry (library, "glFramebufferTexture2DEXT", FramebufferTexture2DEXT);
init_extension_entry (library, "glFramebufferTexture3DEXT", FramebufferTexture3DEXT);
init_extension_entry (library, "glFramebufferRenderbufferEXT", FramebufferRenderbufferEXT);
init_extension_entry (library, "glGetFramebufferAttachmentParameterivEXT", GetFramebufferAttachmentParameterivEXT);
init_extension_entry (library, "glGenerateMipmapEXT", GenerateMipmapEXT);
init_extension_entry (library, "glStringMarkerGREMEDY", StringMarkerGREMEDY);
init_extension_entry (library, "glStencilClearTagEXT", StencilClearTagEXT);
init_extension_entry (library, "glBlitFramebufferEXT", BlitFramebufferEXT);
init_extension_entry (library, "glRenderbufferStorageMultisampleEXT", RenderbufferStorageMultisampleEXT);
init_extension_entry (library, "glGetQueryObjecti64vEXT", GetQueryObjecti64vEXT);
init_extension_entry (library, "glGetQueryObjectui64vEXT", GetQueryObjectui64vEXT);
init_extension_entry (library, "glProgramEnvParameters4fvEXT", ProgramEnvParameters4fvEXT);
init_extension_entry (library, "glProgramLocalParameters4fvEXT", ProgramLocalParameters4fvEXT);
init_extension_entry (library, "glBufferParameteriAPPLE", BufferParameteriAPPLE);
init_extension_entry (library, "glFlushMappedBufferRangeAPPLE", FlushMappedBufferRangeAPPLE);
init_extension_entry (library, "glProgramLocalParameterI4iNV", ProgramLocalParameterI4iNV);
init_extension_entry (library, "glProgramLocalParameterI4ivNV", ProgramLocalParameterI4ivNV);
init_extension_entry (library, "glProgramLocalParametersI4ivNV", ProgramLocalParametersI4ivNV);
init_extension_entry (library, "glProgramLocalParameterI4uiNV", ProgramLocalParameterI4uiNV);
init_extension_entry (library, "glProgramLocalParameterI4uivNV", ProgramLocalParameterI4uivNV);
init_extension_entry (library, "glProgramLocalParametersI4uivNV", ProgramLocalParametersI4uivNV);
init_extension_entry (library, "glProgramEnvParameterI4iNV", ProgramEnvParameterI4iNV);
init_extension_entry (library, "glProgramEnvParameterI4ivNV", ProgramEnvParameterI4ivNV);
init_extension_entry (library, "glProgramEnvParametersI4ivNV", ProgramEnvParametersI4ivNV);
init_extension_entry (library, "glProgramEnvParameterI4uiNV", ProgramEnvParameterI4uiNV);
init_extension_entry (library, "glProgramEnvParameterI4uivNV", ProgramEnvParameterI4uivNV);
init_extension_entry (library, "glProgramEnvParametersI4uivNV", ProgramEnvParametersI4uivNV);
init_extension_entry (library, "glGetProgramLocalParameterIivNV", GetProgramLocalParameterIivNV);
init_extension_entry (library, "glGetProgramLocalParameterIuivNV", GetProgramLocalParameterIuivNV);
init_extension_entry (library, "glGetProgramEnvParameterIivNV", GetProgramEnvParameterIivNV);
init_extension_entry (library, "glGetProgramEnvParameterIuivNV", GetProgramEnvParameterIuivNV);
init_extension_entry (library, "glProgramVertexLimitNV", ProgramVertexLimitNV);
init_extension_entry (library, "glFramebufferTextureEXT", FramebufferTextureEXT);
init_extension_entry (library, "glFramebufferTextureLayerEXT", FramebufferTextureLayerEXT);
init_extension_entry (library, "glFramebufferTextureFaceEXT", FramebufferTextureFaceEXT);
init_extension_entry (library, "glProgramParameteriEXT", ProgramParameteriEXT);
init_extension_entry (library, "glVertexAttribI1iEXT", VertexAttribI1iEXT);
init_extension_entry (library, "glVertexAttribI2iEXT", VertexAttribI2iEXT);
init_extension_entry (library, "glVertexAttribI3iEXT", VertexAttribI3iEXT);
init_extension_entry (library, "glVertexAttribI4iEXT", VertexAttribI4iEXT);
init_extension_entry (library, "glVertexAttribI1uiEXT", VertexAttribI1uiEXT);
init_extension_entry (library, "glVertexAttribI2uiEXT", VertexAttribI2uiEXT);
init_extension_entry (library, "glVertexAttribI3uiEXT", VertexAttribI3uiEXT);
init_extension_entry (library, "glVertexAttribI4uiEXT", VertexAttribI4uiEXT);
init_extension_entry (library, "glVertexAttribI1ivEXT", VertexAttribI1ivEXT);
init_extension_entry (library, "glVertexAttribI2ivEXT", VertexAttribI2ivEXT);
init_extension_entry (library, "glVertexAttribI3ivEXT", VertexAttribI3ivEXT);
init_extension_entry (library, "glVertexAttribI4ivEXT", VertexAttribI4ivEXT);
init_extension_entry (library, "glVertexAttribI1uivEXT", VertexAttribI1uivEXT);
init_extension_entry (library, "glVertexAttribI2uivEXT", VertexAttribI2uivEXT);
init_extension_entry (library, "glVertexAttribI3uivEXT", VertexAttribI3uivEXT);
init_extension_entry (library, "glVertexAttribI4uivEXT", VertexAttribI4uivEXT);
init_extension_entry (library, "glVertexAttribI4bvEXT", VertexAttribI4bvEXT);
init_extension_entry (library, "glVertexAttribI4svEXT", VertexAttribI4svEXT);
init_extension_entry (library, "glVertexAttribI4ubvEXT", VertexAttribI4ubvEXT);
init_extension_entry (library, "glVertexAttribI4usvEXT", VertexAttribI4usvEXT);
init_extension_entry (library, "glVertexAttribIPointerEXT", VertexAttribIPointerEXT);
init_extension_entry (library, "glGetVertexAttribIivEXT", GetVertexAttribIivEXT);
init_extension_entry (library, "glGetVertexAttribIuivEXT", GetVertexAttribIuivEXT);
init_extension_entry (library, "glGetUniformuivEXT", GetUniformuivEXT);
init_extension_entry (library, "glBindFragDataLocationEXT", BindFragDataLocationEXT);
init_extension_entry (library, "glGetFragDataLocationEXT", GetFragDataLocationEXT);
init_extension_entry (library, "glUniform1uiEXT", Uniform1uiEXT);
init_extension_entry (library, "glUniform2uiEXT", Uniform2uiEXT);
init_extension_entry (library, "glUniform3uiEXT", Uniform3uiEXT);
init_extension_entry (library, "glUniform4uiEXT", Uniform4uiEXT);
init_extension_entry (library, "glUniform1uivEXT", Uniform1uivEXT);
init_extension_entry (library, "glUniform2uivEXT", Uniform2uivEXT);
init_extension_entry (library, "glUniform3uivEXT", Uniform3uivEXT);
init_extension_entry (library, "glUniform4uivEXT", Uniform4uivEXT);
init_extension_entry (library, "glDrawArraysInstancedEXT", DrawArraysInstancedEXT);
init_extension_entry (library, "glDrawElementsInstancedEXT", DrawElementsInstancedEXT);
init_extension_entry (library, "glTexBufferEXT", TexBufferEXT);
init_extension_entry (library, "glDepthRangedNV", DepthRangedNV);
init_extension_entry (library, "glClearDepthdNV", ClearDepthdNV);
init_extension_entry (library, "glDepthBoundsdNV", DepthBoundsdNV);
init_extension_entry (library, "glRenderbufferStorageMultisampleCoverageNV", RenderbufferStorageMultisampleCoverageNV);
init_extension_entry (library, "glProgramBufferParametersfvNV", ProgramBufferParametersfvNV);
init_extension_entry (library, "glProgramBufferParametersIivNV", ProgramBufferParametersIivNV);
init_extension_entry (library, "glProgramBufferParametersIuivNV", ProgramBufferParametersIuivNV);
init_extension_entry (library, "glColorMaskIndexedEXT", ColorMaskIndexedEXT);
init_extension_entry (library, "glGetBooleanIndexedvEXT", GetBooleanIndexedvEXT);
init_extension_entry (library, "glGetIntegerIndexedvEXT", GetIntegerIndexedvEXT);
init_extension_entry (library, "glEnableIndexedEXT", EnableIndexedEXT);
init_extension_entry (library, "glDisableIndexedEXT", DisableIndexedEXT);
init_extension_entry (library, "glIsEnabledIndexedEXT", IsEnabledIndexedEXT);
init_extension_entry (library, "glBeginTransformFeedbackNV", BeginTransformFeedbackNV);
init_extension_entry (library, "glEndTransformFeedbackNV", EndTransformFeedbackNV);
init_extension_entry (library, "glTransformFeedbackAttribsNV", TransformFeedbackAttribsNV);
init_extension_entry (library, "glBindBufferRangeNV", BindBufferRangeNV);
init_extension_entry (library, "glBindBufferOffsetNV", BindBufferOffsetNV);
init_extension_entry (library, "glBindBufferBaseNV", BindBufferBaseNV);
init_extension_entry (library, "glTransformFeedbackVaryingsNV", TransformFeedbackVaryingsNV);
init_extension_entry (library, "glActiveVaryingNV", ActiveVaryingNV);
init_extension_entry (library, "glGetVaryingLocationNV", GetVaryingLocationNV);
init_extension_entry (library, "glGetActiveVaryingNV", GetActiveVaryingNV);
init_extension_entry (library, "glGetTransformFeedbackVaryingNV", GetTransformFeedbackVaryingNV);
init_extension_entry (library, "glTransformFeedbackStreamAttribsNV", TransformFeedbackStreamAttribsNV);
init_extension_entry (library, "glUniformBufferEXT", UniformBufferEXT);
init_extension_entry (library, "glGetUniformBufferSizeEXT", GetUniformBufferSizeEXT);
init_extension_entry (library, "glGetUniformOffsetEXT", GetUniformOffsetEXT);
init_extension_entry (library, "glTexParameterIivEXT", TexParameterIivEXT);
init_extension_entry (library, "glTexParameterIuivEXT", TexParameterIuivEXT);
init_extension_entry (library, "glGetTexParameterIivEXT", GetTexParameterIivEXT);
init_extension_entry (library, "glGetTexParameterIuivEXT", GetTexParameterIuivEXT);
init_extension_entry (library, "glClearColorIiEXT", ClearColorIiEXT);
init_extension_entry (library, "glClearColorIuiEXT", ClearColorIuiEXT);
init_extension_entry (library, "glFrameTerminatorGREMEDY", FrameTerminatorGREMEDY);
init_extension_entry (library, "glBeginConditionalRenderNV", BeginConditionalRenderNV);
init_extension_entry (library, "glEndConditionalRenderNV", EndConditionalRenderNV);
init_extension_entry (library, "glPresentFrameKeyedNV", PresentFrameKeyedNV);
init_extension_entry (library, "glPresentFrameDualFillNV", PresentFrameDualFillNV);
init_extension_entry (library, "glGetVideoivNV", GetVideoivNV);
init_extension_entry (library, "glGetVideouivNV", GetVideouivNV);
init_extension_entry (library, "glGetVideoi64vNV", GetVideoi64vNV);
init_extension_entry (library, "glGetVideoui64vNV", GetVideoui64vNV);
init_extension_entry (library, "glBeginTransformFeedbackEXT", BeginTransformFeedbackEXT);
init_extension_entry (library, "glEndTransformFeedbackEXT", EndTransformFeedbackEXT);
init_extension_entry (library, "glBindBufferRangeEXT", BindBufferRangeEXT);
init_extension_entry (library, "glBindBufferOffsetEXT", BindBufferOffsetEXT);
init_extension_entry (library, "glBindBufferBaseEXT", BindBufferBaseEXT);
init_extension_entry (library, "glTransformFeedbackVaryingsEXT", TransformFeedbackVaryingsEXT);
init_extension_entry (library, "glGetTransformFeedbackVaryingEXT", GetTransformFeedbackVaryingEXT);
init_extension_entry (library, "glClientAttribDefaultEXT", ClientAttribDefaultEXT);
init_extension_entry (library, "glPushClientAttribDefaultEXT", PushClientAttribDefaultEXT);
init_extension_entry (library, "glMatrixLoadfEXT", MatrixLoadfEXT);
init_extension_entry (library, "glMatrixLoaddEXT", MatrixLoaddEXT);
init_extension_entry (library, "glMatrixMultfEXT", MatrixMultfEXT);
init_extension_entry (library, "glMatrixMultdEXT", MatrixMultdEXT);
init_extension_entry (library, "glMatrixLoadIdentityEXT", MatrixLoadIdentityEXT);
init_extension_entry (library, "glMatrixRotatefEXT", MatrixRotatefEXT);
init_extension_entry (library, "glMatrixRotatedEXT", MatrixRotatedEXT);
init_extension_entry (library, "glMatrixScalefEXT", MatrixScalefEXT);
init_extension_entry (library, "glMatrixScaledEXT", MatrixScaledEXT);
init_extension_entry (library, "glMatrixTranslatefEXT", MatrixTranslatefEXT);
init_extension_entry (library, "glMatrixTranslatedEXT", MatrixTranslatedEXT);
init_extension_entry (library, "glMatrixFrustumEXT", MatrixFrustumEXT);
init_extension_entry (library, "glMatrixOrthoEXT", MatrixOrthoEXT);
init_extension_entry (library, "glMatrixPopEXT", MatrixPopEXT);
init_extension_entry (library, "glMatrixPushEXT", MatrixPushEXT);
init_extension_entry (library, "glMatrixLoadTransposefEXT", MatrixLoadTransposefEXT);
init_extension_entry (library, "glMatrixLoadTransposedEXT", MatrixLoadTransposedEXT);
init_extension_entry (library, "glMatrixMultTransposefEXT", MatrixMultTransposefEXT);
init_extension_entry (library, "glMatrixMultTransposedEXT", MatrixMultTransposedEXT);
init_extension_entry (library, "glTextureParameterfEXT", TextureParameterfEXT);
init_extension_entry (library, "glTextureParameterfvEXT", TextureParameterfvEXT);
init_extension_entry (library, "glTextureParameteriEXT", TextureParameteriEXT);
init_extension_entry (library, "glTextureParameterivEXT", TextureParameterivEXT);
init_extension_entry (library, "glTextureImage1DEXT", TextureImage1DEXT);
init_extension_entry (library, "glTextureImage2DEXT", TextureImage2DEXT);
init_extension_entry (library, "glTextureSubImage1DEXT", TextureSubImage1DEXT);
init_extension_entry (library, "glTextureSubImage2DEXT", TextureSubImage2DEXT);
init_extension_entry (library, "glCopyTextureImage1DEXT", CopyTextureImage1DEXT);
init_extension_entry (library, "glCopyTextureImage2DEXT", CopyTextureImage2DEXT);
init_extension_entry (library, "glCopyTextureSubImage1DEXT", CopyTextureSubImage1DEXT);
init_extension_entry (library, "glCopyTextureSubImage2DEXT", CopyTextureSubImage2DEXT);
init_extension_entry (library, "glGetTextureImageEXT", GetTextureImageEXT);
init_extension_entry (library, "glGetTextureParameterfvEXT", GetTextureParameterfvEXT);
init_extension_entry (library, "glGetTextureParameterivEXT", GetTextureParameterivEXT);
init_extension_entry (library, "glGetTextureLevelParameterfvEXT", GetTextureLevelParameterfvEXT);
init_extension_entry (library, "glGetTextureLevelParameterivEXT", GetTextureLevelParameterivEXT);
init_extension_entry (library, "glTextureImage3DEXT", TextureImage3DEXT);
init_extension_entry (library, "glTextureSubImage3DEXT", TextureSubImage3DEXT);
init_extension_entry (library, "glCopyTextureSubImage3DEXT", CopyTextureSubImage3DEXT);
init_extension_entry (library, "glMultiTexParameterfEXT", MultiTexParameterfEXT);
init_extension_entry (library, "glMultiTexParameterfvEXT", MultiTexParameterfvEXT);
init_extension_entry (library, "glMultiTexParameteriEXT", MultiTexParameteriEXT);
init_extension_entry (library, "glMultiTexParameterivEXT", MultiTexParameterivEXT);
init_extension_entry (library, "glMultiTexImage1DEXT", MultiTexImage1DEXT);
init_extension_entry (library, "glMultiTexImage2DEXT", MultiTexImage2DEXT);
init_extension_entry (library, "glMultiTexSubImage1DEXT", MultiTexSubImage1DEXT);
init_extension_entry (library, "glMultiTexSubImage2DEXT", MultiTexSubImage2DEXT);
init_extension_entry (library, "glCopyMultiTexImage1DEXT", CopyMultiTexImage1DEXT);
init_extension_entry (library, "glCopyMultiTexImage2DEXT", CopyMultiTexImage2DEXT);
init_extension_entry (library, "glCopyMultiTexSubImage1DEXT", CopyMultiTexSubImage1DEXT);
init_extension_entry (library, "glCopyMultiTexSubImage2DEXT", CopyMultiTexSubImage2DEXT);
init_extension_entry (library, "glGetMultiTexImageEXT", GetMultiTexImageEXT);
init_extension_entry (library, "glGetMultiTexParameterfvEXT", GetMultiTexParameterfvEXT);
init_extension_entry (library, "glGetMultiTexParameterivEXT", GetMultiTexParameterivEXT);
init_extension_entry (library, "glGetMultiTexLevelParameterfvEXT", GetMultiTexLevelParameterfvEXT);
init_extension_entry (library, "glGetMultiTexLevelParameterivEXT", GetMultiTexLevelParameterivEXT);
init_extension_entry (library, "glMultiTexImage3DEXT", MultiTexImage3DEXT);
init_extension_entry (library, "glMultiTexSubImage3DEXT", MultiTexSubImage3DEXT);
init_extension_entry (library, "glCopyMultiTexSubImage3DEXT", CopyMultiTexSubImage3DEXT);
init_extension_entry (library, "glBindMultiTextureEXT", BindMultiTextureEXT);
init_extension_entry (library, "glEnableClientStateIndexedEXT", EnableClientStateIndexedEXT);
init_extension_entry (library, "glDisableClientStateIndexedEXT", DisableClientStateIndexedEXT);
init_extension_entry (library, "glMultiTexCoordPointerEXT", MultiTexCoordPointerEXT);
init_extension_entry (library, "glMultiTexEnvfEXT", MultiTexEnvfEXT);
init_extension_entry (library, "glMultiTexEnvfvEXT", MultiTexEnvfvEXT);
init_extension_entry (library, "glMultiTexEnviEXT", MultiTexEnviEXT);
init_extension_entry (library, "glMultiTexEnvivEXT", MultiTexEnvivEXT);
init_extension_entry (library, "glMultiTexGendEXT", MultiTexGendEXT);
init_extension_entry (library, "glMultiTexGendvEXT", MultiTexGendvEXT);
init_extension_entry (library, "glMultiTexGenfEXT", MultiTexGenfEXT);
init_extension_entry (library, "glMultiTexGenfvEXT", MultiTexGenfvEXT);
init_extension_entry (library, "glMultiTexGeniEXT", MultiTexGeniEXT);
init_extension_entry (library, "glMultiTexGenivEXT", MultiTexGenivEXT);
init_extension_entry (library, "glGetMultiTexEnvfvEXT", GetMultiTexEnvfvEXT);
init_extension_entry (library, "glGetMultiTexEnvivEXT", GetMultiTexEnvivEXT);
init_extension_entry (library, "glGetMultiTexGendvEXT", GetMultiTexGendvEXT);
init_extension_entry (library, "glGetMultiTexGenfvEXT", GetMultiTexGenfvEXT);
init_extension_entry (library, "glGetMultiTexGenivEXT", GetMultiTexGenivEXT);
init_extension_entry (library, "glGetFloatIndexedvEXT", GetFloatIndexedvEXT);
init_extension_entry (library, "glGetDoubleIndexedvEXT", GetDoubleIndexedvEXT);
init_extension_entry (library, "glGetPointerIndexedvEXT", GetPointerIndexedvEXT);
init_extension_entry (library, "glCompressedTextureImage3DEXT", CompressedTextureImage3DEXT);
init_extension_entry (library, "glCompressedTextureImage2DEXT", CompressedTextureImage2DEXT);
init_extension_entry (library, "glCompressedTextureImage1DEXT", CompressedTextureImage1DEXT);
init_extension_entry (library, "glCompressedTextureSubImage3DEXT", CompressedTextureSubImage3DEXT);
init_extension_entry (library, "glCompressedTextureSubImage2DEXT", CompressedTextureSubImage2DEXT);
init_extension_entry (library, "glCompressedTextureSubImage1DEXT", CompressedTextureSubImage1DEXT);
init_extension_entry (library, "glGetCompressedTextureImageEXT", GetCompressedTextureImageEXT);
init_extension_entry (library, "glCompressedMultiTexImage3DEXT", CompressedMultiTexImage3DEXT);
init_extension_entry (library, "glCompressedMultiTexImage2DEXT", CompressedMultiTexImage2DEXT);
init_extension_entry (library, "glCompressedMultiTexImage1DEXT", CompressedMultiTexImage1DEXT);
init_extension_entry (library, "glCompressedMultiTexSubImage3DEXT", CompressedMultiTexSubImage3DEXT);
init_extension_entry (library, "glCompressedMultiTexSubImage2DEXT", CompressedMultiTexSubImage2DEXT);
init_extension_entry (library, "glCompressedMultiTexSubImage1DEXT", CompressedMultiTexSubImage1DEXT);
init_extension_entry (library, "glGetCompressedMultiTexImageEXT", GetCompressedMultiTexImageEXT);
init_extension_entry (library, "glNamedProgramStringEXT", NamedProgramStringEXT);
init_extension_entry (library, "glNamedProgramLocalParameter4dEXT", NamedProgramLocalParameter4dEXT);
init_extension_entry (library, "glNamedProgramLocalParameter4dvEXT", NamedProgramLocalParameter4dvEXT);
init_extension_entry (library, "glNamedProgramLocalParameter4fEXT", NamedProgramLocalParameter4fEXT);
init_extension_entry (library, "glNamedProgramLocalParameter4fvEXT", NamedProgramLocalParameter4fvEXT);
init_extension_entry (library, "glGetNamedProgramLocalParameterdvEXT", GetNamedProgramLocalParameterdvEXT);
init_extension_entry (library, "glGetNamedProgramLocalParameterfvEXT", GetNamedProgramLocalParameterfvEXT);
init_extension_entry (library, "glGetNamedProgramivEXT", GetNamedProgramivEXT);
init_extension_entry (library, "glGetNamedProgramStringEXT", GetNamedProgramStringEXT);
init_extension_entry (library, "glNamedProgramLocalParameters4fvEXT", NamedProgramLocalParameters4fvEXT);
init_extension_entry (library, "glNamedProgramLocalParameterI4iEXT", NamedProgramLocalParameterI4iEXT);
init_extension_entry (library, "glNamedProgramLocalParameterI4ivEXT", NamedProgramLocalParameterI4ivEXT);
init_extension_entry (library, "glNamedProgramLocalParametersI4ivEXT", NamedProgramLocalParametersI4ivEXT);
init_extension_entry (library, "glNamedProgramLocalParameterI4uiEXT", NamedProgramLocalParameterI4uiEXT);
init_extension_entry (library, "glNamedProgramLocalParameterI4uivEXT", NamedProgramLocalParameterI4uivEXT);
init_extension_entry (library, "glNamedProgramLocalParametersI4uivEXT", NamedProgramLocalParametersI4uivEXT);
init_extension_entry (library, "glGetNamedProgramLocalParameterIivEXT", GetNamedProgramLocalParameterIivEXT);
init_extension_entry (library, "glGetNamedProgramLocalParameterIuivEXT", GetNamedProgramLocalParameterIuivEXT);
init_extension_entry (library, "glTextureParameterIivEXT", TextureParameterIivEXT);
init_extension_entry (library, "glTextureParameterIuivEXT", TextureParameterIuivEXT);
init_extension_entry (library, "glGetTextureParameterIivEXT", GetTextureParameterIivEXT);
init_extension_entry (library, "glGetTextureParameterIuivEXT", GetTextureParameterIuivEXT);
init_extension_entry (library, "glMultiTexParameterIivEXT", MultiTexParameterIivEXT);
init_extension_entry (library, "glMultiTexParameterIuivEXT", MultiTexParameterIuivEXT);
init_extension_entry (library, "glGetMultiTexParameterIivEXT", GetMultiTexParameterIivEXT);
init_extension_entry (library, "glGetMultiTexParameterIuivEXT", GetMultiTexParameterIuivEXT);
init_extension_entry (library, "glProgramUniform1fEXT", ProgramUniform1fEXT);
init_extension_entry (library, "glProgramUniform2fEXT", ProgramUniform2fEXT);
init_extension_entry (library, "glProgramUniform3fEXT", ProgramUniform3fEXT);
init_extension_entry (library, "glProgramUniform4fEXT", ProgramUniform4fEXT);
init_extension_entry (library, "glProgramUniform1iEXT", ProgramUniform1iEXT);
init_extension_entry (library, "glProgramUniform2iEXT", ProgramUniform2iEXT);
init_extension_entry (library, "glProgramUniform3iEXT", ProgramUniform3iEXT);
init_extension_entry (library, "glProgramUniform4iEXT", ProgramUniform4iEXT);
init_extension_entry (library, "glProgramUniform1fvEXT", ProgramUniform1fvEXT);
init_extension_entry (library, "glProgramUniform2fvEXT", ProgramUniform2fvEXT);
init_extension_entry (library, "glProgramUniform3fvEXT", ProgramUniform3fvEXT);
init_extension_entry (library, "glProgramUniform4fvEXT", ProgramUniform4fvEXT);
init_extension_entry (library, "glProgramUniform1ivEXT", ProgramUniform1ivEXT);
init_extension_entry (library, "glProgramUniform2ivEXT", ProgramUniform2ivEXT);
init_extension_entry (library, "glProgramUniform3ivEXT", ProgramUniform3ivEXT);
init_extension_entry (library, "glProgramUniform4ivEXT", ProgramUniform4ivEXT);
init_extension_entry (library, "glProgramUniformMatrix2fvEXT", ProgramUniformMatrix2fvEXT);
init_extension_entry (library, "glProgramUniformMatrix3fvEXT", ProgramUniformMatrix3fvEXT);
init_extension_entry (library, "glProgramUniformMatrix4fvEXT", ProgramUniformMatrix4fvEXT);
init_extension_entry (library, "glProgramUniformMatrix2x3fvEXT", ProgramUniformMatrix2x3fvEXT);
init_extension_entry (library, "glProgramUniformMatrix3x2fvEXT", ProgramUniformMatrix3x2fvEXT);
init_extension_entry (library, "glProgramUniformMatrix2x4fvEXT", ProgramUniformMatrix2x4fvEXT);
init_extension_entry (library, "glProgramUniformMatrix4x2fvEXT", ProgramUniformMatrix4x2fvEXT);
init_extension_entry (library, "glProgramUniformMatrix3x4fvEXT", ProgramUniformMatrix3x4fvEXT);
init_extension_entry (library, "glProgramUniformMatrix4x3fvEXT", ProgramUniformMatrix4x3fvEXT);
init_extension_entry (library, "glProgramUniform1uiEXT", ProgramUniform1uiEXT);
init_extension_entry (library, "glProgramUniform2uiEXT", ProgramUniform2uiEXT);
init_extension_entry (library, "glProgramUniform3uiEXT", ProgramUniform3uiEXT);
init_extension_entry (library, "glProgramUniform4uiEXT", ProgramUniform4uiEXT);
init_extension_entry (library, "glProgramUniform1uivEXT", ProgramUniform1uivEXT);
init_extension_entry (library, "glProgramUniform2uivEXT", ProgramUniform2uivEXT);
init_extension_entry (library, "glProgramUniform3uivEXT", ProgramUniform3uivEXT);
init_extension_entry (library, "glProgramUniform4uivEXT", ProgramUniform4uivEXT);
init_extension_entry (library, "glNamedBufferDataEXT", NamedBufferDataEXT);
init_extension_entry (library, "glNamedBufferSubDataEXT", NamedBufferSubDataEXT);
init_extension_entry (library, "glMapNamedBufferEXT", MapNamedBufferEXT);
init_extension_entry (library, "glUnmapNamedBufferEXT", UnmapNamedBufferEXT);
init_extension_entry (library, "glMapNamedBufferRangeEXT", MapNamedBufferRangeEXT);
init_extension_entry (library, "glFlushMappedNamedBufferRangeEXT", FlushMappedNamedBufferRangeEXT);
init_extension_entry (library, "glNamedCopyBufferSubDataEXT", NamedCopyBufferSubDataEXT);
init_extension_entry (library, "glGetNamedBufferParameterivEXT", GetNamedBufferParameterivEXT);
init_extension_entry (library, "glGetNamedBufferPointervEXT", GetNamedBufferPointervEXT);
init_extension_entry (library, "glGetNamedBufferSubDataEXT", GetNamedBufferSubDataEXT);
init_extension_entry (library, "glTextureBufferEXT", TextureBufferEXT);
init_extension_entry (library, "glMultiTexBufferEXT", MultiTexBufferEXT);
init_extension_entry (library, "glNamedRenderbufferStorageEXT", NamedRenderbufferStorageEXT);
init_extension_entry (library, "glGetNamedRenderbufferParameterivEXT", GetNamedRenderbufferParameterivEXT);
init_extension_entry (library, "glCheckNamedFramebufferStatusEXT", CheckNamedFramebufferStatusEXT);
init_extension_entry (library, "glNamedFramebufferTexture1DEXT", NamedFramebufferTexture1DEXT);
init_extension_entry (library, "glNamedFramebufferTexture2DEXT", NamedFramebufferTexture2DEXT);
init_extension_entry (library, "glNamedFramebufferTexture3DEXT", NamedFramebufferTexture3DEXT);
init_extension_entry (library, "glNamedFramebufferRenderbufferEXT", NamedFramebufferRenderbufferEXT);
init_extension_entry (library, "glGetNamedFramebufferAttachmentParameterivEXT", GetNamedFramebufferAttachmentParameterivEXT);
init_extension_entry (library, "glGenerateTextureMipmapEXT", GenerateTextureMipmapEXT);
init_extension_entry (library, "glGenerateMultiTexMipmapEXT", GenerateMultiTexMipmapEXT);
init_extension_entry (library, "glFramebufferDrawBufferEXT", FramebufferDrawBufferEXT);
init_extension_entry (library, "glFramebufferDrawBuffersEXT", FramebufferDrawBuffersEXT);
init_extension_entry (library, "glFramebufferReadBufferEXT", FramebufferReadBufferEXT);
init_extension_entry (library, "glGetFramebufferParameterivEXT", GetFramebufferParameterivEXT);
init_extension_entry (library, "glNamedRenderbufferStorageMultisampleEXT", NamedRenderbufferStorageMultisampleEXT);
init_extension_entry (library, "glNamedRenderbufferStorageMultisampleCoverageEXT", NamedRenderbufferStorageMultisampleCoverageEXT);
init_extension_entry (library, "glNamedFramebufferTextureEXT", NamedFramebufferTextureEXT);
init_extension_entry (library, "glNamedFramebufferTextureLayerEXT", NamedFramebufferTextureLayerEXT);
init_extension_entry (library, "glNamedFramebufferTextureFaceEXT", NamedFramebufferTextureFaceEXT);
init_extension_entry (library, "glTextureRenderbufferEXT", TextureRenderbufferEXT);
init_extension_entry (library, "glMultiTexRenderbufferEXT", MultiTexRenderbufferEXT);
init_extension_entry (library, "glProgramUniform1dEXT", ProgramUniform1dEXT);
init_extension_entry (library, "glProgramUniform2dEXT", ProgramUniform2dEXT);
init_extension_entry (library, "glProgramUniform3dEXT", ProgramUniform3dEXT);
init_extension_entry (library, "glProgramUniform4dEXT", ProgramUniform4dEXT);
init_extension_entry (library, "glProgramUniform1dvEXT", ProgramUniform1dvEXT);
init_extension_entry (library, "glProgramUniform2dvEXT", ProgramUniform2dvEXT);
init_extension_entry (library, "glProgramUniform3dvEXT", ProgramUniform3dvEXT);
init_extension_entry (library, "glProgramUniform4dvEXT", ProgramUniform4dvEXT);
init_extension_entry (library, "glProgramUniformMatrix2dvEXT", ProgramUniformMatrix2dvEXT);
init_extension_entry (library, "glProgramUniformMatrix3dvEXT", ProgramUniformMatrix3dvEXT);
init_extension_entry (library, "glProgramUniformMatrix4dvEXT", ProgramUniformMatrix4dvEXT);
init_extension_entry (library, "glProgramUniformMatrix2x3dvEXT", ProgramUniformMatrix2x3dvEXT);
init_extension_entry (library, "glProgramUniformMatrix2x4dvEXT", ProgramUniformMatrix2x4dvEXT);
init_extension_entry (library, "glProgramUniformMatrix3x2dvEXT", ProgramUniformMatrix3x2dvEXT);
init_extension_entry (library, "glProgramUniformMatrix3x4dvEXT", ProgramUniformMatrix3x4dvEXT);
init_extension_entry (library, "glProgramUniformMatrix4x2dvEXT", ProgramUniformMatrix4x2dvEXT);
init_extension_entry (library, "glProgramUniformMatrix4x3dvEXT", ProgramUniformMatrix4x3dvEXT);
init_extension_entry (library, "glGetMultisamplefvNV", GetMultisamplefvNV);
init_extension_entry (library, "glSampleMaskIndexedNV", SampleMaskIndexedNV);
init_extension_entry (library, "glTexRenderbufferNV", TexRenderbufferNV);
init_extension_entry (library, "glBindTransformFeedbackNV", BindTransformFeedbackNV);
init_extension_entry (library, "glDeleteTransformFeedbacksNV", DeleteTransformFeedbacksNV);
init_extension_entry (library, "glGenTransformFeedbacksNV", GenTransformFeedbacksNV);
init_extension_entry (library, "glIsTransformFeedbackNV", IsTransformFeedbackNV);
init_extension_entry (library, "glPauseTransformFeedbackNV", PauseTransformFeedbackNV);
init_extension_entry (library, "glResumeTransformFeedbackNV", ResumeTransformFeedbackNV);
init_extension_entry (library, "glDrawTransformFeedbackNV", DrawTransformFeedbackNV);
init_extension_entry (library, "glGetPerfMonitorGroupsAMD", GetPerfMonitorGroupsAMD);
init_extension_entry (library, "glGetPerfMonitorCountersAMD", GetPerfMonitorCountersAMD);
init_extension_entry (library, "glGetPerfMonitorGroupStringAMD", GetPerfMonitorGroupStringAMD);
init_extension_entry (library, "glGetPerfMonitorCounterStringAMD", GetPerfMonitorCounterStringAMD);
init_extension_entry (library, "glGetPerfMonitorCounterInfoAMD", GetPerfMonitorCounterInfoAMD);
init_extension_entry (library, "glGenPerfMonitorsAMD", GenPerfMonitorsAMD);
init_extension_entry (library, "glDeletePerfMonitorsAMD", DeletePerfMonitorsAMD);
init_extension_entry (library, "glSelectPerfMonitorCountersAMD", SelectPerfMonitorCountersAMD);
init_extension_entry (library, "glBeginPerfMonitorAMD", BeginPerfMonitorAMD);
init_extension_entry (library, "glEndPerfMonitorAMD", EndPerfMonitorAMD);
init_extension_entry (library, "glGetPerfMonitorCounterDataAMD", GetPerfMonitorCounterDataAMD);
init_extension_entry (library, "glTessellationFactorAMD", TessellationFactorAMD);
init_extension_entry (library, "glTessellationModeAMD", TessellationModeAMD);
init_extension_entry (library, "glProvokingVertexEXT", ProvokingVertexEXT);
init_extension_entry (library, "glBlendFuncIndexedAMD", BlendFuncIndexedAMD);
init_extension_entry (library, "glBlendFuncSeparateIndexedAMD", BlendFuncSeparateIndexedAMD);
init_extension_entry (library, "glBlendEquationIndexedAMD", BlendEquationIndexedAMD);
init_extension_entry (library, "glBlendEquationSeparateIndexedAMD", BlendEquationSeparateIndexedAMD);
init_extension_entry (library, "glTextureRangeAPPLE", TextureRangeAPPLE);
init_extension_entry (library, "glGetTexParameterPointervAPPLE", GetTexParameterPointervAPPLE);
init_extension_entry (library, "glEnableVertexAttribAPPLE", EnableVertexAttribAPPLE);
init_extension_entry (library, "glDisableVertexAttribAPPLE", DisableVertexAttribAPPLE);
init_extension_entry (library, "glIsVertexAttribEnabledAPPLE", IsVertexAttribEnabledAPPLE);
init_extension_entry (library, "glMapVertexAttrib1dAPPLE", MapVertexAttrib1dAPPLE);
init_extension_entry (library, "glMapVertexAttrib1fAPPLE", MapVertexAttrib1fAPPLE);
init_extension_entry (library, "glMapVertexAttrib2dAPPLE", MapVertexAttrib2dAPPLE);
init_extension_entry (library, "glMapVertexAttrib2fAPPLE", MapVertexAttrib2fAPPLE);
init_extension_entry (library, "glObjectPurgeableAPPLE", ObjectPurgeableAPPLE);
init_extension_entry (library, "glObjectUnpurgeableAPPLE", ObjectUnpurgeableAPPLE);
init_extension_entry (library, "glGetObjectParameterivAPPLE", GetObjectParameterivAPPLE);
init_extension_entry (library, "glBeginVideoCaptureNV", BeginVideoCaptureNV);
init_extension_entry (library, "glBindVideoCaptureStreamBufferNV", BindVideoCaptureStreamBufferNV);
init_extension_entry (library, "glBindVideoCaptureStreamTextureNV", BindVideoCaptureStreamTextureNV);
init_extension_entry (library, "glEndVideoCaptureNV", EndVideoCaptureNV);
init_extension_entry (library, "glGetVideoCaptureivNV", GetVideoCaptureivNV);
init_extension_entry (library, "glGetVideoCaptureStreamivNV", GetVideoCaptureStreamivNV);
init_extension_entry (library, "glGetVideoCaptureStreamfvNV", GetVideoCaptureStreamfvNV);
init_extension_entry (library, "glGetVideoCaptureStreamdvNV", GetVideoCaptureStreamdvNV);
init_extension_entry (library, "glVideoCaptureNV", VideoCaptureNV);
init_extension_entry (library, "glVideoCaptureStreamParameterivNV", VideoCaptureStreamParameterivNV);
init_extension_entry (library, "glVideoCaptureStreamParameterfvNV", VideoCaptureStreamParameterfvNV);
init_extension_entry (library, "glVideoCaptureStreamParameterdvNV", VideoCaptureStreamParameterdvNV);
init_extension_entry (library, "glCopyImageSubDataNV", CopyImageSubDataNV);
init_extension_entry (library, "glUseShaderProgramEXT", UseShaderProgramEXT);
init_extension_entry (library, "glActiveProgramEXT", ActiveProgramEXT);
init_extension_entry (library, "glCreateShaderProgramEXT", CreateShaderProgramEXT);
init_extension_entry (library, "glMakeBufferResidentNV", MakeBufferResidentNV);
init_extension_entry (library, "glMakeBufferNonResidentNV", MakeBufferNonResidentNV);
init_extension_entry (library, "glIsBufferResidentNV", IsBufferResidentNV);
init_extension_entry (library, "glMakeNamedBufferResidentNV", MakeNamedBufferResidentNV);
init_extension_entry (library, "glMakeNamedBufferNonResidentNV", MakeNamedBufferNonResidentNV);
init_extension_entry (library, "glIsNamedBufferResidentNV", IsNamedBufferResidentNV);
init_extension_entry (library, "glGetBufferParameterui64vNV", GetBufferParameterui64vNV);
init_extension_entry (library, "glGetNamedBufferParameterui64vNV", GetNamedBufferParameterui64vNV);
init_extension_entry (library, "glGetIntegerui64vNV", GetIntegerui64vNV);
init_extension_entry (library, "glUniformui64NV", Uniformui64NV);
init_extension_entry (library, "glUniformui64vNV", Uniformui64vNV);
init_extension_entry (library, "glGetUniformui64vNV", GetUniformui64vNV);
init_extension_entry (library, "glProgramUniformui64NV", ProgramUniformui64NV);
init_extension_entry (library, "glProgramUniformui64vNV", ProgramUniformui64vNV);
init_extension_entry (library, "glBufferAddressRangeNV", BufferAddressRangeNV);
init_extension_entry (library, "glVertexFormatNV", VertexFormatNV);
init_extension_entry (library, "glNormalFormatNV", NormalFormatNV);
init_extension_entry (library, "glColorFormatNV", ColorFormatNV);
init_extension_entry (library, "glIndexFormatNV", IndexFormatNV);
init_extension_entry (library, "glTexCoordFormatNV", TexCoordFormatNV);
init_extension_entry (library, "glEdgeFlagFormatNV", EdgeFlagFormatNV);
init_extension_entry (library, "glSecondaryColorFormatNV", SecondaryColorFormatNV);
init_extension_entry (library, "glFogCoordFormatNV", FogCoordFormatNV);
init_extension_entry (library, "glVertexAttribFormatNV", VertexAttribFormatNV);
init_extension_entry (library, "glVertexAttribIFormatNV", VertexAttribIFormatNV);
init_extension_entry (library, "glGetIntegerui64i_vNV", GetIntegerui64i_vNV);
init_extension_entry (library, "glTextureBarrierNV", TextureBarrierNV);
init_extension_entry (library, "glBindImageTextureEXT", BindImageTextureEXT);
init_extension_entry (library, "glMemoryBarrierEXT", MemoryBarrierEXT);
init_extension_entry (library, "glVertexAttribL1dEXT", VertexAttribL1dEXT);
init_extension_entry (library, "glVertexAttribL2dEXT", VertexAttribL2dEXT);
init_extension_entry (library, "glVertexAttribL3dEXT", VertexAttribL3dEXT);
init_extension_entry (library, "glVertexAttribL4dEXT", VertexAttribL4dEXT);
init_extension_entry (library, "glVertexAttribL1dvEXT", VertexAttribL1dvEXT);
init_extension_entry (library, "glVertexAttribL2dvEXT", VertexAttribL2dvEXT);
init_extension_entry (library, "glVertexAttribL3dvEXT", VertexAttribL3dvEXT);
init_extension_entry (library, "glVertexAttribL4dvEXT", VertexAttribL4dvEXT);
init_extension_entry (library, "glVertexAttribLPointerEXT", VertexAttribLPointerEXT);
init_extension_entry (library, "glGetVertexAttribLdvEXT", GetVertexAttribLdvEXT);
init_extension_entry (library, "glVertexArrayVertexAttribLOffsetEXT", VertexArrayVertexAttribLOffsetEXT);
init_extension_entry (library, "glProgramSubroutineParametersuivNV", ProgramSubroutineParametersuivNV);
init_extension_entry (library, "glGetProgramSubroutineParameteruivNV", GetProgramSubroutineParameteruivNV);
init_extension_entry (library, "glUniform1i64NV", Uniform1i64NV);
init_extension_entry (library, "glUniform2i64NV", Uniform2i64NV);
init_extension_entry (library, "glUniform3i64NV", Uniform3i64NV);
init_extension_entry (library, "glUniform4i64NV", Uniform4i64NV);
init_extension_entry (library, "glUniform1i64vNV", Uniform1i64vNV);
init_extension_entry (library, "glUniform2i64vNV", Uniform2i64vNV);
init_extension_entry (library, "glUniform3i64vNV", Uniform3i64vNV);
init_extension_entry (library, "glUniform4i64vNV", Uniform4i64vNV);
init_extension_entry (library, "glUniform1ui64NV", Uniform1ui64NV);
init_extension_entry (library, "glUniform2ui64NV", Uniform2ui64NV);
init_extension_entry (library, "glUniform3ui64NV", Uniform3ui64NV);
init_extension_entry (library, "glUniform4ui64NV", Uniform4ui64NV);
init_extension_entry (library, "glUniform1ui64vNV", Uniform1ui64vNV);
init_extension_entry (library, "glUniform2ui64vNV", Uniform2ui64vNV);
init_extension_entry (library, "glUniform3ui64vNV", Uniform3ui64vNV);
init_extension_entry (library, "glUniform4ui64vNV", Uniform4ui64vNV);
init_extension_entry (library, "glGetUniformi64vNV", GetUniformi64vNV);
init_extension_entry (library, "glProgramUniform1i64NV", ProgramUniform1i64NV);
init_extension_entry (library, "glProgramUniform2i64NV", ProgramUniform2i64NV);
init_extension_entry (library, "glProgramUniform3i64NV", ProgramUniform3i64NV);
init_extension_entry (library, "glProgramUniform4i64NV", ProgramUniform4i64NV);
init_extension_entry (library, "glProgramUniform1i64vNV", ProgramUniform1i64vNV);
init_extension_entry (library, "glProgramUniform2i64vNV", ProgramUniform2i64vNV);
init_extension_entry (library, "glProgramUniform3i64vNV", ProgramUniform3i64vNV);
init_extension_entry (library, "glProgramUniform4i64vNV", ProgramUniform4i64vNV);
init_extension_entry (library, "glProgramUniform1ui64NV", ProgramUniform1ui64NV);
init_extension_entry (library, "glProgramUniform2ui64NV", ProgramUniform2ui64NV);
init_extension_entry (library, "glProgramUniform3ui64NV", ProgramUniform3ui64NV);
init_extension_entry (library, "glProgramUniform4ui64NV", ProgramUniform4ui64NV);
init_extension_entry (library, "glProgramUniform1ui64vNV", ProgramUniform1ui64vNV);
init_extension_entry (library, "glProgramUniform2ui64vNV", ProgramUniform2ui64vNV);
init_extension_entry (library, "glProgramUniform3ui64vNV", ProgramUniform3ui64vNV);
init_extension_entry (library, "glProgramUniform4ui64vNV", ProgramUniform4ui64vNV);
init_extension_entry (library, "glVertexAttribL1i64NV", VertexAttribL1i64NV);
init_extension_entry (library, "glVertexAttribL2i64NV", VertexAttribL2i64NV);
init_extension_entry (library, "glVertexAttribL3i64NV", VertexAttribL3i64NV);
init_extension_entry (library, "glVertexAttribL4i64NV", VertexAttribL4i64NV);
init_extension_entry (library, "glVertexAttribL1i64vNV", VertexAttribL1i64vNV);
init_extension_entry (library, "glVertexAttribL2i64vNV", VertexAttribL2i64vNV);
init_extension_entry (library, "glVertexAttribL3i64vNV", VertexAttribL3i64vNV);
init_extension_entry (library, "glVertexAttribL4i64vNV", VertexAttribL4i64vNV);
init_extension_entry (library, "glVertexAttribL1ui64NV", VertexAttribL1ui64NV);
init_extension_entry (library, "glVertexAttribL2ui64NV", VertexAttribL2ui64NV);
init_extension_entry (library, "glVertexAttribL3ui64NV", VertexAttribL3ui64NV);
init_extension_entry (library, "glVertexAttribL4ui64NV", VertexAttribL4ui64NV);
init_extension_entry (library, "glVertexAttribL1ui64vNV", VertexAttribL1ui64vNV);
init_extension_entry (library, "glVertexAttribL2ui64vNV", VertexAttribL2ui64vNV);
init_extension_entry (library, "glVertexAttribL3ui64vNV", VertexAttribL3ui64vNV);
init_extension_entry (library, "glVertexAttribL4ui64vNV", VertexAttribL4ui64vNV);
init_extension_entry (library, "glGetVertexAttribLi64vNV", GetVertexAttribLi64vNV);
init_extension_entry (library, "glGetVertexAttribLui64vNV", GetVertexAttribLui64vNV);
init_extension_entry (library, "glVertexAttribLFormatNV", VertexAttribLFormatNV);
init_extension_entry (library, "glGenNamesAMD", GenNamesAMD);
init_extension_entry (library, "glDeleteNamesAMD", DeleteNamesAMD);
init_extension_entry (library, "glIsNameAMD", IsNameAMD);
init_extension_entry (library, "glDebugMessageEnableAMD", DebugMessageEnableAMD);
init_extension_entry (library, "glDebugMessageInsertAMD", DebugMessageInsertAMD);
init_extension_entry (library, "glDebugMessageCallbackAMD", DebugMessageCallbackAMD);
init_extension_entry (library, "glGetDebugMessageLogAMD", GetDebugMessageLogAMD);
init_extension_entry (library, "glVDPAUInitNV", VDPAUInitNV);
init_extension_entry (library, "glVDPAUFiniNV", VDPAUFiniNV);
init_extension_entry (library, "glVDPAURegisterVideoSurfaceNV", VDPAURegisterVideoSurfaceNV);
init_extension_entry (library, "glVDPAURegisterOutputSurfaceNV", VDPAURegisterOutputSurfaceNV);
init_extension_entry (library, "glVDPAUIsSurfaceNV", VDPAUIsSurfaceNV);
init_extension_entry (library, "glVDPAUUnregisterSurfaceNV", VDPAUUnregisterSurfaceNV);
init_extension_entry (library, "glVDPAUGetSurfaceivNV", VDPAUGetSurfaceivNV);
init_extension_entry (library, "glVDPAUSurfaceAccessNV", VDPAUSurfaceAccessNV);
init_extension_entry (library, "glVDPAUMapSurfacesNV", VDPAUMapSurfacesNV);
init_extension_entry (library, "glVDPAUUnmapSurfacesNV", VDPAUUnmapSurfacesNV);
init_extension_entry (library, "glTexImage2DMultisampleCoverageNV", TexImage2DMultisampleCoverageNV);
init_extension_entry (library, "glTexImage3DMultisampleCoverageNV", TexImage3DMultisampleCoverageNV);
init_extension_entry (library, "glTextureImage2DMultisampleNV", TextureImage2DMultisampleNV);
init_extension_entry (library, "glTextureImage3DMultisampleNV", TextureImage3DMultisampleNV);
init_extension_entry (library, "glTextureImage2DMultisampleCoverageNV", TextureImage2DMultisampleCoverageNV);
init_extension_entry (library, "glTextureImage3DMultisampleCoverageNV", TextureImage3DMultisampleCoverageNV);
init_extension_entry (library, "glSetMultisamplefvAMD", SetMultisamplefvAMD);
init_extension_entry (library, "glImportSyncEXT", ImportSyncEXT);
init_extension_entry (library, "glMultiDrawArraysIndirectAMD", MultiDrawArraysIndirectAMD);
init_extension_entry (library, "glMultiDrawElementsIndirectAMD", MultiDrawElementsIndirectAMD);
init_extension_entry (library, "glGenPathsNV", GenPathsNV);
init_extension_entry (library, "glDeletePathsNV", DeletePathsNV);
init_extension_entry (library, "glIsPathNV", IsPathNV);
init_extension_entry (library, "glPathCommandsNV", PathCommandsNV);
init_extension_entry (library, "glPathCoordsNV", PathCoordsNV);
init_extension_entry (library, "glPathSubCommandsNV", PathSubCommandsNV);
init_extension_entry (library, "glPathSubCoordsNV", PathSubCoordsNV);
init_extension_entry (library, "glPathStringNV", PathStringNV);
init_extension_entry (library, "glPathGlyphsNV", PathGlyphsNV);
init_extension_entry (library, "glPathGlyphRangeNV", PathGlyphRangeNV);
init_extension_entry (library, "glWeightPathsNV", WeightPathsNV);
init_extension_entry (library, "glCopyPathNV", CopyPathNV);
init_extension_entry (library, "glInterpolatePathsNV", InterpolatePathsNV);
init_extension_entry (library, "glTransformPathNV", TransformPathNV);
init_extension_entry (library, "glPathParameterivNV", PathParameterivNV);
init_extension_entry (library, "glPathParameteriNV", PathParameteriNV);
init_extension_entry (library, "glPathParameterfvNV", PathParameterfvNV);
init_extension_entry (library, "glPathParameterfNV", PathParameterfNV);
init_extension_entry (library, "glPathDashArrayNV", PathDashArrayNV);
init_extension_entry (library, "glPathStencilFuncNV", PathStencilFuncNV);
init_extension_entry (library, "glPathStencilDepthOffsetNV", PathStencilDepthOffsetNV);
init_extension_entry (library, "glStencilFillPathNV", StencilFillPathNV);
init_extension_entry (library, "glStencilStrokePathNV", StencilStrokePathNV);
init_extension_entry (library, "glStencilFillPathInstancedNV", StencilFillPathInstancedNV);
init_extension_entry (library, "glStencilStrokePathInstancedNV", StencilStrokePathInstancedNV);
init_extension_entry (library, "glPathCoverDepthFuncNV", PathCoverDepthFuncNV);
init_extension_entry (library, "glPathColorGenNV", PathColorGenNV);
init_extension_entry (library, "glPathTexGenNV", PathTexGenNV);
init_extension_entry (library, "glPathFogGenNV", PathFogGenNV);
init_extension_entry (library, "glCoverFillPathNV", CoverFillPathNV);
init_extension_entry (library, "glCoverStrokePathNV", CoverStrokePathNV);
init_extension_entry (library, "glCoverFillPathInstancedNV", CoverFillPathInstancedNV);
init_extension_entry (library, "glCoverStrokePathInstancedNV", CoverStrokePathInstancedNV);
init_extension_entry (library, "glGetPathParameterivNV", GetPathParameterivNV);
init_extension_entry (library, "glGetPathParameterfvNV", GetPathParameterfvNV);
init_extension_entry (library, "glGetPathCommandsNV", GetPathCommandsNV);
init_extension_entry (library, "glGetPathCoordsNV", GetPathCoordsNV);
init_extension_entry (library, "glGetPathDashArrayNV", GetPathDashArrayNV);
init_extension_entry (library, "glGetPathMetricsNV", GetPathMetricsNV);
init_extension_entry (library, "glGetPathMetricRangeNV", GetPathMetricRangeNV);
init_extension_entry (library, "glGetPathSpacingNV", GetPathSpacingNV);
init_extension_entry (library, "glGetPathColorGenivNV", GetPathColorGenivNV);
init_extension_entry (library, "glGetPathColorGenfvNV", GetPathColorGenfvNV);
init_extension_entry (library, "glGetPathTexGenivNV", GetPathTexGenivNV);
init_extension_entry (library, "glGetPathTexGenfvNV", GetPathTexGenfvNV);
init_extension_entry (library, "glIsPointInFillPathNV", IsPointInFillPathNV);
init_extension_entry (library, "glIsPointInStrokePathNV", IsPointInStrokePathNV);
init_extension_entry (library, "glGetPathLengthNV", GetPathLengthNV);
init_extension_entry (library, "glPointAlongPathNV", PointAlongPathNV);
init_extension_entry (library, "glStencilOpValueAMD", StencilOpValueAMD);
init_extension_entry (library, "glGetTextureHandleNV", GetTextureHandleNV);
init_extension_entry (library, "glGetTextureSamplerHandleNV", GetTextureSamplerHandleNV);
init_extension_entry (library, "glMakeTextureHandleResidentNV", MakeTextureHandleResidentNV);
init_extension_entry (library, "glMakeTextureHandleNonResidentNV", MakeTextureHandleNonResidentNV);
init_extension_entry (library, "glGetImageHandleNV", GetImageHandleNV);
init_extension_entry (library, "glMakeImageHandleResidentNV", MakeImageHandleResidentNV);
init_extension_entry (library, "glMakeImageHandleNonResidentNV", MakeImageHandleNonResidentNV);
init_extension_entry (library, "glUniformHandleui64NV", UniformHandleui64NV);
init_extension_entry (library, "glUniformHandleui64vNV", UniformHandleui64vNV);
init_extension_entry (library, "glProgramUniformHandleui64NV", ProgramUniformHandleui64NV);
init_extension_entry (library, "glProgramUniformHandleui64vNV", ProgramUniformHandleui64vNV);
init_extension_entry (library, "glIsTextureHandleResidentNV", IsTextureHandleResidentNV);
init_extension_entry (library, "glIsImageHandleResidentNV", IsImageHandleResidentNV);
init_extension_entry (library, "glTexStorageSparseAMD", TexStorageSparseAMD);
init_extension_entry (library, "glTextureStorageSparseAMD", TextureStorageSparseAMD);
#elif defined (OPENGL_ES_SUPPORT)
//получение адресов точек входа OpenGL ES 1.1
init_entry (library, "glAlphaFunc", AlphaFunc);
init_entry (library, "glClearColor", ClearColor);
init_entry (library, "glClearDepthf", ClearDepthf);
init_entry (library, "glClipPlanef", ClipPlanef);
init_entry (library, "glColor4f", Color4f);
init_entry (library, "glDepthRangef", DepthRangef);
init_entry (library, "glFogf", Fogf);
init_entry (library, "glFogfv", Fogfv);
init_entry (library, "glFrustumf", Frustumf);
init_entry (library, "glGetClipPlanef", GetClipPlanef);
init_entry (library, "glGetFloatv", GetFloatv);
init_entry (library, "glGetLightfv", GetLightfv);
init_entry (library, "glGetMaterialfv", GetMaterialfv);
init_entry (library, "glGetTexEnvfv", GetTexEnvfv);
init_entry (library, "glGetTexParameterfv", GetTexParameterfv);
init_entry (library, "glLightModelf", LightModelf);
init_entry (library, "glLightModelfv", LightModelfv);
init_entry (library, "glLightf", Lightf);
init_entry (library, "glLightfv", Lightfv);
init_entry (library, "glLineWidth", LineWidth);
init_entry (library, "glLoadMatrixf", LoadMatrixf);
init_entry (library, "glMaterialf", Materialf);
init_entry (library, "glMaterialfv", Materialfv);
init_entry (library, "glMultMatrixf", MultMatrixf);
init_entry (library, "glMultiTexCoord4f", MultiTexCoord4f);
init_entry (library, "glNormal3f", Normal3f);
init_entry (library, "glOrthof", Orthof);
init_entry (library, "glPointParameterf", PointParameterf);
init_entry (library, "glPointParameterfv", PointParameterfv);
init_entry (library, "glPointSize", PointSize);
init_entry (library, "glPolygonOffset", PolygonOffset);
init_entry (library, "glRotatef", Rotatef);
init_entry (library, "glScalef", Scalef);
init_entry (library, "glTexEnvf", TexEnvf);
init_entry (library, "glTexEnvfv", TexEnvfv);
init_entry (library, "glTexParameterf", TexParameterf);
init_entry (library, "glTexParameterfv", TexParameterfv);
init_entry (library, "glTranslatef", Translatef);
init_entry (library, "glActiveTexture", ActiveTexture);
init_entry (library, "glAlphaFuncx", AlphaFuncx);
init_entry (library, "glBindBuffer", BindBuffer);
init_entry (library, "glBindTexture", BindTexture);
init_entry (library, "glBlendFunc", BlendFunc);
init_entry (library, "glBufferData", BufferData);
init_entry (library, "glBufferSubData", BufferSubData);
init_entry (library, "glClear", Clear);
init_entry (library, "glClearColorx", ClearColorx);
init_entry (library, "glClearDepthx", ClearDepthx);
init_entry (library, "glClearStencil", ClearStencil);
init_entry (library, "glClientActiveTexture", ClientActiveTexture);
init_entry (library, "glClipPlanex", ClipPlanex);
init_entry (library, "glColor4ub", Color4ub);
init_entry (library, "glColor4x", Color4x);
init_entry (library, "glColorMask", ColorMask);
init_entry (library, "glColorPointer", ColorPointer);
init_entry (library, "glCompressedTexImage2D", CompressedTexImage2D);
init_entry (library, "glCompressedTexSubImage2D", CompressedTexSubImage2D);
init_entry (library, "glCopyTexImage2D", CopyTexImage2D);
init_entry (library, "glCopyTexSubImage2D", CopyTexSubImage2D);
init_entry (library, "glCullFace", CullFace);
init_entry (library, "glDeleteBuffers", DeleteBuffers);
init_entry (library, "glDeleteTextures", DeleteTextures);
init_entry (library, "glDepthFunc", DepthFunc);
init_entry (library, "glDepthMask", DepthMask);
init_entry (library, "glDepthRangex", DepthRangex);
init_entry (library, "glDisable", Disable);
init_entry (library, "glDisableClientState", DisableClientState);
init_entry (library, "glDrawArrays", DrawArrays);
init_entry (library, "glDrawElements", DrawElements);
init_entry (library, "glEnable", Enable);
init_entry (library, "glEnableClientState", EnableClientState);
init_entry (library, "glFinish", Finish);
init_entry (library, "glFlush", Flush);
init_entry (library, "glFogx", Fogx);
init_entry (library, "glFogxv", Fogxv);
init_entry (library, "glFrontFace", FrontFace);
init_entry (library, "glFrustumx", Frustumx);
init_entry (library, "glGetBooleanv", GetBooleanv);
init_entry (library, "glGetBufferParameteriv", GetBufferParameteriv);
init_entry (library, "glGetClipPlanex", GetClipPlanex);
init_entry (library, "glGenBuffers", GenBuffers);
init_entry (library, "glGenTextures", GenTextures);
init_entry (library, "glGetError", GetError);
init_entry (library, "glGetFixedv", GetFixedv);
init_entry (library, "glGetIntegerv", GetIntegerv);
init_entry (library, "glGetLightxv", GetLightxv);
init_entry (library, "glGetMaterialxv", GetMaterialxv);
init_entry (library, "glGetPointerv", GetPointerv);
init_entry (library, "glGetString", GetString);
init_entry (library, "glGetTexEnviv", GetTexEnviv);
init_entry (library, "glGetTexEnvxv", GetTexEnvxv);
init_entry (library, "glGetTexParameteriv", GetTexParameteriv);
init_entry (library, "glGetTexParameterxv", GetTexParameterxv);
init_entry (library, "glHint", Hint);
init_entry (library, "glIsBuffer", IsBuffer);
init_entry (library, "glIsEnabled", IsEnabled);
init_entry (library, "glIsTexture", IsTexture);
init_entry (library, "glLightModelx", LightModelx);
init_entry (library, "glLightModelxv", LightModelxv);
init_entry (library, "glLightx", Lightx);
init_entry (library, "glLightxv", Lightxv);
init_entry (library, "glLineWidthx", LineWidthx);
init_entry (library, "glLoadIdentity", LoadIdentity);
init_entry (library, "glLoadMatrixx", LoadMatrixx);
init_entry (library, "glLogicOp", LogicOp);
init_entry (library, "glMaterialx", Materialx);
init_entry (library, "glMaterialxv", Materialxv);
init_entry (library, "glMatrixMode", MatrixMode);
init_entry (library, "glMultMatrixx", MultMatrixx);
init_entry (library, "glMultiTexCoord4x", MultiTexCoord4x);
init_entry (library, "glNormal3x", Normal3x);
init_entry (library, "glNormalPointer", NormalPointer);
init_entry (library, "glOrthox", Orthox);
init_entry (library, "glPixelStorei", PixelStorei);
init_entry (library, "glPointParameterx", PointParameterx);
init_entry (library, "glPointParameterxv", PointParameterxv);
init_entry (library, "glPointSizex", PointSizex);
init_entry (library, "glPolygonOffsetx", PolygonOffsetx);
init_entry (library, "glPopMatrix", PopMatrix);
init_entry (library, "glPushMatrix", PushMatrix);
init_entry (library, "glReadPixels", ReadPixels);
init_entry (library, "glRotatex", Rotatex);
init_entry (library, "glSampleCoverage", SampleCoverage);
init_entry (library, "glSampleCoveragex", SampleCoveragex);
init_entry (library, "glScalex", Scalex);
init_entry (library, "glScissor", Scissor);
init_entry (library, "glShadeModel", ShadeModel);
init_entry (library, "glStencilFunc", StencilFunc);
init_entry (library, "glStencilMask", StencilMask);
init_entry (library, "glStencilOp", StencilOp);
init_entry (library, "glTexCoordPointer", TexCoordPointer);
init_entry (library, "glTexEnvi", TexEnvi);
init_entry (library, "glTexEnvx", TexEnvx);
init_entry (library, "glTexEnviv", TexEnviv);
init_entry (library, "glTexEnvxv", TexEnvxv);
init_entry (library, "glTexImage2D", TexImage2D);
init_entry (library, "glTexParameteri", TexParameteri);
init_entry (library, "glTexParameterx", TexParameterx);
init_entry (library, "glTexParameteriv", TexParameteriv);
init_entry (library, "glTexParameterxv", TexParameterxv);
init_entry (library, "glTexSubImage2D", TexSubImage2D);
init_entry (library, "glTranslatex", Translatex);
init_entry (library, "glVertexPointer", VertexPointer);
init_entry (library, "glViewport", Viewport);
// init_entry (library, "glPointSizePointerOES", PointSizePointerOES);
//получение адресов точек входа расширений OpenGL
init_extension_entry (library, "glBlendEquationSeparateOES", BlendEquationSeparateOES);
init_extension_entry (library, "glBlendFuncSeparateOES", BlendFuncSeparateOES);
init_extension_entry (library, "glBlendEquationOES", BlendEquationOES);
init_extension_entry (library, "glDrawTexsOES", DrawTexsOES);
init_extension_entry (library, "glDrawTexiOES", DrawTexiOES);
init_extension_entry (library, "glDrawTexxOES", DrawTexxOES);
init_extension_entry (library, "glDrawTexsvOES", DrawTexsvOES);
init_extension_entry (library, "glDrawTexivOES", DrawTexivOES);
init_extension_entry (library, "glDrawTexxvOES", DrawTexxvOES);
init_extension_entry (library, "glDrawTexfOES", DrawTexfOES);
init_extension_entry (library, "glDrawTexfvOES", DrawTexfvOES);
init_extension_entry (library, "glEGLImageTargetTexture2DOES", EGLImageTargetTexture2DOES);
init_extension_entry (library, "glEGLImageTargetRenderbufferStorageOES", EGLImageTargetRenderbufferStorageOES);
init_extension_entry (library, "glAlphaFuncxOES", AlphaFuncxOES);
init_extension_entry (library, "glClearColorxOES", ClearColorxOES);
init_extension_entry (library, "glClearDepthxOES", ClearDepthxOES);
init_extension_entry (library, "glClipPlanexOES", ClipPlanexOES);
init_extension_entry (library, "glColor4xOES", Color4xOES);
init_extension_entry (library, "glDepthRangexOES", DepthRangexOES);
init_extension_entry (library, "glFogxOES", FogxOES);
init_extension_entry (library, "glFogxvOES", FogxvOES);
init_extension_entry (library, "glFrustumxOES", FrustumxOES);
init_extension_entry (library, "glGetClipPlanexOES", GetClipPlanexOES);
init_extension_entry (library, "glGetFixedvOES", GetFixedvOES);
init_extension_entry (library, "glGetLightxvOES", GetLightxvOES);
init_extension_entry (library, "glGetMaterialxvOES", GetMaterialxvOES);
init_extension_entry (library, "glGetTexEnvxvOES", GetTexEnvxvOES);
init_extension_entry (library, "glGetTexParameterxvOES", GetTexParameterxvOES);
init_extension_entry (library, "glLightModelxOES", LightModelxOES);
init_extension_entry (library, "glLightModelxvOES", LightModelxvOES);
init_extension_entry (library, "glLightxOES", LightxOES);
init_extension_entry (library, "glLightxvOES", LightxvOES);
init_extension_entry (library, "glLineWidthxOES", LineWidthxOES);
init_extension_entry (library, "glLoadMatrixxOES", LoadMatrixxOES);
init_extension_entry (library, "glMaterialxOES", MaterialxOES);
init_extension_entry (library, "glMaterialxvOES", MaterialxvOES);
init_extension_entry (library, "glMultMatrixxOES", MultMatrixxOES);
init_extension_entry (library, "glMultiTexCoord4xOES", MultiTexCoord4xOES);
init_extension_entry (library, "glNormal3xOES", Normal3xOES);
init_extension_entry (library, "glOrthoxOES", OrthoxOES);
init_extension_entry (library, "glPointParameterxOES", PointParameterxOES);
init_extension_entry (library, "glPointParameterxvOES", PointParameterxvOES);
init_extension_entry (library, "glPointSizexOES", PointSizexOES);
init_extension_entry (library, "glPolygonOffsetxOES", PolygonOffsetxOES);
init_extension_entry (library, "glRotatexOES", RotatexOES);
init_extension_entry (library, "glSampleCoveragexOES", SampleCoveragexOES);
init_extension_entry (library, "glScalexOES", ScalexOES);
init_extension_entry (library, "glTexEnvxOES", TexEnvxOES);
init_extension_entry (library, "glTexEnvxvOES", TexEnvxvOES);
init_extension_entry (library, "glTexParameterxOES", TexParameterxOES);
init_extension_entry (library, "glTexParameterxvOES", TexParameterxvOES);
init_extension_entry (library, "glTranslatexOES", TranslatexOES);
init_extension_entry (library, "glIsRenderbufferOES", IsRenderbufferOES);
init_extension_entry (library, "glBindRenderbufferOES", BindRenderbufferOES);
init_extension_entry (library, "glDeleteRenderbuffersOES", DeleteRenderbuffersOES);
init_extension_entry (library, "glGenRenderbuffersOES", GenRenderbuffersOES);
init_extension_entry (library, "glRenderbufferStorageOES", RenderbufferStorageOES);
init_extension_entry (library, "glGetRenderbufferParameterivOES", GetRenderbufferParameterivOES);
init_extension_entry (library, "glIsFramebufferOES", IsFramebufferOES);
init_extension_entry (library, "glBindFramebufferOES", BindFramebufferOES);
init_extension_entry (library, "glDeleteFramebuffersOES", DeleteFramebuffersOES);
init_extension_entry (library, "glGenFramebuffersOES", GenFramebuffersOES);
init_extension_entry (library, "glCheckFramebufferStatusOES", CheckFramebufferStatusOES);
init_extension_entry (library, "glFramebufferRenderbufferOES", FramebufferRenderbufferOES);
init_extension_entry (library, "glFramebufferTexture2DOES", FramebufferTexture2DOES);
init_extension_entry (library, "glGetFramebufferAttachmentParameterivOES", GetFramebufferAttachmentParameterivOES);
init_extension_entry (library, "glGenerateMipmapOES", GenerateMipmapOES);
init_extension_entry (library, "glMapBufferOES", MapBufferOES);
init_extension_entry (library, "glUnmapBufferOES", UnmapBufferOES);
init_extension_entry (library, "glGetBufferPointervOES", GetBufferPointervOES);
init_extension_entry (library, "glCurrentPaletteMatrixOES", CurrentPaletteMatrixOES);
init_extension_entry (library, "glLoadPaletteFromModelViewMatrixOES", LoadPaletteFromModelViewMatrixOES);
init_extension_entry (library, "glMatrixIndexPointerOES", MatrixIndexPointerOES);
init_extension_entry (library, "glWeightPointerOES", WeightPointerOES);
init_extension_entry (library, "glQueryMatrixxOES", QueryMatrixxOES);
init_extension_entry (library, "glDepthRangefOES", DepthRangefOES);
init_extension_entry (library, "glFrustumfOES", FrustumfOES);
init_extension_entry (library, "glOrthofOES", OrthofOES);
init_extension_entry (library, "glClipPlanefOES", ClipPlanefOES);
init_extension_entry (library, "glGetClipPlanefOES", GetClipPlanefOES);
init_extension_entry (library, "glClearDepthfOES", ClearDepthfOES);
init_extension_entry (library, "glTexGenfOES", TexGenfOES);
init_extension_entry (library, "glTexGenfvOES", TexGenfvOES);
init_extension_entry (library, "glTexGeniOES", TexGeniOES);
init_extension_entry (library, "glTexGenivOES", TexGenivOES);
init_extension_entry (library, "glTexGenxOES", TexGenxOES);
init_extension_entry (library, "glTexGenxvOES", TexGenxvOES);
init_extension_entry (library, "glGetTexGenfvOES", GetTexGenfvOES);
init_extension_entry (library, "glGetTexGenivOES", GetTexGenivOES);
init_extension_entry (library, "glGetTexGenxvOES", GetTexGenxvOES);
init_extension_entry (library, "glClipPlanefIMG", ClipPlanefIMG);
init_extension_entry (library, "glClipPlanexIMG", ClipPlanexIMG);
init_extension_entry (library, "glDeleteFencesNV", DeleteFencesNV);
init_extension_entry (library, "glGenFencesNV", GenFencesNV);
init_extension_entry (library, "glIsFenceNV", IsFenceNV);
init_extension_entry (library, "glTestFenceNV", TestFenceNV);
init_extension_entry (library, "glGetFenceivNV", GetFenceivNV);
init_extension_entry (library, "glFinishFenceNV", FinishFenceNV);
init_extension_entry (library, "glSetFenceNV", SetFenceNV);
init_extension_entry (library, "glGetDriverControlsQCOM", GetDriverControlsQCOM);
init_extension_entry (library, "glGetDriverControlStringQCOM", GetDriverControlStringQCOM);
init_extension_entry (library, "glEnableDriverControlQCOM", EnableDriverControlQCOM);
init_extension_entry (library, "glDisableDriverControlQCOM", DisableDriverControlQCOM);
#elif defined (OPENGL_ES2_SUPPORT)
init_entry (library, "glActiveTexture", ActiveTexture);
init_entry (library, "glAttachShader", AttachShader);
init_entry (library, "glBindAttribLocation", BindAttribLocation);
init_entry (library, "glBindBuffer", BindBuffer);
init_entry (library, "glBindFramebuffer", BindFramebuffer);
init_entry (library, "glBindRenderbuffer", BindRenderbuffer);
init_entry (library, "glBindTexture", BindTexture);
init_entry (library, "glBlendColor", BlendColor);
init_entry (library, "glBlendEquation", BlendEquation);
init_entry (library, "glBlendEquationSeparate", BlendEquationSeparate);
init_entry (library, "glBlendFunc", BlendFunc);
init_entry (library, "glBlendFuncSeparate", BlendFuncSeparate);
init_entry (library, "glBufferData", BufferData);
init_entry (library, "glBufferSubData", BufferSubData);
init_entry (library, "glCheckFramebufferStatus", CheckFramebufferStatus);
init_entry (library, "glClear", Clear);
init_entry (library, "glClearColor", ClearColor);
init_entry (library, "glClearDepthf", ClearDepthf);
init_entry (library, "glClearStencil", ClearStencil);
init_entry (library, "glColorMask", ColorMask);
init_entry (library, "glCompileShader", CompileShader);
init_entry (library, "glCompressedTexImage2D", CompressedTexImage2D);
init_entry (library, "glCompressedTexSubImage2D", CompressedTexSubImage2D);
init_entry (library, "glCopyTexImage2D", CopyTexImage2D);
init_entry (library, "glCopyTexSubImage2D", CopyTexSubImage2D);
init_entry (library, "glCreateProgram", CreateProgram);
init_entry (library, "glCreateShader", CreateShader);
init_entry (library, "glCullFace", CullFace);
init_entry (library, "glDeleteBuffers", DeleteBuffers);
init_entry (library, "glDeleteFramebuffers", DeleteFramebuffers);
init_entry (library, "glDeleteProgram", DeleteProgram);
init_entry (library, "glDeleteRenderbuffers", DeleteRenderbuffers);
init_entry (library, "glDeleteShader", DeleteShader);
init_entry (library, "glDeleteTextures", DeleteTextures);
init_entry (library, "glDepthFunc", DepthFunc);
init_entry (library, "glDepthMask", DepthMask);
init_entry (library, "glDepthRangef", DepthRangef);
init_entry (library, "glDetachShader", DetachShader);
init_entry (library, "glDisable", Disable);
init_entry (library, "glDisableVertexAttribArray", DisableVertexAttribArray);
init_entry (library, "glDrawArrays", DrawArrays);
init_entry (library, "glDrawElements", DrawElements);
init_entry (library, "glEnable", Enable);
init_entry (library, "glEnableVertexAttribArray", EnableVertexAttribArray);
init_entry (library, "glFinish", Finish);
init_entry (library, "glFlush", Flush);
init_entry (library, "glFramebufferRenderbuffer", FramebufferRenderbuffer);
init_entry (library, "glFramebufferTexture2D", FramebufferTexture2D);
init_entry (library, "glFrontFace", FrontFace);
init_entry (library, "glGenBuffers", GenBuffers);
init_entry (library, "glGenerateMipmap", GenerateMipmap);
init_entry (library, "glGenFramebuffers", GenFramebuffers);
init_entry (library, "glGenRenderbuffers", GenRenderbuffers);
init_entry (library, "glGenTextures", GenTextures);
init_entry (library, "glGetActiveAttrib", GetActiveAttrib);
init_entry (library, "glGetActiveUniform", GetActiveUniform);
init_entry (library, "glGetAttachedShaders", GetAttachedShaders);
init_entry (library, "glGetAttribLocation", GetAttribLocation);
init_entry (library, "glGetBooleanv", GetBooleanv);
init_entry (library, "glGetBufferParameteriv", GetBufferParameteriv);
init_entry (library, "glGetError", GetError);
init_entry (library, "glGetFloatv", GetFloatv);
init_entry (library, "glGetFramebufferAttachmentParameteriv", GetFramebufferAttachmentParameteriv);
init_entry (library, "glGetIntegerv", GetIntegerv);
init_entry (library, "glGetProgramiv", GetProgramiv);
init_entry (library, "glGetProgramInfoLog", GetProgramInfoLog);
init_entry (library, "glGetRenderbufferParameteriv", GetRenderbufferParameteriv);
init_entry (library, "glGetShaderiv", GetShaderiv);
init_entry (library, "glGetShaderInfoLog", GetShaderInfoLog);
init_entry (library, "glGetShaderPrecisionFormat", GetShaderPrecisionFormat);
init_entry (library, "glGetShaderSource", GetShaderSource);
init_entry (library, "glGetString", GetString);
init_entry (library, "glGetTexParameterfv", GetTexParameterfv);
init_entry (library, "glGetTexParameteriv", GetTexParameteriv);
init_entry (library, "glGetUniformfv", GetUniformfv);
init_entry (library, "glGetUniformiv", GetUniformiv);
init_entry (library, "glGetUniformLocation", GetUniformLocation);
init_entry (library, "glGetVertexAttribfv", GetVertexAttribfv);
init_entry (library, "glGetVertexAttribiv", GetVertexAttribiv);
init_entry (library, "glGetVertexAttribPointerv", GetVertexAttribPointerv);
init_entry (library, "glHint", Hint);
init_entry (library, "glIsBuffer", IsBuffer);
init_entry (library, "glIsEnabled", IsEnabled);
init_entry (library, "glIsFramebuffer", IsFramebuffer);
init_entry (library, "glIsProgram", IsProgram);
init_entry (library, "glIsRenderbuffer", IsRenderbuffer);
init_entry (library, "glIsShader", IsShader);
init_entry (library, "glIsTexture", IsTexture);
init_entry (library, "glLineWidth", LineWidth);
init_entry (library, "glLinkProgram", LinkProgram);
init_entry (library, "glPixelStorei", PixelStorei);
init_entry (library, "glPolygonOffset", PolygonOffset);
init_entry (library, "glReadPixels", ReadPixels);
init_entry (library, "glReleaseShaderCompiler", ReleaseShaderCompiler);
init_entry (library, "glRenderbufferStorage", RenderbufferStorage);
init_entry (library, "glSampleCoverage", SampleCoverage);
init_entry (library, "glScissor", Scissor);
init_entry (library, "glShaderBinary", ShaderBinary);
init_entry (library, "glShaderSource", ShaderSource);
init_entry (library, "glStencilFunc", StencilFunc);
init_entry (library, "glStencilFuncSeparate", StencilFuncSeparate);
init_entry (library, "glStencilMask", StencilMask);
init_entry (library, "glStencilMaskSeparate", StencilMaskSeparate);
init_entry (library, "glStencilOp", StencilOp);
init_entry (library, "glStencilOpSeparate", StencilOpSeparate);
init_entry (library, "glTexImage2D", TexImage2D);
init_entry (library, "glTexParameterf", TexParameterf);
init_entry (library, "glTexParameterfv", TexParameterfv);
init_entry (library, "glTexParameteri", TexParameteri);
init_entry (library, "glTexParameteriv", TexParameteriv);
init_entry (library, "glTexSubImage2D", TexSubImage2D);
init_entry (library, "glUniform1f", Uniform1f);
init_entry (library, "glUniform1fv", Uniform1fv);
init_entry (library, "glUniform1i", Uniform1i);
init_entry (library, "glUniform1iv", Uniform1iv);
init_entry (library, "glUniform2f", Uniform2f);
init_entry (library, "glUniform2fv", Uniform2fv);
init_entry (library, "glUniform2i", Uniform2i);
init_entry (library, "glUniform2iv", Uniform2iv);
init_entry (library, "glUniform3f", Uniform3f);
init_entry (library, "glUniform3fv", Uniform3fv);
init_entry (library, "glUniform3i", Uniform3i);
init_entry (library, "glUniform3iv", Uniform3iv);
init_entry (library, "glUniform4f", Uniform4f);
init_entry (library, "glUniform4fv", Uniform4fv);
init_entry (library, "glUniform4i", Uniform4i);
init_entry (library, "glUniform4iv", Uniform4iv);
init_entry (library, "glUniformMatrix2fv", UniformMatrix2fv);
init_entry (library, "glUniformMatrix3fv", UniformMatrix3fv);
init_entry (library, "glUniformMatrix4fv", UniformMatrix4fv);
init_entry (library, "glUseProgram", UseProgram);
init_entry (library, "glValidateProgram", ValidateProgram);
init_entry (library, "glVertexAttrib1f", VertexAttrib1f);
init_entry (library, "glVertexAttrib1fv", VertexAttrib1fv);
init_entry (library, "glVertexAttrib2f", VertexAttrib2f);
init_entry (library, "glVertexAttrib2fv", VertexAttrib2fv);
init_entry (library, "glVertexAttrib3f", VertexAttrib3f);
init_entry (library, "glVertexAttrib3fv", VertexAttrib3fv);
init_entry (library, "glVertexAttrib4f", VertexAttrib4f);
init_entry (library, "glVertexAttrib4fv", VertexAttrib4fv);
init_entry (library, "glVertexAttribPointer", VertexAttribPointer);
init_entry (library, "glViewport", Viewport);
//получение адресов точек входа расширений OpenGL
init_extension_entry (library, "glDebugMessageControlKHR", DebugMessageControlKHR);
init_extension_entry (library, "glDebugMessageInsertKHR", DebugMessageInsertKHR);
init_extension_entry (library, "glDebugMessageCallbackKHR", DebugMessageCallbackKHR);
init_extension_entry (library, "glGetDebugMessageLogKHR", GetDebugMessageLogKHR);
init_extension_entry (library, "glPushDebugGroupKHR", PushDebugGroupKHR);
init_extension_entry (library, "glPopDebugGroupKHR", PopDebugGroupKHR);
init_extension_entry (library, "glObjectLabelKHR", ObjectLabelKHR);
init_extension_entry (library, "glGetObjectLabelKHR", GetObjectLabelKHR);
init_extension_entry (library, "glObjectPtrLabelKHR", ObjectPtrLabelKHR);
init_extension_entry (library, "glGetObjectPtrLabelKHR", GetObjectPtrLabelKHR);
init_extension_entry (library, "glGetPointervKHR", GetPointervKHR);
init_extension_entry (library, "glEGLImageTargetTexture2DOES", EGLImageTargetTexture2DOES);
init_extension_entry (library, "glEGLImageTargetRenderbufferStorageOES", EGLImageTargetRenderbufferStorageOES);
init_extension_entry (library, "glGetProgramBinaryOES", GetProgramBinaryOES);
init_extension_entry (library, "glProgramBinaryOES", ProgramBinaryOES);
init_extension_entry (library, "glMapBufferOES", MapBufferOES);
init_extension_entry (library, "glUnmapBufferOES", UnmapBufferOES);
init_extension_entry (library, "glGetBufferPointervOES", GetBufferPointervOES);
init_extension_entry (library, "glTexImage3DOES", TexImage3DOES);
init_extension_entry (library, "glTexSubImage3DOES", TexSubImage3DOES);
init_extension_entry (library, "glCopyTexSubImage3DOES", CopyTexSubImage3DOES);
init_extension_entry (library, "glCompressedTexImage3DOES", CompressedTexImage3DOES);
init_extension_entry (library, "glCompressedTexSubImage3DOES", CompressedTexSubImage3DOES);
init_extension_entry (library, "glFramebufferTexture3DOES", FramebufferTexture3DOES);
init_extension_entry (library, "glBindVertexArrayOES", BindVertexArrayOES);
init_extension_entry (library, "glDeleteVertexArraysOES", DeleteVertexArraysOES);
init_extension_entry (library, "glGenVertexArraysOES", GenVertexArraysOES);
init_extension_entry (library, "glIsVertexArrayOES", IsVertexArrayOES);
init_extension_entry (library, "glGetPerfMonitorGroupsAMD", GetPerfMonitorGroupsAMD);
init_extension_entry (library, "glGetPerfMonitorCountersAMD", GetPerfMonitorCountersAMD);
init_extension_entry (library, "glGetPerfMonitorGroupStringAMD", GetPerfMonitorGroupStringAMD);
init_extension_entry (library, "glGetPerfMonitorCounterStringAMD", GetPerfMonitorCounterStringAMD);
init_extension_entry (library, "glGetPerfMonitorCounterInfoAMD", GetPerfMonitorCounterInfoAMD);
init_extension_entry (library, "glGenPerfMonitorsAMD", GenPerfMonitorsAMD);
init_extension_entry (library, "glDeletePerfMonitorsAMD", DeletePerfMonitorsAMD);
init_extension_entry (library, "glSelectPerfMonitorCountersAMD", SelectPerfMonitorCountersAMD);
init_extension_entry (library, "glBeginPerfMonitorAMD", BeginPerfMonitorAMD);
init_extension_entry (library, "glEndPerfMonitorAMD", EndPerfMonitorAMD);
init_extension_entry (library, "glGetPerfMonitorCounterDataAMD", GetPerfMonitorCounterDataAMD);
init_extension_entry (library, "glBlitFramebufferANGLE", BlitFramebufferANGLE);
init_extension_entry (library, "glRenderbufferStorageMultisampleANGLE", RenderbufferStorageMultisampleANGLE);
init_extension_entry (library, "glDrawArraysInstancedANGLE", DrawArraysInstancedANGLE);
init_extension_entry (library, "glDrawElementsInstancedANGLE", DrawElementsInstancedANGLE);
init_extension_entry (library, "glVertexAttribDivisorANGLE", VertexAttribDivisorANGLE);
init_extension_entry (library, "glGetTranslatedShaderSourceANGLE", GetTranslatedShaderSourceANGLE);
init_extension_entry (library, "glCopyTextureLevelsAPPLE", CopyTextureLevelsAPPLE);
init_extension_entry (library, "glRenderbufferStorageMultisampleAPPLE", RenderbufferStorageMultisampleAPPLE);
init_extension_entry (library, "glResolveMultisampleFramebufferAPPLE", ResolveMultisampleFramebufferAPPLE);
init_extension_entry (library, "glFenceSyncAPPLE", FenceSyncAPPLE);
init_extension_entry (library, "glIsSyncAPPLE", IsSyncAPPLE);
init_extension_entry (library, "glDeleteSyncAPPLE", DeleteSyncAPPLE);
init_extension_entry (library, "glClientWaitSyncAPPLE", ClientWaitSyncAPPLE);
init_extension_entry (library, "glWaitSyncAPPLE", WaitSyncAPPLE);
init_extension_entry (library, "glGetInteger64vAPPLE", GetInteger64vAPPLE);
init_extension_entry (library, "glGetSyncivAPPLE", GetSyncivAPPLE);
init_extension_entry (library, "glLabelObjectEXT", LabelObjectEXT);
init_extension_entry (library, "glGetObjectLabelEXT", GetObjectLabelEXT);
init_extension_entry (library, "glInsertEventMarkerEXT", InsertEventMarkerEXT);
init_extension_entry (library, "glPushGroupMarkerEXT", PushGroupMarkerEXT);
init_extension_entry (library, "glPopGroupMarkerEXT", PopGroupMarkerEXT);
init_extension_entry (library, "glDiscardFramebufferEXT", DiscardFramebufferEXT);
init_extension_entry (library, "glGenQueriesEXT", GenQueriesEXT);
init_extension_entry (library, "glDeleteQueriesEXT", DeleteQueriesEXT);
init_extension_entry (library, "glIsQueryEXT", IsQueryEXT);
init_extension_entry (library, "glBeginQueryEXT", BeginQueryEXT);
init_extension_entry (library, "glEndQueryEXT", EndQueryEXT);
init_extension_entry (library, "glQueryCounterEXT", QueryCounterEXT);
init_extension_entry (library, "glGetQueryivEXT", GetQueryivEXT);
init_extension_entry (library, "glGetQueryObjectivEXT", GetQueryObjectivEXT);
init_extension_entry (library, "glGetQueryObjectuivEXT", GetQueryObjectuivEXT);
init_extension_entry (library, "glGetQueryObjecti64vEXT", GetQueryObjecti64vEXT);
init_extension_entry (library, "glGetQueryObjectui64vEXT", GetQueryObjectui64vEXT);
init_extension_entry (library, "glDrawBuffersEXT", DrawBuffersEXT);
init_extension_entry (library, "glDrawArraysInstancedEXT", DrawArraysInstancedEXT);
init_extension_entry (library, "glDrawElementsInstancedEXT", DrawElementsInstancedEXT);
init_extension_entry (library, "glVertexAttribDivisorEXT", VertexAttribDivisorEXT);
init_extension_entry (library, "glMapBufferRangeEXT", MapBufferRangeEXT);
init_extension_entry (library, "glFlushMappedBufferRangeEXT", FlushMappedBufferRangeEXT);
init_extension_entry (library, "glMultiDrawArraysEXT", MultiDrawArraysEXT);
init_extension_entry (library, "glMultiDrawElementsEXT", MultiDrawElementsEXT);
init_extension_entry (library, "glRenderbufferStorageMultisampleEXT", RenderbufferStorageMultisampleEXT);
init_extension_entry (library, "glFramebufferTexture2DMultisampleEXT", FramebufferTexture2DMultisampleEXT);
init_extension_entry (library, "glReadBufferIndexedEXT", ReadBufferIndexedEXT);
init_extension_entry (library, "glDrawBuffersIndexedEXT", DrawBuffersIndexedEXT);
init_extension_entry (library, "glGetIntegeri_vEXT", GetIntegeri_vEXT);
init_extension_entry (library, "glGetGraphicsResetStatusEXT", GetGraphicsResetStatusEXT);
init_extension_entry (library, "glReadnPixelsEXT", ReadnPixelsEXT);
init_extension_entry (library, "glGetnUniformfvEXT", GetnUniformfvEXT);
init_extension_entry (library, "glGetnUniformivEXT", GetnUniformivEXT);
init_extension_entry (library, "glActiveShaderProgramEXT", ActiveShaderProgramEXT);
init_extension_entry (library, "glBindProgramPipelineEXT", BindProgramPipelineEXT);
init_extension_entry (library, "glCreateShaderProgramvEXT", CreateShaderProgramvEXT);
init_extension_entry (library, "glDeleteProgramPipelinesEXT", DeleteProgramPipelinesEXT);
init_extension_entry (library, "glGenProgramPipelinesEXT", GenProgramPipelinesEXT);
init_extension_entry (library, "glGetProgramPipelineInfoLogEXT", GetProgramPipelineInfoLogEXT);
init_extension_entry (library, "glGetProgramPipelineivEXT", GetProgramPipelineivEXT);
init_extension_entry (library, "glIsProgramPipelineEXT", IsProgramPipelineEXT);
init_extension_entry (library, "glProgramParameteriEXT", ProgramParameteriEXT);
init_extension_entry (library, "glProgramUniform1fEXT", ProgramUniform1fEXT);
init_extension_entry (library, "glProgramUniform1fvEXT", ProgramUniform1fvEXT);
init_extension_entry (library, "glProgramUniform1iEXT", ProgramUniform1iEXT);
init_extension_entry (library, "glProgramUniform1ivEXT", ProgramUniform1ivEXT);
init_extension_entry (library, "glProgramUniform2fEXT", ProgramUniform2fEXT);
init_extension_entry (library, "glProgramUniform2fvEXT", ProgramUniform2fvEXT);
init_extension_entry (library, "glProgramUniform2iEXT", ProgramUniform2iEXT);
init_extension_entry (library, "glProgramUniform2ivEXT", ProgramUniform2ivEXT);
init_extension_entry (library, "glProgramUniform3fEXT", ProgramUniform3fEXT);
init_extension_entry (library, "glProgramUniform3fvEXT", ProgramUniform3fvEXT);
init_extension_entry (library, "glProgramUniform3iEXT", ProgramUniform3iEXT);
init_extension_entry (library, "glProgramUniform3ivEXT", ProgramUniform3ivEXT);
init_extension_entry (library, "glProgramUniform4fEXT", ProgramUniform4fEXT);
init_extension_entry (library, "glProgramUniform4fvEXT", ProgramUniform4fvEXT);
init_extension_entry (library, "glProgramUniform4iEXT", ProgramUniform4iEXT);
init_extension_entry (library, "glProgramUniform4ivEXT", ProgramUniform4ivEXT);
init_extension_entry (library, "glProgramUniformMatrix2fvEXT", ProgramUniformMatrix2fvEXT);
init_extension_entry (library, "glProgramUniformMatrix3fvEXT", ProgramUniformMatrix3fvEXT);
init_extension_entry (library, "glProgramUniformMatrix4fvEXT", ProgramUniformMatrix4fvEXT);
init_extension_entry (library, "glUseProgramStagesEXT", UseProgramStagesEXT);
init_extension_entry (library, "glValidateProgramPipelineEXT", ValidateProgramPipelineEXT);
init_extension_entry (library, "glProgramUniform1uiEXT", ProgramUniform1uiEXT);
init_extension_entry (library, "glProgramUniform2uiEXT", ProgramUniform2uiEXT);
init_extension_entry (library, "glProgramUniform3uiEXT", ProgramUniform3uiEXT);
init_extension_entry (library, "glProgramUniform4uiEXT", ProgramUniform4uiEXT);
init_extension_entry (library, "glProgramUniform1uivEXT", ProgramUniform1uivEXT);
init_extension_entry (library, "glProgramUniform2uivEXT", ProgramUniform2uivEXT);
init_extension_entry (library, "glProgramUniform3uivEXT", ProgramUniform3uivEXT);
init_extension_entry (library, "glProgramUniform4uivEXT", ProgramUniform4uivEXT);
init_extension_entry (library, "glProgramUniformMatrix2x3fvEXT", ProgramUniformMatrix2x3fvEXT);
init_extension_entry (library, "glProgramUniformMatrix3x2fvEXT", ProgramUniformMatrix3x2fvEXT);
init_extension_entry (library, "glProgramUniformMatrix2x4fvEXT", ProgramUniformMatrix2x4fvEXT);
init_extension_entry (library, "glProgramUniformMatrix4x2fvEXT", ProgramUniformMatrix4x2fvEXT);
init_extension_entry (library, "glProgramUniformMatrix3x4fvEXT", ProgramUniformMatrix3x4fvEXT);
init_extension_entry (library, "glProgramUniformMatrix4x3fvEXT", ProgramUniformMatrix4x3fvEXT);
init_extension_entry (library, "glTexStorage1DEXT", TexStorage1DEXT);
init_extension_entry (library, "glTexStorage2DEXT", TexStorage2DEXT);
init_extension_entry (library, "glTexStorage3DEXT", TexStorage3DEXT);
init_extension_entry (library, "glTextureStorage1DEXT", TextureStorage1DEXT);
init_extension_entry (library, "glTextureStorage2DEXT", TextureStorage2DEXT);
init_extension_entry (library, "glTextureStorage3DEXT", TextureStorage3DEXT);
init_extension_entry (library, "glRenderbufferStorageMultisampleIMG", RenderbufferStorageMultisampleIMG);
init_extension_entry (library, "glFramebufferTexture2DMultisampleIMG", FramebufferTexture2DMultisampleIMG);
init_extension_entry (library, "glBeginPerfQueryINTEL", BeginPerfQueryINTEL);
init_extension_entry (library, "glCreatePerfQueryINTEL", CreatePerfQueryINTEL);
init_extension_entry (library, "glDeletePerfQueryINTEL", DeletePerfQueryINTEL);
init_extension_entry (library, "glEndPerfQueryINTEL", EndPerfQueryINTEL);
init_extension_entry (library, "glGetFirstPerfQueryIdINTEL", GetFirstPerfQueryIdINTEL);
init_extension_entry (library, "glGetNextPerfQueryIdINTEL", GetNextPerfQueryIdINTEL);
init_extension_entry (library, "glGetPerfCounterInfoINTEL", GetPerfCounterInfoINTEL);
init_extension_entry (library, "glGetPerfQueryDataINTEL", GetPerfQueryDataINTEL);
init_extension_entry (library, "glGetPerfQueryIdByNameINTEL", GetPerfQueryIdByNameINTEL);
init_extension_entry (library, "glGetPerfQueryInfoINTEL", GetPerfQueryInfoINTEL);
init_extension_entry (library, "glBlendParameteriNV", BlendParameteriNV);
init_extension_entry (library, "glBlendBarrierNV", BlendBarrierNV);
init_extension_entry (library, "glCopyBufferSubDataNV", CopyBufferSubDataNV);
init_extension_entry (library, "glCoverageMaskNV", CoverageMaskNV);
init_extension_entry (library, "glCoverageOperationNV", CoverageOperationNV);
init_extension_entry (library, "glDrawBuffersNV", DrawBuffersNV);
init_extension_entry (library, "glDrawArraysInstancedNV", DrawArraysInstancedNV);
init_extension_entry (library, "glDrawElementsInstancedNV", DrawElementsInstancedNV);
init_extension_entry (library, "glDeleteFencesNV", DeleteFencesNV);
init_extension_entry (library, "glGenFencesNV", GenFencesNV);
init_extension_entry (library, "glIsFenceNV", IsFenceNV);
init_extension_entry (library, "glTestFenceNV", TestFenceNV);
init_extension_entry (library, "glGetFenceivNV", GetFenceivNV);
init_extension_entry (library, "glFinishFenceNV", FinishFenceNV);
init_extension_entry (library, "glSetFenceNV", SetFenceNV);
init_extension_entry (library, "glBlitFramebufferNV", BlitFramebufferNV);
init_extension_entry (library, "glRenderbufferStorageMultisampleNV", RenderbufferStorageMultisampleNV);
init_extension_entry (library, "glVertexAttribDivisorNV", VertexAttribDivisorNV);
init_extension_entry (library, "glUniformMatrix2x3fvNV", UniformMatrix2x3fvNV);
init_extension_entry (library, "glUniformMatrix3x2fvNV", UniformMatrix3x2fvNV);
init_extension_entry (library, "glUniformMatrix2x4fvNV", UniformMatrix2x4fvNV);
init_extension_entry (library, "glUniformMatrix4x2fvNV", UniformMatrix4x2fvNV);
init_extension_entry (library, "glUniformMatrix3x4fvNV", UniformMatrix3x4fvNV);
init_extension_entry (library, "glUniformMatrix4x3fvNV", UniformMatrix4x3fvNV);
init_extension_entry (library, "glReadBufferNV", ReadBufferNV);
init_extension_entry (library, "glAlphaFuncQCOM", AlphaFuncQCOM);
init_extension_entry (library, "glGetDriverControlsQCOM", GetDriverControlsQCOM);
init_extension_entry (library, "glGetDriverControlStringQCOM", GetDriverControlStringQCOM);
init_extension_entry (library, "glEnableDriverControlQCOM", EnableDriverControlQCOM);
init_extension_entry (library, "glDisableDriverControlQCOM", DisableDriverControlQCOM);
init_extension_entry (library, "glExtGetTexturesQCOM", ExtGetTexturesQCOM);
init_extension_entry (library, "glExtGetBuffersQCOM", ExtGetBuffersQCOM);
init_extension_entry (library, "glExtGetRenderbuffersQCOM", ExtGetRenderbuffersQCOM);
init_extension_entry (library, "glExtGetFramebuffersQCOM", ExtGetFramebuffersQCOM);
init_extension_entry (library, "glExtGetTexLevelParameterivQCOM", ExtGetTexLevelParameterivQCOM);
init_extension_entry (library, "glExtTexObjectStateOverrideiQCOM", ExtTexObjectStateOverrideiQCOM);
init_extension_entry (library, "glExtGetTexSubImageQCOM", ExtGetTexSubImageQCOM);
init_extension_entry (library, "glExtGetBufferPointervQCOM", ExtGetBufferPointervQCOM);
init_extension_entry (library, "glExtGetShadersQCOM", ExtGetShadersQCOM);
init_extension_entry (library, "glExtGetProgramsQCOM", ExtGetProgramsQCOM);
init_extension_entry (library, "glExtIsProgramBinaryQCOM", ExtIsProgramBinaryQCOM);
init_extension_entry (library, "glExtGetProgramBinarySourceQCOM", ExtGetProgramBinarySourceQCOM);
init_extension_entry (library, "glStartTilingQCOM", StartTilingQCOM);
init_extension_entry (library, "glEndTilingQCOM", EndTilingQCOM);
#endif
}
|
<gh_stars>10-100
#pragma once
#include "util.h"
#include "CudaEvent.h"
// wrapper around cuda streams
class CudaStream {
public:
CudaStream()
: stream_(0) // use default stream
{};
// flag whether or not to create a new stream or use default stream
CudaStream(bool create_new_stream) {
stream_ = create_new_stream ? new_stream() : 0;
}
~CudaStream() {
if(stream_) {
auto status = cudaStreamDestroy(stream_);
cuda_check_status(status);
}
}
// return the CUDA stream handle
cudaStream_t stream() {
return stream_;
}
// insert event into stream
// returns immediately
CudaEvent enqueue_event() {
CudaEvent e;
auto status = cudaEventRecord(e.event(), stream_);
cuda_check_status(status);
return e;
}
// make all future work on stream wait until event has completed.
// returns immediately, not waiting for event to complete
void wait_on_event(CudaEvent &e) {
auto status = cudaStreamWaitEvent(stream_, e.event(), 0);
cuda_check_status(status);
}
private:
cudaStream_t new_stream() {
cudaStream_t s;
auto status = cudaStreamCreate(&s);
cuda_check_status(status);
return s;
}
cudaStream_t stream_;
};
|
Relax, your balance can never be lost through such an issue:) Lets do this guide step by step to recover your balance…
Error:
It is possible there was a backlog when the price was going up rapidly, that is not uncommon, so transactions may have been slow. Have patience and check later again if the issue persists. If you still cant see anything after an hour, then the issue might be that your transaction was not sent by your node for a variety of reasons. In that case follow these instructions to rescan your wallet and regain access to the unspent coins.
Solution Step 1:
You should rename your wallet binary file (the one that does NOT end with .keys or .txt) and restart the wallet. It will rescan the chain and assuming the transaction was not mined (usually because your node failed to broadcast it for some reason) then the coins will once again be available for use. This may require waiting 24 hours for the tx to drop out of the mempool, assuming it was actually ever there.
Solution Step 2:
You can try shutting down your daemon, delete poolstate.bin (C:\Users\[YourUsername]\AppData\Roaming\aeon) and restart the deamon. This will clear out the mempool on your own daemon so it will accept the new tx. However, there is no guarantee that any other nodes will accept it, so for that you may have to wait 24 hours.
Additional info:
Please do not send txs with mix 0 at this point. There is only one slot for mix 0 transactions per block, and competition for that slot can mean transactions will be delayed for a long time. Even sending with a mixin rate of 1 can cause delays, especially when the network sees an increase in value. Best to use the minimum meaningful mixin level of 2. This will reduce delays.
In the event your transaction does not make it into a block, it gets returned to you after 1-3 days.
Eventually AEON will have dynamic fees and higher bidders will get priority, but dynamic fees arent the default right now in AEON. You can start though simplewallet with the flag “–fee-multiplier X” where X is a number from 1 to 99. (And your 0.01 fee will be multiplied accordingly aka increase your priority therefor)! |
HLA-DR RFLP distributions in two groups of aboriginal Australians. HLA-DR and -DQ typing by restriction fragment length polymorphism (RFLP) in Aboriginal Australians from the Kimberleys and from Coen shows a restricted number of HLA-DR types in these populations. The polymorphism is essentially limited to DR2, DR4, DRw14 and DRw8. The most common DR.DQ RFLP haplotype in Aborigines shows a novel arrangement of DR and DQ alleles that has important implications for histocompatibility matching if the RFLP patterns reflect functional variation in HLA class II molecules. |
<reponame>abdelq/pybaselines
# -*- coding: utf-8 -*-
"""Tests for pybaselines.manual.
@author: <NAME>
Created on March 20, 2021
"""
from pybaselines import manual
from .conftest import get_data, AlgorithmTester
class TestLinearInterp(AlgorithmTester):
"""Class for testing linear_interp baseline."""
func = manual.linear_interp
points = ((5, 10), (10, 20), (90, 100))
def test_unchanged_data(self, data_fixture):
x, y = get_data()
super()._test_unchanged_data(data_fixture, None, x, x, self.points)
def test_output(self):
super()._test_output(self.x, self.x, self.points)
def test_list_input(self):
x_list = self.x.tolist()
super()._test_algorithm_list(
array_args=(self.x, self.points), list_args=(x_list, self.points)
)
|
From Close-Packed to Topologically Close-Packed: Formation of Laves Phases in Moderately Polydisperse Hard-Sphere Mixtures Particle size polydispersity can help to inhibit crystallization of the hard-sphere fluid into close-packed structures at high packing fractions and thus is often employed to create model glass-forming systems. Nonetheless, it is known that hard-sphere mixtures with modest polydispersity still have ordered ground states. Here, we demonstrate by computer simulation that hard-sphere mixtures with increased polydispersity fractionate on the basis of particle size, and a bimodal subpopulation favors formation of topologically close-packed C14 and C15 Laves phases in coexistence with a disordered phase. The generality of this result is supported by simulations of hard-sphere mixtures with particle-size distributions of four different forms. Size-polydisperse hard-sphere (HS) fluids are popular models for computational studies of glass formers. Polydispersity in such systems is well known to inhibit formation of close-packed lattice structures that otherwise readily assemble from the monodisperse fluid upon densification prior to reaching glassy states. While polydispersity slows the kinetics of crystallization, fractionation into particle-size-selective close-packed crystalline phases is thermodynamically favored over the fluid in modestly polydisperse mixtures of HS-like particles. Crystallization of fluid mixtures with higher polydispersity, on the other hand, is largely uncharted territory. By analogy to binary HS mixtures, it has been postulated that more complex, non-close-packed crystalline phases could be favored in such systems where the close-packed crystals are penalized. Analogous behavior is well established for the Dzugutov pair potential, which features a single energetic barrier at distances characteristic of close-packed order, instead favoring self-assembly of dodecagonal quasicrystals. 7 Similarly, in a simulation study of a monodisperse HS model with a many-body energy term that favors non-close-packed structure formation, an icosahedra-rich phase is observed-postulated to be either a quasicrystal or of the Frank-Kasper family of crystals (i.e., a quasicrystal approximant). 8 Motivated by the above, we study the possibility of crystalline assembly in a moderately size disperse HS mixture with particle diameters distributed according to a third-order power law with lower and upper size cutoffs chosen to realize a 12% polydispersity (i.e., the standard deviation relative to the mean, or the coefficient of variation, c v = 0.12). 5,9 Because polydisperse fluids are normally slow to crystallize at high density, we leverage particle-swap Monte Carlo simulations to explore their behavior. 5,9 This method, while powerful, is simple to implement. In addition to standard particle translations, a pair of particles is randomly selected and an attempt is made to swap their diameters. Of the attempted Monte Carlo moves, 20% are swaps and 80% are translations. For additional simulation details, see the where P is pressure, is number density, r 3 is the third moment of the particle radius distribution, k B is the Boltzmann constant and T is temperature, for hard spheres with 12% polydispersity from simulation (symbols) compared to the theoretical prediction (line). 10 (b,c) Two representative configurations compressed from = 0.595 to = 0.66 from two independent simulations. (d,e) Visualizations of a repeating unit for the C14 and C15 lattices, respectively. The C14 repeating unit shown is an orthogonalization of the hexagonal C14 unit cell, and the cubic C15 unit cell has been rotated by 45. Throughout the manuscript, particles are depicted with diameters that are 50% of their true diameter for clarity. of topologically close-packed structures that are known to be thermodynamically stable for certain binary mixtures of hard spheres. 11 Specifically, comparison of the structures outlined in yellow in Fig. 1b,c to ideal repeating units of the C14 and C15 lattices in Fig. 1d,e reveals that the former are consistent with the latter, with some substitutional disorder present due to the polydispersity. To confirm the presence of Laves phases, we applied a template-matching scheme for the C14 and C15 lattices using the lattice constants extracted from the simulation box above, computing the root-mean-square deviation (RMSD) from an idealized lattice; see the Appendix for details. Using the C14 template, the lattice shown in Fig. 1b above is color-coded according to the RMSD in Fig. 2a We chose a value of 0.25 as the maximum RMSD for a crystalline particle in the analysis that follows. A parallel analysis for the configuration shown in Fig. 1c is given in the Appendix. As shown in Fig. 1d,e, the C14 and C15 lattices have three and two distinct lattice positions, respectively; the template-matching scheme above allows us to label the crystalline particles by lattice site; see Fig. 3a,b. Because 1) the C14 and C15 lattices are closely related structurally 12 and 2) the system possesses significant substitutional disorder, the templatematching scheme cannot always distinguish between the two lattices; however, labeling the lattice sites can be helpful to visualize C14 and C15 motifs. For instance, the few C15 domains co-existing with the larger C14 domain can be visualized where the green particles are vertically offset as shown in Fig. 3a. The co-existence of C14 and C15 structures is not surprising; it is known that the Laves phases have very similar free energies for certain bidisperse mixtures. 12 While the preceding self-assembled structures do not prove that the Laves phases are thermodynamically stable for the above polydisperse mixture, the characteristics of the crys-5 talline phase are consistent with the known phase behavior of binary HS systems. Based on free energy calculations, Laves phases are expected if the diameter ratio of large to small particles (d L /d S ) falls within the range 1.19-1.35. 12 This range is in direct accord with the approximate size ratio we find in the solid phase: d L /d S ≈ 1.24 (where d L and d S are the averages of the C site and A+B site distributions, respectively). The existence of Laves phases for similar size ratios has also been confirmed experimentally. 13 In essence, the larger range of particle diameters characteristic of higher polydispersity allows for thermodynamically driven size-segregation resulting in domains that can form complex lattices. To evaluate the generality of Laves phase formation, we explore other particle size distributions with the same mean diameter and coefficient of variation (c v ). Specifically, we One limitation of our simulation protocol can be gleaned from the size distributions shown in Fig. 4, where there are cases for which all (or almost all) of the particles of a given size have been incorporated into the crystal structure. As a result, it is possible that the crystalline phase has incorporated particles with a non-ideal diameter compared to a system connected to an infinite reservoir of particles. For this reason, it is known that finite-size effects are particularly relevant to mixtures. 14 On the other hand, the relative insensitivity of d L /d S with respect to the form of the distribution and the consistency of Laves phase formation is suggestive that these two findings are not especially sensitive to finite-size effects. Furthermore, we have performed an identical analysis to that shown in Figs. 2 and 3 for N = 10000 and found near quantitative agreement between the two system sizes; see the Appendix. Ultimately though, simulations in the isobaric-semi-grand canonical ensemble could be useful to confirm the reported properties of the crystalline phase. 14 The above results may be useful in the interpretation of several prior studies. One such study employing polydisperse soft spheres with a c V ≈ 0.24 found a high-density inhomogeneous state comprised of coexisting ordered and fluid phases with strong particle size segregation. 15,16 The ordered phase was not identified; however, the published snapshots are consistent with a Laves phase, and d L /d S ≈ 1.26 for the ordered phase. 16 In another study, a soft sphere ternary mixture yielded a structurally similar solid phase dominated by two of the three particle types with d L /d S = 1.25. 9 Taken together, it appears that the formation of Laves phases in HS systems may be a far more common and general phenomenon than previously recognized. Therefore, studies of moderately polydisperse HS fluids should explicitly consider the the possibility of Laves phase formation. Furthermore, the binary HS phase diagram may provide a generally useful reference to anticipate and interpret the crystalline phases that emerge in polydisperse mixtures. A recent study of a polydisperse HS system with c V ≈ 0.23 observed partial crystallization of the aluminum diboride (AlB 2 ) lattice with d L /d S ≈ 2, a value within the AlB 2 stability window for the binary HS system. 17 Finally, we note that the disordered phase that exists in coexistence with the Laves phases may have interesting properties (e.g., it may be a particularly good glass former)-an interesting avenue for future study. A. Additional Simulation Protocol All simulations employed a finite N approximation to the various sphere diameter (d) distributions, where N is the number of particles in the simulation. Practically, each probability distribution P (d) was divided into N contiguous, equi-probability chunks with the midpoints taken as the particle diameters. With the above finite population approximation scheme, we performed standard NVT Monte Carlo simulations with the addition of particle swap moves. Translation and swap 8 moves were selected at random with an 80 : 20 weighting. Translation involved randomly selecting a particle and attempting a random translation with a maximum displacement chosen to achieve an average acceptance rate between 17 − 25%. In the case of a swap move, two particles were chosen at random, and their diameters were exchanged if no overlaps were generated by the swap. For the power law and flat top distributions, N = 1000 was employed, while 5000 particles were used for the Gaussian distribution to provide adequate sampling of the tails of the distribution. A simulation with N = 100 was used for the pressure calculation in Fig. 1a of the main text-useful primarily to identify the approximate density at which freezing takes place ( = 0.58 − 0.6). Initial configurations were generated via a random sequential addition protocol at = 0.25 and quickly compressed to = 0.595. Simulations were run until the sample crystallized, after which swap moves were disabled and the system was quickly compressed to = 0.66 for the flat top and power law distributions and = 0.65 for the Gaussian, at which point the latter mixture jammed and could not be compressed further. The final compression was utilized to help lock the particles into their idealized lattice positions for identification purposes. Only very small scale particle movements occurred during this step. B. Description of Template-Matching Procedure For the template-matching procedure referenced in the main text, we first visually analyze a configuration to find an orientation that displays the 10-fold coordination characteristic of Laves phases such as those shown in Fig. 1b,c of the main text. We rotate the configuration so that a large ordered domain is oriented properly with respect to the templates shown in Fig. 1d,e. For each particle in the simulation box, we assign it to an ideal lattice position in the template and then search for neighboring particles in the simulation that are closest to the other ideal lattice positions prescribed by the template, all while using periodic boundary conditions consistent with the original simulation box. The C14 template has 41 particles; the C14 unit cell only has 12 particles, but we have orthogonalized the unit cell (which doubles the number of particles) and replicated particles that fall on the edges and corners as dictated by the periodicity of the lattice. The C15 template has 34 particles after replicating the particles on the corners and edges of the 24 particle unit cell. The lattice constants for the template are determined by averaging over several approximate realizations 9 of the template in the simulation box. We calculate the root-mean-squared deviation (RMSD) of the local environment of the selected particle in the simulation box with respect to the template for every lattice position in the template, using the minimum image convention to place the selected particle as close to the center of the template as possible. The reported RMSD value for a selected particle is given by the lowest value of the RMSD over all of the template sites, and its lattice site assignment corresponds to the template site that has the lowest RMSD as well. Therefore, the assignments based on the template-matching scheme are only interdependent insofar as they are all calculated from the same structure; there is no check for consistency of the lattice type assignment among groups of particles. The largely correct arrangements of particle types observed in a large domain of Fig. 3a with respect to an ideal C14 lattice is a consequence of the reasonable accuracy of the template-matching scheme, and, as described in the main text, deviations from the ideal arrangement can indicate mixing of other Laves phases (C15 in the case of Fig. 3a). They could also indicate a local defect in the crystalline region. Because the template-matching is sensitive to the orientation of the simulation box, it is not guaranteed to be an exhaustive characterization of all of the particles in the system. If the large majority of the particles form a single ordered domain (as seems to be the case in Fig. 3a), then the scheme should provide a reasonable description of all of the particles. However, if multiple domains exist that are not oriented consistently with one another, it is possible that the template-matching scheme will only accurately describe some of the domains. Therefore, we intend that the template-matching scheme is a tool to characterize the composition of large ordered domains that can be visualized within a simulation box, and not as a fully automated and exhaustive means to search for Laves phases in any arbitrary system. C. Analysis of Template-Matching for Additional Structure Here, we examine the structure shown in Fig. 1c of the main text. Visually, it seems that the ordered domain in Fig. 1c is largely composed of C15 motifs. Therefore, we performed the analysis below with the C15 template instead of the C14 template. In Fig. A1a The configuration, color-coded by particle type, is shown in Fig. A1d,e. Visually it is possible to discern that the red (C site) particles tend to be larger than the blue (A site) particles. This trend is born out in the particle diameter distributions shown in Fig. A1f for the A, C, and total particle size distributions. Identically with the results in the main text, The same configuration shown in panels a and b, color-coded by particle type. A sites are blue, B sites are green, and C sites are red. D. Visualizations of Structures Corresponding to Other Size Distributions In Fig. 4b-d of the main text, we reported the particle size distributions for the A (or A+B) and C sites for a sixth-order power law, a uniform, and a Gaussian distribution, respectively. In Figs. A2-A4, we show the corresponding structures, color-coded by both RMSD and particle type, as well as the probability distribution of the former. For the sixthorder power law, the C14 template was used and for the uniform and Gaussian distributions, the C15 template was used. The respective values for d L /d S were: 1.23, 1.22, and 1.23. As mentioned above, we found that we needed to use a larger simulation box (N = 5000) for the Gaussian distribution. Since the particles that comprise the Laves phases are generally selected from the ends of the distributions, the Gaussian distribution furnished fewer particles of the appropriate size ratio to form Laves phase. For simulations using N = 1000, some degree of ordering was apparent, but larger Laves phase domain were not visible. In the N = 5000 simulations, some Laves phase domains self-assembled as can be seen in Fig. A4, possibly in co-existence with other crystalline motifs-an interesting avenue for future work. E. Evaluation of Finite-Size Effects To test for the importance of finite-size effects, we performed an identical analysis as that shown in Figs. 2-3 of the main text after increasing N from 1000 to 10000. Laves phase formation occurred in both simulations, and the size distributions were highly similar. We observed quantitative agreement of d L /d S ≈ 1.24 in both cases. |
Interaction of Surface Energy Components between Solid and Liquid on Wettability, and Its Application to Textile Anti-Wetting Finish With various options of anti-wetting finish methods, this study intends to provide basic information that can be applied in selecting a relevant anti-wetting chemical to grant protection from spreading of liquids with different surface energy profiles. With such an aim, the anti-wetting effectiveness of fluorinated coating and silane coating was investigated for liquids having different surface energy components, water (WA), methylene iodide (MI) and formamide (FA). The wetting thermodynamics was experimentally investigated by analyzing dispersive and polar component surface energies of solids and liquids. The role of surface roughness in wettability was examined for fibrous nonwoven substrates that have varied surface roughness. The presence of roughness enhanced the anti-wetting performance of the anti-wetting treated surfaces. While the effectiveness of different anti-wetting treatments was varied depending on the liquid polarities, the distinction of different treatments was less apparent for the roughened fibrous surfaces than the film surfaces. This study provides experimental validation of wetting thermodynamics and the practical interpretation of anti-wetting finishing. Anti-Wetting Coating For hydrophobic coating, two different methods were used; plasma enhanced chemical vapor deposition (PECVD) and physical vapor deposition (PVD). For PECVD, a gas flow of C 4 F 8 was provided with 100 sccm for 25 min at 160 W in Covance plasma system (Femto Science, Hwaseong, South Korea) for the polymerization of a fluorinated compound on the substrate. For the PVD method, 10 mL of dodecyltrimethoxysilane (DTMS) was vaporized in a vacuum oven (oven inner volum 0.13 m 3, LVO-2051P, Daehan Labtech, Namyangju, South Korea) at 120 C for 3 h to coat the substrate. Alkali Etching Nanoscale roughness was created on PET surfaces utilizing the alkali hydrolysis reaction of polyester. For this treatment, a 30% (w/w) NaOH solution was prepared with distilled water, and a 10 cm 10 cm PET nonwoven specimen was immersed in 50 mL solution at 80 C for 60 min. The alkali treated specimens were rinsed with distilled water till pH reached 7, and dried at 80 C for 2 min. The weight loss after alkali hydrolysis was measured to be~50%. Alkali-etched PET spunbond nonwoven samples were coated with DTMS or C 4 F 8 as previously described for hydrophobic modification. The specimens used in this study are described in Table 2. Wettability For wetting analysis, static contact angle (CA) and shedding angle (ShA) of liquids on surfaces were measured using a contact angle analyzer (SmartDrop Lab, Femtobiomed Inc., Seongnam, South Korea). Contact angles of distilled water (WA), methylene iodide (MI), and formamide (FA) liquids were measured to examine the wettability of surfaces by liquids with different surface energy components. The surface energy components of different liquids used in this study are listed in Table 3. The ratio of polarity to the overall surface energy of solid (P S ) and liquid (P L ) was calculated (P L in Table 3, P S in Table 4). Table 3. Reference values of surface energy components of liquids. For CA measurement, 2.5 ± 0.5 L of liquid drops was placed on a surface, and CA was measured within 1 s after the droplet settlement. At least five measurements were obtained from different spots of the surfaces, and the mean value was used for analysis. For ShA measurement, 12.5 L of liquid was dropped vertically from 1 cm above the sample that was laid on a tilted stage. The lowest angle at which the drop starts to roll more than 2 cm on the surface was recorded as ShA, and the mean value of five measurements was used for analysis. Surface Energy of Solid Surface Surface energy with its dispersive and polar components for the solid surfaces was estimated using the Owens-Wendt model. With the known surface energy components of liquids and by measuring the contact angle on a flat surface, the surface energy components of solid substrates can be calculated, as shown in Equations -. For the calculation, contact angles of WA and MI were measured on flat film surfaces. The surface energy of the nonwoven surface was regarded as the same as that of the respective film. The surface chemistry of substrates in terms of atomic concentration (%) was analyzed using X-ray photoelectron spectroscopy (XPS, Axis Supra TM, Kratos Analytical, Manchester, UK), to verify the presence of coating compounds on the surfaces. The surface morphology of the samples was observed using a field-emission scanning electron microscope (FE-SEM, Supra 55VP, Carl Zeiss, Jena, Germany), with prior Pt coating (~10 nm) at 30 mA for 200 s using a sputter coater (EM ACE200, Leica, Wetzlar, Germany). For observation of surface roughness, an atomic force microscope (AFM, NX-10, Park Systems, Suwon, South Korea) was used with non-contact mode, and the root mean square of height (RMS) was measured as representative roughness information. Surface Energy Modification with Hydrophobic Treatment Polymeric substrates of cellulose (Cel) and polyethylene terephthalate (PET) were treated with silane (DTMS) and fluorinated (C 4 F 8 ) compounds for anti-wetting surface modification. Polypropylene (PP) consisting completely of hydrocarbons was compared with those surfaces. For the substrates, surface energy and its components were calculated by measuring the CA of water (WA) and methylene The change of surface chemistry after the coating process was examined by XPS (Table 5). It was observed that the atomic concentration (%) of O and Si in the DTMS-treated surfaces was significantly larger than other surfaces. The deposition of DTMS was more apparent for the Cel samples than for the PET samples, probably due to the higher affinity of silane compounds to -OH groups of Cel substrate. The C4F8-treated surfaces showed a significant amount of F. The result confirms that the decrease of surface energy is attributed to the presence of coated chemicals. Wettability is the result of liquid-solid interactions, and cos can be expressed as the relationship between surface energies of a liquid and solid (Equations and, where is the contact angle and is the interfacial function in the range of 0 to 1. In Equation, cos would be proportional to √, as shown in Figure 2a. From Figure 2b, while cos increased with an increase in the overall surface energy of solid, the relationship between cos and does not show a clear tendency. The result confirms the fact that the wetting cannot be accurately predicted by a single factor of solid surface energy. As the wetting is the result of the solidliquid interactions, surface energies of both liquids and solids need to be counted in predicting the wettability. From Equation, the interfacial function is proportional to cos, and the complete wetting state (cos of 1) corresponds to the maximum. However, cos is not perfectly correlated with alone. Instead, the solid-liquid interplay in terms of their surface energy components needs to be considered when predicting the surface wetting. For both Cel and PET substrates, surface coating with DTMS and C 4 F 8 reduced the overall surface energy, down to about 28 mN/m and 12 mN/m, respectively. With the silane coating, the dispersive component was significantly reduced for both Cel and PET and the Ps of surface energy reached 0.006-0.015. On the contrary, the fluorinated coating produced higher Ps (0.18-0.22) compared to the silane coating, while the overall surface energy of fluorinated surface (12 mN/m) was considerably lower than that of DTMS coated surface (28 mN/m). The surface energy of PP, which consists of hydrocarbons, was calculated to be about 27 mN/m, most of which is contributed by the dispersive component (>99%). The contribution of each polar and dispersive component to the overall surface energy is presented in Figure 1. The change of surface chemistry after the coating process was examined by XPS (Table 5). It was observed that the atomic concentration (%) of O and Si in the DTMS-treated surfaces was significantly larger than other surfaces. The deposition of DTMS was more apparent for the Cel samples than for the PET samples, probably due to the higher affinity of silane compounds to -OH groups of Cel substrate. The C 4 F 8 -treated surfaces showed a significant amount of F. The result confirms that the decrease of surface energy is attributed to the presence of coated chemicals. Solid-Liquid Interaction on Wettability Wettability is the result of liquid-solid interactions, and cos can be expressed as the relationship between surface energies of a liquid and solid (Equations and, where is the contact angle and is the interfacial function in the range of 0 to 1. In Equation, cos would be proportional to √ S, as shown in Figure 2a. From Figure 2b, while cos increased with an increase in the overall surface energy of solid, the relationship between cos and S does not show a clear tendency. The result confirms the fact that the wetting cannot be accurately predicted by a single factor of solid surface energy. As the wetting is the result of the solid-liquid interactions, surface energies of both liquids and solids need to be counted in predicting the wettability. From Equation, the interfacial function is proportional to cos, and the complete wetting state (cos of 1) corresponds to the maximum. However, cos is not perfectly correlated with alone. Instead, the solid-liquid interplay in terms of their surface energy components needs to be considered when predicting the surface wetting. Interplay of Surface Energy Components on Wetting As the wetting thermodynamics is influenced by the dispersive and polar components of surface energy, different liquids with the same overall surface energy can exhibit different wettability on a solid surface if the liquids have different surface energy components. The surface energy components of a phase can be reflected in the polar ratio, and the Ps for different substrates is shown in Figure 3a. For PP and the silane-treated surfaces, the polar component contribution to the overall surface energy was close to zero due to the dominant arrangement of nonpolar hydrocarbons on the surfaces. While the fluorinated surfaces had the lowest overall surface energy, its Ps was higher than that of PP and the silane-treated surfaces, probably due to the polarity of fluorine. To examine the interplay between surface energy components of solids and liquids on wetting, Equations and were combined to produce Equations and. By differentiating Equation, Equation is derived. Interplay of Surface Energy Components on Wetting As the wetting thermodynamics is influenced by the dispersive and polar components of surface energy, different liquids with the same overall surface energy can exhibit different wettability on a solid surface if the liquids have different surface energy components. The surface energy components of a phase can be reflected in the polar ratio, and the Ps for different substrates is shown in Figure 3a. For PP and the silane-treated surfaces, the polar component contribution to the overall surface energy was close to zero due to the dominant arrangement of nonpolar hydrocarbons on the surfaces. While the fluorinated surfaces had the lowest overall surface energy, its Ps was higher than that of PP and the silane-treated surfaces, probably due to the polarity of fluorine. It is noteworthy that the interfacial function evolves differently depending on the polarity of liquids (PL). For MI, which is a nonpolar liquid, increases as PS decreases. For polar liquids, such as WA and FA, shows the maximum value at certain polarity of solids; maximum appears at Ps of 0.7 for WA and Ps of 0.46 for FA. Based on the result, it is inferred that the reduction of polarity of solid is effective for anti-wetting of a polar liquid, while the reduction of dispersive surface energy is effective for anti-wetting of nonpolar liquid. Thus, the effect of anti-wetting for a specific repellent To examine the interplay between surface energy components of solids and liquids on wetting, Equations and were combined to produce Equations and. By differentiating Equation, Equation is derived. when d dP S is zero (when P S = P L ), has the maximum value of 1. P L values for liquids are: 0.7 for water; 0 for MI; and 0.46 for FA. Using those P L values, the interfacial function, can be calculated from Equation, resulting in: It is noteworthy that the interfacial function evolves differently depending on the polarity of liquids (P L ). For MI, which is a nonpolar liquid, increases as P S decreases. For polar liquids, such as WA and FA, shows the maximum value at certain polarity of solids; maximum appears at Ps of 0.7 for WA and Ps of 0.46 for FA. Based on the result, it is inferred that the reduction of polarity of solid is effective for anti-wetting of a polar liquid, while the reduction of dispersive surface energy is effective for anti-wetting of nonpolar liquid. Thus, the effect of anti-wetting for a specific repellent coating would be varied for different liquids, and the wettability or anti-wettability against a certain liquid can be estimated using the surface polarity, Ps. Combining Equations and, Equation is derived, which can be used in estimating CA of liquids on different surfaces. In Figure 4, the predicted (from Equation ) and measured CAs for FA on surfaces with various polar ratio are presented. While the discrepancy exists between the measured and predicted values (<6 ), the wettability could be predicted to some extent. It is noteworthy that the interfacial function evolves differently depending on the polarity of liquids (PL). For MI, which is a nonpolar liquid, increases as PS decreases. For polar liquids, such as WA and FA, shows the maximum value at certain polarity of solids; maximum appears at Ps of 0.7 for WA and Ps of 0.46 for FA. Based on the result, it is inferred that the reduction of polarity of solid is effective for anti-wetting of a polar liquid, while the reduction of dispersive surface energy is effective for anti-wetting of nonpolar liquid. Thus, the effect of anti-wetting for a specific repellent coating would be varied for different liquids, and the wettability or anti-wettability against a certain liquid can be estimated using the surface polarity, Ps. Combining Equations and, Equation is derived, which can be used in estimating CA of liquids on different surfaces. In Figure 4, the predicted (from Equation ) and measured CAs for FA on surfaces with various polar ratio are presented. While the discrepancy exists between the measured and predicted values (<6°), the wettability could be predicted to some extent. Understanding that the wetting is determined by the interplay between surface energy components of solids and liquids, the thermodynamics for spreading was examined. Spreading occurs when a liquid wets a solid surface in the air. The spreading parameter, S, is defined by the work of adhesion (solid-liquid interaction) subtracted by the work of cohesion (liquid-liquid interaction), and S can be expressed as Equation. Combining Equations and, Equation is derived, where the spreading parameter, S, is expressed by the two surface energy components of a solid and liquid. If S ≥ 0, the liquid completely wets the surface in order to lower the surface energy; a lower S represents a lower wettability (or lower spreading) as a result of the lower interaction between the solid and liquid. Understanding that the wetting is determined by the interplay between surface energy components of solids and liquids, the thermodynamics for spreading was examined. Spreading occurs when a liquid wets a solid surface in the air. The spreading parameter, S, is defined by the work of adhesion (solid-liquid interaction) subtracted by the work of cohesion (liquid-liquid interaction), and S can be expressed as Equation. Combining Equations and, Equation is derived, where the spreading parameter, S, is expressed by the two surface energy components of a solid and liquid. If S ≥ 0, the liquid completely wets the surface in order to lower the surface energy; a lower S represents a lower wettability (or lower spreading) as a result of the lower interaction between the solid and liquid. where S is the spreading parameter. The experimental investigation of the spreading parameter is presented in Figure 5. The relationship between S and cos is linearly correlated (Figure 5a), and the complete wetting (cos = 1) occurs at S = 0. The slopes of the plots decrease when the polarity of liquid increases; WA showed the lowest slope and MI showed the highest slope among the tested liquids. From Figure 5b, S increases when S increases, showing the general tendency of favorable wetting of solids with higher surface energy. However, the rate of increase in S was not consistent; for nonpolar liquid, the rate of increase for S declines as S increases, while, for a polar liquid, the rate of increase rises as S becomes larger. For FA, of which polarity is about 46%, the rate of increase for S was consistent regardless of S, displaying the linear relationship between the S and S. where S is the spreading parameter. The experimental investigation of the spreading parameter is presented in Figure 5. The relationship between S and cos is linearly correlated (Figure 5a), and the complete wetting (cos = 1) occurs at S = 0. The slopes of the plots decrease when the polarity of liquid increases; WA showed the lowest slope and MI showed the highest slope among the tested liquids. From Figure 5b, S increases when increases, showing the general tendency of favorable wetting of solids with higher surface energy. However, the rate of increase in S was not consistent; for nonpolar liquid, the rate of increase for S declines as increases, while, for a polar liquid, the rate of increase rises as becomes larger. For FA, of which polarity is about 46%, the rate of increase for S was consistent regardless of, displaying the linear relationship between the S and. The results of this study can be used as a selection guide of anti-wetting chemicals by the type of liquids that need to be unwet. For example, either silane or fluorinated compound would be sufficient to grant the anti-wetting property against water; however, if the solid needs to be protected from wetting against a nonpolar liquid such as MI, then the fluorinated coating agent that has lower dispersive component compared to silane coating would be preferable for better anti-wetting performance. The results so far showed the experimental validation of wetting thermodynamics, employing different anti-wetting treatments on flat surfaces. In Section 3.2, the role of surface roughness in the anti-wetting property is further examined. Wetting of Fibrous Surfaces The wettability is the result of the interplay between surface energy and surface roughness. Therefore, the effect of surface roughness in addition to solid's surface energy was further examined using fibrous nonwoven substrates. The nonwoven types used in this study included Cel(SL) and PET(SB), which are commonly used in disposable applications. As the fibers of the nonwoven surface would form limited surface roughness in microscale, the PET(SB) samples underwent alkali hydrolysis to create nanoscale roughness. The morphology of the substrates with different roughness profiles was observed by SEM as shown in Figure 6. The Cel(SL) samples had unknown particles on the surfaces even after the surface was cleaned; the compositions of the particles were found to be C and O, and the particles were thought to come from the nonwoven process aids. Due to the presence of such particles, Cel(SL) had additional roughness. The Cel(SL) had smaller fibers with denser layers than PET(SB), producing relatively smaller-scale roughness; the fiber sizes of Cel(SL) and PET(SB) were rather uniform, which were measured to be ~9.6 ± 1.2 m and ~17.3 ± 0.5 m, respectively for Cel(SL) and PET(SB). The roughness between SL and SB surfaces, however, could not be quantified by SEM. AFM can measure the variation of height profiles, in a value of root mean squared height (RMS). However, due to the limited z-scan range (≤4 m), the RMS information was available only for The results of this study can be used as a selection guide of anti-wetting chemicals by the type of liquids that need to be unwet. For example, either silane or fluorinated compound would be sufficient to grant the anti-wetting property against water; however, if the solid needs to be protected from wetting against a nonpolar liquid such as MI, then the fluorinated coating agent that has lower dispersive component compared to silane coating would be preferable for better anti-wetting performance. The results so far showed the experimental validation of wetting thermodynamics, employing different anti-wetting treatments on flat surfaces. In Section 3.2, the role of surface roughness in the anti-wetting property is further examined. Wetting of Fibrous Surfaces The wettability is the result of the interplay between surface energy and surface roughness. Therefore, the effect of surface roughness in addition to solid's surface energy was further examined using fibrous nonwoven substrates. The nonwoven types used in this study included Cel(SL) and PET(SB), which are commonly used in disposable applications. As the fibers of the nonwoven surface would form limited surface roughness in microscale, the PET(SB) samples underwent alkali hydrolysis to create nanoscale roughness. The morphology of the substrates with different roughness profiles was observed by SEM as shown in Figure 6. The Cel(SL) samples had unknown particles on the surfaces even after the surface was cleaned; the compositions of the particles were found to be C and O, and the particles were thought to come from the nonwoven process aids. Due to the presence of such particles, Cel(SL) had additional roughness. The Cel(SL) had smaller fibers with denser layers than PET(SB), producing relatively smaller-scale roughness; the fiber sizes of Cel(SL) and PET(SB) were rather uniform, which were measured to be~9.6 ± 1.2 m and~17.3 ± 0.5 m, respectively for Cel(SL) and PET(SB). The roughness between SL and SB surfaces, however, could not be quantified by SEM. area fraction of the unit area, were 0.045, 0.23, and 0.142 for the Cel SL, PET SB, and etched PET SB surfaces, respectively. The result showed that the cellulose spunlace had the least area wet by the liquid, probably due to the irregular depth of fibers and fine particles on the surface. From Table 6, the film surfaces treated with DTMS and C4F8 showed a similar level of antiwetting performance for water, while the surface treated with C4F8 showed the considerably enhanced anti-wetting performance for MI. The discrepancy of anti-wetting performance between the DTMS and C4F8 treatment became larger as the polarity of liquid decreased (PL is WA > FA > MI). As was discussed earlier, the results demonstrate that the anti-wetting agent needs to be properly selected based on the property of the applied liquid. The overall tendency of the anti-wetting performance of fibrous surfaces was similar to that of film surfaces; however, the fibrous surfaces did not show dramatic performance distinction between the DTMS and C4F8 treatment for different AFM can measure the variation of height profiles, in a value of root mean squared height (RMS). However, due to the limited z-scan range (≤4 m), the RMS information was available only for comparing the submicron scale roughness. The AFM scanning was carried out across the samples (0.8 m 0.8 m), and the RMS values of PET film, PET SB, and alkali-etched PET SB were compared (Figure 7). The RMS value of PET(SB) was not different from that of PET film as the scanning was conducted on the small area of the topmost fiber surface. The PET(SB-etch), however, showed significantly large RMS (~13 nm), confirming the presence of nanoscale roughness in PET(SB-etch). The CA and ShA measurements for the varied substrates are shown in Table 6 and Figure 8. From Table 6, the film surfaces treated with DTMS and C4F8 showed a similar level of antiwetting performance for water, while the surface treated with C4F8 showed the considerably enhanced anti-wetting performance for MI. The discrepancy of anti-wetting performance between the DTMS and C4F8 treatment became larger as the polarity of liquid decreased (PL is WA > FA > MI). As was discussed earlier, the results demonstrate that the anti-wetting agent needs to be properly selected based on the property of the applied liquid. The overall tendency of the anti-wetting performance of fibrous surfaces was similar to that of film surfaces; however, the fibrous surfaces did not show dramatic performance distinction between the DTMS and C4F8 treatment for different liquids compared with the films. It can be inferred that the decreased wetted area (with the concept of solid fraction, f) would lower the interaction of surface energy between the solid and liquid, thereby reducing the influence of different anti-wetting agents. Note: shedding angle higher than 50° was not measured any further. For further analysis, the Cassie-Baxter state was assumed for the surfaces that displayed the water CA ≥ 147 and ShA ≤ 15, which were Cel(SL) -f, Cel(SL) -Si, PET(SB) -f, PET(SB-etch) -f, and PET(SB-etch) -Si. If it is assumed that the liquid drop contacts only the topmost surface of the roughened substrate, instead of intruding into the protrusions, the Cassie-Baxter model can be simplified as Equation. In the equation, the solid fraction, f, can be roughly estimated from the measured CA's of fibrous surfaces ( CB ) and those of flat film surfaces ( Y ). The estimated f, which is the topmost area fraction of the unit area, were 0.045, 0.23, and 0.142 for the Cel SL, PET SB, and etched PET SB surfaces, respectively. The result showed that the cellulose spunlace had the least area wet by the liquid, probably due to the irregular depth of fibers and fine particles on the surface. The findings of this study can be applied to anti-wetting finish methods, where a proper selection of anti-wetting agent needs to be made for the protection from spreading of liquids. While it is important to attain a low level of overall surface energy in reducing the wettability, the component profiles of surface energy also play a critical role in liquid spreading on surfaces. Textile materials with microscale roughness would exhibit enhanced anti-wetting compared to flat surfaces, if the same type of anti-wetting chemicals are applied. To further improve the anti-wetting performance, implementation of submicron scale roughness would be beneficial. For the materials that need adequate protection against the exposure of non-polar liquid (such as MI), an anti-wetting treatment with a low dispersive component may be effective. For the materials that need to be protected from the spreading of a polar liquid, anti-wetting chemicals with a low level of the dispersive component may be effective. Conclusions With the increased awareness of sustainable finishing, various options of anti-wetting finish methods are being explored. This study intends to provide basic information that can be used in selecting an effective anti-wetting agent for protection against the spreading of liquids with particular surface energy profiles. With such an aim, the anti-wetting effectiveness of fluorinated and silane coating was investigated using the liquids having different surface energy components: water (WA), methylene iodide (MI), and formamide (FA). The wetting thermodynamics was experimentally investigated by analyzing two components of surface energies for solids and liquids, with the theoretical discussion on the interplay of components on wettability. The effectiveness of different anti-wetting treatments was varied for liquids with different polarities. The role of surface roughness in wettability was examined for fibrous nonwoven substrates that have various levels of roughness. The presence of nanoscale roughness resulted from nanoparticles or alkali etching was beneficial for attaining a high level of anti-wetting performance. The difference of anti-wetting performance between the treatments was less apparent for the roughened surfaces than for the flat film surfaces. The findings of this study can be used in selecting proper anti-wetting chemicals to grant protection from spreading of specific liquids. While it is important to attain a low level of overall surface energy for reducing wettability, the surface energy components also play a critical role in liquid spreading on surfaces. For example, an anti-wetting treatment with a low Table 6, the film surfaces treated with DTMS and C 4 F 8 showed a similar level of anti-wetting performance for water, while the surface treated with C 4 F 8 showed the considerably enhanced anti-wetting performance for MI. The discrepancy of anti-wetting performance between the DTMS and C 4 F 8 treatment became larger as the polarity of liquid decreased (P L is WA > FA > MI). As was discussed earlier, the results demonstrate that the anti-wetting agent needs to be properly selected based on the property of the applied liquid. The overall tendency of the anti-wetting performance of fibrous surfaces was similar to that of film surfaces; however, the fibrous surfaces did not show dramatic performance distinction between the DTMS and C 4 F 8 treatment for different liquids compared with the films. It can be inferred that the decreased wetted area (with the concept of solid fraction, f) would lower the interaction of surface energy between the solid and liquid, thereby reducing the influence of different anti-wetting agents. The findings of this study can be applied to anti-wetting finish methods, where a proper selection of anti-wetting agent needs to be made for the protection from spreading of liquids. While it is important to attain a low level of overall surface energy in reducing the wettability, the component profiles of surface energy also play a critical role in liquid spreading on surfaces. Textile materials with microscale roughness would exhibit enhanced anti-wetting compared to flat surfaces, if the same type of anti-wetting chemicals are applied. To further improve the anti-wetting performance, implementation of submicron scale roughness would be beneficial. For the materials that need adequate protection against the exposure of non-polar liquid (such as MI), an anti-wetting treatment with a low dispersive component may be effective. For the materials that need to be protected from the spreading of a polar liquid, anti-wetting chemicals with a low level of the dispersive component may be effective. Conclusions With the increased awareness of sustainable finishing, various options of anti-wetting finish methods are being explored. This study intends to provide basic information that can be used in selecting an effective anti-wetting agent for protection against the spreading of liquids with particular surface energy profiles. With such an aim, the anti-wetting effectiveness of fluorinated and silane coating was investigated using the liquids having different surface energy components: water (WA), methylene iodide (MI), and formamide (FA). The wetting thermodynamics was experimentally investigated by analyzing two components of surface energies for solids and liquids, with the theoretical discussion on the interplay of components on wettability. The effectiveness of different anti-wetting treatments was varied for liquids with different polarities. The role of surface roughness in wettability was examined for fibrous nonwoven substrates that have various levels of roughness. The presence of nanoscale roughness resulted from nanoparticles or alkali etching was beneficial for attaining a high level of anti-wetting performance. The difference of anti-wetting performance between the treatments was less apparent for the roughened surfaces than for the flat film surfaces. The findings of this study can be used in selecting proper anti-wetting chemicals to grant protection from spreading of specific liquids. While it is important to attain a low level of overall surface energy for reducing wettability, the surface energy components also play a critical role in liquid spreading on surfaces. For example, an anti-wetting treatment with a low dispersive component may be desirable for a material that needs protection from the exposure of non-polar liquids, such as MI. This study provides experimental validation of wetting thermodynamics and practical interpretation of anti-wetting finishing. |
An adaptive variational model for multireference alignment with mixed noise Multireference alignment (MRA) problem is to estimate an underlying signal from a large number of noisy circularly-shifted observations. The existing methods are always proposed under the hypothesis of a single Gaussian noise. However, the hypothesis of a single-type noise is inefficient for solving practical problems like single particle cryo-EM. In this paper, We focus on the MRA problem under the assumption of Gaussian mixture noise. We derive an adaptive variational model by combining maximum a posteriori (MAP) estimation and soft-max method. There are two adaptive weights which are for detecting cyclical shifts and types of noise. Furthermore, we provide a statistical interpretation of our model by using expectation-maximization(EM) algorithm. The existence of a minimizer is mathematically proved. The numerical results show that the proposed model has a more impressive performance than the existing methods when one Gaussian noise is large and the other is small. The mathematical description of MRA problem is Significantly, both the true signal and the shifts are unknown. The goal is to recover from these observations. As far as we know, the existing literatures for MRA problem have been always based on the hypothesis of a single Gaussian noise. The literature can roughly be divided into two patterns. One is first estimating shifts and then estimating the true signal. the other is estimating the true signal without seeking for shifts. Here we are only concentrated on the latter. For the latter pattern, there are usually two general approaches. One is based on statistical knowledge like maximum likelihood estimation(MLE), maximum a posteriori(MAP) estimation, expectation-maximization(EM) algorithm. The other is based on shift variant features such as spectral method largest spectral gap, frequency marching(FM), optimization on phase manifold and optimization on phase synchronization. The advantage of the former has higher accuracy, but the latter needs less time and computer resources. MRA problem is a simplified mathematical model for single particle cryo-electron microscopy (cryo-EM), which is a very popular technique for visualizing biological molecules. Image denoising and image alignment are two tasks in single particle cryo-EM. The MRA problem is a simplified model for tackling these two tasks simultaneously. However, in practice, the noise in cryo-EM images are always more complicated beyond a single Gaussian noise. Motivated by the above discussions, we extend the type of noise from a single Gaussian noise to Gaussian mixture noise to close the gap between the MRA model and the actual applications. In this work, we derive an adaptive variational model for MRA problem with Gaussian mixture noise by combing MAP estimation and soft-max method. The big challenge is that both circularly-shifted translations and the types of noise are unknown. To solve this difficulty, the proposed model contains two weights, where one is for the circularly-shifted translation of each observation, the other is for the type of noise on each component of each observation. In addition, we provide a statistical explanation for our proposed model by using exception-maximization(EM) algorithm. Furthermore, we prove the existence of a minimizer in our proposed model with total-variation(TV) regularizer. We design an algorithm to by the alternating direction iterative method and the augmented Lagrange method. In addition, we provide some convergence analysis. In numerical experiments, our proposed model outperforms the existing algorithms when one Gaussian noise is large and the other is small. Organization of this paper. We derive the proposed model in Section 2, including model hypothesis and modeling process. In Section 3, we provide a statistical interpretation of the proposed model. We prove the existence of a minimizer in Section 4. In Section 5, we design an algorithm by alternating direction iterative method and augmented Lagrange method. Section 6 provides some convergence analysis. Section 7 shows some numerical results. We summarize this paper in Section 8. The proposed model In this section, we derive an adaptive variational model for multireference alignment(MRA) problem with mixed Gaussian-Gaussian(MGG) noise by combining maximum a posteriori(MAP) estimation and soft-max method. We denote U, F, V, L as random variables of pixels in the true signal, observation, noise, and circularly-shifted operator respectively.,,, are corresponding sample values. X ( ) and X ( ) represent the cumulative distribution function and the probability density distribution function of random variable X at point separately. Model hypothesis There are some basic hypotheses in the proposed model: A1 The true signal is corrupted by some mixed noise with mean 0. We denote = ( 1, 2,..., ) as the mixed ratio, where is the ratio of the −th kind of noise among the mixed noise. Moreover, 2 2 2 = ( 2 1, 2 2,..., 2 ) denotes the mixed noise parameters, where 2 is the variance of the −th kind of noise. Denote = (, 2 2 2 ) as all parameters of the mixed noise ; A2 The value of noise is a realization of random variable V. Each components of observations are mutually independently and identically distributed(i.i.d) with probability density function V ; A3 The value of a circularly shifted operator is a realization of random variable L. The circularly shifted transformations of different observations are mutually independently and identically distributed(i.i.d) with discrete uniform distribution in {0, 1,..., − 1}; A4 The true signal follows a Gibbs prior distribution. By A1, The mixed noise can be expressed as where ( ) =, and ∑︁ =1 = 1. Moreover, we denote V ( ) as the probability density function of random variable V for any = 1, 2. By A3, we can get 0, when event 0 occurs, 1, when event 1 occurs, where ( ) = 1 for any = 0, 1,..., − 1. Furthermore, we can get By A4, the probability density function of the true signal is where > 0 is a constant and is a given function. The modeling process In this subsection, we apply MAP estimation and soft-max method to derive an adaptive variational model for MRA problem under the assumption of mixture Gaussian noise. MAP estimation The observations 1, 2,..., are some realizations of random variables F F F 1, F F F 2,..., F F F respectively. The -th observation is = (,1,,2,...,, ) and its corresponding random variable is ) is denoted as a realization of A. The true signal = ( 1, 2,..., ) is a realization of random vector U U U = (U 1, U 2,..., U ). The goal is to estimate the true signal from all observations. We need to maximize U U U |A ( | )..., V are random variables that satisfy. V ( ) is the probability density function of V for any = 1, 2,..., ; then By Bayes' law, we can get Note that A ( ) is a constant. By taking the logarithm of, the goal can be converted to the following problem max where denotes all parameters of the mixed noise. Because the random vectors F F F 1, F F F 2,..., F F F are mutually independent, we can get Substitute into, then the problem equals to the following problem By the law of total probability and substituting to, we can get for any = 1, 2,...,. By Proposition 2, we can get Substitute into, then the problem can be converted to We note that there is a logarithm of summation term, which is difficult to handle in energy minimization problem. Next, we will apply soft-max method to solve this difficulty. Proposition 4. A function : R → R ∪ {+∞} is convex and lower semi-continuity if and only if Proposition 5. For any fixed > 0, * is the Fenchel-Legendre transformation of the soft-max function, then where where ** is the Fenchel-Legendre transformation of *. For any fixed index, by Proposition 5, we can get Substitute into, then we can get In addition, we have where is the clicks in the graph representation of the prior. Substitute,, into successively, we can get Because there is a log ∑︀ item in, we apply Proposition 5 again. Here let =, = log for any = 1, 2,...,. For fixed indexes,,, we can get where. Then we substitute to. By simple calculation, we can get where Mixed Gaussian-Gaussian noise model Here we set = 2, V 1, V 2 follow Gaussian distributions with mean 0 and variances 2 1, 2 2 respectively. The probability density function of V is for any = 1, 2. Substitute into. By simple calculation, we can get where Statistical interpretation of the proposed model The observed data is = ( 1, 2,..., ). Recall that in Subsection 2.2, by maximum a posteriori(MAP) estimation, the goal becomes max where Next, we will apply Expectation-Maximization(EM) algorithm to. Because is an incomplete data, we introduce a hidden variable = (L, K ) to get the complete data = (, ), where L and K represent the random variables of circularly shifted operator and the type of noise separately. and are some realizations of the random variables L and K separately. By Bayes' law, we get By taking the logarithm of, then Take the expectation of log ( | ; ) with respect of under the condition of, where is the iteration step. We can get which is called E-step. Then we maximize the above expectation to get +1, +1 as follows which is called M-step. Calculating expectations is a key step in EM algorithm. Next, we will derive the concrete expression of. Substitute and into, the expectation becomes into,then we can get the iterative formula as follows Moreover, the M-step is The existence of a minimizer In this section, we prove the existence of a minimizer for the proposed model with total variation(TV) regularizer. For the convenience of discussion, we introduction the following denotations. Denote ⊂ R as a bound open sets. T, X ∈ R + are bounded close sets. () is denoted as the space of bounded total variation function, i.e., The proof is in Appendix A. Related algorithm In this section, we design an algorithm for problem. Recall that problem is written as Denote as outer iteration steps. By the alternating direction iterative method, we can decompose the problem We can get a close solution of +1, by taking the derivative of ( +1, +1,, ) with respect of as follows +1, We can get a close solution of,,, by taking the derivative of ( +1, +1,, ) with the respect of,,, as follows, where = 1, 2,..., ;, = 1, 2,...,. It's easy to see that the first subproblem of equals to the problem. In other wards, the iterative scheme derived by soft-max method is same as the iterative scheme derived by EM algorithm. Now we come back to the first subproblem of. The discussion below is in the case of fixed outer iteration steps. By the alternating direction iterative method, we can get We can get the following iterative formulas from the second subproblem of : For the first subproblem of, we can rewrite it as where (u) is a regularizer and > 0 is a parameter. We apply the augmented Lagrange method to problem to get Fix the index. Denote the inner iteration steps of subproblem. The problem can be decomposed into Furthermore, the problem can be decomposed once again and we can get The first subproblem of is a Gaussian denoiser. For the second subproblem of, we take the derivative with respect of. We can get According to the above discussion, We propose the following algorithm. Convergence analysis In this section, we will show some convergence analysis for the proposed algorithm. Numerical Experiments and Results This section is focused on numerical experiments. We consider the case of mixed Gaussian-Gaussian(MGG) noise. The true signal is a 1-dimensional signal of length. We can generate noisy and circularly-shifted observations by the formula. The goal is to recover the true signal from noisy circularly-shifted observations. All methods are evaluated by relative recovery error defined as whereis an estimation of the true signal. To show the validity of the proposed method, we make a number of comparisons between the proposed model and some existing algorithms like Expectation Maximization(EM), spectral method largest spectral gap, frequency marching(FM), optimization on phase manifold and optimization on phase synchronization. The proposed model is abbreviated by MGG SoftMax. The experiments are run on a computer with 8 Inter Core i7-8550U CPUs. These CPUs are used to compute thousands of FFTs for the proposed method and EM algorithm, while they are also used to compute the invariants in parallels., spectral M. largest spectral gap, optim. phase manifold, FM, iter. phase synch constant signal. Specifically, the components of from 30th to 60th equal to 1, and others equal to 0. We design the latter true signal to further show the effect of the regularization term. The corresponding relative errors are shown in Tab. 2. We can easily see that the relative errors in Tab. 2 are better than those in Tab. 1. As both Tab. 1 and Tab. 2 show, it's clear to see that the proposed method named MGG SoftMax outperforms the other existing algorithms mentioned above except for the case of = 0, 1. However, notice that there is usually a tiny difference between the proposed method and the best results in the case of = 0, 1, which can be usually negligible. To intuitively see that the effect of parameters like,, 2 on the relative error and computation time, we show Fig. 1-Fig. 6 based on the true random signal of length = 41. Specific details are as follows. C1 Effect of the number of observations ( ) on the relative error and computation time. Fig. 1 and Fig. 2 show the relative error and computation time of all methods mentioned above as a function of the number of observations with fixed noise level = 0.2, 1 = 10, 2 = 0.1. Tab. 2: Comparison of relative recovery error values for a fixed real piecewise constant signal of length = 101 under different noise levels for EM, spectral M. largest spectral gap, optim. phase manifold, FM, iter. phase synch and MGG SoftMax model with setting different initial values. (The largest relative errors are shown in bold fonts.) 1 2 Existing Methods Proposed Method Invariant features MGG SoftMax Spec. M. Opt. P. manifold FM Iter. P. synch As Fig. 1 shows, the proposed method named MGG SoftMax outperforms the other algorithms for = 10, 10 2, 10 3, 10 4. Furthermore, with the increase of the observations, the relative error of the proposed method decreases obviously. In particular, when equals to 10 4, the relative error of proposed method named MGG SoftMax is less than the best approaches by a factor of 65. However, the computation time of the proposed method named MGG SoftMax is more than the best approaches by a factor of 10 As Fig. 2 shows. C2 Effect of the noise ratio ( ) on the relative error and computation time. We fix the number of observations = 10 4 and the two standard deviations 1 = 10, 2 = 0.1 and vary the mixture noise ratio from 0 to 1 at intervals of 0.2. In Fig. 3, the proposed method named MGG SoftMax outperforms than the other existing algorithms. The corresponding computation time is shown in Fig. 4. C3 Effect of the one of the noise standard deviation( 2 ) on the relative error and computation time. With fixing the number of observations = 10 4 and noise parameters = 0.2, 1 = 5, we vary the standard deviation of the second Gaussian noise 2 among {0.01, 0.1, 0.5}. As Fig. 5 shows, it's clear that the proposed method MGG softMax has a better performance with the relative error than the other existing algorithms. Fig. 6 shows the corresponding computation time. Conclusion We derive a general adaptive variational model for MRA problem with Gaussian mixture noise. Compared with the existing methods, the difficulty is that besides shifts are unknown, the type of noise at each point is unknown. To overcome it, the proposed model contains two weights to determine unknown shifts and unknown parameters of the mixed noise. We prove the existence of a minimizer. Furthermore, we design an algorithm to calculate the two weights by alternate iterations separately. We provide some convergence analysis. Numerical experimental results illustrate that our model provides an impressive performance. Note that accurate estimation of two weights by updating alternately is a difficult problem in itself. In this model, the error of one step does not spread as the calculation step goes further. But the weakness is that the numerical performance of our model partly depends on initial values of mixed noise parameters. It may be useful to import other algorithms to reduce the dependence of the model on initial values. Furthermore, one can continue to apply the proposed model to some practical problems, like single particle cryo-EM problem or other scientific fields. The model of denoising and alignment of 2D images in single particle cryo-EM problem is more complicated than that of the proposed model for 1D signal. |
Low-cost ultraviolet three-axis attitude sensor system It is becoming increasingly obvious that satellite bus technologies that have been developed for traditional larger satellite platforms are not always suitable for use with smallsats. This is due to the intrinsic smallsat limitations in size, weight, available power, and cost. The problem is particularly obvious for attitude reference sensors of both the earth and star viewing type. In response to the lack of suitable sensors for this purpose, Honeywell and Los Alamos National Laboratory are developing a system that determines three axis attitude through ultraviolet imaging of the earth's limb and adjacent stars. A nonconventional wide angle optics assembly and intensified CCD array are utilized for this purpose. Because of the stability and predictability of the features being observed and the large number of pixels on which the scene is imaged, it should be possible to obtain accuracies on the order of.02 degrees with a very small and lightweight sensor configuration. A prototype sensor has been fabricated and tested, and has met all performance objectives. A more advanced version is now being developed, and a flight prototype should be completed by the end of 1993. |
<gh_stars>1-10
// Packages
import React from "react";
// Types
import { IToggleProps } from "./types";
// Style
import { Container, ToggleLabel, ToggleSelector } from "./styles";
const Toggle: React.FC<IToggleProps> = ({
labelLeft,
labelRight,
checked,
onChange,
}) => (
// -------------------------------------------------
// Render
// -------------------------------------------------
<Container>
<ToggleLabel>{labelLeft}</ToggleLabel>
<ToggleSelector
checked={checked}
uncheckedIcon={false}
checkedIcon={false}
onChange={onChange}
/>
<ToggleLabel>{labelRight}</ToggleLabel>
</Container>
);
export default Toggle;
|
Non-linear dynamics of the photodissociation of nitrous oxide: equilibrium points, periodic orbits, and transition states. The diffuse vibrational bands, observed in the ultraviolet photodissociation spectrum of nitrous oxide by exciting the molecule in the first A' state, have recently been attributed to resonances localized mainly in the NN stretch and bend degrees of freedom. To further investigate the origin of this localization, fundamental families of periodic orbits emanating from several stationary points of the A' potential energy surface and bifurcations of them are computed. We demonstrate that center-saddle bifurcations of periodic orbits are the main mechanism for creating stable regions in phase space that can support the partial trapping of the wave packet, and thus they explain the observed spectra. A non-linear mechanical methodology, which involves the calculation of equilibria, periodic orbits, and transition states in normal form coordinates, is applied for an in detail exploration of phase space. The fingerprints of the phase space structures in the quantum world are identified by solving the time dependent Schrdinger equation and calculating autocorrelation functions. This demonstrates that different reaction channels could be controlled if exact knowledge of the phase space structure is available to guide the initial excitation of the molecule. |
<reponame>microsoft/Network-Adapter-Class-Extension
// Copyright (C) Microsoft Corporation. All rights reserved.
#pragma once
#include <ntosp.h>
#include <ntassert.h>
#include <zwapi.h>
|
<gh_stars>0
package middleware
import (
"encoding/json"
"fmt"
"log"
"net/http"
"strconv"
"github.com/gorilla/mux"
"github.com/geovani-moc/gcommerce/entity"
"github.com/geovani-moc/gcommerce/database"
)
//reponse format
type response struct {
ID int64 `json:"id,omitempty"`
Message string `json:"message,omitempty"`
}
//GetAllProducts api rest return all products
func GetAllProducts(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Context-Type", "application/x-www-form-urlencoded")
w.Header().Set("Access-Control-Allow-Origin", "*")
//get all the products in the db
products, err := database.GetAllProducts()
if err != nil {
log.Fatal("Unable to get all products. \n", err)
}
//send all the products as response
json.NewEncoder(w).Encode(products)
}
//CreateProduct api get product
func CreateProduct(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Context-Type", "application/x-www-form-urlencoded")
w.Header().Set("Access-Control-Allow-Origin", "*")
w.Header().Set("Access-Control-Allow-Methods", "POST")
w.Header().Set("Access-Control-Allow-Headers", "Content-Type")
var product entity.Product
err := json.NewDecoder(r.Body).Decode(&product)
if err != nil {
log.Print("Unable to decode the request body, ", err)
}
insertID := database.InsertProduct(product)
returnResponse := response{
ID: insertID,
Message: "User created successfully",
}
json.NewEncoder(w).Encode(returnResponse)
}
//GetProduct return one product by id
func GetProduct(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Context-Type", "application/x-www-form-urlencoded")
w.Header().Set("Access-Control-Allow-Origin", "*")
params := mux.Vars(r) //mudar para _app
id, err := strconv.ParseInt(params["id"], 10, 64)
if err != nil {
log.Print("Unable to convert the string into int ", err)
}
product, err := database.GetProduct(int64(id))
if err != nil {
log.Print("Unable to get product. ", err)
}
json.NewEncoder(w).Encode(product)
}
//UpdateProduct update product's data
func UpdateProduct(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/x-www-form-urlencoded")
w.Header().Set("Access-Control-Allow-Origin", "*")
w.Header().Set("Access-Control-Allow-Methods", "PUT")
w.Header().Set("Access-Control-Allow-Headers", "Content-Type")
params := mux.Vars(r)
id, err := strconv.ParseInt(params["id"], 10, 64)
if err != nil {
log.Print("Unable to convert the string into int. ", err)
}
var product entity.Product
err = json.NewDecoder(r.Body).Decode(&product)
if err != nil {
log.Print("Unable to decode the request body. ", err)
}
updatedRows := database.UpdateProduct(int64(id), product)
message := fmt.Sprintf("User updated successfully. Total rows/record affected %v", updatedRows)
returnResponse := response{
ID: int64(id),
Message: message,
}
json.NewEncoder(w).Encode(returnResponse)
}
//DeleteProduct remove produc by id
func DeleteProduct(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Context-Type", "application/x-www-form-urlencoded")
w.Header().Set("Access-Control-Allow-Origin", "*")
w.Header().Set("Access-Control-Allow-Methods", "DELETE")
w.Header().Set("Access-Control-Allow-Headers", "Content-Type")
params := mux.Vars(r)
id, err := strconv.ParseInt(params["id"], 10, 64)
if err != nil {
log.Print("Unable to convert the string into int. ", err)
}
deletedRows := database.DeleteProduct(int64(id))
message := fmt.Sprintf("User updated successfully. Total rows/record affected %v", deletedRows)
returnResponse := response{
ID: int64(id),
Message: message,
}
json.NewEncoder(w).Encode(returnResponse)
}
|
<filename>maven-archetypes/quickstart/src/main/resources/archetype-resources/app/src/main/java/Greeting.java
package ${package};
import org.pf4j.ExtensionPoint;
public interface Greeting extends ExtensionPoint {
String getGreeting();
}
|
Evaluation of knock begin in spark ignition engines by least squares In order to detect knock in spark ignition engines, usually structure-borne sound signals measured by acceleration sensors mounted on the engine housing are analyzed. However, the sound signal is distorted and disturbed, whereas expensive measuring of the in-cylinder pressure signal provides best information of combustions. Based on a vibration signal model, a least-squares method is applied to estimate the model parameters from structure-borne sound. Afterwards the estimated parameters can be used in an appendant in-cylinder pressure model for pressure approximation. For a good approximation of pressure signals it is essential to estimate accurately the starting time of knock, which is incapable of measurement. In this paper a theoretical evaluation of the estimated knock begin is provided. Additionally, a reference for the knock begin, based on the pressure model, is derived, such that an evaluation can be given for measured data. |
Retired U.S. Marine Corps General James Mattis is President Trump's Secretary of Defense. Here's what you need to know about "Mad Dog Mattis." (Jenny Starrs/The Washington Post)
Donald Trump has professed that he's not much of a reader. He told The Washington Post over the summer that he had not read biographies of presidents because he does not have the time and that he makes the right decisions "with very little knowledge other than the knowledge I [already] had, plus the words ‘common sense,’ because I have a lot of common sense and I have a lot of business ability." When Fox News host Megyn Kelly interviewed Trump in her prime-time special in May, she asked him about the last book he'd read. "I read passages, I read … 'areas,' I'll read chapters," he said. "I just, I don't have the time."
Perhaps a man he has reportedly selected as his Secretary of Defense will rub off on him. Retired Marine Gen. James Mattis, nicknamed "Mad Dog," is known for his gruff and blunt quotes. ("Be polite. Be professional. But have a plan to kill everybody you meet.") He's been hailed for his battlefield successes, his strategic mind and his bond with rank-and-file soldiers. He's been called a "warrior monk" and has a disdain for PowerPoint.
[How Trump naming Mattis as Pentagon chief would break with 65 years of U.S. history]
But Mattis -- who, notably, would need a legislative waiver to be confirmed since he only retired in 2013 -- is also frequently noted for being an avid reader steeped in history. Michèle Flournoy, the former undersecretary of defense who was widely thought to be a likely front-runner for the same job had Clinton won the election, told NPR Mattis "would be an outstanding candidate," calling him a "student of history." Sen. John McCain, in a statement endorsing Mattis on Monday, called him a "forthright strategic thinker."
New America senior adviser and former Washington Post military correspondent Thomas Ricks wrote in Foreign Policy last month that Mattis pushes "himself and others to stretch their minds," pointing out how his reading habits set him apart from Trump. "He prepared a reading list for his officers before deploying to Iraq in 2004 and required that it be studied," Ricks wrote. "Start reading the works of Sir Hew Strachan, Mattis’ favorite strategist."
In a blog post from 2013, the year Mattis retired, military historian Jill Russell shared a 2003 email, with his permission, that Mattis had written and which had been widely circulated within the Marine Corps. A colleague had asked why it is important for officers to take time to read and study.
Mattis wrote that "the problem with being too busy to read is that you learn by experience (or by your men's experience), i.e. the hard way. By reading, you learn through others' experiences, generally a better way to do business, especially in our line of work where the consequences of incompetence are so final for young men." His reading, he wrote, provides guidance and perspective. "It doesn't give me all the answers, but it lights what is often a dark path ahead."
[Want to support the troops? Give them good military leaders]
He ran through a litany of books about history and military history that had guided him -- from T.E. Lawrence's "Seven Pillars of Wisdom" to Liddell Hart's biography of Civil War Gen. Sherman to Bruce Catton's "Grant Takes Command," noting its lesson on the "need for commanders to get along," with " 'commanders’ relationships' being more important than 'command relationships.' "
"Ultimately, a real understanding of history means that we face NOTHING new under the sun," he wrote. "I believe that many of my young guys lived because I didn’t waste their lives because I didn’t have the vision in my mind of how to destroy the enemy at least cost to our guys and to the innocents on the battlefields."
More recently, in mid-October, Mattis hailed the importance of reading twice in a video posted by the Marines about leadership lessons from his career. Asked by one Marine about what books he recommends, he pointed to a required reading list, saying that such books should help young officers realize "you as a young leader will never face anything worse than what fighters have faced in the past." He called out Eugene Sledge's book "With the Old Breed: At Peleliu and Okinawa," ("you'll find the spirit of the Marine Corps overcoming the most difficult combat conditions," he said), noting the list "requires you to do a lot of reading because there are many different styles of leadership. You must stay authentic to who you are but at the same time we expect you to lead in no uncertain terms."
Another Marine asked how he keeps developing as a leader. Mattis said: "You stay teachable most by reading books. By reading what other people went through. I can't tell you the number of times I looked down at what was going on on the ground or I was engaged in a fight somewhere and I knew within a couple of minutes how I was going to screw up the enemy. And I knew it because I'd done so much reading. I knew what I was going to do because I'd seen other similar situations in the reading. I knew how they'd been dealt with successfully or unsuccessfully."
Read also:
Donald Trump's binder full of white men
What a professor who studies outside leaders has to say about Donald Trump
Like On Leadership? Follow us on Facebook and Twitter, and subscribe to our podcast on iTunes. |
def _infoBox(self, **option):
dcinf = dict()
if self.setLocation:
dcinf[ES.loc_box] = list(self._boundingBox(self.setLocation).bounds)
dcinf[ES.geo_box] = self._boundingBox(self.setLocation).__geo_interface__
if self.setProperty: dcinf[ES.prp_box] = list(self._boundingBox(self.setProperty).bounds)
if self.setDatation:
bound = self._boundingBox(self.setDatation).bounds
if option["encode_format"] == 'bson':
dcinf[ES.dat_box] = [datetime.datetime.fromisoformat(bound[0]),
datetime.datetime.fromisoformat(bound[1])]
else : dcinf[ES.dat_box] = list(bound)
return dcinf |
import { Module } from '@nestjs/common';
import { PedidoCartaoService } from './pedido-cartao.service';
import { PedidoCartaoController } from './pedido-cartao.controller';
import { TypeOrmModule } from '@nestjs/typeorm';
import { PedidoCartaoRepository } from './pedido-cartao.repository';
@Module({
imports: [TypeOrmModule.forFeature([PedidoCartaoRepository])],
providers: [PedidoCartaoService],
controllers: [PedidoCartaoController]
})
export class PedidoCartaoModule { }
|
Towards Global State Identification of Nodes in DHT Based Systems Peer-to-Peer (P2P) systems receive growing acceptance, and the need of identifying the states of nodes appears increasingly in a variety of P2P based applications. In this paper, we propose Hermes, an algorithm to efficiently spread and maintain the states of all nodes in large scale systems. Hermes uses an improved push & pull style gossip process to spread the states of all nodes, and proposes a novel synopsis technique to maintain the states of all nodes locally at each node. Simulation results show that, in a N-node network with commonly accepted configurations, Hermes is 2 rounds faster than push & pull style gossip to spread the state of one node to the whole network; each node only needs to store a very small part of global state data to maintain the whole view of all nodes states in the network, which is updated dynamically with high accuracy. |
Children and the elderly: Divergent paths for Americas dependents Let me summarize briefly. My argument is that we have made a set of private and public choices that have dramatically altered the age profile of well-being. These choices are in an important sense joint ones involving the number of dependents we have as well as the conditions in which they live. This jointness derives from several sources. One is that the same institution--the conjugal family--remains the principal agent responsible for both childbearing and childrearing. Factors that influence the health of that institution invariably affect both numbers of and conditions for children. There was simply no way to protect children fully from the earthquake that shuddered through the American family in the past 20 years. The factors at work here are not only the objective conditions we face but also the set of values and mental constructs we elect to face them with. At the other end of the age scale, we can obviously affect the number of elderly persons as well as their circumstances by altering health programs, as we have so decisively chosen to do. A final source of jointness is that numbers themselves affect conditions. Some of these effects are largely inadvertent, as I've argued in regard to public schooling, and others seem to be very deliberate outcomes of the political process. It's useful to step back and ask whether the mixture of numbers and conditions that we've chosen is the one that best serves us. In regard to redistributions from the working-age population to the elderly, the answer is far from obvious. There is surely something to be said for a system in which things get better as we pass through life rather than worse. The great levelling off of age curves of psychological distress, suicide and income in the past two decades might simply reflect the fact that we have decided in some fundamental sense that we don't want to face futures that become continually bleaker. But let's be clear that the transfers from the working-age population to the elderly are also transfers away from children, since the working ages bear far more responsibility for childrearing than do the elderly. And let's also recognize that the sums involved are huge. Just the increase in federal expenditures on the elderly between 1977 and 1983, if distributed among the population under age 15, would come to well over $2,000 per child.(ABSTRACT TRUNCATED AT 250 WORDS) |
import { Component, OnInit, Input } from '@angular/core';
import { SafeStyle, DomSanitizer } from '@angular/platform-browser';
import { SizeServiceService } from 'app/service/size-service.service';
@Component({
selector: 'app-how-submit',
templateUrl: './how-submit.component.html',
styleUrls: ['./how-submit.component.css']
})
export class HowSubmitComponent implements OnInit {
minwidth: number;
minheight: number;
secondScreenStyle: SafeStyle;
constructor(private sizeService: SizeServiceService, private sanitizer: DomSanitizer) { }
ngOnInit() {
this.sizeService.clientWidth.subscribe( (clientWidth) => {
this.minwidth = clientWidth;
});
this.sizeService.clientHeight.subscribe( (clientHeight) => {
this.minheight = clientHeight;
});
this.setLineSizes();
window.addEventListener('resize', () => {
this.setLineSizes();
});
}
private setLineSizes() {
const secondScreenFirstLineSize = 540 + ((+this.minheight - 766) * 0.755);
const secondScreenSecondLineSize = 1262 + ((+this.minheight - 766) * 1.509);
this.secondScreenStyle = this.transform(
`background: linear-gradient(41deg, #00000000 ${secondScreenFirstLineSize}px, #ffcc0099 ${secondScreenFirstLineSize + 1}px,
#ffcc0099 ${secondScreenSecondLineSize}px, #00000000 ${secondScreenSecondLineSize + 1}px), #666600ce`
// url(../assets/images/service/secondScreen.jpg); background-size: cover;`
);
}
public transform(style: string): SafeStyle {
return this.sanitizer.bypassSecurityTrustStyle(style);
}
}
|
package com.SCOCS.SwapToys;
/*
this code is generated by <NAME>
date:25 dec 2018
*/
public class User {
public String id;
public String userName;
public String email;
public String password;
public User(String id, String userName, String email, String password) {
this.id = id;
this.userName = userName;
this.email = email;
this.password = password;
}
}
|
Attitudes to womens leadership in the context of professional subjectivity Leadership is interpreted as the quintessence of professional subjectivity, consisting in the ability to become a source of change in the surrounding social reality in order to transform it according to ones own goals and values. Professional subjectivity is gendered, especially in the sphere of power relations, where it is complicated not so much by objective ©..,.., 2022..,.. 49 institutional barriers as by specific societal expectations towards women and womens self-esteem. The article presents the results of two studies conducted via online questionnaire survey of Nizhny Novgorod residents and expert semi-formalized interview with women holding leadership positions in different spheres. The highlighted characteristics of professional subjectivity: activity, reflexivity, freedom, creativity and responsibility were examined through the prism of Nizhny Novgorod residents attitude towards women leaders. In those spheres where respondents have direct experience of interaction (mid-level female leaders) and in the traditional female spheres of economics and politics, respondents demonstrate gender neutrality and approval. Despite the declaration of gender equality, Nizhny Novgorod residents are wary of female leadership: they demonstrate doubts about womens ability to exercise effective leadership and apply innovative approaches to work. Research conducted by interview method demonstrates that female leaders are oriented in their ideas of the conditions for achieving success on internal, personal resources in the absence of established role models and without the use of social ties. This demonstrates a high level of womens professional subjectivity, which, however, is limited by the weak institutionalisation of womens leadership; the state and society declare that womens career development is limited only by their talents and hard work. Responsibility for failure is shifted to women. In this regard, the gendered nature of professional subjectivity lies in the greater activity and responsibility of women leaders, less freedom and creativity. These constraints are imposed on women themselves, seeking to meet the expectations of their environment: to take fewer risks, to show motherly concern for their environment, to be predictable and understandable to others. |
__description__ = "Memcached shared memory cache daemon"
__config__ = {
"memcached.memory": dict(
description = "Memory allocated for memcached instance in megabytes",
default = 64,
),
"memcached.listen_address": dict(
description = "IP address to bind to",
default = "127.0.0.1",
),
"memcached.port": dict(
description = "Port to use for memcached instance",
default = 11211,
),
"memcached.user": dict(
description = "User as which to run the memcached instance",
default = "nobody",
),
"memcached.threads": dict(
description = "Number of threads to use to process incoming requests",
default = 1,
),
"memcached.verbose": dict(
description = "Verbose logging output",
default = False,
),
}
|
/*
* Copyright 2014-present Open Networking Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.onosproject.net.intent;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import static org.junit.Assert.*;
import static org.onosproject.net.intent.IntentEvent.Type.*;
/**
* Suite of tests for the intent service contract.
*/
public class IntentServiceTest extends AbstractIntentTest {
public static final int IID = 123;
public static final int INSTALLABLE_IID = 234;
protected static final int GRACE_MS = 500; // millis
protected TestableIntentService service;
protected TestListener listener = new TestListener();
@Before
public void setUp() {
super.setUp();
service = createIntentService();
service.addListener(listener);
}
@After
public void tearDown() {
service.removeListener(listener);
super.tearDown();
}
/**
* Creates a service instance appropriately instrumented for testing.
*
* @return testable intent service
*/
protected TestableIntentService createIntentService() {
return new FakeIntentManager();
}
@Test
public void basics() {
// Make sure there are no intents
assertEquals("incorrect intent count", 0, service.getIntentCount());
// Register a compiler and an installer both setup for success.
service.registerCompiler(TestIntent.class, new TestCompiler(new TestInstallableIntent(INSTALLABLE_IID)));
final Intent intent = new TestIntent(IID);
service.submit(intent);
// Allow a small window of time until the intent is in the expected state
TestTools.assertAfter(GRACE_MS, () ->
assertEquals("incorrect intent state", IntentState.INSTALLED, service.getIntentState(intent.key())));
// Make sure that all expected events have been emitted
validateEvents(intent, INSTALL_REQ, INSTALLED);
// Make sure there is just one intent (and is ours)
assertEquals("incorrect intent count", 1, service.getIntentCount());
// Reset the listener events
listener.events.clear();
// Now withdraw the intent
service.withdraw(intent);
// Allow a small window of time until the event is in the expected state
TestTools.assertAfter(GRACE_MS, () ->
assertEquals("incorrect intent state", IntentState.WITHDRAWN, service.getIntentState(intent.key())));
// Make sure that all expected events have been emitted
validateEvents(intent, WITHDRAWN);
// TODO: discuss what is the fate of intents after they have been withdrawn
// Make sure that the intent is no longer in the system
// assertEquals("incorrect intent count", 0, service.getIntents().size());
// assertNull("intent should not be found", service.getIntent(intent.id()));
// assertNull("intent state should not be found", service.getIntentState(intent.id()));
}
@Test
public void failedCompilation() {
// Register a compiler programmed for success
service.registerCompiler(TestIntent.class, new TestCompiler(true));
// Submit an intent
final Intent intent = new TestIntent(IID);
service.submit(intent);
// Allow a small window of time until the intent is in the expected state
TestTools.assertAfter(GRACE_MS, () ->
assertEquals("incorrect intent state", IntentState.FAILED, service.getIntentState(intent.key())));
// Make sure that all expected events have been emitted
validateEvents(intent, INSTALL_REQ, FAILED);
}
/**
* Validates that the test event listener has received the following events
* for the specified intent. Events received for other intents will not be
* considered.
*
* @param intent intent subject
* @param types list of event types for which events are expected
*/
protected void validateEvents(Intent intent, IntentEvent.Type... types) {
Iterator<IntentEvent> events = listener.events.iterator();
for (IntentEvent.Type type : types) {
IntentEvent event = events.hasNext() ? events.next() : null;
if (event == null) {
fail("expected event not found: " + type);
} else if (intent.equals(event.subject())) {
assertEquals("incorrect state", type, event.type());
}
}
// Remainder of events should not apply to this intent; make sure.
while (events.hasNext()) {
assertFalse("unexpected event for intent",
intent.equals(events.next().subject()));
}
}
@Test
public void compilerBasics() {
// Make sure there are no compilers
assertEquals("incorrect compiler count", 0, service.getCompilers().size());
// Add a compiler and make sure that it appears in the map
IntentCompiler<TestIntent> compiler = new TestCompiler(false);
service.registerCompiler(TestIntent.class, compiler);
assertEquals("incorrect compiler", compiler,
service.getCompilers().get(TestIntent.class));
// Remove the same and make sure that it no longer appears in the map
service.unregisterCompiler(TestIntent.class);
assertNull("compiler should not be registered",
service.getCompilers().get(TestIntent.class));
}
@Test
public void implicitRegistration() {
// Add a compiler and make sure that it appears in the map
IntentCompiler<TestIntent> compiler = new TestCompiler(new TestSubclassInstallableIntent(INSTALLABLE_IID));
service.registerCompiler(TestIntent.class, compiler);
assertEquals("incorrect compiler", compiler,
service.getCompilers().get(TestIntent.class));
// Submit an intent which is a subclass of the one we registered
final Intent intent = new TestSubclassIntent(IID);
service.submit(intent);
// Allow some time for the intent to be compiled and installed
TestTools.assertAfter(GRACE_MS, () ->
assertEquals("incorrect intent state", IntentState.INSTALLED, service.getIntentState(intent.key())));
// Make sure that now we have an implicit registration of the compiler
// under the intent subclass
assertEquals("incorrect compiler", compiler,
service.getCompilers().get(TestSubclassIntent.class));
// TODO: discuss whether or if implicit registration should require implicit unregistration
// perhaps unregister by compiler or installer itself, rather than by class would be better
}
// Fixture to track emitted intent events
protected class TestListener implements IntentListener {
final List<IntentEvent> events = new ArrayList<>();
@Override
public void event(IntentEvent event) {
events.add(event);
}
}
// Controllable compiler
private class TestCompiler implements IntentCompiler<TestIntent> {
private final boolean fail;
private final List<Intent> result;
TestCompiler(boolean fail) {
this.fail = fail;
this.result = Collections.emptyList();
}
TestCompiler(Intent... result) {
this.fail = false;
this.result = Arrays.asList(result);
}
@Override
public List<Intent> compile(TestIntent intent, List<Intent> installable) {
if (fail) {
throw new IntentException("compile failed by design");
}
List<Intent> compiled = new ArrayList<>(result);
return compiled;
}
}
}
|
import React from 'react'
import { Text } from 'transliteration/domain/text'
import './Transliteration.sass'
import TransliterationNotes from './TransliterationNotes'
import TransliterationLines from './TransliterationLines'
export function Transliteration({ text }: { text: Text }): JSX.Element {
return (
<section className="Transliteration">
<TransliterationLines text={text} />
<TransliterationNotes notes={text.notes} />
</section>
)
}
|
Today I received a huge box in the mail from The Body Shop (one of my favourites!), and opened it to find an incredible gift package of a variety of amazing shower products and lotions - I was already so excited and grateful. Santa really hit it out of the park and got me the perfect gift.
What I didn't realise until a little later when I opened a letter addressed to me was that Santa wasn't quite done yet. Apparently my main gift is a pre-order of the new Harper Lee book, 'Go Set a Watchman' which comes out this July! The bath goodies were just so that I "wouldn't have to wait empty-handed".
Santa, I love you - you are the best. I am so lucky to be the recipient of your generosity. Best Arbitrary Day ever! |
Detection of metallo--lactamase producing clinical gram-negative non-fermenting isolates There is a remarkable increase in antibiotic resistance due to metallo--lactamase-production among gram-negative non-fermenting organisms. Early detection of metallo--lactamase (MBL) producing isolates is necessary to prevent their dissemination. Imipenem-EDTA disk method was used for the detection of MBL producing strains among multidrug resistant (MDR) Acinetobacter species and Pseudomonas aeruginosa. One hundred MDR Acinetobacter spp. and forty-two Pseudomonas aeruginosa were screened for MBL production, from January to June 2001. MBL was produced by 96.6 % of imipenem-resistant Acinetobacter isolates, whereas 100% imipenem-resistant Pseudomonas aeroginosa isolates were MBL producers. MBLs are responsible for carbapenem resistance in these MDR Acinetobacter spp. and Pseudomonas aeruginosa There is an urgent need to have a simple screening test to take infection control measures on time. |
Many a story has begun with a cop unfairly gunned down and resurrected in superhuman form. However, they don’t usually involve the Frankenstein family.
For answers, we spoke to Tobin about the book, which premieres September 6.
Newsarama: Paul, tell us about the premise for Made Men.
Paul Tobin: It’s inspired, obviously, by the Frankenstein mythos, though I’m taking it waaay beyond Mary Shelley’s writings. Jutte, the main character, is a direct descendant, and though she avoids it at first, she’s a talented member of the family. Circumstances force her to embrace her heritage, though, when her entire elite police squad is ambushed and murdered in a conspiracy, leading her to remake them (sort of) and turn to the only ones who will take them in, the mob. The title, of course, is a play on both how her squad is 'made men' in two ways: the slang term for a mobster who has killed, and also in the literal manner of speaking, as Jutte actually made these men and women.
Nrama: What was the initial inspiration for this idea?
Tobin: The Frankenstein mythos has been in my head since probably before I was born, but it wasn’t until I was writing the Prometheus section of the Prometheus / Aliens / Predator / Aliens vs. Predator event for Dark Horse Comics that I really began to think about the themes of Frankenstein, as Frankenstein was an ongoing inspiration for the collective group of authors on that project.
From there it just sort of blossomed, as I began to think of the ethics of resurrection. The whole “working for the mob” angle sprang from that, and the idea of a group of people who could be called upon to solve murders… solve them the whole way, actually bringing the dead back to life and everything… was there from the start.
Nrama: What made you want to do this book at Oni?
Tobin: It’s been a combination of me really respecting what Oni has been able to put together as a company, with a strong line of incredibly diverse titles and creators, and then the fact that they’ve been great friends to me personally over the years, so I’m comfortable working with them.
Nrama: How did you develop your main character, Jutte?
Tobin: I knew from the start that I wanted a female lead. Since the story is entwined with the Frankenstein mythos, it felt important that the star of the show wasn’t Victor Frankenstein 2.0. In fact, that’s a large part of the story, in that Jutte denied her heritage for years, wanting nothing to do with it. Now, her hand has been forced, and she’s taking alternate ways of expressing what being a Frankenstein means.
Nrama: So, without giving too much away, the first third or so of the first issue is about violently dying in gunfire. That had to be a... unique writing experience. How did you figure out the details of how that scene would work, in terms of the location, layout, how to describe what the character's experiencing, etc.? Because that does not seem like a fun task.
Tobin: The first thing I needed to do was think in terms of how the bad guys would set things up. Too often I talk to writers who only think of their stories from one perspective, that of the lead characters. But if you’re going to write an event, you want all the characters involved to have life/individual thought.
So, I considered how I’d go about ambushing an elite police unit, ran it all through my mind, and then flipped it to have it happening through Jutte’s perspective for story purposes.
Nrama: Without spoiling too much, what are some of the directions where you want to take this story?
Tobin: The Frankenstein mythos is, of course, a huge inspiration, but, in this series, I want to take it even further. In the original story, things go crazy wrong for Victor from the start, but one of the themes I want to explore is… what if raising the dead wasn’t the culmination of knowledge for the Frankenstein family? What if that was only one of the first steps of what they could do?
More, I’m currently exploring what it means to the Made Men to have been brought back from the dead. It’s much more complicated than just a life interrupted.
Nrama: What's it like working with Arjuna and Gonzalo on this?
Tobin: Fantastic! Arjuna Susini and I first combined on a pitch I did a few years back for BOOM!, a work called Small Change. The pitch, unfortunately, didn’t make it through, but I really loved Arjuna’s artwork and was looking for a chance to team up with him, so when I began developing Made Men I got him in as part of the team immediately, and he’s been amazing.
I was just doing the lettering proof of issue fou,r and noticed how hard of a script I’d given him - I do like to push my artists to bring out not only their best but the story’s best – and he came through in glowing glory.
And Gonzalo has been adding layers to Arjuna’s work, helping craft the feel of the world.
Nrama: A strange and ugly question: If those you were closest to were killed like in this story, and the options available here were available to you, what choice would you make?
Tobin: I would absolutely go for it. My grief would be too much for me to make proper decisions. And, who’s to say a little resurrection would be the wrong choice anyway?
People always talk about the whole “playing God” angle of the Frankenstein family - which is a big thing in the current Made Men storyline I’m scripting – but stringently adhering to the gospel of death is a bit religious, too: it debunks free will. Or at least that’s an arguing point.
Nrama: What are some other books/creators you're currently enjoying?
Tobin: I enjoy a lot of what Matt Rosenberg is doing, especially 4 Kids Walk Into A Bank, and Steve Lieber’s The Fix over at Image. And pretty much anything Jeff Parker writes. I think Black Mask Studios is producing a lot in interesting comics. Black Hammer over at Dark Horse. Yumi’s Cells over at Webtoons is fantastic. A lot of Korean and Japanese comics are on my reading list. I love the way they tell stories.
Tobin: I’ll be continuing work on some of my ongoing projects, such as Bandette, which just won its third Eisner award, my New York Times best-selling Plants vs. Zombies series, and my Genius Factor series of novels.
The next couple months should see an announcement of another online series I’m doing, something I’ve been working toward for a couple years, now, and that I’m really excited about. And there’s another series in the works that will return me to some of the horror themes I explored in Colder, which will be released in a collected omnibus, quite soon.
Tobin: Hulk would beat Thor. Dogs are better than cats. Somebody [cough cough] should hire me to write a Mary Marvel series. |
A Study on Bayes Feature Fusion for Image Classification We consider here the problem of image classification when more than one visual feature are available. In these cases, Bayes fusion offers an attractive solution by combining the results of different classifiers (one classifier per feature). This is a general form of the so-called "naive Bayes" approach. Analyzing the performance of Bayes fusion with respect to a Bayesian classifier over the joint feature distribution, however, is tricky. On the one hand, it is well-known that the latter has lower bias than the former, unless the features are conditionally independent, in which case the two coincide. On the other hand, as noted by Friedman, the low variance associated with naive Bayes estimation may dramatically mitigate the effect of its bias. In this paper, we attempt to assess the tradeoff between these two factors by means of experimental tests on two image data sets using color and texture features. Our results suggest that the difference between the correct classification rates using Bayes fusion and using the joint feature distribution is a function of the conditional dependence of the features (measured in terms of mutual information), however: for small training data size, Bayes fusion performs almost as well as the classifier on the joint distribution. |
package com.example.demo.gui;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.SwingWorker;
/**
* @ClassName: TestGui6
* @Description:
* @Author: York
* @Date: 2018/7/10 0010 10:07
* @Version: V1.0
*/
public class TestGui6 {
public static void main(String[] args) {
JFrame f = new JFrame("LoL");
f.setSize(300, 300);
f.setLocation(200, 200);
f.setLayout(new FlowLayout());
JButton b1 = new JButton("在事件调度线程中执行长耗时任务");
JButton b2 = new JButton("使用SwingWorker执行长耗时任务");
JLabel l = new JLabel("任务执行结果");
f.add(b1);
f.add(b2);
f.add(l);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
b1.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
l.setText("开始执行完毕");
try {
Thread.sleep(5000);
} catch (InterruptedException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
l.setText("任务执行完毕");
}
});
b2.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
SwingWorker<Void, Void> worker = new SwingWorker<Void, Void>() {
@Override
protected Void doInBackground() throws Exception {
System.out.println("执行这个SwingWorder的线程是:" + Thread.currentThread().getName());
l.setText("开始执行完毕");
try {
Thread.sleep(5000);
} catch (InterruptedException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
l.setText("任务执行完毕");
return null;
}
};
worker.execute();
}
});
f.setVisible(true);
}
} |
package jbm.framework.aliyun.iot.test.sample;
import cn.hutool.core.io.resource.ResourceUtil;
import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson.TypeReference;
import com.aliyun.alink.dm.api.*;
import com.aliyun.alink.dm.model.ResponseModel;
import com.aliyun.alink.linkkit.api.LinkKit;
import com.aliyun.alink.linksdk.channel.gateway.api.subdevice.ISubDeviceActionListener;
import com.aliyun.alink.linksdk.channel.gateway.api.subdevice.ISubDeviceChannel;
import com.aliyun.alink.linksdk.channel.gateway.api.subdevice.ISubDeviceConnectListener;
import com.aliyun.alink.linksdk.channel.gateway.api.subdevice.ISubDeviceRemoveListener;
import com.aliyun.alink.linksdk.cmp.connect.channel.MqttRrpcRequest;
import com.aliyun.alink.linksdk.cmp.core.base.AMessage;
import com.aliyun.alink.linksdk.cmp.core.base.ARequest;
import com.aliyun.alink.linksdk.cmp.core.base.AResponse;
import com.aliyun.alink.linksdk.cmp.core.listener.IConnectRrpcHandle;
import com.aliyun.alink.linksdk.cmp.core.listener.IConnectRrpcListener;
import com.aliyun.alink.linksdk.cmp.core.listener.IConnectSendListener;
import com.aliyun.alink.linksdk.tmp.device.payload.ValueWrapper;
import com.aliyun.alink.linksdk.tools.AError;
import com.aliyun.alink.linksdk.tools.ALog;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class GatewaySample extends BaseSample {
private List<DeviceInfo> userSubDev = null;
private List<BaseInfo> inputSubDev = null;
private String testPublishTopic = "/sys/{productKey}/{deviceName}/thing/event/property/post";
private String testSubscribePropertyService = "/sys/{productKey}/{deviceName}/thing/service/property/set";
public GatewaySample(String pk, String dn, List<BaseInfo> subDevice) {
super(pk, dn);
inputSubDev = subDevice;
}
/**
* 子设备动态注册
* 云端安全策略问题 需要先在云端创建 子设备
*/
public void subdevRegister() {
ALog.d(TAG, "subdevRegister");
LinkKit.getInstance().getGateway().gatewaySubDevicRegister(inputSubDev, new IConnectSendListener() {
@Override
public void onResponse(ARequest aRequest, AResponse aResponse) {
ALog.d(TAG, "subdevRegister onResponse() called with: aRequest = [" + aRequest + "], aResponse = [" + (aResponse == null ? "null" : aResponse.data) + "]");
try {
ResponseModel<List<DeviceInfo>> response = JSONObject.parseObject(aResponse.data.toString(), new TypeReference<ResponseModel<List<DeviceInfo>>>() {
}.getType());
//TODO 保存子设备的三元组信息
// for test
userSubDev = response.data;
addSubDevice(0);
} catch (Exception e) {
e.printStackTrace();
}
}
@Override
public void onFailure(ARequest aRequest, AError aError) {
ALog.d(TAG, "subdevRegister onFailure() called with: aRequest = [" + aRequest + "], aError = [" + getError(aError) + "]");
}
});
}
/**
* 获取当前网关的子设备列表
* 需要先添加子设备到网关
*/
public void getSubDevices() {
ALog.d(TAG, "getSubDevices");
LinkKit.getInstance().getGateway().gatewayGetSubDevices(new IConnectSendListener() {
@Override
public void onResponse(ARequest aRequest, AResponse aResponse) {
ALog.d(TAG, "getSubDevices onResponse() called with: aRequest = [" + aRequest + "], aResponse = [" + (aResponse == null ? "null" : aResponse.data) + "]");
}
@Override
public void onFailure(ARequest aRequest, AError aError) {
ALog.d(TAG, "onFailure() called with: aRequest = [" + aRequest + "], aError = [" + getError(aError) + "]");
}
});
}
/**
* 添加子设备到网关
* 子设备动态注册之后 可以拿到子设备的 deviceSecret 信息,签名的时候需要使用到
* 签名方式 sign = hmac_md5(deviceSecret, clientId123deviceNametestproductKey123timestamp1524448722000)
*/
private void addSubDevice(final int index) {
if (userSubDev == null || userSubDev.size() < 1) {
ALog.e(TAG, "无有效已动态注册的设备,添加失败");
return;
}
final DeviceInfo info = userSubDev.get(index);
LinkKit.getInstance().getGateway().gatewayAddSubDevice(info, new ISubDeviceConnectListener() {
@Override
public String getSignMethod() {
ALog.d(TAG, "getSignMethod() called");
return "hmacsha1";
}
@Override
public String getSignValue() {
ALog.d(TAG, "getSignValue() called");
Map<String, String> signMap = new HashMap<String, String>();
signMap.put("productKey", info.productKey);
signMap.put("deviceName", info.deviceName);
// signMap.put("timestamp", String.valueOf(System.currentTimeMillis()));
signMap.put("clientId", getClientId());
return SignUtils.hmacSign(signMap, info.deviceSecret);
}
@Override
public String getClientId() {
ALog.d(TAG, "getClientId() called");
return "id";
}
@Override
public Map<String, Object> getSignExtraData() {
return null;
}
@Override
public void onConnectResult(boolean isSuccess, ISubDeviceChannel iSubDeviceChannel, AError aError) {
ALog.d(TAG, "onConnectResult() called with: isSuccess = [" + isSuccess + "], iSubDeviceChannel = [" + iSubDeviceChannel + "], aError = [" + getError(aError) + "]");
if (isSuccess) {
ALog.d(TAG, "子设备添加成功 " + getPkDn(info));
// for test
// 添加成功之后调用子设备登录
subDevOnline(index);
}
}
@Override
public void onDataPush(String s, AMessage message) {
// new String((byte[]) message.getResult())
// {"method":"thing.service.property.set","id":"184220091","params":{"test":2},"version":"1.0.0"} 示例
ALog.d(TAG, "收到子设备下行数据 onDataPush() called with: topic = [" + s + "], message = [" + getMessage(message) + "]");
}
});
}
/**
* 删除子设备
*/
private void deleteSubDevice() {
if (userSubDev == null || userSubDev.size() < 1) {
ALog.e(TAG, "无有效已动态注册的设备,删除失败");
return;
}
final DeviceInfo info = userSubDev.get(0);
LinkKit.getInstance().getGateway().gatewayDeleteSubDevice(info, new ISubDeviceRemoveListener() {
@Override
public void onSuceess() {
ALog.d(TAG, "deleteSubDevice onSuceess() called " + getPkDn(info));
}
@Override
public void onFailed(AError aError) {
ALog.d(TAG, "deleteSubDevice onFailed() called with: aError = [" + getError(aError) + "]" + getPkDn(info));
}
});
}
/**
* 网关添加子设备之后才能代理子设备上线
*/
private void subDevOnline(int index) {
if (userSubDev == null || userSubDev.size() < 1) {
ALog.e(TAG, "无有效已动态注册的设备,删除失败");
return;
}
final DeviceInfo info = userSubDev.get(index);
LinkKit.getInstance().getGateway().gatewaySubDeviceLogin(info, new ISubDeviceActionListener() {
@Override
public void onSuccess() {
ALog.d(TAG, "subDevOnline onSuccess() called " + getPkDn(info));
// subDevDisable();
// subDevDelete();
// 测试子设备物模型
// testSubdevThing();
}
@Override
public void onFailed(AError aError) {
ALog.d(TAG, "subDevOnline onFailed() called with: aError = [" + getError(aError) + "]" + getPkDn(info));
}
});
}
/**
* 网关添加子设备之后才能代理子设备下线
*/
public void subDevOffline() {
ALog.d(TAG, "subDevOffline");
if (userSubDev == null || userSubDev.size() < 1) {
ALog.e(TAG, "无有效已动态注册的设备,删除失败");
return;
}
final DeviceInfo info = userSubDev.get(0);
LinkKit.getInstance().getGateway().gatewaySubDeviceLogout(info, new ISubDeviceActionListener() {
@Override
public void onSuccess() {
ALog.d(TAG, "subDevOffline onSuccess() called " + getPkDn(info));
deleteSubDevice();
}
@Override
public void onFailed(AError aError) {
ALog.d(TAG, "subDevOffline onFailed() called with: aError = [" + getError(aError) + "]" + getPkDn(info));
}
});
}
/**
* 代理子设备订阅
*/
public void subDevSubscribe() {
if (userSubDev == null || userSubDev.size() < 1) {
ALog.e(TAG, "无有效已动态注册的设备,删除失败");
return;
}
final DeviceInfo info = userSubDev.get(0);
String topic = testSubscribePropertyService;
final String tempTopic = topic.replace("{deviceName}", info.deviceName)
.replace("{productKey}", info.productKey);
LinkKit.getInstance().getGateway().gatewaySubDeviceSubscribe(tempTopic, info, new ISubDeviceActionListener() {
@Override
public void onSuccess() {
ALog.d(TAG, "subDevSubscribe onSuccess() called " + getPkDn(info));
}
@Override
public void onFailed(AError aError) {
ALog.d(TAG, "subDevSubscribe onFailed() called with: aError = [" + getError(aError) + "]" + getPkDn(info));
}
});
}
/**
* 代理子设备发布
*/
public void subDevPublish() {
if (userSubDev == null || userSubDev.size() < 1) {
ALog.e(TAG, "无有效已动态注册的设备,删除失败");
return;
}
final DeviceInfo info = userSubDev.get(0);
String topic = testPublishTopic.replace("{deviceName}", info.deviceName)
.replace("{productKey}", info.productKey);
String data = "";//TODO add by user
LinkKit.getInstance().getGateway().gatewaySubDevicePublish(topic, data, info, new ISubDeviceActionListener() {
@Override
public void onSuccess() {
ALog.d(TAG, "subDevPublish onSuccess() called " + getPkDn(info));
}
@Override
public void onFailed(AError aError) {
ALog.d(TAG, "subDevPublish onFailed() called with: aError = [" + getError(aError) + "]" + getPkDn(info));
}
});
}
/**
* 代理子设备取消订阅
*/
public void subDevUnsubscribe() {
if (userSubDev == null || userSubDev.size() < 1) {
ALog.e(TAG, "无有效已动态注册的设备,删除失败");
return;
}
final DeviceInfo info = userSubDev.get(0);
String topic = testSubscribePropertyService.replace("{deviceName}", info.deviceName)
.replace("{productKey}", info.productKey);
LinkKit.getInstance().getGateway().gatewaySubDeviceUnsubscribe(topic, info, new ISubDeviceActionListener() {
@Override
public void onSuccess() {
ALog.d(TAG, "subDevUnsubscribe onSuccess() called " + getPkDn(info));
}
@Override
public void onFailed(AError aError) {
ALog.d(TAG, "subDevUnsubscribe onFailed() called with: aError = [" + getError(aError) + "]" + getPkDn(info));
}
});
}
/**
* 子设备禁用监听
*/
private void subDevDisable() {
if (userSubDev == null || userSubDev.size() < 1) {
ALog.e(TAG, "无有效已动态注册的设备,删除失败");
return;
}
final DeviceInfo info = userSubDev.get(0);
LinkKit.getInstance().getGateway().gatewaySetSubDeviceDisableListener(info, new IConnectRrpcListener() {
@Override
public void onSubscribeSuccess(ARequest aRequest) {
ALog.d(TAG, "订阅禁用下行成功");
}
@Override
public void onSubscribeFailed(ARequest aRequest, AError aError) {
ALog.d(TAG, "订阅禁用下行失败 " + getError(aError));
}
@Override
public void onReceived(ARequest aRequest, IConnectRrpcHandle iConnectRrpcHandle) {
ALog.d(TAG, "== onReceived() called with: aRequest = [" + aRequest + "], iConnectRrpcHandle = [" + iConnectRrpcHandle + "]" + getPkDn(info));
AResponse response = new AResponse();
// 回复示例
response.data = "{\"id\":\"123\", \"code\":\"200\"" + ",\"result\":{} }";
//TODO
if (aRequest instanceof MqttRrpcRequest) {
String receivedData = new String((byte[]) ((MqttRrpcRequest) aRequest).payloadObj);
//{"method":"thing.disable","id":"123643484","params":{},"version":"1.0.0"} 参考数据
// TODO 数据解析处理
iConnectRrpcHandle.onRrpcResponse(((MqttRrpcRequest) aRequest).replyTopic, response);
}
}
@Override
public void onResponseSuccess(ARequest aRequest) {
ALog.d(TAG, "subDevDisable onResponseSuccess() called with: aRequest = [" + aRequest + "]");
}
@Override
public void onResponseFailed(ARequest aRequest, AError aError) {
ALog.d(TAG, "subDevDisable onResponseFailed() called with: aRequest = [" + aRequest + "], aError = [" + getError(aError) + "]");
}
});
}
/**
* 测试子设备物模型
* 先获取子设备物模型
*/
public void testSubdevThing() {
if (userSubDev == null || userSubDev.size() < 1) {
ALog.e(TAG, "无有效已动态注册的设备,删除失败");
return;
}
final DeviceInfo info = userSubDev.get(0);
Map<String, ValueWrapper> subDevInitState = new HashMap<String, ValueWrapper>();
// subDevInitState.put(); //TODO
LinkKit.getInstance().getGateway().initSubDeviceThing(null, info, subDevInitState, new IDMCallback<InitResult>() {
@Override
public void onSuccess(InitResult initResult) {
ALog.d(TAG, "initSubDeviceThing onSuccess() called with: initResult = [" + initResult + "]");
testSubDevThing(info);
}
@Override
public void onFailure(AError aError) {
ALog.d(TAG, "initSubDeviceThing onFailure() called with " + getError(aError));
}
});
}
/**
* 测试子设备物模型
*
* @param info 子设备信息
*/
private void testSubDevThing(DeviceInfo info) {
SubThingSample sample = new SubThingSample(info.productKey, info.deviceName);
sample.readData(ResourceUtil.getResource("test_sub_case.json").getPath());
sample.setServiceHandler();
sample.report();
}
}
|
import java.io.File;
import java.util.Properties;
public class TestOverlay {
static {
Properties p=System.getProperties();
File f = new File(p.getProperty("user.dir")+"/openesp-overlay.zip");
customOverlay = ( f.exists() );
}
public static boolean customOverlay;
public static void main(String[] args){
System.out.println("!! IN TEST CLASS !!");
if(TestOverlay.customOverlay)
System.out.println("openesp-overlay.zip exists");
else
System.out.println("openesp-overlay.zip DOES NOT exist");
}
} |
Jerry Seinfeld has gotten fully on board with social media.
The TV star already has a Twitter account, but announced Thursday that he has also joined Facebook and Instagram, with the social media accounts for his web series "Comedians in Cars Getting Coffee" now in his name.
"In case you didn't notice, I officially joined Facebook and Instagram this morning," he wrote. "We'll still bring you all of the updates on 'Comedians in Cars getting Coffee,' but as of today, this is my page, and anything can happen."
To mark the occasion, the comedian debuted a video that depicted him meeting the "president" of Crackle, which produces his web series.
The video shows Seinfeld getting an urgent text telling him that the company head needs to meet with him right away. The star is shown traveling cross country from New York to Los Angeles to meet with the Crackle honcho, played by his former "Seinfeld" co-star Michael Richards.
The skit has the Crackle president breaking it to him that the video site is "dead" due to competition from streaming sites such as Netflix and Hulu, or as he calls them, "Snap" and "Pop."
Richards' character then has a "Godfather"-esque moment in which he tells Seinfeld that he wants them eliminated, with the clip ending with the words, "To be continued."
The clip also announces that the new season of "Comedians in Cars Getting Coffee" will debut Nov. 6. |
The Effect of the Use of Mind-Map-Based Quantum Learning Models and Reading Interest on Argumentation Writing Skills for High School Students Abstract-This study aims to determine the effect of using mind-based quantum learning models and reading interest in argumentation writing skills of class X students of SMA 1 Linggo Sari Baganti. The theory used in this study is a quantum learning model based on mind maps, reading interest, and writing arguments. This type of research is quasi-experimental (quasi-experimental) and the design used in this study is factorial 2x2. The population of this study was class students of SMA 1 Linggo Sari Baganti. Sampling amounted to 62 uses a purposive sampling technique. The data collection was conducted through i test, consisting of tests initial ability in the form of reading and interest final ability to use performance tests for the ability to write arguments. Data analysis and discussion were carried out descriptively analysis in accordance with the concept of experimental research. First, rk verage Life Skills students taught writing argument with quantum learning model based mind map is 81.00, while students taught with the conventional model is 79.40. Second, the average argument writing skills of students with high reading interest taught with mind map-based quantum learning models is 86.25, while students with high reading interest taught with conventional models are 84.4. Thirdly, leverage writing skills argumentation low reading interest of students taught by quantum learning model based mind map is 75.75, while a low reading interest of students who are taught by the conventional model is 74.4. Fourth, there does not influence the interaction between the model of learning by reading interest towards learning outcomes k Life Skills write arguments in class X Linggo Sari Baganti 1 Public High School, South Coastal District. District. INTRODUCTION Learning Indonesian language and literature is directed to be skilled in communicating effectively and efficiently, in accordance with the objectives of the curriculum. Writing is a productive and expressive activity. Productive because writing produces a form of writing that is useful and can be read by many people at different places and times. Writing is also an expressive activity because a person can express his feelings in writing. Writing skills are activities that cannot be separated in the entire learning process experienced by a person during the learning process at school. A writer must be skilled at utilizing the structure of language and vocabulary. In accordance with the content standards of the KU (SI) Education Unit Level Curriculum (KTSP) in 2006, the writing skills that students must master are writing arguments, summaries, personal letters, official letters, descriptions, narratives, and expositions. One of the learning materials that must be taught to students is learning to write arguments. Argumentation is writing that aims to convince or persuade readers about the truth of the author's opinion or statement. In the learning process to write this argument, there must be a lesson plan that is carried out optimally so that learning objectives can be achieved. Based on initial observations and interviews that have been conducted. First, when the teacher asks students to write arguments, the students are unable to put their ideas into writing. Second, in terms of the students' mean scores obtained from the results of the argumentation essay writing assignment, the results are still low. The same problem also occurs in other schools. First, in Darma Yulia's research, it was found that vocational students were unable to design argumentation writing. However, not all students are able to design writing because they find problems around writing. The problem is learning to write arguments in SMK 1 Batusangkar especially X K1 class, students are still not able to meet the minimum completeness criteria (KKM) of 80. only 25% of students were able to write argumentation paragraphs well and 75% of students were unable to write argumentation paragraphs well. The indicators used by the teacher so far are assessment in terms of content, writing organization, language, vocabulary, and writing techniques. In the learning process, interest is a very important factor to be cultivated in students. In addition, interest is a source of motivation that encourages students to carry out an activity, so that learning can achieve the expected results. One of them is to foster interest in reading in students. Reading interest also has a big influence in writing. Reading interest is an important factor that must be cultivated in students when they master writing skills. This is in line with the opinion of Sudiana which states that reading interest is one of the factors that significantly influences reading and writing skills. In line with the results of the BPS survey, the results of the UNESCO ( United Nations Educational, Scientific and Cultural Organization ) survey also show that the lowest reading interest in the ASEAN ( Association of Southeast Asian Nations ) is Indonesia. The low reading interest is evidenced by the reading index for the Indonesian people which only shows around 0.001, meaning that out of a thousand people, only one person still has a high reading interest. This figure is still far from the reading interest rate in Singapore which has a reading index of up to 0.45%. (Viva.co.id, 2015). The mind map-based quantum learning model is a learning model that is carried out by changing the various interactions that exist in and around learning situations. A pleasant learning environment will be able to combine self-confidence, study skills, and communication skills. This learning model pays close attention to the learning environment that is designed in such a way that students feel important, safe, comfortable, and can learn as optimally as possible. Mind map-based quantum models provide tips, hints, strategies, and whole processes that can save time, sharpen understanding and memory, and make learning a fun and rewarding process. Based on the descriptions and phenomena described above, it can be concluded that the research entitled "The Effect of Using a Mind Map-Based Quantum Learning Model and Reading Interests on Argumentation Writing Skills for Class X Students of SMA Negeri 1 Linggo Sari Baganti" is important to carry out. METHODS This type of research is quantitative research, because in this study the data is processed in the form of numbers. The results of the students' argumentation writing skills test were analyzed using statistical formulas. In line with Arikunto's opinion (2006: 10) which states that in quantitative research, the results of many measurements are required to use numbers, starting from the process of collecting data, interpreting data, and the appearance of the results. This research was conducted using a quasy experiment method. The research design used was a 2x2 factorial. Factorial design is the most efficient design to investigate two effects or more factors (Suwanda, 2011: 145). The research site was conducted at SMA Negeri 1 Linggo Sari Baganti. This research was conducted in the even semester of 2015/2016. When the research was carried out in April 2016, following the lesson schedule set by the school. The material taught is writing argumentation paragraphs. The population of this study were students of class X SMA Negeri 1 Linggo Sari Baganti, Linggo Sari Baganti District, who were registered in the 2015/2016 academic year. The number of students is 151 students spread over 5 classes, namely class X.1 to class X.5. Therefore, this study only uses two classes which will be designated as research samples. Data analysis. First, collecting daily scores for the first semester of Indonesian language grade X semester I at SMAN 1 Linggo Sari Baganti. Second, perform a normality test using the Liliefors test, to see whether the sample is normally distributed or not. Third, perform a homogeneity test of variance. The homogeneity test of variance was carried out by testing the Bartlert (Riduwan, 2007: 178). Fourth, to test the mean similarity of the six classes with a oneway analysis of variance. Fifth, if the six classes have the same average, then two classes are taken randomly as a sample by lot. In determining the sample, first conduct a preliminary study to determine the character and skills of class X students of SMAN 1 Linggo Sari Baganti before selecting the sample, carried out the normality test, homogeneity, and the average similarity test. The test uses the daily test scores of class X students in Indonesian subjects. The research sample is class X4 and class X5. The reason for choosing this class was because the two sample classes had almost the same standard deviation (from the normality results). After that, the sample class of this research was class X 4 (experiment I) as many as 32 people and class X5 (experiment II) as many as 30 people. At the last meeting, a test of the ability to write argumentation paragraphs was held to measure students' comprehension ability in writing argumentation paragraphs. The test given is in the form of a performance test, namely writing argumentation paragraphs which are carried out in the experimental class and the control class after the learning material is writing argumentation paragraphs. The instrument used to collect data in this study consisted of two instruments, namely a questionnaire sheet and a performance test. Questionnaire sheets are used to determine students 'reading interest while tests are used to measure the level of students' ability in writing argumentation paragraphs. Advances in Social Science, Education and Humanities Research, volume 485 The steps in preparing the test instrument are as follows. First, create a grid based on the indicators of writing paragraphs of argument. Second, validating the indicators of writing argumentation paragraphs to the validators and Indonesian teachers. Third, determine the theme before writing arguments. Fourth, conduct operational analysis to see the suitability of the argumentation text given to students. In the data collection process in writing argumentation essay skills, it can be done by using the following five data collection techniques, students are given a test sheet to write argumentation essays, students are given the opportunity to read general instructions and specific instructions contained in the test, students are given performance sheets for writing places, students are given 90 minutes to write arguments on the performance sheets that have been given, after completion, student work sheets are collected then checked according to the aspects and performance that have been predetermined. The normality test is carried out to find out whether there is data with normal distribution or not. Riduwan (2003: 187), said that to test the normality of the data used was the Liliefores test. The homogeneity test aims to determine whether the data has a homogeneous variance or not by using the Barlet test. Riduwan (2003: 184) says that to test the homogeneity of the data, the Barlet test is used. Differences Model Learning-Based Quantum Mind Map And Model Conventional against Skills Writing. Before the test k Life Skills write done, tinggkat skills between classroom experiments and grade control in writing is believed to have been different. The presumption is raised because of differences in treatment which is applied to the second class of the samples are in learning to write. During the process of learning occurred student classroom experiments and classroom control feel the atmosphere of learning are different in writing. It is caused due to a class of experiments using the learning model based quantum mind maps. Will but on grade control using a model of the conventional. Differences in the two classes are addressed by the average value of the test k Life Skills write are different. The writing average of the experimental class was not much different from that of the control class. On average skill class experiment in reading is 80.97 were in the top KKM has been set and is on qualifying well (B). This is due to the effect of the treatment are determined on a class experiment that uses the learning model based quantum mind maps. Would however, not much different from the class of the control that uses the model of conventional. The average skill of students in the control class in reading is 74.63 are at the top under the KKM, the average value of which was obtained by the class of experiments is high compared with the average value of which was obtained by the grade control. Following this will be explained more detailed picture of k Life Skills Writing student classroom experiments and classroom control. From the analysis of the data conducted on a sample of research grade experimental No 27 the value is in the above KKM, whereas 5 the other is at the bottom KKM. In grade control, a sample study only 20 people who value on top of KKM, while 10 others are still not yet completed or not yet meet the standards of the KKM. Can be said that the skills of the two classes of samples of research is relatively not equal to the difference in the level of thoroughness that is not much different. Learning outcomes are benchmarks or benchmarks for determining the level of success of students in knowing and understanding learning material. The learning outcomes of students are closely related to the formulation of learning objectives planned by the teacher. This is also influenced by the ability of the teacher as a learning designer. For this reason, teachers are required to master a learning model that can help students interact actively with other students or students with teachers. Learning outcomes are the level of mastery achieved by students in learning in accordance with predetermined goals. According to Dimyanti and Mudjiono (2002:200), learning outcomes are the level of success achieved by students after participating in learning activities, where the success rate is marked by numbers, letters, words and symbols. So, learning outcomes are indicators to determine whether a learning process is achieved or not. Because learning outcomes are the level of mastery achieved by students, it is important to set standards and conduct preliminary tests, as a benchmark to show the level of student success in mastering the material. According Trianto (2013:18 ) learning is a process of change in behavior remains of yet know be out, of not understanding be understood, of less skilled becoming more skilled, and of customs old into the habit of new, as well as beneficial for the environment as well as the individual 's own. Meanwhile, according to Subiyanto (Trianto, 2013:19) teaches at essentially no more than just help the students to acquire the knowledge, skills, attitudes, and ideas and apresisi which leads to changes in behavior behavior and growth of students. How to teach the teachers who either are kuncu and persyarat for students to be able to learn with good. One of the motorway o k measuring that students have learned to good is that if the students were able to learn what that should be studieds, so that the indicator results of learning are desired can be achieved by the students. The first research hypothesis testing results indicate that in general are not there differences in the results of learning to read between the students who were taught using learning model based quantum Advances in Social Science, Education and Humanities Research, volume 485 mind map with students who are taught by a model of learning conventional in the student class X SMA Negeri 1 Linggo Sari Baganti. The average k Life Skills write students are taught using learning model based quantum mind maps is 80,97, while students who are taught by a model of conventional is 74,63. As is the case with the teacher's role in carrying out learning activities in textbooks, the role of students is not explicitly stated either. Explicit statements of student roles are generally written on the teacher's instructions. Because it tends to be stated implicitly, teachers need to make inferences on the role of students in most learning activities. In order for students to be facilitated in recognizing, caring, and internalizing character, students must be given an active role in learning. Skills Writing Students with Interest Read Higher Taught by Learning Model-Based Quantum Mind Map And Model Conventional The second hypothesis testing results show that there are differences in the results of learning to read between students who have interest in reading high which is taught by using learning model based quantum mind map with students who are having interest in reading high which is taught by the model learning konvensioana. The average Life Skills write students ' interest in reading high which is taught by using learning model based quantum mind maps are 86, 38, while students' interest in reading high which is taught by the model konvensioanal is 82, 40. In concept models by Istarani (2012:1), model of learning is a series of presentation materials teaching that covers all aspects before being and after learning that do the teachers and all the facilities are related to that used in directly or not directly in the process of learning to teach. Through initial abilities, students will basically have an effect on the learning outcomes achieved (Ali 2012:74). Thus, through the initial ability of the teacher can determine the extent to which students' knowledge of a material. Students 'initial knowledge is needed by the teacher to measure the extent to which students' abilities are related to the material to be taught. Students 'initial abilities can be seen from the results of students' reading interest. After getting a score along with the average value of students that earn from interest read the students are, the ability to beginning students just plain we differentiate. Differences are grouped on the basis of students with interest in reading high and students with an interest read low in both classes is a class experiment with using the learning model based quantum mind maps and grade control by using a model of the conventional. Skills Writing Students with interest in reading Low who Taught by Learning Model-Based Quantum Mind Mapping and Model Konvensioanal The third hypothesis testing results indicate that not there are differences in the results of learning to read between students who have interest in reading low which is taught by using learning model based quantum mind map with students who are having interest in reading low which is taught by the model learning konvensioanal. The average k Life Skills write students ' interest in reading the low that is taught by using learning model based quantum mind map is 75.56, while the students' interest in reading the low that is taught by the model of conventional is 66.87. In accordance with what was explained earlier, although students with low initial abilities in the experimental class got learning outcomes that were not different from the control class, it was necessary to increase their initial ability with reading interest. This is because there is no influence between initial ability and reading interest in influencing writing skills. Through reading interest as an initial ability the teacher can determine the extent to which students' knowledge of a material. Students 'initial knowledge is needed by the teacher to measure the extent to which students' abilities are related to the material to be taught. The initial ability of students can be seen from the scores of students' reading interest given. Teachers must first have a description of the behavioral and personal characteristics of students when they are about to enter and begin the learning process. Initial ability is the level and type of behavior characteristics that students have previously had when starting teaching and learning activities. Basically, initial knowledge greatly influences the learning outcomes achieved. The Interaction Between Mind Map Based Quantum Learning Model and Conventional Model with Reading Interest in Influencing Writing Skills An interaction occurs when the effects of factors that one depends on factors other in mempengaruhui something (Irianto,2004: 225). This means that each individual factor between the learning model based quantum map of the mind and conventional with interest read mutually dependent one each other in influencing k Life Skills write. The interaction process between these variables can be explained as follows. Based on the test Annava against the hypothesis fourth to note that not there is interaction between the learning model based quantum mind map and conventional with interest read to k Life Skills. Previously that interaction is the effect of the treatment model of learning specific to the group of students with who has the ability to beginning certain that the study is the ability of the beginning in terms of interest in reading. Interest in reading can determine success within kLife Skills write. Multitude of factors other as a support such as motivation, interest, intelligence, talent and so forth. In addition, the teacher's readiness factor in using quantum learning models based on mind maps and conventional learning in writing will also have an effect on student writing learning outcomes. Interaction between the learning model based quantum mind maps and models the conventional with interest in reading also can be seen from the results of the average test k Life Skills. Such as that seen in the graph interaction follows. Figure 1. Graph interaction between Learning Model-Based Quantum Mind Mapping and M odel Konvensioanal with interest read on Skills Writing Based on Figure 2, it can be seen that point A is a group of experimental class students who have high reading interest with an average value of 86, 38, point D is a group of control class students who have high reading interest with an average value of 75.56, Point C is a group of students in the experimental class who have low reading interest with an average score of 82.40, and point B is a group of control class students who have low reading interest with an average score of 66.87. With no presence of pieces of line indicated by the graph, it can be concluded that there is an interaction between the learning model with interest in reading students towards k Life Skills write class X SM A State 1 Linggo Sari Baganti With no presence of interactions such, can be concluded that each factor (models of learning and interest in reading ) are not mutually dependent of each other in influencing write. That is, using the learning model based quantum mind maps and models of teaching the conventional right applied for students both with interest in reading high and interest interest in reading low. CONCLUSIONS Based on the description, analysis, and discussion of the research data that has been carried out, it can be concluded that four things are as follows. So can we conclude, that as a whole the learning model based quantum mind map right is used to k Life Skills write arguments both students with interest in reading high or students with interest in reading low. And also the learning model based quantum mind map right is used to k Life Skills write arguments both for students who have interest in reading high and students with interest in reading low. Based on these results and conclusions, the suggestions shown to the parties are as follows: Firs, for schools to improve the management of education in schools that can be done by providing learning infrastructure needed for developing student potential and smooth teaching and learning processes such as providing books just as a source of reading are new to support the skills of students in reading and writing. Second, the language and literature teacher Indonesia BC A State 1 Linggo Sari Baganti in order to motivate and provide a learning model are varied and interesting to avoid boredom and kenejuhan students in learning. Third, students students SMA Negeri 1 Linggo sari Baganti order to be able to practice in earnest in learning, so that later skilled in the language not only skilled in writing but also skilled on the four aspects of language more, namely, listening, speaking, and reading. Because at basically me writing is a thing that is most important, because with write will open and give an insight into the area along with knowledge because there are other skills without which there would be a counterbalance tiadak writing skills. |
<filename>src/gverse/retry.ts<gh_stars>10-100
import log from "./debug-logger"
const MaxRetries = 5 // times to retry pending/aborted transactions
/** Returns true if the error is retry-able and we have retries remaining */
export function shouldRetry(error: Error, retries: number): boolean {
if (!error) return false
log("Should retry", retries, ";error: ", error)
return error.message.includes("retry") && retries < MaxRetries
}
/** Returns an promise with timeout. Used for retries. */
export function waitPromise(
purpose = "unknown",
time: number = 15
): Promise<void> {
log("Waiting for", time, "ms", "for", purpose)
return new Promise(
(resolve: (value?: void | PromiseLike<void>) => void): void => {
const id = setTimeout(() => {
clearTimeout(id)
resolve()
}, time)
}
)
}
|
Photonic crystal fibre as an optofluidic reactor for the measurement of photochemical kinetics with sub-picomole sensitivity. Photonic crystal fibre constitutes an optofluidic system in which light can be efficiently coupled into a solution-phase sample, contained within the hollow core of the fibre, over long path-lengths. This provides an ideal arrangement for the highly sensitive monitoring of photochemical reactions by absorption spectroscopy. We report here the use of UV/vis spectroscopy to measure the kinetics of the photochemical and thermal cis-trans isomerisation of sub-picomole samples of two azo dyes within the 19-m diameter core of a photonic crystal fibre, over a path length of 30 cm. Photoisomerisation quantum yields are the first reported for "push-pull" azobenzenes in solution at room temperature; such measurements are challenging because of the fast thermal isomerisation process. Rate constants obtained for thermal isomerisation are in excellent agreement with those established previously in conventional cuvette-based measurements. The high sensitivity afforded by this intra-fibre method enables measurements in solvents in which the dyes are too insoluble to permit conventional cuvette-based measurements. The results presented demonstrate the potential of photonic crystal fibres as optofluidic elements in lab-on-a-chip devices for photochemical applications. |
The profile of an intuitive decision maker and the use of intuition in decision-making practice Summary The profile of an intuitive decision maker and the use of intuition in decision-making practice The aim of this paper is to determine the relationship between the personality traits identified in the literature as characteristic of an intuitive decision-maker and the use of intuition in the decisionmaking process. In order to empirically verify this issue, the author conducted a pilot study. The article consists of three principal parts and is both theoretical and empirical in nature. The first part presents the essence of intuition and attempts to define this ambiguous concept. Next, the personality traits, abilities and predispositions which make up the profile of an intuitive decision maker are discussed. The final part of the paper is devoted to presenting the results obtained in the course of this empirical research. |
Gitik M.. All uncountable cardinals can be singular. Israel journal of mathematics, vol. 35, pp. 6188. Some other useful material is contained in two appendices to the book. First is a summary of relevant forcing models, relegated to the appendix in order to avoid the complications of forcing in the main text. References are given for proofs of the theorems mentioned here. Next Jensen's absoluteness theorem, mentioned above, is proved. This theorem is applied to prove another theorem of Jensen's: It is consistent that there is an elementary embedding from K into K with critical point K but no model L\U~\ with U a measure on K (of course there must then be a model L with U a measure on some cardinal larger than K). Jensen claimed this theorem in earlier handwritten notes but the proof has not previously been available. All of this material is, of course, difficult reading. It is complete enough and the errors, though present, are uncommon enough that it can be read by a reader unfamiliar with the theory (though not by one unfamiliar with the areathe reader should first be acquainted with the papers reviewed in XLVI 864). The approach in the book is somewhat more abstract than that in the papers because Dodd attempts to give a theory that will be useful for more general models. However useful this theory may be later, it seems likely to complicate the issue now. As a result, the papers may be easier to follow. |
Commercialism in Education: Historical Perspectives, Global Dimensions and European Educational Research Fields of Interest Around the globe, the systems of public education currently are being transformed into marketised institutions. Education is essential to the basic needs of every individual. But in a so-called free-market economy, access to schools and universities is open only to those who can afford it. Jan Amos Comenius, Adam Smith, and Wilhelm von Humboldt, among others, laid the theoretical foundations of public education. Today, however, their ideas are being functionalised by corporate libertarians and free-market ideologues. With the help of the WTO's General Agreement on Trade in Services they promote the abolishment of the public sector worldwide, including the EU. In opposition to this, the struggle for public education cannot be grounded on the demand for free und full access to (higher) education alone. It has to be conceptualised, in addition, within the horizon of a non-eurocentric, postmodern, global public sphere. |
<filename>backend/manager/modules/bll/src/test/java/org/ovirt/engine/core/bll/network/cluster/GetAllVmNetworksByClusterIdQueryTest.java
package org.ovirt.engine.core.bll.network.cluster;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.mockito.Mockito.when;
import java.util.ArrayList;
import java.util.List;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.mockito.Mock;
import org.ovirt.engine.core.bll.AbstractUserQueryTest;
import org.ovirt.engine.core.common.businessentities.Cluster;
import org.ovirt.engine.core.common.businessentities.network.Network;
import org.ovirt.engine.core.common.businessentities.network.ProviderNetwork;
import org.ovirt.engine.core.common.network.SwitchType;
import org.ovirt.engine.core.common.queries.IdQueryParameters;
import org.ovirt.engine.core.compat.Guid;
import org.ovirt.engine.core.dao.ClusterDao;
import org.ovirt.engine.core.dao.network.NetworkDao;
public class GetAllVmNetworksByClusterIdQueryTest
extends AbstractUserQueryTest<IdQueryParameters, GetAllVmNetworksByClusterIdQuery<? extends IdQueryParameters>> {
@Mock
private NetworkDao networkDao;
@Mock
private ClusterDao clusterDao;
private Guid clusterId = Guid.newGuid();
private Cluster cluster;
private Network externalNetwork;
private List<Network> networks;
@BeforeEach
public void setUp() {
cluster = new Cluster();
cluster.setId(clusterId);
externalNetwork = new Network();
setIsValidProvidedBy(true);
networks = new ArrayList<>();
networks.add(new Network());
networks.add(externalNetwork);
setIsVmNetworks(true);
when(getQueryParameters().getId()).thenReturn(clusterId);
when(clusterDao.get(clusterId)).thenReturn(cluster);
when(networkDao.getAllForCluster(clusterId, getUser().getId(), getQueryParameters().isFiltered())).thenReturn(
networks);
}
private void setIsValidProvidedBy(boolean validProvidedBy) {
externalNetwork.setProvidedBy(validProvidedBy ? new ProviderNetwork() : null);
}
private void setIsOvsCluster(boolean ovsCluster) {
cluster.setRequiredSwitchTypeForCluster(ovsCluster ? SwitchType.OVS : SwitchType.LEGACY);
}
private void setIsVmNetworks(boolean isVmNetwork) {
networks.forEach(network -> network.setVmNetwork(isVmNetwork));
}
@Test
public void testOvsClusterReturnValue() {
setIsOvsCluster(true);
getQuery().executeQueryCommand();
List<Network> networks = getQuery().getQueryReturnValue().getReturnValue();
assertEquals(1, networks.size());
}
@Test
public void testLagacyClusterReturnValue() {
setIsOvsCluster(false);
getQuery().executeQueryCommand();
List<Network> networks = getQuery().getQueryReturnValue().getReturnValue();
assertEquals(2, networks.size());
}
@Test
public void testInvalidExternalNetworkList() {
setIsOvsCluster(true);
setIsValidProvidedBy(false);
getQuery().executeQueryCommand();
List<Network> networks = getQuery().getQueryReturnValue().getReturnValue();
assertEquals(0, networks.size());
}
@Test
public void testNonVmNetworksOnly() {
setIsOvsCluster(true);
setIsValidProvidedBy(true);
setIsVmNetworks(false);
getQuery().executeQueryCommand();
List<Network> networks = getQuery().getQueryReturnValue().getReturnValue();
assertEquals(0, networks.size());
}
}
|
#include<bits/stdc++.h>
using namespace std;
typedef long long int ll;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int t;
cin>>t;
while(t--)
{
int a,b;
cin>>a>>b;
if((a+b)%2!=0) cout<<"Alice"<<endl;
else cout<<"Bob"<<endl;
}
return 0;
} |
/**
* Copyright 2012-2013 The Regents of the University of California
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on
* an "AS IS"; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under
* the License.
*
* Author: <NAME> <maha (at) cs.ucsb.edu>
* @Since Aug 9, 2012
*/
package edu.ucsb.cs.invertedindex.mappers;
import java.io.IOException;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.mapred.JobConf;
import org.apache.hadoop.mapred.MapReduceBase;
import org.apache.hadoop.mapred.Mapper;
import org.apache.hadoop.mapred.OutputCollector;
import org.apache.hadoop.mapred.Reporter;
import edu.ucsb.cs.types.DocWeight;
import edu.ucsb.cs.types.FeatureWeight;
import edu.ucsb.cs.types.FeatureWeightArrayWritable;
/**
* @author Maha
*
*/
public class InvertedMapper extends MapReduceBase implements
Mapper<LongWritable, FeatureWeightArrayWritable, LongWritable, DocWeight> {
LongWritable feature = new LongWritable();
DocWeight post = new DocWeight();
@Override
public void configure(JobConf job) {
super.configure(job);
}
public void map(LongWritable key, FeatureWeightArrayWritable value,
OutputCollector<LongWritable, DocWeight> output, Reporter reporter) throws IOException {
post.docId = key.get();
for (FeatureWeight item : value.vector) {
post.weight = item.weight;
feature.set(item.feature);
output.collect(feature, post);
}
}
}
|
#ifndef WKJELLYWORM_PACKETS_H
#define WKJELLYWORM_PACKETS_H
#include <sigscanner.h>
class Packets {
public:
static int install(SignatureScanner &, module);
};
#endif //WKJELLYWORM_PACKETS_H
|
def fetch(self, api_token):
self.api_token = api_token
self.headers = {
"Content-Type": "application/json",
"Authorization": f"token {self.api_token}",
}
self._check_token()
docs_df = pd.DataFrame(columns=["doc_id", "name", "url", "body", "doc_type"])
doc_id = 0
print("Fetching Rucio documentation...")
for doc in tqdm(utils.request(self.docs_url, self.headers)):
if type(doc) == str:
print(f"Error: Problem fetching the doc {doc} moving on to the next...")
continue
elif doc["type"] == "file":
if doc["name"].split(".")[-1] not in ["rst", "md"]:
continue
doc_name = doc["name"]
doc_url = doc["html_url"]
doc_download_url = doc["download_url"]
doc_body = requests.get(doc_download_url).content.decode("utf-8")
docs_df = docs_df.append(
{
"doc_id": doc_id,
"name": doc_name,
"url": doc_url,
"body": doc_body,
"doc_type": "general",
},
ignore_index=True,
)
doc_id += 1
elif doc["type"] == "dir":
if doc["name"] == "images":
pass
elif doc["name"] == "man":
print("\nFetching the daemon documentation...")
man_url = doc["url"]
try:
daemons_url = (
self.root_download_url + "/doc/source/man/daemons.rst"
)
daemon_body = requests.get(daemons_url).content.decode("utf-8")
daemons = re.findall("rucio-.*$", daemon_body, re.MULTILINE)
except:
raise AssertionError(
"There is a problem with the daemons_url. Double check if it has changed"
)
for man_doc in utils.request(man_url, self.headers):
if type(man_doc) == str:
print(
f"Error : There was a problem fetching the file : {man_doc}"
)
continue
elif man_doc["name"].split(".")[-1] not in ["rst", "md"]:
continue
else:
if man_doc["name"].split(".")[0] in daemons:
doc_name = man_doc["name"]
doc_url = man_doc["html_url"]
doc_download_url = man_doc["download_url"]
doc_body = requests.get(
doc_download_url
).content.decode("utf-8")
final_doc_body = self._extract_daemon_body(doc_body)
docs_df = docs_df.append(
{
"doc_id": doc_id,
"name": doc_name,
"url": doc_url,
"body": final_doc_body,
"doc_type": "daemon",
},
ignore_index=True,
)
doc_id += 1
elif doc["name"] == "releasenotes":
print("\nFetching the release notes...")
release_notes_url = doc["url"]
for release_note in utils.request(release_notes_url, self.headers):
if type(release_note) == str:
print(
f"Error: Problem fetching the release note {release_note}"
)
continue
elif release_note["name"].split(".")[-1] not in ["rst", "md"]:
continue
else:
doc_name = release_note["name"]
doc_url = release_note["html_url"]
doc_download_url = release_note["download_url"]
doc_body = requests.get(doc_download_url).content.decode(
"utf-8"
)
docs_df = docs_df.append(
{
"doc_id": doc_id,
"name": doc_name,
"url": doc_url,
"body": doc_body,
"doc_type": "release_notes",
},
ignore_index=True,
)
doc_id += 1
elif doc["name"] == "restapi":
pass
elif doc["name"] == "api":
pass
self.docs = docs_df
return docs_df |
From the 2010-11 to the 2011-12 school year, international student enrollment at the Johnson Graduate School of Management rose from 22 percent to 34 percent, signaling a return to pre-recession levels. The increase is consistent with a trend at peer institutions nationwide, according to Christine Sneva, director of admissions and financial aid for the Johnson School.
Recruitment of international students to the Johnson School has also become increasingly important to the University, O’Brien said.
Though the University only offers need-blind admissions for American students, the amount of financial aid available for international students is also on the rise, according to O’Brien.
Sneva said that the Johnson also offers a competitive loan program that doesn’t need to be co-signed and can cover the full tuition.
“With the rising cost of tuition, it is very important to have a loan program in place that is fair and competitive for our international students,” she said.
Sneva said there are many benefits available to international students who attend the Johnson School, such as access to an extensive alumni network.
Sneva said that the Johnson seeks a diverse class of students, recruiting in approximately 100 cities worldwide.
Roberto Cusato grad said the Johnson has given him experiences unlike any he would have had encountered at an institution abroad.
“I am learning a different way to do business, and I am learning a lot about different cultures based on the many nationalities represented at Johnson,” he said.
Both Anzani and Cusato said that international students sometimes find it challenging to find jobs in the U.S.
Though the Johnson School is currently focusing on a more international curriculum, Cusato said that many international students still intend to begin their careers in the U.S. before returning abroad. |
Q:
Negative current displayed on the power supply
I have a problem regarding the power supply and my circuit.
As the picture shown, my power supply is connected to a voltage regulator, Low Dropout Voltage regulator (LDO) to be precise. The part number of LDO is MP9486A. I'm sorry that I'm not allowed to display the schematic but the schematic just a basic one, taking 90V and output 5V.
My question is, when I power the circuit, I see a negative current display on the LED of my power supply. I wonder why are the possibilities that the negative current come from.
Edit:
I think I should put the schematic as well. I'm allowed to put just part of it.
A:
It seems to me like you have both channels of your power supply connected in parallel. I notice that one channel shows a voltage of 59.40 volts and the other shows a value of 59.38 volts and, given that there is a slight discrepancy, being in parallel, there could be a real negative current flowing into the right hand channel fed from the left hand channel.
If you tweaked the right hand power supply channel to produce 59.41 volts I reckon you might see a negative current on the left hand channel. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.