code stringlengths 1 1.05M | repo_name stringlengths 6 83 | path stringlengths 3 242 | language stringclasses 222
values | license stringclasses 20
values | size int64 1 1.05M |
|---|---|---|---|---|---|
console.log('pwm: pwm requre ')
var pwm = require('pwm');
console.log('pwm: pwm test open ')
var pwm1 = pwm.open({
id: 'pwm1',
success: function() {
console.log('pwm: open pwm success')
},
fail: function() {
console.log('pwm: open pwm failed')
}
});
var freq = pwm1.getOption().freq
var duty = pwm1.getOption().duty
console.log('pwm: pwm default config freq is ' + freq + ' duty is ' + duty)
console.log('pwm: pwm test start ')
duty = 0;
var cnt = 10;
var loop = 10;
var timer = setInterval(function(){
if (duty >= 100) {
duty = 0;
}
duty = duty + 20;
pwm1.setOption({
freq: 100,
duty: duty
})
console.log('pwm: pwm test count ' + cnt)
cnt = cnt - 1;
if (cnt == 0) {
pwm1.close();
console.log('pwm: pwm test finish ')
loop--;
if (loop == 0) {
clearInterval(timer);
}
else {
pwm1 = pwm.open({
id: 'pwm1',
success: function() {
console.log('pwm: open pwm success')
},
fail: function() {
console.log('pwm: open pwm failed')
}
});
}
cnt = 10;
}
}, 1000)
| YifuLiu/AliOS-Things | components/amp/example-js/common/pwm.js | JavaScript | apache-2.0 | 1,118 |
var rtc = require('rtc');
rtc.start();
var current_time = rtc.getTime();
console.log('rtc1: current time is ' + current_time);
var my_date = new Date();
my_date.setFullYear(2008,7,9);
rtc.setTime(my_date);
console.log('Date is ' + my_date.toUTCString());
current_time = rtc.getTime();
console.log('rtc2: current time is ' + current_time);
rtc.close(); | YifuLiu/AliOS-Things | components/amp/example-js/common/rtc.js | JavaScript | apache-2.0 | 359 |
var spi = require('spi');
var msgbuf = [0x10, 0xee]
// led灯
var sensor = spi.open({
id: 'spi',
success: function() {
console.log('open spi success')
},
fail: function() {
console.log('open spi failed')
}
});
sensor.write(msgbuf)
var value = sensor.read(2)
console.log('sensor value is ' + value)
sensor.close(); | YifuLiu/AliOS-Things | components/amp/example-js/common/spi.js | JavaScript | apache-2.0 | 336 |
console.log('system version is: ' + system.version())
console.log('system platform is: ' + system.platform())
console.log('system uptime is: ' + system.uptime())
console.log('system heapTotal is: ' + system.memory().heapTotal)
console.log('system heapUsed is: ' + system.memory().heapUsed)
| YifuLiu/AliOS-Things | components/amp/example-js/common/system.js | JavaScript | apache-2.0 | 290 |
var tcp = require('tcp');
function onConnect() {
tcpClient.send({
message: 'hello, this is tcp client test',
success: function() {
console.log('tcp send success');
},
fail: function() {
console.log('tcp send failed');
}
});
}
var tcpClient = tcp.createClient({
host: '47.101.151.113',
port: 50020,
success: function() {
console.log('tcp client connect success');
},
fail: function() {
console.log('tcp client connect failed');
}
});
tcpClient.on('message', function(data) {
console.log('tcp receive data: ' + data);
tcpClient.close();
});
tcpClient.on('connect', function() {
console.log('tcp client connected');
onConnect();
});
tcpClient.on('close', function() {
console.log('tcp client closed');
});
tcpClient.on('error', function(err) {
console.log('tcp client error: ' + err);
}); | YifuLiu/AliOS-Things | components/amp/example-js/common/tcp.js | JavaScript | apache-2.0 | 858 |
var uart = require('uart');
var msgbuf = 'this is amp uart test'
// led灯
var serial = uart.open({
id: 'serial',
success: function() {
console.log('open spi success')
},
fail: function() {
console.log('open spi failed')
}
});
serial.write(msgbuf)
var value = serial.read()
console.log('sensor value is ' + value)
serial.on('data', function(len, data) {
console.log('uart receive data len is : ' + len + ' data is: ' + data);
})
serial.close(); | YifuLiu/AliOS-Things | components/amp/example-js/common/uart.js | JavaScript | apache-2.0 | 471 |
var udp = require('udp');
var udpSocket = udp.createSocket();
function arrayToString(fileData) {
var dataString = "";
for (var i = 0; i < fileData.length; i++) {
dataString += String.fromCharCode(fileData[i]);
}
return dataString;
}
udpSocket.on('message', function(data, rinfo) {
console.log('receive data from ' + rinfo.host + ' port: ' + rinfo.port);
console.log('udp socket just receive data is: ' + arrayToString(data));
udpClient.close();
});
udpSocket.on('close', function() {
console.log('udp close');
});
udpSocket.on('error', function(err) {
console.log('udp error ' + err);
});
setInterval(function() {
udpSocket.send({
address: '127.0.0.1',
port: 50000,
message: 'hello, this is amp',
success: function() {
console.log('send success');
}
});
}, 2000);
// bind port & start to receive message
udpSocket.bind(); | YifuLiu/AliOS-Things | components/amp/example-js/common/udp.js | JavaScript | apache-2.0 | 922 |
var dog = require('wdg');
// led灯
dog.start(2000);
dog.feed();
dog.stop(); | YifuLiu/AliOS-Things | components/amp/example-js/common/wdg.js | JavaScript | apache-2.0 | 79 |
console.log('wifi info get test')
WIFI.connect("aiot", "iot123456", function(){
console.log('wifi connect');
});
var ssid = WIFI.getInfo().ssid;
var ip = WIFI.getInfo().ip;
var mac = WIFI.getInfo().mac;
var rssi = WIFI.getInfo().rssi;
console.log('ssid is ' + ssid);
console.log('ip is ' + ip);
console.log('mac is ' + mac);
console.log('rssi is ' + rssi);
WIFI.disconnect(); | YifuLiu/AliOS-Things | components/amp/example-js/common/wifi.js | JavaScript | apache-2.0 | 383 |
var gpio = require('gpio');
/* open GPIO KEY1 */
var KEY1 = gpio.open({
id: 'KEY1',
success: function() {
console.log('gpio: open KEY1 success')
},
fail: function() {
console.log('gpio: open KEY1 failed')
}
});
/* read KEY1 input every 1 second */
var value;
setInterval(function() {
value = KEY1.readValue();
console.log('gpio: read KEY1 value ' + value);
}, 1000); | YifuLiu/AliOS-Things | components/amp/example-js/haas100/gpio/input/app.js | JavaScript | apache-2.0 | 390 |
var gpio = require('gpio');
/* open GPIO KEY1 */
var KEY1 = gpio.open({
id: 'KEY1',
success: function() {
console.log('gpio: open KEY1 success')
},
fail: function() {
console.log('gpio: open KEY1 failed')
}
});
KEY1.onIRQ({
cb: function() {
console.log('gpio: KEY1 interrupt happens');
}
}); | YifuLiu/AliOS-Things | components/amp/example-js/haas100/gpio/interrupt/app.js | JavaScript | apache-2.0 | 317 |
var gpio = require('gpio');
/* open GPIO LED1 */
var LED1 = gpio.open({
id: 'L1',
success: function() {
console.log('gpio: open LED1 success')
},
fail: function() {
console.log('gpio: open LED1 failed')
}
});
/* open GPIO LED1 */
var LED2 = gpio.open({
id: 'L2',
success: function() {
console.log('gpio: open LED1 success')
},
fail: function() {
console.log('gpio: open LED1 failed')
}
});
/* open GPIO LED1 */
var LED3 = gpio.open({
id: 'L3',
success: function() {
console.log('gpio: open LED1 success')
},
fail: function() {
console.log('gpio: open LED1 failed')
}
});
/* open GPIO LED1 */
var LED4 = gpio.open({
id: 'L4',
success: function() {
console.log('gpio: open LED1 success')
},
fail: function() {
console.log('gpio: open LED1 failed')
}
});
/* open GPIO LED1 */
var LED5 = gpio.open({
id: 'L5',
success: function() {
console.log('gpio: open LED1 success')
},
fail: function() {
console.log('gpio: open LED1 failed')
}
});
/* toggle LED1 every 1 second */
var value = 1;
setInterval(function() {
value = 1 - value;
LED1.writeValue(value);
LED2.writeValue(value);
LED3.writeValue(value);
LED4.writeValue(value);
LED5.writeValue(value);
console.log('gpio: LED1 write value ' + value);
}, 1000); | YifuLiu/AliOS-Things | components/amp/example-js/haas100/gpio/output/app.js | JavaScript | apache-2.0 | 1,312 |
import * as mb from './modbus.js';
var deviceAddr = 1;
var device = mb.Modbus(
{ id: 'UART1' },
{ id: 'D13', polarity: 1 },
deviceAddr
);
/* read single coil */
setInterval(() => {
device.read(deviceAddr, 'hr501-555', 1000).then((result) => {
console.log('read data ' + result)
}).catch((res) => {
console.log('read fail ' + res)
});
}, 5000);
| YifuLiu/AliOS-Things | components/amp/example-js/haas100/modbus/app.js | JavaScript | apache-2.0 | 387 |
import * as Uart from 'uart'
import * as events from 'events'
import * as Gpio from 'gpio'
function Modbus(uartPort, dirPort) {
var rtn = {}
var lastTid = 1
rtn.readTimeout = 500;
rtn.readTimeouthandler;
rtn.packetBufferLength = 100
rtn.packets = []
rtn.stream = Serial(uartPort, dirPort)
rtn.protocal = 'rtu'
rtn.read = function (unitId, address, timeout, callback) {
var parsedAddress = parseAddress(address)
var funcCode = parsedAddress.fcRead
var length = parsedAddress.length
var address = parsedAddress.address
rtn.readTimeout = timeout
rtn.readTimeouthandler = setTimeout(function () {
rtn.packets[tid].promiseReject('timeout')
}, rtn.readTimeout)
var tid = getTid()
var buff = makeDataPacket(tid, 0, unitId, funcCode, address, null, length)
if (rtn.protocal == 'rtu') { buff = buff.rtu }
var packet = {
onResponce: callback,
tx: {
funcCode: funcCode,
tid: tid,
address: address,
hex: buff.toString('hex')
},
promiseResolve: null,
promiseReject: null,
rx: null
}
rtn.packets[tid] = packet
rtn.stream.send(buff)
// console.log('read send ' + buff.toString('hex'))
return new Promise(function (resolve, reject) {
rtn.packets[tid].promiseResolve = resolve
rtn.packets[tid].promiseReject = reject
})
}
rtn.write = function (unitId, address, value, timeout, callback) {
var parsedAddress = parseAddress(address)
var funcCode = parsedAddress.fcWrite
var length = parsedAddress.length
var address = parsedAddress.address
var tid = getTid()
rtn.readTimeout = timeout
rtn.readTimeouthandler = setTimeout(function () {
rtn.packets[tid].promiseReject('timeout')
}, rtn.readTimeout)
if (funcCode == 5 && value == true) { value = 65280 } // To force a coil on you send FF00 not 0001
var buff = makeDataPacket(tid, 0, unitId, funcCode, address, value, length)
if (rtn.protocal == 'rtu') { buff = buff.rtu }
console.log('buff ' + buff)
var packet = {
onResponce: callback,
tx: {
funcCode: funcCode,
tid: tid,
address: address,
hex: buff.toString('hex')
},
rx: null
}
rtn.packets[tid] = packet
rtn.stream.send(buff)
// console.log('write send ' + buff.toString('hex'))
return new Promise(function (resolve, reject) {
rtn.packets[tid].promiseResolve = resolve
rtn.packets[tid].promiseReject = reject
})
}
var getTid = function () {
if (lastTid > rtn.packetBufferLength) { lastTid = 0 }
lastTid++
if (rtn.protocal == 'rtu') { lastTid = 0 }
return lastTid
}
rtn.stream.onData = function (buf) {
// console.log('onData: ' + buf.toString('hex'))
var modbusRes
if (rtn.protocal == "rtu") { modbusRes = parseResponseRtu(buf) }
var value = modbusRes.value
var tid = modbusRes.tid
if (rtn.protocal == "rtu") { tid = 0 }
var err = null
if (modbusRes.exceptionCode) { err = 'Exception Code: 02 - Illegal Data Address' }
rtn.packets[tid].rx = modbusRes
rtn.packets[tid].rx.hex = buf.toString('hex')
if (typeof (rtn.packets[tid].onResponce) == "function") {
rtn.packets[tid].onResponce(err, value)
}
if (err) {
rtn.packets[tid].promiseReject(err)
}
else {
//console.log('onData:', value)
rtn.packets[tid].promiseResolve(value)
clearTimeout(rtn.readTimeouthandler)
}
}
return rtn
}
function parseResponseRtu(buffer) {
var res = {}
res.tid = 1
var buf = new DataView(buffer)
res.unitId = buf.getInt8(0)
res.funcCode = buf.getInt8(1)
res.byteCount = Math.abs(buf.getInt8(2))
console.log('parseResponseRtu original: ', Array.prototype.slice.call(new Uint8Array(buffer)))
// console.log('buffer.length: ', buffer.byteLength);
if (buffer.byteLength > 3) {
var dataBuffer = buffer.slice(3, buffer.byteLength - 2)
res.value = Array.prototype.slice.call(new Uint8Array(dataBuffer))
}
console.log('parseResponseRtu:', JSON.stringify(res))
return res
}
function crc16modbus(buf, previous) {
var TABLE = [0x0000, 0xc0c1, 0xc181, 0x0140, 0xc301, 0x03c0, 0x0280, 0xc241, 0xc601, 0x06c0, 0x0780, 0xc741, 0x0500, 0xc5c1, 0xc481, 0x0440, 0xcc01, 0x0cc0, 0x0d80, 0xcd41, 0x0f00, 0xcfc1, 0xce81, 0x0e40, 0x0a00, 0xcac1, 0xcb81, 0x0b40, 0xc901, 0x09c0, 0x0880, 0xc841, 0xd801, 0x18c0, 0x1980, 0xd941, 0x1b00, 0xdbc1, 0xda81, 0x1a40, 0x1e00, 0xdec1, 0xdf81, 0x1f40, 0xdd01, 0x1dc0, 0x1c80, 0xdc41, 0x1400, 0xd4c1, 0xd581, 0x1540, 0xd701, 0x17c0, 0x1680, 0xd641, 0xd201, 0x12c0, 0x1380, 0xd341, 0x1100, 0xd1c1, 0xd081, 0x1040, 0xf001, 0x30c0, 0x3180, 0xf141, 0x3300, 0xf3c1, 0xf281, 0x3240, 0x3600, 0xf6c1, 0xf781, 0x3740, 0xf501, 0x35c0, 0x3480, 0xf441, 0x3c00, 0xfcc1, 0xfd81, 0x3d40, 0xff01, 0x3fc0, 0x3e80, 0xfe41, 0xfa01, 0x3ac0, 0x3b80, 0xfb41, 0x3900, 0xf9c1, 0xf881, 0x3840, 0x2800, 0xe8c1, 0xe981, 0x2940, 0xeb01, 0x2bc0, 0x2a80, 0xea41, 0xee01, 0x2ec0, 0x2f80, 0xef41, 0x2d00, 0xedc1, 0xec81, 0x2c40, 0xe401, 0x24c0, 0x2580, 0xe541, 0x2700, 0xe7c1, 0xe681, 0x2640, 0x2200, 0xe2c1, 0xe381, 0x2340, 0xe101, 0x21c0, 0x2080, 0xe041, 0xa001, 0x60c0, 0x6180, 0xa141, 0x6300, 0xa3c1, 0xa281, 0x6240, 0x6600, 0xa6c1, 0xa781, 0x6740, 0xa501, 0x65c0, 0x6480, 0xa441, 0x6c00, 0xacc1, 0xad81, 0x6d40, 0xaf01, 0x6fc0, 0x6e80, 0xae41, 0xaa01, 0x6ac0, 0x6b80, 0xab41, 0x6900, 0xa9c1, 0xa881, 0x6840, 0x7800, 0xb8c1, 0xb981, 0x7940, 0xbb01, 0x7bc0, 0x7a80, 0xba41, 0xbe01, 0x7ec0, 0x7f80, 0xbf41, 0x7d00, 0xbdc1, 0xbc81, 0x7c40, 0xb401, 0x74c0, 0x7580, 0xb541, 0x7700, 0xb7c1, 0xb681, 0x7640, 0x7200, 0xb2c1, 0xb381, 0x7340, 0xb101, 0x71c0, 0x7080, 0xb041, 0x5000, 0x90c1, 0x9181, 0x5140, 0x9301, 0x53c0, 0x5280, 0x9241, 0x9601, 0x56c0, 0x5780, 0x9741, 0x5500, 0x95c1, 0x9481, 0x5440, 0x9c01, 0x5cc0, 0x5d80, 0x9d41, 0x5f00, 0x9fc1, 0x9e81, 0x5e40, 0x5a00, 0x9ac1, 0x9b81, 0x5b40, 0x9901, 0x59c0, 0x5880, 0x9841, 0x8801, 0x48c0, 0x4980, 0x8941, 0x4b00, 0x8bc1, 0x8a81, 0x4a40, 0x4e00, 0x8ec1, 0x8f81, 0x4f40, 0x8d01, 0x4dc0, 0x4c80, 0x8c41, 0x4400, 0x84c1, 0x8581, 0x4540, 0x8701, 0x47c0, 0x4680, 0x8641, 0x8201, 0x42c0, 0x4380, 0x8341, 0x4100, 0x81c1, 0x8081, 0x4040];
var crc = typeof previous !== 'undefined' ? ~~previous : 0xffff;
for (var index = 0; index < buf.length; index++) {
var byte = buf[index];
crc = (TABLE[(crc ^ byte) & 0xff] ^ crc >> 8) & 0xffff;
}
return crc;
}
function makeDataPacket(transId, protoId, unitId, funcCode, address, data, length) {
if (typeof (data) == "boolean" && data) { data = 1 }
if (typeof (data) == "boolean" && !data) { data = 0 }
if (address == 0) { address = 65535 }
else { address = address - 1 }
var dataBytes = 0
if (funcCode == 15) { dataBytes = length }
if (funcCode == 16) { dataBytes = length * 2 }
var bufferLength = 12
if (funcCode == 15 || funcCode == 16) { bufferLength = 13 + dataBytes }
var byteCount = bufferLength - 6
let buf = new ArrayBuffer(bufferLength)
let dv = new DataView(buf)
dv.setUint16(0, transId)
dv.setUint16(2, protoId)
dv.setUint16(4, byteCount)
dv.setUint8(6, unitId)
dv.setUint8(7, funcCode)
dv.setUint16(8, address)
if (funcCode == 1 || funcCode == 2 || funcCode == 3 || funcCode == 4) {
dv.setUint16(10, length)
}
if (funcCode == 5 || funcCode == 6) {
dv.setUint16(10, data)
}
if (funcCode == 15 || funcCode == 16) {
dv.setInt16(10, length)
dv.setUint8(12, dataBytes)
dv.setInt32(13, data)
}
var makeCrc = crc16modbus
let bufRtu = dv.buffer.slice(6, bufferLength)
// console.log('before bufRtu: ', Array.prototype.slice.call(new Uint8Array(bufRtu)));
let crc = makeCrc(Array.prototype.slice.call(new Uint8Array(bufRtu)))
let tailBuf = new ArrayBuffer(2);
let tailDv = new DataView(tailBuf)
// console.log('crc: ', crc);
tailDv.setUint8(0, crc & 0xff)
tailDv.setUint8(1, crc >> 8)
bufRtu = appendBuffer(bufRtu, tailBuf);
// console.log('append bufRtu: ', Array.prototype.slice.call(new Uint8Array(bufRtu)));
// var bufRtu = buf.slice(6, bufferLength)
// var crc = makeCrc(bufRtu)
// var arr = Array.prototype.slice.call(new Uint8Array(bufRtu))
// arr.push(0);
// arr.push(0);
// buffRtu = new Buffer(arr);
// buffRtu.writeUInt16LE(crc, buffRtu.length - 2)
return { rtu: Array.prototype.slice.call(new Uint8Array(bufRtu)) }
}
function appendBuffer(buffer1, buffer2) {
var tmp = new Uint8Array(buffer1.byteLength + buffer2.byteLength);
tmp.set(new Uint8Array(buffer1), 0);
tmp.set(new Uint8Array(buffer2), buffer1.byteLength);
return tmp.buffer;
}
function parseAddress(address) {
var rtn = {}
var address = address.toLowerCase()
// 提取地址
// Data Type Short Hand Size Accessibility
// Descrite Input i 1 Bit Read Only
// Coil c 1 Bit Read / Write
// Input Register ir 16 Bits Read Only
// Holding Register hr 16 Bits Read / Write
var isRegister = address.replace('r', '').length !== address.length;
if (isRegister) {
rtn.address = address.substr(2)
rtn.type = address.substr(0, 2)
}
if (!isRegister) {
rtn.address = address.substr(1)
rtn.type = address.substr(0, 1)
}
var isRange = rtn.address.replace('-', '').length !== rtn.address.length
if (isRange) {
var range = rtn.address.split('-')
rtn.length = range[0] - range[1]
if (rtn.length < 0) { rtn.address = range[0] }
if (rtn.length > 0) { rtn.address = range[1] }
rtn.length = Math.abs(rtn.length) + 1
}
if (!isRange) {
rtn.length = 1
}
rtn.address = parseInt(rtn.address)
// 获取类型
// FC1 - Read Coil
// FC2 - Read Input
// FC3 - Read Holding Registers
// FC4 - Read Input Registers
// FC5 - Write Single Coil
// FC6 - Write Single Register
// FC15 - Write Multiple Coils
// FC16 - Write Multiple Registers
if (rtn.type == 'c') {
rtn.fcRead = 1
rtn.fcWrite = 5
}
if (rtn.type == 'i') {
rtn.fcRead = 2
}
if (rtn.type == 'hr' && !isRange) {
rtn.fcRead = 3
rtn.fcWrite = 6
}
if (rtn.type == 'hr' && isRange) {
rtn.fcRead = 3
rtn.fcWrite = 16
}
if (rtn.type == 'ir') {
rtn.fcRead = 4
}
return rtn
}
function Serial(uartPort, dirPort) {
var rtn = {}
rtn.port = Uart.open(uartPort)
if (dirPort) {
var event = new events.EventEmitter();
var option = {};
option.id = dirPort.id;
rtn.io = Gpio.open(option);
}
rtn.send = function (data) {
rtn.io.writeValue(dirPort.polarity === 0 ? 0 : 1);
rtn.port.write(data)
// console.log('uart send: ', data)
event.emit('send')
}
rtn.onData = function () { }
rtn.port.on('data', function (data) {
// console.log('uart ondata: ', data)
rtn.onData(data)
})
event.on('send', function () {
rtn.io.writeValue(dirPort.polarity === 0 ? 1 : 0);
})
return rtn
}
export {
Modbus
}
| YifuLiu/AliOS-Things | components/amp/example-js/haas100/modbus/modbus.js | JavaScript | apache-2.0 | 12,197 |
var network = require('network');
var net = network.openNetWorkClient({devType: 'ethnet'});
var netType = net.getType();
console.log('net type is: ' + netType);
var netStatus = net.getStatus();
console.log('net status is: ' + netStatus);
if (netStatus == 'connect') {
/* 网络状态已连接,获取网络状态 */
console.log('net status already connected');
getNetInfo();
} else {
/* wifi或者以太网,设置ifconfig */
if (netType === "wifi" || netType === "ethnet") {
console.log('net setIfConfig');
net.setIfConfig({
dhcp_en: true, // true: 动态IP模式(以下参数可忽略); false: 静态IP模式(以下参数必填)
ip_addr: '172.20.10.66',
mask: '255.255.255.0',
gw: '172.20.10.1',
dns_server: '8.8.8.8'
});
}
/**
* 监听网络连接成功事件,成功执行回调函数
*/
net.on('connect', function () {
console.log('network connected');
getNetInfo();
});
net.on('disconnect', function () {
console.log('network disconnected');
});
}
function getNetInfo() {
console.log('net status is connected, begin getting net information...');
var info = net.getInfo();
if (netType === "wifi" || netType === "ethnet") {
/* 是否开启dhcp */
console.log('net dhcp_en is: ' + info.netInfo.dhcp_en);
/* ip地址*/
console.log('net ip_addr is: ' + info.netInfo.ip_addr);
/* dns */
console.log('net dns_server is: ' + info.netInfo.dns_server);
/* 网关 */
console.log('net gateway is: ' + info.netInfo.gw);
/* 子网掩码 */
console.log('net mask is: ' + info.netInfo.mask);
/* mac地址 */
console.log('net mac is: ' + info.netInfo.mac);
/* wifi信号强度 */
console.log('net wifi rssi is: ' + info.netInfo.rssi);
return;
}
console.log('unkown net type');
}
| YifuLiu/AliOS-Things | components/amp/example-js/haas100/network/ethernet/app.js | JavaScript | apache-2.0 | 1,867 |
var network = require('network');
var net = network.openNetWorkClient({devType: 'wifi'});
var netType = net.getType();
console.log('net type is: ' + netType);
var netStatus = net.getStatus();
console.log('net status is: ' + netStatus);
if (netStatus == 'connect') {
/* 网络状态已连接,获取网络状态 */
console.log('net status already connected');
getNetInfo();
} else {
/* wifi或者以太网,设置ifconfig */
if (netType === "wifi" || netType === "ethnet") {
console.log('net setIfConfig');
net.setIfConfig({
dhcp_en: true, // true: 动态IP模式(以下参数可忽略); false: 静态IP模式(以下参数必填)
ip_addr: '192.168.124.66',
mask: '255.255.255.0',
gw: '192.168.124.1',
dns_server: '8.8.8.8'
});
}
/* 网络状态未连接,如果是wifi设备则主动联网(4G模组中系统会自动注网) */
if (netType === "wifi") {
net.connect({
ssid: 'xxx', //请替换为自己的热点ssid
password: 'xxx' //请替换为自己热点的密码
});
}
/**
* 监听网络连接成功事件,成功执行回调函数
*/
net.on('connect', function () {
console.log('network connected');
getNetInfo();
});
net.on('disconnect', function () {
console.log('network disconnected');
});
}
function getNetInfo() {
console.log('net status is connected, begin getting net information...');
var info = net.getInfo();
if (netType === "wifi" || netType === "ethnet") {
/* 是否开启dhcp */
console.log('net dhcp_en is: ' + info.netInfo.dhcp_en);
/* ip地址*/
console.log('net ip_addr is: ' + info.netInfo.ip_addr);
/* dns */
console.log('net dns_server is: ' + info.netInfo.dns_server);
/* 网关 */
console.log('net gateway is: ' + info.netInfo.gw);
/* 子网掩码 */
console.log('net mask is: ' + info.netInfo.mask);
/* mac地址 */
console.log('net mac is: ' + info.netInfo.mac);
/* wifi信号强度 */
console.log('net wifi rssi is: ' + info.netInfo.rssi);
return;
}
console.log('unkown net type');
}
| YifuLiu/AliOS-Things | components/amp/example-js/haas100/network/wifi/app.js | JavaScript | apache-2.0 | 2,146 |
var wdg = require('wdg');
//start wdg
wdg.start(2000);
// feed wdg
wdg.feed();
// stop wdg
wdg.stop(); | YifuLiu/AliOS-Things | components/amp/example-js/haas100/wdg/app.js | JavaScript | apache-2.0 | 114 |
import * as adc from 'adc'
var vbattery = adc.open({
id: 'ADC0',
success: function () {
console.log('adc: open adc success')
},
fail: function () {
console.log('adc: open adc failed')
}
});
var value = vbattery.readValue()
console.log('adc value is ' + value) | YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/adc/app.js | JavaScript | apache-2.0 | 298 |
import * as checksum from 'checksum'
let check_param = {
'src': '000102030405060708090a0b0c0d0e0f'
}
let crc16_result = checksum.crc16(check_param);
console.log('crc16:'+crc16_result)
let crc32_result = checksum.crc32(check_param);
console.log('crc32:'+crc32_result)
let md5 = checksum.md5(check_param);
console.log('md5:'+md5) | YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/checksum/app.js | JavaScript | apache-2.0 | 335 |
var device = require('device');
var token = device.getToken();
var value = '1234567890abc';
if (token === undefined) {
console.log('found no token in kv, write new token.');
device.setToken(value);
console.log('write token: ' + value);
if (value === device.getToken()) {
console.log('read token and test pass: ' + device.getToken());
}
} else {
console.log('read token: ' + device.getToken());
} | YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/device/app.js | JavaScript | apache-2.0 | 427 |
var fs = require('fs');
/* HaaS100/EDU K1/200的文件路径必须以/data/开始,其他硬件待确认。*/
var path = '/data/test.data';
var content = 'this is javascript fs test file';
/** filesystem total size */
console.log('fs total size: ' + fs.totalSize());
/** write file */
fs.writeSync(path, content);
console.log('fs write: ' + content);
/** used size */
console.log('fs used size: ' + fs.usedSize());
/** free size */
console.log('fs free size: ' + fs.freeSize());
/** read file */
var data = fs.readSync(path);
console.log('fs read: ' + data);
if (data === content) {
console.log('congratulations!! fs test pass ..');
fs.unlinkSync(path);
} | YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/fs/app.js | JavaScript | apache-2.0 | 671 |
var gpio = require('gpio');
/* open GPIO KEY1 */
var KEY1 = gpio.open({
id: 'KEY1',
success: function() {
console.log('gpio: open KEY1 success')
},
fail: function() {
console.log('gpio: open KEY1 failed')
}
});
/* read KEY1 input every 1 second */
var value;
setInterval(function() {
value = KEY1.readValue();
console.log('gpio: read KEY1 value ' + value);
}, 1000); | YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/gpio/input/app.js | JavaScript | apache-2.0 | 390 |
var gpio = require('gpio');
/* open GPIO KEY1 */
var KEY2 = gpio.open({
id: 'KEY2',
success: function() {
console.log('gpio: open KEY2 success')
},
fail: function() {
console.log('gpio: open KEY2 failed')
}
});
KEY2.onIRQ({
cb: function() {
console.log('gpio: KEY2 interrupt happens');
}
}); | YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/gpio/interrupt/app.js | JavaScript | apache-2.0 | 317 |
var gpio = require('gpio');
/* open GPIO LED1 */
var LED1 = gpio.open({
id: 'L1',
success: function() {
console.log('gpio: open LED1 success')
},
fail: function() {
console.log('gpio: open LED1 failed')
}
});
/* toggle LED1 every 1 second */
var value = 1;
setInterval(function() {
value = 1 - value;
LED1.writeValue(value);
console.log('gpio: LED1 write value ' + value);
}, 1000); | YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/gpio/output/app.js | JavaScript | apache-2.0 | 408 |
// app.js
import * as i2c from 'i2c';
// 初始化对应的I2C
var sensor = i2c.open({
id: 'sensor',
success: function () {
// 初始化成功
console.log('open i2c success')
},
fail: function () {
// 初始化失败
console.log('open i2c failed')
}
});
setInterval(function () {
// 切换成温度模式
sensor.write([0xF3]);
sleepMs(30)
// 代码功能:原始数据格式为[142,124]转成0x8e7c,再解析成数值36476
var tempData = Number('0x' + sensor.read(2).map((i) => ((i < 10 ? '0': '') + i.toString(16))).toString().replace(/,/g, ''));
// 温度公式,可参考Si7006的datasheet
var temp = ((175.72 * tempData) / 65536 - 46.85).toFixed(2);
console.log('temp data is ' + temp);
sleepMs(30);
// 切换成湿度模式
sensor.write([0xF5]);
sleepMs(30);
// 代码功能:原始数据格式为[142,124]转成0x8e7c,再解析成数值36476
var humiData = Number('0x' + sensor.read(2).map((i) => ((i < 10 ? '0': '') + i.toString(16))).toString().replace(/,/g, ''));
// 湿度公式,可参考Si7006的datasheet
var humi = ((125 * humiData) / 65536 - 6).toFixed(2);
console.log('humi data is ' + humi);
}, 1000);
| YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/i2c/app.js | JavaScript | apache-2.0 | 1,193 |
var network = require('network');
var iot = require('iot');
var net = network.openNetWorkClient({devType: 'wifi'});
/**
* 获取网络类型
* 目前支持两种类型:wifi cellular(蜂窝网)
*/
var netType = net.getType();
console.log('net type is: ' + netType);
/**
* 获取网络状态
* 目前支持两种状态:connect disconnect
*/
var netStatus = net.getStatus();
console.log('net status is: ' + netStatus);
if (netStatus == 'connect') {
/* 网络状态已连接,获取网络状态 */
console.log('net status is connect');
iotDeviceCreate();
} else {
/* 网络状态未连接,如果是wifi设备则主动联网(4G模组中系统会自动注网) */
if (netType === "wifi") {
net.connect({
ssid: 'xxx', //请替换为自己的热点ssid
password: 'xxx' //请替换为自己热点的密码
});
}
/**
* 监听网络连接成功事件,成功执行回调函数
*/
net.on('connect', function () {
console.log('network connected');
iotDeviceCreate();
});
net.on('disconnect', function () {
console.log('network disconnected');
});
}
var iotdev;
const productKey = 'xxx';
const deviceName = 'xxx';
const deviceSecret = 'xxx';
var topic = '/sys/' + productKey + '/' + deviceName + '/user/haas/info';
var lightSwitch = 0;
var errCode = 0;
function iotDeviceCreate()
{
iotdev = iot.device({
productKey: productKey,
deviceName: deviceName,
deviceSecret: deviceSecret
});
iotdev.on('connect', function () {
console.log('success connect to aliyun iot server');
iotDeviceOnConnect();
});
iotdev.on('reconnect', function () {
console.log('success reconnect to aliyun iot server');
});
iotdev.on('disconnect', function () {
console.log('aliyun iot server disconnected');
});
}
function iotDeviceOnConnect()
{
iotdev.subscribe({
topic: topic,
qos: 0
});
iotdev.unsubscribe(topic);
iotdev.publish({
topic: topic,
payload: 'haas amp perfect',
qos: 1
});
setInterval(function() {
lightSwitch = 1 - lightSwitch;
// Post properity
iotdev.postProps(
JSON.stringify({
LightSwitch: lightSwitch
})
);
//Post event
iotdev.postEvent({
id: 'ErrorMessage',
params: JSON.stringify({
ErrorCode: errCode
})
});
iotdev.publish({
topic: topic,
payload: 'haas amp perfect',
qos: 0
});
console.log('post lightSwitch ' + lightSwitch + ', ErrorCode ' + errCode);
console.log('system heapFree: ' + system.memory().heapFree);
errCode++;
}, 1000);
iotdev.onService(function(service) {
console.log('received cloud service id ' + service.service_id);
console.log('received cloud service param ' + service.params);
console.log('received cloud service param len ' + service.params_len);
});
iotdev.onProps(function(properity) {
console.log('received cloud properity param ' + properity.params);
console.log('received cloud properity param len ' + properity.params_len);
});
}
| YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/iot/iot-device/sanyuanzu/app.js | JavaScript | apache-2.0 | 3,451 |
var kv = require('kv');
var network = require('network');
var iot = require('iot');
var net = network.openNetWorkClient({devType: 'wifi'});
var iotdev;
var lightSwitch = 0;
var errCode = 0;
var ds;
var dynregParams = {
productKey: 'xx', // 请替换为自己的product key
deviceName: 'xx', // 请替换为自己板子的deviceName,可以用日志中的“amp device name”,也可以自定义,必须和云端已创建的设备名一致
productSecret:'xx' // 请替换为自己的product secret
};
var topic = '/sys/' + dynregParams.productKey + '/' + dynregParams.deviceName + '/user/haas/info';
/**
* 获取网络类型
* 目前支持两种类型:wifi cellular(蜂窝网)
*/
var netType = net.getType();
console.log('net type is: ' + netType);
/**
* 获取网络状态
* 目前支持两种状态:connect disconnect
*/
var netStatus = net.getStatus();
console.log('net status is: ' + netStatus);
ds = kv.getStorageSync('_amp_customer_devicesecret');
if (netStatus == 'connect') {
/* 网络状态已连接,获取网络状态 */
console.log('net status is connect');
if(ds === undefined) {
console.log('ds is null, dynamic register device ');
iotDeviceDynreg();
} else {
console.log('ds is available, create iot device ');
iotDeviceCreate();
}
} else {
/* 网络状态未连接,如果是wifi设备则主动联网(4G模组中系统会自动注网) */
if (netType === "wifi") {
net.connect({
ssid: 'xxx', //请替换为自己的热点ssid
password: 'xxx' //请替换为自己热点的密码
});
}
/**
* 监听网络连接成功事件,成功执行回调函数
*/
net.on('connect', function () {
console.log('network connected');
if(ds === undefined) {
console.log('ds is null, dynamic register device ');
iotDeviceDynreg();
} else {
console.log('ds is available, create iot device ');
iotDeviceCreate();
}
});
net.on('disconnect', function () {
console.log('network disconnected');
});
}
function iotDeviceDynreg()
{
iot.dynreg(dynregParams, function(data) {
console.log('rx dynreg DS: ' + data);
ds = data;
iotDeviceCreate();
});
}
function iotDeviceCreate()
{
iotdev = iot.device({
productKey: dynregParams.productKey,
deviceName: dynregParams.deviceName,
deviceSecret: ds
});
iotdev.on('connect', function () {
console.log('success connect to aliyun iot server');
iotDeviceOnConnect();
});
iotdev.on('reconnect', function () {
console.log('success reconnect to aliyun iot server');
});
iotdev.on('disconnect', function () {
console.log('aliyun iot server disconnected');
});
}
function iotDeviceOnConnect()
{
iotdev.getNtpTime(function(res) {
console.log('ntp time ' + res.year + '-' + res.month + '-' + res.day + ' ' + res.hour + ':' + res.minute + ':' + res.second + '.' + res.msecond + ', timestamp ' + res.timestamp);
});
iotdev.subscribe({
topic: topic,
qos: 0
});
iotdev.unsubscribe(topic);
iotdev.publish({
topic: topic,
payload: 'haas amp perfect',
qos: 1
});
setInterval(function() {
lightSwitch = 1 - lightSwitch;
// Post properity
iotdev.postProps(
JSON.stringify({
LightSwitch: lightSwitch
})
);
//Post event
iotdev.postEvent({
id: 'ErrorMessage',
params: JSON.stringify({
ErrorCode: errCode
})
});
iotdev.publish({
topic: topic,
payload: 'haas amp perfect',
qos: 0
});
console.log('post lightSwitch ' + lightSwitch + ', ErrorCode ' + errCode);
console.log('system heapFree: ' + system.memory().heapFree);
errCode++;
}, 1000);
iotdev.onService(function(service) {
console.log('received cloud service id ' + service.service_id);
console.log('received cloud service param ' + service.params);
console.log('received cloud service param len ' + service.params_len);
});
iotdev.onProps(function(properity) {
console.log('received cloud properity param ' + properity.params);
console.log('received cloud properity param len ' + properity.params_len);
});
}
| YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/iot/iot-device/wl-dynreg/app.js | JavaScript | apache-2.0 | 4,677 |
var iot = require('iot');
var network = require('network');
var net = network.openNetWorkClient({devType: 'wifi'});
var productKey = 'xxx'; // 请替换成自己网关设备的pk
var deviceName = 'xxx'; // 请替换成自己网关设备的dn
var deviceSecret = 'xxx'; // 请替换成自己网关设备的ds
var lightSwitch = 0;
var gateway;
var subdev = [
{
productKey: 'xxx', // 请替换成自己网关子设备1的pk
deviceName: 'subdev-xx', // 请替换成自己网关子设备1的dn
deviceSecret: 'xxx' // 请替换成自己网关子设备1的ds
},
{
productKey: 'xxx', // 请替换成自己网关子设备2的pk
deviceName: 'subdev-xx', // 请替换成自己网关子设备2的dn
deviceSecret: 'xxx' // 请替换成自己网关子设备2的ds
}
];
/* post property */
function postProperty(id, devInfo, content) {
var topic = '/sys/' + devInfo.productKey + '/' + devInfo.deviceName + '/thing/event/property/post';
var payload = JSON.stringify({
id: id,
version: '1.0',
params: content,
method: 'thing.event.property.post'
});
gateway.publish({
topic: topic,
payload: payload,
qos: 1
});
}
/* post event */
function postEvent(id, devInfo, eventId, content) {
var topic = '/sys/' + devInfo.productKey + '/' + devInfo.deviceName + '/thing/event/' + eventId + '/post';
var payload = JSON.stringify({
id: id,
version: '1.0',
params: content,
method: 'thing.event.' + eventId + '.post'
});
gateway.publish({
topic: topic,
payload: payload,
qos: 1
});
}
function createGateway() {
gateway = iot.gateway({
productKey: productKey,
deviceName: deviceName,
deviceSecret: deviceSecret
});
gateway.on('connect', function () {
console.log('(re)connected');
gateway.getNtpTime(function(res) {
console.log('ntp time ' + res.year + '-' + res.month + '-' + res.day + ' ' + res.hour + ':' + res.minute + ':' + res.second + '.' + res.msecond + ', timestamp ' + res.timestamp);
});
gateway.addTopo(subdev);
gateway.login(subdev);
setInterval(function () {
postProperty(1, subdev[subIndex], { 'PowerSwitch_1': lightSwitch });
postEvent(1, subdev[subIndex], 'Error', { 'ErrorCode': 0 });
lightSwitch = 1 - lightSwitch;
subIndex = 1 - subIndex;
}, 5000);
});
/* 网络断开事件 */
gateway.on('disconnect', function () {
console.log('disconnect ');
});
/* mqtt消息 */
gateway.on('message', function (res) {
/* 通过 topic中的pk和dn信息,判断是对哪个子设备的调用 */
var pk = res.topic.split('/')[2];
var dn = res.topic.split('/')[3];
console.log('mqtt message')
console.log('mqtt topic is ' + res.topic);
console.log('PK: ' + pk)
console.log('DN: ' + dn)
console.log('mqtt payload is ' + res.payload);
})
/* 关闭连接事件 */
gateway.on('end', function () {
console.log('iot client just closed');
});
/* 发生错误事件 */
gateway.on('error', function (err) {
console.log('error ' + err);
});
}
console.log('====== create aiot gateway ======');
/**
* 获取网络类型
* 目前支持两种类型:wifi cellular(蜂窝网)
*/
var netType = net.getType();
console.log('net type is: ' + netType);
/**
* 获取网络状态
* 目前支持两种状态:connect disconnect
*/
var netStatus = net.getStatus();
console.log('net status is: ' + netStatus);
if (netStatus == 'connect') {
/* 网络状态已连接,获取网络状态 */
console.log('net status is connect');
createGateway();
} else {
/* 网络状态未连接,如果是wifi设备则主动联网(4G模组中系统会自动注网) */
if (netType === "wifi") {
net.connect({
ssid: 'xxx', //请替换为自己的热点ssid
password: 'xxx' //请替换为自己热点的密码
});
}
/**
* 监听网络连接成功事件,成功执行回调函数
*/
net.on('connect', function () {
console.log('network connected');
createGateway();
});
net.on('disconnect', function () {
console.log('network disconnected');
});
} | YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/iot/iot-gateway/sanyuanzu/app.js | JavaScript | apache-2.0 | 4,512 |
var iot = require('iot');
var network = require('network');
var net = network.openNetWorkClient({devType: 'wifi'});
var productKey = 'xxx'; // 替换成用户网关的pk
var deviceName = 'xxx-01'; // 替换成用户网关的dn
var deviceSecret = 'xxx'; // 替换成用户网关的ds
var lightSwitch = 0;
var gateway;
var subdev = [
{
productKey: 'xxx', // 替换成用户子设备的pk
deviceName: 'xxx' // 替换成用户子设备的pk
}
];
/* post property */
function postProperty(id, devInfo, content) {
var topic = '/sys/' + devInfo.productKey + '/' + devInfo.deviceName + '/thing/event/property/post';
var payload = JSON.stringify({
id: id,
version: '1.0',
params: content,
method: 'thing.event.property.post'
});
gateway.publish({
topic: topic,
payload: payload,
qos: 1
});
}
/* post event */
function postEvent(id, devInfo, eventId, content) {
var topic = '/sys/' + devInfo.productKey + '/' + devInfo.deviceName + '/thing/event/' + eventId + '/post';
var payload = JSON.stringify({
id: id,
version: '1.0',
params: content,
method: 'thing.event.' + eventId + '.post'
});
gateway.publish({
topic: topic,
payload: payload,
qos: 1
});
}
function createGateway() {
gateway = iot.gateway({
productKey: productKey,
deviceName: deviceName,
deviceSecret: deviceSecret
});
gateway.on('connect', function () {
console.log('(re)connected');
gateway.getNtpTime(function(res) {
console.log('ntp time ' + res.year + '-' + res.month + '-' + res.day + ' ' + res.hour + ':' + res.minute + ':' + res.second + '.' + res.msecond + ', timestamp ' + res.timestamp);
});
gateway.registerSubDevice(subdev, function (res) {
console.log('reg subdev resp: ');
console.log('code: ' + res.code);
console.log('data: ' + res.data);
console.log('message: ' + res.message);
var obj = JSON.parse(res.data);
for (var i = 0; i < obj.length; i++) {
console.log('add device: ' + obj[i].productKey + ', '+ obj[i].deviceName + ', '+ obj[i].deviceSecret);
gateway.addTopo([{
productKey: obj[i].productKey,
deviceName: obj[i].deviceName,
deviceSecret: obj[i].deviceSecret
}]);
gateway.login([{
productKey: obj[i].productKey,
deviceName: obj[i].deviceName,
deviceSecret: obj[i].deviceSecret
}]);
}
});
});
/* 网络断开事件 */
gateway.on('disconnect', function () {
console.log('disconnect ');
});
/* mqtt消息 */
gateway.on('message', function (res) {
/* 通过 topic中的pk和dn信息,判断是对哪个子设备的调用 */
var pk = res.topic.split('/')[2];
var dn = res.topic.split('/')[3];
console.log('mqtt message')
console.log('mqtt topic is ' + res.topic);
console.log('PK: ' + pk)
console.log('DN: ' + dn)
console.log('mqtt payload is ' + res.payload);
})
/* 关闭连接事件 */
gateway.on('end', function () {
console.log('iot client just closed');
});
/* 发生错误事件 */
gateway.on('error', function (err) {
console.log('error ' + err);
});
}
console.log('====== create aiot gateway ======');
/**
* 获取网络类型
* 目前支持两种类型:wifi cellular(蜂窝网)
*/
var netType = net.getType();
console.log('net type is: ' + netType);
/**
* 获取网络状态
* 目前支持两种状态:connect disconnect
*/
var netStatus = net.getStatus();
console.log('net status is: ' + netStatus);
if (netStatus == 'connect') {
/* 网络状态已连接,获取网络状态 */
console.log('net status is connect');
createGateway();
} else {
/* 网络状态未连接,如果是wifi设备则主动联网(4G模组中系统会自动注网) */
if (netType === "wifi") {
net.connect({
ssid: 'xxx', //请替换为自己的热点ssid
password: 'xxx' //请替换为自己热点的密码
});
}
/**
* 监听网络连接成功事件,成功执行回调函数
*/
net.on('connect', function () {
console.log('network connected');
createGateway();
});
net.on('disconnect', function () {
console.log('network disconnected');
});
}
| YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/iot/iot-gateway/wl-dynreg/app.js | JavaScript | apache-2.0 | 4,676 |
var kv = require('kv');
var key = 'key-test';
var value = 'this is amp kv test file';
// kv set
kv.setStorageSync(key, value);
// kv get
var val = kv.getStorageSync(key);
console.log('kv read: ' + val);
// kv remove
kv.removeStorageSync(key); | YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/kv/app.js | JavaScript | apache-2.0 | 246 |
import * as ulog from 'ulog'
//set local terminal output log level to debug
ulog.stdloglevel('debug')
//set local log file log level info
ulog.fsloglevel('warning')
//set local file save path
ulog.setlogfilepath('/data/ulog/')
//set log fize size to 8k
ulog.setlogfilesize(8192)
//ulog.cloudloglevel('info')
ulog.debug('test for debug');
ulog.info('test for info');
ulog.warn('test for warning');
ulog.error('test for error log');
ulog.fatal('test for fatal log'); | YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/log/app.js | JavaScript | apache-2.0 | 474 |
var network = require('network');
var net = network.openNetWorkClient({devType: 'cellular'});
var netType = net.getType();
console.log('net type is: ' + netType);
var netStatus = net.getStatus();
console.log('net status is: ' + netStatus);
if (netStatus == 'connect') {
/* 网络状态已连接,获取网络状态 */
console.log('net status already connected');
getNetInfo();
} else {
/**
* 监听网络连接成功事件,成功执行回调函数
*/
net.on('connect', function () {
console.log('network connected');
getNetInfo();
});
net.on('disconnect', function () {
console.log('network disconnected');
});
}
function getNetInfo() {
console.log('net status is connected, begin getting net information...');
var info = net.getInfo();
if (netType === "cellular") {
/* imsi 国际移动用户识别码 */
console.log('net simInfo imsi is: ' + info.simInfo.imsi);
/* imei 国际移动设备识别码 */
console.log('net simInfo imei is: ' + info.simInfo.imei);
/* iccid 集成电路卡识别码 */
console.log('net simInfo iccid is: ' + info.simInfo.iccid);
/* cid 基站编号 */
console.log('net locatorInfo cellid is: ' + info.locatorInfo.cellid);
/* lac 位置区域码 */
console.log('net locatorInfo lac is: ' + info.locatorInfo.lac);
/* mcc 移动国家代码(中国的为460 */
console.log('net locatorInfo mcc is: ' + info.locatorInfo.mcc);
/* mnc 移动网络号码(中国移动为00,中国联通为01) */
console.log('net locatorInfo mnc is: ' + info.locatorInfo.mnc);
/* signal 接收的信号强度值 */
console.log('net locatorInfo signal is: ' + info.locatorInfo.signal);
return;
}
console.log('unkown net type');
}
| YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/network/cellular/app.js | JavaScript | apache-2.0 | 1,779 |
var http = require('http');
var network = require('network');
var net = network.openNetWorkClient({devType: 'wifi'});
/* 加载 timer 模块 */
var timer = require('timer');
var timer0 = timer.open({
id: 'TIMER0'
});
var netType = net.getType();
console.log('net type is: ' + netType);
var netStatus = net.getStatus();
console.log('net status is: ' + netStatus);
if (netStatus == 'connect') {
/* 网络状态已连接,获取网络状态 */
console.log('net status already connected');
getNetInfo();
} else {
/* wifi或者以太网,设置ifconfig */
if (netType === "wifi" || netType === "ethnet") {
console.log('net setIfConfig');
net.setIfConfig({
dhcp_en: true, // true: 动态IP模式(以下参数可忽略); false: 静态IP模式(以下参数必填)
ip_addr: '192.168.124.66',
mask: '255.255.255.0',
gw: '192.168.124.1',
dns_server: '8.8.8.8'
});
}
/* 网络状态未连接,如果是wifi设备则主动联网(4G模组中系统会自动注网) */
if (netType === "wifi") {
net.connect({
ssid: 'xxx', //请替换为自己的热点ssid
password: 'xxx' //请替换为自己热点的密码
});
}
/**
* 监听网络连接成功事件,成功执行回调函数
*/
net.on('connect', function () {
console.log('network connected');
getNetInfo();
/* 定义定时到期回调函数,单次触发打印一行字符串及触发次数 */
function timeout_cb() {
http_test();
timer0.clearInterval();
}
/* 设置单次定时,定时时间5000000us,回调函数打印一行字符串 */
timer0.setInterval(timeout_cb, 5000000);
});
net.on('disconnect', function () {
console.log('network disconnected');
});
}
function getNetInfo() {
console.log('net status is connected, begin getting net information...');
var info = net.getInfo();
if (netType === "wifi" || netType === "ethnet") {
/* 是否开启dhcp */
console.log('net dhcp_en is: ' + info.netInfo.dhcp_en);
/* ip地址*/
console.log('net ip_addr is: ' + info.netInfo.ip_addr);
/* dns */
console.log('net dns_server is: ' + info.netInfo.dns_server);
/* 网关 */
console.log('net gateway is: ' + info.netInfo.gw);
/* 子网掩码 */
console.log('net mask is: ' + info.netInfo.mask);
/* mac地址 */
console.log('net mac is: ' + info.netInfo.mac);
/* wifi信号强度 */
console.log('net wifi rssi is: ' + info.netInfo.rssi);
return;
}
console.log('unkown net type');
}
function http_test() {
http.download({
url:'http://wangguan-498.oss-cn-beijing.aliyuncs.com/SHOPAD/public/mould5.png',
filepath:'/data/http_download_test.png',
success: function (data) {
console.log('http: [debug] downlad is ' + data);
}
});
}
| YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/network/http/http_download/app.js | JavaScript | apache-2.0 | 2,892 |
var http = require('http');
var network = require('network');
var net = network.openNetWorkClient({devType: 'wifi'});
var netType = net.getType();
console.log('net type is: ' + netType);
var netStatus = net.getStatus();
console.log('net status is: ' + netStatus);
if (netStatus == 'connect') {
/* 网络状态已连接,获取网络状态 */
console.log('net status already connected');
getNetInfo();
} else {
/* wifi或者以太网,设置ifconfig */
if (netType === "wifi" || netType === "ethnet") {
console.log('net setIfConfig');
net.setIfConfig({
dhcp_en: true, // true: 动态IP模式(以下参数可忽略); false: 静态IP模式(以下参数必填)
ip_addr: '192.168.124.66',
mask: '255.255.255.0',
gw: '192.168.124.1',
dns_server: '8.8.8.8'
});
}
/* 网络状态未连接,如果是wifi设备则主动联网(4G模组中系统会自动注网) */
if (netType === "wifi") {
net.connect({
ssid: 'xxx', //请替换为自己的热点ssid
password: 'xxx' //请替换为自己热点的密码
});
}
/**
* 监听网络连接成功事件,成功执行回调函数
*/
net.on('connect', function () {
console.log('network connected');
getNetInfo();
// start http test
http_test();
});
net.on('disconnect', function () {
console.log('network disconnected');
});
}
function getNetInfo() {
console.log('net status is connected, begin getting net information...');
var info = net.getInfo();
if (netType === "wifi" || netType === "ethnet") {
/* 是否开启dhcp */
console.log('net dhcp_en is: ' + info.netInfo.dhcp_en);
/* ip地址*/
console.log('net ip_addr is: ' + info.netInfo.ip_addr);
/* dns */
console.log('net dns_server is: ' + info.netInfo.dns_server);
/* 网关 */
console.log('net gateway is: ' + info.netInfo.gw);
/* 子网掩码 */
console.log('net mask is: ' + info.netInfo.mask);
/* mac地址 */
console.log('net mac is: ' + info.netInfo.mac);
/* wifi信号强度 */
console.log('net wifi rssi is: ' + info.netInfo.rssi);
return;
}
console.log('unkown net type');
}
function http_test() {
http.request({
url: 'http://appengine.oss-cn-hangzhou.aliyuncs.com/httpTest.txt',
method: 'GET',
headers: {
'content-type':'application/json'
},
success: function (data) {
console.log('http GET: [debug] receive data is ' + data);
}
});
}
| YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/network/http/http_get/app.js | JavaScript | apache-2.0 | 2,559 |
var http = require('http');
var network = require('network');
var net = network.openNetWorkClient({devType: 'wifi'});
var netType = net.getType();
console.log('net type is: ' + netType);
var netStatus = net.getStatus();
console.log('net status is: ' + netStatus);
if (netStatus == 'connect') {
/* 网络状态已连接,获取网络状态 */
console.log('net status already connected');
getNetInfo();
} else {
/* wifi或者以太网,设置ifconfig */
if (netType === "wifi" || netType === "ethnet") {
console.log('net setIfConfig');
net.setIfConfig({
dhcp_en: true, // true: 动态IP模式(以下参数可忽略); false: 静态IP模式(以下参数必填)
ip_addr: '192.168.124.66',
mask: '255.255.255.0',
gw: '192.168.124.1',
dns_server: '8.8.8.8'
});
}
/* 网络状态未连接,如果是wifi设备则主动联网(4G模组中系统会自动注网) */
if (netType === "wifi") {
net.connect({
ssid: 'xxx', //请替换为自己的热点ssid
password: 'xxx' //请替换为自己热点的密码
});
}
/**
* 监听网络连接成功事件,成功执行回调函数
*/
net.on('connect', function () {
console.log('network connected');
getNetInfo();
// start http test
http_test();
});
net.on('disconnect', function () {
console.log('network disconnected');
});
}
function getNetInfo() {
console.log('net status is connected, begin getting net information...');
var info = net.getInfo();
if (netType === "wifi" || netType === "ethnet") {
/* 是否开启dhcp */
console.log('net dhcp_en is: ' + info.netInfo.dhcp_en);
/* ip地址*/
console.log('net ip_addr is: ' + info.netInfo.ip_addr);
/* dns */
console.log('net dns_server is: ' + info.netInfo.dns_server);
/* 网关 */
console.log('net gateway is: ' + info.netInfo.gw);
/* 子网掩码 */
console.log('net mask is: ' + info.netInfo.mask);
/* mac地址 */
console.log('net mac is: ' + info.netInfo.mac);
/* wifi信号强度 */
console.log('net wifi rssi is: ' + info.netInfo.rssi);
return;
}
console.log('unkown net type');
}
function http_test() {
// request POST example
http.request({
url: 'https://www.ixigua.com/tlb/comment/article/v5/tab_comments/',
method: 'POST',
headers: {
'content-type':'application/x-www-form-urlencoded'
},
params: 'tab_index=0&count=3&group_id=6914830518563373582&item_id=6914830518563373581&aid=1768',
success: function (data) {
console.log('http POST: [debug] receive data is ' + data);
}
});
}
| YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/network/http/http_post/app.js | JavaScript | apache-2.0 | 2,669 |
var mqtt = require('mqtt');
var network = require('network');
var net = network.openNetWorkClient({devType: 'wifi'});
var netType = net.getType();
console.log('net type is: ' + netType);
var netStatus = net.getStatus();
console.log('net status is: ' + netStatus);
if (netStatus == 'connect') {
/* 网络状态已连接,获取网络状态 */
console.log('net status already connected');
getNetInfo();
} else {
/* wifi或者以太网,设置ifconfig */
if (netType === "wifi" || netType === "ethnet") {
console.log('net setIfConfig');
net.setIfConfig({
dhcp_en: true, // true: 动态IP模式(以下参数可忽略); false: 静态IP模式(以下参数必填)
ip_addr: '192.168.124.66',
mask: '255.255.255.0',
gw: '192.168.124.1',
dns_server: '8.8.8.8'
});
}
/* 网络状态未连接,如果是wifi设备则主动联网(4G模组中系统会自动注网) */
if (netType === "wifi") {
net.connect({
ssid: 'xxx', //请替换为自己的热点ssid
password: 'xxx' //请替换为自己热点的密码
});
}
/**
* 监听网络连接成功事件,成功执行回调函数
*/
net.on('connect', function () {
console.log('network connected');
getNetInfo();
// create mqtt client
createMQTTClient();
});
net.on('disconnect', function () {
console.log('network disconnected');
});
}
function getNetInfo() {
console.log('net status is connected, begin getting net information...');
var info = net.getInfo();
if (netType === "wifi" || netType === "ethnet") {
/* 是否开启dhcp */
console.log('net dhcp_en is: ' + info.netInfo.dhcp_en);
/* ip地址*/
console.log('net ip_addr is: ' + info.netInfo.ip_addr);
/* dns */
console.log('net dns_server is: ' + info.netInfo.dns_server);
/* 网关 */
console.log('net gateway is: ' + info.netInfo.gw);
/* 子网掩码 */
console.log('net mask is: ' + info.netInfo.mask);
/* mac地址 */
console.log('net mac is: ' + info.netInfo.mac);
/* wifi信号强度 */
console.log('net wifi rssi is: ' + info.netInfo.rssi);
return;
}
console.log('unkown net type');
}
function createMQTTClient() {
var client = mqtt.createClient({
host: 'test.mosquitto.org',
port: 1883,
clientId: 'testClientId',
username: 'testUsrName',
password: 'testPassword',
});
client.on('connect', function() {
console.log('mqtt connected');
// subscribe
client.subscribe({
topic: '/hello',
success: function() {
console.log('subscribe [/hello] success');
},
fail: function() {
console.log('subscribe [/hello] fail');
}
});
// publish
setInterval(function () {
console.log('public topic: ' + '/hello' + ', message: ' + 'this is AMP mqtt test')
client.publish({
topic: '/hello',
message: 'this is AMP mqtt test'
});
}, 3 * 1000);
});
client.on('disconnect', function() {
console.log('mqtt disconnect');
});
client.on('reconnect', function() {
console.log('mqtt reconnect');
});
client.on('message', function(topic, payload) {
console.log('[' + topic + '] message: ' + payload);
});
client.on('close', function() {
console.log('mqtt close');
});
}
| YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/network/mqtt/app.js | JavaScript | apache-2.0 | 3,521 |
var tcp = require('tcp');
var network = require('network');
var net = network.openNetWorkClient({devType: 'wifi'});
var netType = net.getType();
console.log('net type is: ' + netType);
var netStatus = net.getStatus();
console.log('net status is: ' + netStatus);
if (netStatus == 'connect') {
/* 网络状态已连接,获取网络状态 */
console.log('net status already connected');
getNetInfo();
} else {
/* wifi或者以太网,设置ifconfig */
if (netType === "wifi" || netType === "ethnet") {
console.log('net setIfConfig');
net.setIfConfig({
dhcp_en: true, // true: 动态IP模式(以下参数可忽略); false: 静态IP模式(以下参数必填)
ip_addr: '192.168.124.66',
mask: '255.255.255.0',
gw: '192.168.124.1',
dns_server: '8.8.8.8'
});
}
/* 网络状态未连接,如果是wifi设备则主动联网(4G模组中系统会自动注网) */
if (netType === "wifi") {
net.connect({
ssid: 'xxx', //请替换为自己的热点ssid
password: 'xxx' //请替换为自己热点的密码
});
}
/**
* 监听网络连接成功事件,成功执行回调函数
*/
net.on('connect', function () {
console.log('network connected');
getNetInfo();
// 开始tcp测试
tcp_test();
});
net.on('disconnect', function () {
console.log('network disconnected');
});
}
function getNetInfo() {
console.log('net status is connected, begin getting net information...');
var info = net.getInfo();
if (netType === "wifi" || netType === "ethnet") {
/* 是否开启dhcp */
console.log('net dhcp_en is: ' + info.netInfo.dhcp_en);
/* ip地址*/
console.log('net ip_addr is: ' + info.netInfo.ip_addr);
/* dns */
console.log('net dns_server is: ' + info.netInfo.dns_server);
/* 网关 */
console.log('net gateway is: ' + info.netInfo.gw);
/* 子网掩码 */
console.log('net mask is: ' + info.netInfo.mask);
/* mac地址 */
console.log('net mac is: ' + info.netInfo.mac);
/* wifi信号强度 */
console.log('net wifi rssi is: ' + info.netInfo.rssi);
return;
}
console.log('unkown net type');
}
function tcp_test() {
var tcpClient = tcp.createClient({
host: '120.76.100.197',
port: 10002,
success: function() {
console.log('tcp create client success');
},
fail: function() {
console.log('tcp create client failed');
}
});
tcpClient.on('connect', function() {
console.log('tcp client connect success. ');
setInterval(function() {
console.log('tcp send: ' + 'hello, this is haas tcp client test');
tcpClient.send('hello, this is haas tcp client test');
}, 1000);
});
tcpClient.on('disconnect', function() {
console.log('tcp client disconnect. ');
});
tcpClient.on('message', function(data) {
console.log('tcp receive data: ' + data);
});
tcpClient.on('send', function() {
console.log('tcp send success');
});
tcpClient.on('close', function() {
console.log('tcp client closed');
});
tcpClient.on('error', function(err) {
console.log('tcp client error: ' + err);
});
}
| YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/network/tcp/app.js | JavaScript | apache-2.0 | 3,309 |
var udp = require('udp');
var udpSocket = udp.createSocket();
// bind port
udpSocket.bind(8061);
udpSocket.on('send', function() {
console.log('udp data send');
});
udpSocket.on('message', function(data, rinfo) {
console.log('receive data from ' + rinfo.host + ' port: ' + rinfo.port);
console.log('udp socket just receive data is: ' + data);
udpSocket.close();
});
udpSocket.on('close', function() {
console.log('udp close');
});
udpSocket.on('error', function(err) {
console.log('udp error ' + err);
});
udpSocket.send({
address: '192.168.193.2',
port: 8848,
message: 'hello, this is amp'
}); | YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/network/udp/app.js | JavaScript | apache-2.0 | 619 |
var network = require('network');
var net = network.openNetWorkClient({devType: 'wifi'});
var netType = net.getType();
console.log('net type is: ' + netType);
var netStatus = net.getStatus();
console.log('net status is: ' + netStatus);
if (netStatus == 'connect') {
/* 网络状态已连接,获取网络状态 */
console.log('net status already connected');
getNetInfo();
} else {
/* wifi或者以太网,设置ifconfig */
if (netType === "wifi" || netType === "ethnet") {
console.log('net setIfConfig');
net.setIfConfig({
dhcp_en: true, // true: 动态IP模式(以下参数可忽略); false: 静态IP模式(以下参数必填)
ip_addr: '192.168.124.66',
mask: '255.255.255.0',
gw: '192.168.124.1',
dns_server: '8.8.8.8'
});
}
/* 网络状态未连接,如果是wifi设备则主动联网(4G模组中系统会自动注网) */
if (netType === "wifi") {
net.connect({
ssid: 'xxx', //请替换为自己的热点ssid
password: 'xxx' //请替换为自己热点的密码
});
}
/**
* 监听网络连接成功事件,成功执行回调函数
*/
net.on('connect', function () {
console.log('network connected');
getNetInfo();
});
net.on('disconnect', function () {
console.log('network disconnected');
});
}
function getNetInfo() {
console.log('net status is connected, begin getting net information...');
var info = net.getInfo();
if (netType === "wifi" || netType === "ethnet") {
/* 是否开启dhcp */
console.log('net dhcp_en is: ' + info.netInfo.dhcp_en);
/* ip地址*/
console.log('net ip_addr is: ' + info.netInfo.ip_addr);
/* dns */
console.log('net dns_server is: ' + info.netInfo.dns_server);
/* 网关 */
console.log('net gateway is: ' + info.netInfo.gw);
/* 子网掩码 */
console.log('net mask is: ' + info.netInfo.mask);
/* mac地址 */
console.log('net mac is: ' + info.netInfo.mac);
/* wifi信号强度 */
console.log('net wifi rssi is: ' + info.netInfo.rssi);
return;
}
console.log('unkown net type');
}
| YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/network/wifi/app.js | JavaScript | apache-2.0 | 2,146 |
import * as pwm from 'pwm'
import * as timer from 'timer'
console.log('pwm: pwm test open ')
var pwm0 = pwm.open({
id: 'PWM0',
success: function() {
console.log('pwm: open pwm0 success')
},
fail: function() {
console.log('pwm: open pwm0 failed')
}
});
var timer0 = timer.open({
id: 'TIMER0'
});
var freq = pwm0.get().freq
var duty = pwm0.get().duty
console.log('pwm: pwm default config freq is ' + freq + ' duty is ' + duty)
console.log('pwm: pwm test start ')
duty = 0;
var cnt = 10;
var loop = 10;
timer0.setInterval(function(){
if (duty >= 100) {
duty = 0;
}
duty = duty + 10;
pwm0.set({
freq: 200, /* Configure 200 ~ 900 to make the buzzer work */
duty: duty
})
freq = pwm0.get().freq
duty = pwm0.get().duty
console.log('pwm: pwm timer config freq is ' + freq + ' duty is ' + duty)
console.log('pwm: pwm test count ' + cnt)
cnt = cnt - 1;
if (cnt == 0) {
console.log('pwm: pwm test finish loop ' + loop)
loop--;
if (loop == 0)
{
pwm0.close();
timer0.clearInterval();
}
cnt = 10;
}
}, 1000000) | YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/pwm/app.js | JavaScript | apache-2.0 | 1,110 |
import * as spi from 'spi'
import * as gpio from 'gpio'
import SH1106 from './sh1106.js'
var oled_spi = spi.open({ id: "oled_spi" });
var oled_dc = gpio.open({ id: "oled_dc" });
var oled_res = gpio.open({ id: "oled_res" });
var dispaly = new SH1106(132, 64, oled_spi, oled_dc, oled_res, undefined)
dispaly.open()
var HAAS_XBM_width = 23
var HAAS_XBM_height = 9
dispaly.fill(0)
var HAAS_XBM = [0xff, 0xff, 0xfe, 0x80, 0x00, 0x02, 0xa4, 0xc6, 0x7a, 0xa5, 0x29, 0x42, 0xbd, 0xef, 0x7a, 0xa5, 0x29, 0x0a, 0xa5, 0x29, 0x7a, 0x80, 0x00, 0x02, 0xff, 0xff, 0xfe]
dispaly.draw_XBM(40, 20, HAAS_XBM_width, HAAS_XBM_height, HAAS_XBM)
dispaly.show() | YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/spi/app.js | JavaScript | apache-2.0 | 642 |
const SET_SCAN_DIR = 0xc0
const LOW_COLUMN_ADDRESS = 0x00
const HIGH_COLUMN_ADDRESS = 0x10
const SET_PAGE_ADDRESS = 0xB0
const SET_CONTRAST = 0x81
const SET_ENTIRE_ON = 0xa4
const SET_NORM_INV = 0xa6
const SET_DISP = 0xae
const SET_MEM_ADDR = 0x20
const SET_DISP_START_LINE = 0x40
const SET_SEG_REMAP = 0xa0
const SET_MUX_RATIO = 0xa8
const SET_COM_OUT_DIR = 0xc0
const SET_DISP_OFFSET = 0xd3
const SET_COM_PIN_CFG = 0xda
const SET_DISP_CLK_DIV = 0xd5
const SET_PRECHARGE = 0xd9
const SET_VCOM_DESEL = 0xdb
const SET_CHARGE_PUMP = 0x8d
export default class SH1106 {
constructor(width, height, spi, dc, res, cs) {
this.width = width;
this.height = height;
this.spi = spi;
this.dc = dc;
this.res = res;
this.cs = cs;
this.dc_var = 0;
this.cs_var = 1;
this.pages = Math.floor(this.height / 8)
this.framebuf = new Array(this.pages * this.width).fill(0)
return this;
}
reset() {
if (this.res != undefined) {
this.res.writeValue(1)
sleepMs(1)
this.res.writeValue(0)
sleepMs(20)
this.res.writeValue(1)
sleepMs(20)
}
}
show() {
for (let page = 0; page < this.pages; page++) {
this.write_cmd(SET_PAGE_ADDRESS | page)
this.write_cmd(LOW_COLUMN_ADDRESS)
this.write_cmd(HIGH_COLUMN_ADDRESS)
this.write_data(this.framebuf.slice(this.width * page, this.width * (page + 1)))
}
}
write_cmd(cmd) {
if (this.dc_var == 1) {
this.dc.writeValue(0)
this.dc_var = 0
}
if (this.cs != undefined && this.cs_var == 1) {
this.cs.writeValue(0)
this.cs_var = 0
}
this.spi.write([cmd])
}
write_data(buf) {
if (this.dc_var == 0) {
this.dc.writeValue(1)
this.dc_var = 1
}
if (this.cs != undefined && this.cs_var == 1) {
this.cs.writeValue(0)
this.cs_var = 0
}
this.spi.write(buf)
}
pixel(x, y, color) {
if ((x > (this.width)) || (y > this.height) || x < 0 || y < 0)
return;
let page = Math.floor(y / 8)
let bit_offset = y % 8;
let mask = 0x01 << bit_offset;
if (color == 0)
this.framebuf[page * this.width + x] &= ~mask;
if (color == 1)
this.framebuf[page * this.width + x] |= mask;
if (color == 2)
this.framebuf[page * this.width + x] ^= mask;
if (color == undefined)
return (this.framebuf[page * this.width + x] & mask)
}
fill(color) {
this.framebuf.fill(color == 0 ? 0 : 255)
}
line(x1, y1, x2, y2, color) {
let xerr = 1, yerr = 1, delta_x, delta_y, distance;
let incx, incy, uRow, uCol;
delta_x = x2 - x1;
delta_y = y2 - y1;
uRow = x1;
uCol = y1;
if (delta_x > 0) {
incx = 1;
} else if (delta_x == 0) {
incx = 0;
} else {
incx = -1;
delta_x = -delta_x;
}
if (delta_y > 0) {
incy = 1;
} else if (delta_y == 0) {
incy = 0;
} else {
incy = -1;
delta_y = -delta_y;
}
if (delta_x > delta_y)
distance = delta_x;
else
distance = delta_y;
for (let t = 0; t <= distance; t++) {
this.pixel(uRow, uCol, color);
xerr += delta_x;
yerr += delta_y;
if (xerr > distance / 2) {
xerr -= distance;
uRow += incx;
}
if (yerr > distance) {
yerr -= distance;
uCol += incy;
}
}
}
rect(x, y, w, h, color) {
this.line(x, y, x + w, y, color)
this.line(x, y, x, y + h, color)
this.line(x + w, y + h, x, y + h, color)
this.line(x + w, y + h, x + w, y, color)
}
fill_rect(x, y, w, h, color) {
for (let i = 0; i < h; i++) {
this.line(x, y, x + w, y + i, color)
}
}
draw_XBM(x, y, w, h, bitmap) {
let p_x, p_y;
let x_byte = Math.floor(w / 8) + (w % 8 != 0)
for (let nbyte = 0; nbyte < bitmap.length; nbyte++) {
for (let bit = 0; bit < 8; bit++) {
if (bitmap[nbyte] & (0b10000000 >> bit)) {
p_x = (nbyte % x_byte) * 8 + bit
p_y = Math.floor(nbyte / x_byte)
this.pixel(x + p_x, y + p_y, 1)
}
}
}
}
open() {
this.reset()
this.dc.writeValue(0)
this.dc_var = 0;
if (this.cs != undefined) {
this.cs.writeValue(1)
this.cs_var = 1;
}
this.write_cmd(SET_DISP | 0x00) // 关闭显示
this.write_cmd(SET_DISP_CLK_DIV)
this.write_cmd(0x80) // 设置时钟分频因子
this.write_cmd(SET_MUX_RATIO)
this.write_cmd(this.height - 1) // 设置驱动路数 路数默认0x3F(1/64)
this.write_cmd(SET_DISP_OFFSET)
this.write_cmd(0x00) // 设置显示偏移 偏移默认为0
this.write_cmd(SET_DISP_START_LINE | 0x00) // 设置显示开始行[5:0]
this.write_cmd(SET_CHARGE_PUMP)
this.write_cmd(0x14) // 电荷泵设置 bit2,开启/关闭
this.write_cmd(SET_MEM_ADDR)
this.write_cmd(0x02) // 设置内存地址模式 [1:0],00,列地址模式;01,行地址模式;10,页地址模式;默认10;
this.write_cmd(SET_SEG_REMAP | 0x01) // 段重定义设置,bit0:0,0->0;1,0->127;
this.write_cmd(SET_COM_OUT_DIR | 0x08) // 设置COM扫描方向;bit3:0,普通模式;1,重定义模式 COM[N-1]->COM0;N:驱动路数
this.write_cmd(SET_COM_PIN_CFG)
this.write_cmd(0x12) // 设置COM硬件引脚配置 [5:4]配置
this.write_cmd(SET_PRECHARGE)
this.write_cmd(0xf1) // 设置预充电周期 [3:0],PHASE 1;[7:4],PHASE 2;
this.write_cmd(SET_VCOM_DESEL)
this.write_cmd(0x30) // 设置VCOMH 电压倍率 [6:4] 000,0.65*vcc;001,0.77*vcc;011,0.83*vcc;
this.write_cmd(SET_CONTRAST)
this.write_cmd(0xff) // 对比度设置 默认0x7F(范围1~255,越大越亮)
this.write_cmd(SET_ENTIRE_ON) // 全局显示开启;bit0:1,开启;0,关闭;(白屏/黑屏)
this.write_cmd(SET_NORM_INV) // 设置显示方式;bit0:1,反相显示;0,正常显示
this.write_cmd(SET_DISP | 0x01)
this.fill(1)
this.show()
}
poweroff() {
this.write_cmd(SET_DISP | 0x00)
}
poweron() {
this.write_cmd(SET_DISP | 0x01)
}
rotate(flag, update) {
if (update === undefined) {
update = true
}
if (flag) {
this.write_cmd(SET_SEG_REMAP | 0x01) // mirror display vertically
this.write_cmd(SET_SCAN_DIR | 0x08) // mirror display hor.
}
else {
this.write_cmd(SET_SEG_REMAP | 0x00)
this.write_cmd(SET_SCAN_DIR | 0x00)
}
if (update) {
this.show()
}
}
contrast(contrast) {
this.write_cmd(SET_CONTRAST)
this.write_cmd(contrast)
}
invert(invert) {
this.write_cmd(SET_NORM_INV | (invert & 1))
}
} | YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/spi/sh1106.js | JavaScript | apache-2.0 | 7,455 |
console.log('system versions().module is: ' + system.versions().module)
console.log('system version is: ' + system.version())
console.log('system appversion is: ' + system.appversion())
console.log('system getSystemInfo().userjsVersion is: ' + system.getSystemInfo().userjsVersion)
console.log('system getSystemInfo().appVersion is: ' + system.getSystemInfo().appVersion)
console.log('system getSystemInfo().kernelVersion is: ' + system.getSystemInfo().kernelVersion)
console.log('system getSystemInfo().systemVersion is: ' + system.getSystemInfo().systemVersion)
console.log('system getSystemInfo().buildTime is: ' + system.getSystemInfo().buildTime)
console.log('system getSystemInfo().hardwareVersion is: ' + system.getSystemInfo().hardwareVersion)
console.log('system platform is: ' + system.platform())
console.log('system uptime is: ' + system.uptime())
console.log('system heapTotal is: ' + system.memory().heapTotal)
console.log('system heapUsed is: ' + system.memory().heapUsed)
console.log('system heapFree is: ' + system.memory().heapFree)
console.log('system gc is: ' + system.gc())
console.log('system reboot: ' + system.reboot()) | YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/system/app.js | JavaScript | apache-2.0 | 1,143 |
/* 加载 timer 模块 */
var timer = require('timer');
/* 创建 timer 实例 */
var timer0 = timer.open({
id: 'TIMER0'
});
console.log('HardWare Timer Test');
/* 定义用来统计触发次数的变量 */
var count = 0;
/* 定义定时到期回调函数,单次触发打印一行字符串及触发次数 */
function timeout_cb() {
console.log('Timer0 Timeout count' + count);
count++;
}
/* 设置单次定时,定时时间5000000us,回调函数打印一行字符串 */
timer0.setTimeout(timeout_cb, 5000000); | YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/timer/one-shot-timer/app.js | JavaScript | apache-2.0 | 529 |
/* 加载 timer 模块 */
var timer = require('timer');
/* 创建 timer 实例 */
var timer0 = timer.open({
id: 'TIMER0'
});
console.log('HardWare Timer Test');
/* 定义用来统计触发次数的变量 */
var count = 0;
/* 定义定时器周期回调函数,每次触发打印一行字符串及触发次数 */
function interval_cb() {
console.log('Timer0 Interval count' + count);
count++;
}
/* 设置周期性定时,定时时间5000000us,回调函数打印一行字符串 */
timer0.setInterval(interval_cb, 5000000); | YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/timer/repeat-timer/app.js | JavaScript | apache-2.0 | 539 |
import * as uart from 'uart'
var msgbuf = 'this is amp uart test'
function ab2str(buf) {
return String.fromCharCode.apply(null, new Uint8Array(buf));
}
console.log('please short haaseduk1 UART2_TXD & UART2_RXD to finish this test !!!')
var serial = uart.open({
id: 'serial',
success: function() {
console.log('open uart success')
},
fail: function() {
console.log('open uart failed')
}
});
console.log('uart write: ' + msgbuf)
serial.write(msgbuf);
sleepMs(1000);
serial.on('data', function(data, len) {
console.log('uart receive data len is : ' + len + ' data is: ' + ab2str(data));
serial.close();
})
| YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/uart/app.js | JavaScript | apache-2.0 | 639 |
var wdg = require('wdg');
//start wdg
wdg.start(2000);
// feed wdg
wdg.feed();
// stop wdg
wdg.stop(); | YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/wdg/app.js | JavaScript | apache-2.0 | 114 |
var network = require('network');
var net = network.openNetWorkClient({devType: 'wifi'});
var netType = net.getType();
console.log('net type is: ' + netType);
var netStatus = net.getStatus();
console.log('net status is: ' + netStatus);
if (netStatus == 'connect') {
/* 网络状态已连接,获取网络状态 */
console.log('net status already connected');
getNetInfo();
} else {
/* wifi或者以太网,设置ifconfig */
if (netType === "wifi" || netType === "ethnet") {
console.log('net setIfConfig');
net.setIfConfig({
dhcp_en: true, // true: 动态IP模式(以下参数可忽略); false: 静态IP模式(以下参数必填)
ip_addr: '192.168.124.66',
mask: '255.255.255.0',
gw: '192.168.124.1',
dns_server: '8.8.8.8'
});
}
/* 网络状态未连接,如果是wifi设备则主动联网(4G模组中系统会自动注网) */
if (netType === "wifi") {
net.connect({
ssid: 'xxx', //请替换为自己的热点ssid
password: 'xxx' //请替换为自己热点的密码
});
}
/**
* 监听网络连接成功事件,成功执行回调函数
*/
net.on('connect', function () {
console.log('network connected');
getNetInfo();
});
net.on('disconnect', function () {
console.log('network disconnected');
});
}
function getNetInfo() {
console.log('net status is connected, begin getting net information...');
var info = net.getInfo();
if (netType === "wifi" || netType === "ethnet") {
/* 是否开启dhcp */
console.log('net dhcp_en is: ' + info.netInfo.dhcp_en);
/* ip地址*/
console.log('net ip_addr is: ' + info.netInfo.ip_addr);
/* dns */
console.log('net dns_server is: ' + info.netInfo.dns_server);
/* 网关 */
console.log('net gateway is: ' + info.netInfo.gw);
/* 子网掩码 */
console.log('net mask is: ' + info.netInfo.mask);
/* mac地址 */
console.log('net mac is: ' + info.netInfo.mac);
/* wifi信号强度 */
console.log('net wifi rssi is: ' + info.netInfo.rssi);
return;
}
console.log('unkown net type');
}
| YifuLiu/AliOS-Things | components/amp/example-js/haaseduk1/wifi/app.js | JavaScript | apache-2.0 | 2,146 |
/*
* Copyright (C) 2015-2021 Alibaba Group Holding Limited
*/
#include "stdlib.h"
#include <aos/kernel.h>
#ifdef AOS_COMP_CLI
#include "aos/cli.h"
#endif
extern int amp_main(void);
static void amp_entry(void * arg) {
int ret;
(void *)arg;
ret = amp_main();
if (ret != 0) {
printf("start amp task error. ret = %d\r\n", ret);
}
}
static void amp_comp_example(int argc, char **argv)
{
(void)argc;
(void)argv;
aos_task_t amp_task;
aos_task_new_ext(&_task, "amp_task", amp_entry, NULL, 8192, AOS_DEFAULT_APP_PRI - 2);
printf("amp comp test success!\r\n");
return;
}
#ifdef AOS_COMP_CLI
/* reg args: fun, cmd, description*/
ALIOS_CLI_CMD_REGISTER(amp_comp_example, amp_example, amp component base example)
#endif
| YifuLiu/AliOS-Things | components/amp/example/amp_example.c | C | apache-2.0 | 771 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_adc_size = 691;
const uint8_t jslib_adc[691] = {
0x01, 0x0f, 0x14, 0x73, 0x72, 0x63, 0x2f, 0x61,
0x64, 0x63, 0x2e, 0x6a, 0x73, 0x06, 0x41, 0x44,
0x43, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x0c, 0x48,
0x57, 0x5f, 0x41, 0x44, 0x43, 0x0a, 0x5f, 0x6f,
0x70, 0x65, 0x6e, 0x12, 0x72, 0x65, 0x61, 0x64,
0x56, 0x61, 0x6c, 0x75, 0x65, 0x0a, 0x63, 0x6c,
0x6f, 0x73, 0x65, 0x0e, 0x6f, 0x70, 0x74, 0x69,
0x6f, 0x6e, 0x73, 0x04, 0x69, 0x64, 0x24, 0x6f,
0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x69,
0x73, 0x20, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69,
0x64, 0x0e, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73,
0x73, 0x08, 0x66, 0x61, 0x69, 0x6c, 0x16, 0x61,
0x64, 0x63, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e,
0x63, 0x65, 0x18, 0x61, 0x64, 0x63, 0x20, 0x6e,
0x6f, 0x74, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x08,
0x72, 0x65, 0x61, 0x64, 0x0f, 0x9c, 0x03, 0x01,
0x9e, 0x03, 0x01, 0x00, 0x02, 0xa0, 0x03, 0x00,
0x01, 0x00, 0xf8, 0x01, 0x00, 0x0e, 0x00, 0x06,
0x01, 0xa0, 0x01, 0x00, 0x02, 0x00, 0x03, 0x03,
0x05, 0x33, 0x02, 0xa2, 0x03, 0x02, 0x00, 0x60,
0xea, 0x01, 0x03, 0x01, 0xe0, 0x9e, 0x03, 0x00,
0x0d, 0xa2, 0x03, 0x00, 0x09, 0xa0, 0x03, 0x01,
0x01, 0xbf, 0x04, 0xe2, 0x61, 0x00, 0x00, 0x06,
0x61, 0x01, 0x00, 0xbe, 0x00, 0x56, 0xd1, 0x00,
0x00, 0x00, 0x00, 0xbf, 0x01, 0x54, 0xd2, 0x00,
0x00, 0x00, 0x00, 0xbf, 0x02, 0x54, 0xd3, 0x00,
0x00, 0x00, 0x00, 0xbf, 0x03, 0x54, 0xd4, 0x00,
0x00, 0x00, 0x00, 0x06, 0xc9, 0x0e, 0xcc, 0x68,
0x01, 0x00, 0xe1, 0x29, 0x9c, 0x03, 0x01, 0x0f,
0x01, 0x14, 0x00, 0x0f, 0x2c, 0x00, 0x08, 0x10,
0x00, 0x08, 0x10, 0x2b, 0x00, 0x08, 0x08, 0x0e,
0x42, 0x07, 0x01, 0x00, 0x01, 0x01, 0x01, 0x03,
0x01, 0x02, 0x6d, 0x02, 0xaa, 0x03, 0x00, 0x01,
0x00, 0x10, 0x00, 0x01, 0x00, 0xea, 0x01, 0x01,
0x0d, 0x08, 0xc8, 0x2b, 0x65, 0x00, 0x00, 0x11,
0xe9, 0x06, 0xc4, 0x1b, 0x24, 0x00, 0x00, 0x0e,
0xd0, 0x97, 0x11, 0xea, 0x09, 0x0e, 0xd0, 0x41,
0xd6, 0x00, 0x00, 0x00, 0x97, 0xe9, 0x10, 0x38,
0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0xd7, 0x00,
0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0xc4, 0x0b,
0xd0, 0x41, 0xd6, 0x00, 0x00, 0x00, 0x4c, 0xd6,
0x00, 0x00, 0x00, 0x43, 0xd5, 0x00, 0x00, 0x00,
0xc4, 0xd0, 0x41, 0xd8, 0x00, 0x00, 0x00, 0x11,
0xea, 0x04, 0x0e, 0xbf, 0x00, 0x43, 0xd8, 0x00,
0x00, 0x00, 0xc4, 0xd0, 0x41, 0xd9, 0x00, 0x00,
0x00, 0x11, 0xea, 0x04, 0x0e, 0xbf, 0x01, 0x43,
0xd9, 0x00, 0x00, 0x00, 0xc4, 0x42, 0xd2, 0x00,
0x00, 0x00, 0x24, 0x00, 0x00, 0x29, 0x9c, 0x03,
0x04, 0x0a, 0x4e, 0x4e, 0x49, 0x09, 0x0d, 0x3a,
0x1d, 0x5d, 0x5d, 0x30, 0x0e, 0x43, 0x06, 0x01,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
0x00, 0x29, 0x9c, 0x03, 0x0d, 0x00, 0x0e, 0x43,
0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x01, 0x00, 0x29, 0x9c, 0x03, 0x0e, 0x00,
0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x01, 0x00,
0x04, 0x01, 0x00, 0x3b, 0x01, 0x10, 0x00, 0x01,
0x00, 0x9e, 0x03, 0x00, 0x0c, 0x08, 0xc8, 0xc4,
0x65, 0x00, 0x00, 0x42, 0xd0, 0x00, 0x00, 0x00,
0xc4, 0x41, 0xd5, 0x00, 0x00, 0x00, 0x41, 0xd6,
0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0x43, 0xda,
0x00, 0x00, 0x00, 0xc4, 0x41, 0xda, 0x00, 0x00,
0x00, 0x97, 0xe9, 0x0b, 0xc4, 0x42, 0xd9, 0x00,
0x00, 0x00, 0x24, 0x00, 0x00, 0x29, 0xc4, 0x42,
0xd8, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x29,
0x9c, 0x03, 0x12, 0x06, 0x0d, 0x8f, 0x30, 0x31,
0x08, 0x30, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00,
0x01, 0x00, 0x03, 0x00, 0x00, 0x28, 0x01, 0x10,
0x00, 0x01, 0x00, 0x08, 0xc8, 0xc4, 0x41, 0xda,
0x00, 0x00, 0x00, 0x97, 0xe9, 0x10, 0x38, 0x8d,
0x00, 0x00, 0x00, 0x11, 0x04, 0xdb, 0x00, 0x00,
0x00, 0x21, 0x01, 0x00, 0x2f, 0xc4, 0x41, 0xda,
0x00, 0x00, 0x00, 0x42, 0xdc, 0x00, 0x00, 0x00,
0x25, 0x00, 0x00, 0x9c, 0x03, 0x1b, 0x04, 0x0d,
0x30, 0x49, 0x09, 0x0e, 0x42, 0x07, 0x01, 0x00,
0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x29, 0x01,
0x10, 0x00, 0x01, 0x00, 0x08, 0xc8, 0xc4, 0x41,
0xda, 0x00, 0x00, 0x00, 0x97, 0xe9, 0x10, 0x38,
0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0xdb, 0x00,
0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0xc4, 0x41,
0xda, 0x00, 0x00, 0x00, 0x42, 0xd4, 0x00, 0x00,
0x00, 0x24, 0x00, 0x00, 0x29, 0x9c, 0x03, 0x23,
0x05, 0x0d, 0x30, 0x49, 0x09, 0x49, 0x0e, 0x43,
0x06, 0x01, 0xa0, 0x03, 0x01, 0x00, 0x01, 0x03,
0x01, 0x00, 0x09, 0x01, 0xaa, 0x03, 0x00, 0x01,
0x00, 0xa2, 0x03, 0x01, 0x08, 0x65, 0x00, 0x00,
0x11, 0xd0, 0x21, 0x01, 0x00, 0x28, 0x9c, 0x03,
0x2c, 0x01, 0x03,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_adc.c | C | apache-2.0 | 4,392 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_appota_size = 840;
const uint8_t jslib_appota[840] = {
0x01, 0x18, 0x1a, 0x73, 0x72, 0x63, 0x2f, 0x61,
0x70, 0x70, 0x6f, 0x74, 0x61, 0x2e, 0x6a, 0x73,
0x0c, 0x41, 0x50, 0x50, 0x4f, 0x54, 0x41, 0x0c,
0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x08, 0x6f,
0x70, 0x65, 0x6e, 0x18, 0x55, 0x54, 0x49, 0x4c,
0x53, 0x5f, 0x41, 0x50, 0x50, 0x4f, 0x54, 0x41,
0x0a, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x45,
0x76, 0x65, 0x6e, 0x74, 0x45, 0x6d, 0x69, 0x74,
0x74, 0x65, 0x72, 0x0a, 0x5f, 0x69, 0x6e, 0x69,
0x74, 0x10, 0x64, 0x6f, 0x77, 0x6e, 0x6c, 0x6f,
0x61, 0x64, 0x0c, 0x76, 0x65, 0x72, 0x69, 0x66,
0x79, 0x0c, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74,
0x0e, 0x75, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65,
0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
0x1e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
0x20, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64,
0x0e, 0x6f, 0x74, 0x61, 0x49, 0x6e, 0x69, 0x74,
0x08, 0x62, 0x69, 0x6e, 0x64, 0x06, 0x72, 0x65,
0x73, 0x08, 0x65, 0x6d, 0x69, 0x74, 0x04, 0x63,
0x62, 0x16, 0x6f, 0x74, 0x61, 0x44, 0x6f, 0x77,
0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x12, 0x6f, 0x74,
0x61, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x12,
0x6f, 0x74, 0x61, 0x52, 0x65, 0x70, 0x6f, 0x72,
0x74, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x14,
0x6f, 0x74, 0x61, 0x55, 0x70, 0x67, 0x72, 0x61,
0x64, 0x65, 0x0f, 0x9c, 0x03, 0x02, 0x9e, 0x03,
0xa0, 0x03, 0x01, 0x00, 0x03, 0xa2, 0x03, 0x00,
0x02, 0x00, 0xf8, 0x01, 0x00, 0x01, 0xf8, 0x01,
0x01, 0x0e, 0x00, 0x06, 0x01, 0xa0, 0x01, 0x00,
0x02, 0x00, 0x03, 0x04, 0x07, 0x4a, 0x02, 0xa4,
0x03, 0x02, 0x00, 0x60, 0xea, 0x01, 0x03, 0x01,
0xe0, 0x9e, 0x03, 0x00, 0x0d, 0xa6, 0x03, 0x01,
0x0d, 0xa4, 0x03, 0x00, 0x09, 0xa2, 0x03, 0x01,
0x01, 0xbf, 0x06, 0xe3, 0x61, 0x00, 0x00, 0x65,
0x01, 0x00, 0x41, 0xd4, 0x00, 0x00, 0x00, 0x61,
0x01, 0x00, 0xbe, 0x00, 0x56, 0xd2, 0x00, 0x00,
0x00, 0x01, 0xbf, 0x01, 0x54, 0xd5, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x02, 0x54, 0xd6, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x03, 0x54, 0xd7, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x04, 0x54, 0xd8, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x05, 0x54, 0xd9, 0x00, 0x00,
0x00, 0x00, 0x06, 0xc9, 0x0e, 0xcc, 0x68, 0x01,
0x00, 0xe2, 0x29, 0x9c, 0x03, 0x01, 0x17, 0x01,
0x00, 0x03, 0x08, 0x00, 0x16, 0x20, 0x00, 0x08,
0x08, 0x00, 0x08, 0x08, 0x00, 0x08, 0x0e, 0x00,
0x08, 0x08, 0x2b, 0x00, 0x08, 0x08, 0x0e, 0xc6,
0x07, 0x01, 0x00, 0x01, 0x03, 0x01, 0x03, 0x01,
0x00, 0x47, 0x04, 0xb4, 0x03, 0x00, 0x01, 0x00,
0xe2, 0x01, 0x00, 0x01, 0x00, 0xe0, 0x01, 0x00,
0x01, 0x00, 0x10, 0x00, 0x01, 0x40, 0xea, 0x01,
0x01, 0x0d, 0x0c, 0x02, 0xc8, 0x0c, 0x03, 0xc9,
0x61, 0x02, 0x00, 0x2b, 0xc4, 0x34, 0xc5, 0x21,
0x00, 0x00, 0x11, 0x64, 0x02, 0x00, 0x65, 0x00,
0x00, 0x11, 0xe9, 0x08, 0x62, 0x02, 0x00, 0x1b,
0x24, 0x00, 0x00, 0x0e, 0x0e, 0xd0, 0x97, 0xe9,
0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04,
0xdb, 0x00, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f,
0x62, 0x02, 0x00, 0x42, 0xd5, 0x00, 0x00, 0x00,
0xd0, 0x24, 0x01, 0x00, 0x0e, 0x62, 0x02, 0x00,
0x28, 0x9c, 0x03, 0x05, 0x06, 0x35, 0x81, 0x17,
0x49, 0x09, 0x44, 0x0e, 0x42, 0x07, 0x01, 0x00,
0x01, 0x01, 0x01, 0x06, 0x01, 0x01, 0x1a, 0x02,
0xb4, 0x03, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01,
0x00, 0x9e, 0x03, 0x00, 0x0c, 0x08, 0xc8, 0x65,
0x00, 0x00, 0x42, 0xdc, 0x00, 0x00, 0x00, 0xd0,
0xbf, 0x00, 0x42, 0xdd, 0x00, 0x00, 0x00, 0xc4,
0x24, 0x01, 0x00, 0x24, 0x02, 0x00, 0x29, 0x9c,
0x03, 0x0f, 0x03, 0x0e, 0x31, 0x49, 0x0e, 0x43,
0x06, 0x01, 0x00, 0x01, 0x01, 0x01, 0x04, 0x00,
0x00, 0x12, 0x02, 0xbc, 0x03, 0x00, 0x01, 0x00,
0x10, 0x00, 0x01, 0x00, 0x08, 0xc8, 0xc4, 0x42,
0xdf, 0x00, 0x00, 0x00, 0x04, 0x0c, 0x00, 0x00,
0x00, 0xd0, 0x24, 0x02, 0x00, 0x29, 0x9c, 0x03,
0x11, 0x02, 0x0d, 0x4e, 0x0e, 0x42, 0x07, 0x01,
0x00, 0x02, 0x00, 0x02, 0x04, 0x01, 0x00, 0x0e,
0x02, 0xb4, 0x03, 0x00, 0x01, 0x00, 0xc0, 0x03,
0x00, 0x01, 0x00, 0x9e, 0x03, 0x00, 0x0c, 0x65,
0x00, 0x00, 0x42, 0xe1, 0x00, 0x00, 0x00, 0xd0,
0xd1, 0x24, 0x02, 0x00, 0x29, 0x9c, 0x03, 0x16,
0x02, 0x03, 0x44, 0x0e, 0x42, 0x07, 0x01, 0x00,
0x02, 0x00, 0x02, 0x04, 0x01, 0x00, 0x0e, 0x02,
0xb4, 0x03, 0x00, 0x01, 0x00, 0xc0, 0x03, 0x00,
0x01, 0x00, 0x9e, 0x03, 0x00, 0x0c, 0x65, 0x00,
0x00, 0x42, 0xe2, 0x00, 0x00, 0x00, 0xd0, 0xd1,
0x24, 0x02, 0x00, 0x29, 0x9c, 0x03, 0x1a, 0x02,
0x03, 0x44, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x01,
0x02, 0x01, 0x03, 0x01, 0x00, 0x23, 0x03, 0xb4,
0x03, 0x00, 0x01, 0x00, 0xbc, 0x03, 0x00, 0x00,
0x00, 0x10, 0x00, 0x01, 0x00, 0x9e, 0x03, 0x00,
0x0c, 0x08, 0xc9, 0x65, 0x00, 0x00, 0x42, 0xe3,
0x00, 0x00, 0x00, 0xd0, 0x24, 0x01, 0x00, 0xcc,
0xb4, 0xa4, 0xe9, 0x10, 0xc5, 0x42, 0xdf, 0x00,
0x00, 0x00, 0x04, 0xe4, 0x00, 0x00, 0x00, 0x24,
0x01, 0x00, 0x0e, 0x29, 0x9c, 0x03, 0x1e, 0x04,
0x0d, 0x44, 0x17, 0x4f, 0x0e, 0x42, 0x07, 0x01,
0x00, 0x02, 0x00, 0x02, 0x04, 0x01, 0x00, 0x0e,
0x02, 0xb4, 0x03, 0x00, 0x01, 0x00, 0xc0, 0x03,
0x00, 0x01, 0x00, 0x9e, 0x03, 0x00, 0x0c, 0x65,
0x00, 0x00, 0x42, 0xe5, 0x00, 0x00, 0x00, 0xd0,
0xd1, 0x24, 0x02, 0x00, 0x29, 0x9c, 0x03, 0x25,
0x02, 0x03, 0x44, 0x0e, 0x43, 0x06, 0x01, 0xa2,
0x03, 0x01, 0x00, 0x01, 0x03, 0x01, 0x00, 0x09,
0x01, 0xb4, 0x03, 0x00, 0x01, 0x00, 0xa4, 0x03,
0x02, 0x08, 0x65, 0x00, 0x00, 0x11, 0xd0, 0x21,
0x01, 0x00, 0x28, 0x9c, 0x03, 0x2a, 0x01, 0x03,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_appota.c | C | apache-2.0 | 5,310 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_audioplayer_size = 1317;
const uint8_t jslib_audioplayer[1317] = {
0x01, 0x20, 0x24, 0x73, 0x72, 0x63, 0x2f, 0x61,
0x75, 0x64, 0x69, 0x6f, 0x70, 0x6c, 0x61, 0x79,
0x65, 0x72, 0x2e, 0x6a, 0x73, 0x0c, 0x65, 0x76,
0x65, 0x6e, 0x74, 0x73, 0x16, 0x41, 0x55, 0x44,
0x49, 0x4f, 0x50, 0x4c, 0x41, 0x59, 0x45, 0x52,
0x08, 0x6f, 0x70, 0x65, 0x6e, 0x18, 0x41, 0x55,
0x44, 0x49, 0x4f, 0x5f, 0x50, 0x4c, 0x41, 0x59,
0x45, 0x52, 0x18, 0x45, 0x76, 0x65, 0x6e, 0x74,
0x45, 0x6d, 0x69, 0x74, 0x74, 0x65, 0x72, 0x08,
0x70, 0x6c, 0x61, 0x79, 0x0a, 0x70, 0x61, 0x75,
0x73, 0x65, 0x0c, 0x72, 0x65, 0x73, 0x75, 0x6d,
0x65, 0x08, 0x73, 0x74, 0x6f, 0x70, 0x0c, 0x73,
0x65, 0x65, 0x6b, 0x74, 0x6f, 0x16, 0x67, 0x65,
0x74, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
0x6e, 0x16, 0x67, 0x65, 0x74, 0x44, 0x75, 0x72,
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x10, 0x67, 0x65,
0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x10, 0x5f,
0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x10,
0x6c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, 0x79,
0x18, 0x6c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61,
0x79, 0x53, 0x74, 0x6f, 0x70, 0x12, 0x73, 0x65,
0x74, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x12,
0x67, 0x65, 0x74, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
0x65, 0x10, 0x63, 0x61, 0x6c, 0x6c, 0x62, 0x61,
0x63, 0x6b, 0x1c, 0x69, 0x6e, 0x76, 0x61, 0x6c,
0x69, 0x64, 0x20, 0x70, 0x61, 0x72, 0x61, 0x6d,
0x73, 0x0e, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c,
0x65, 0x06, 0x6c, 0x6f, 0x67, 0x0a, 0x70, 0x6c,
0x61, 0x79, 0x20, 0x0e, 0x73, 0x65, 0x63, 0x6f,
0x6e, 0x64, 0x73, 0x0e, 0x6f, 0x6e, 0x53, 0x74,
0x61, 0x74, 0x65, 0x08, 0x62, 0x69, 0x6e, 0x64,
0x0a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x08, 0x65,
0x6d, 0x69, 0x74, 0x16, 0x73, 0x74, 0x61, 0x74,
0x65, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x14,
0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x6c, 0x69,
0x73, 0x74, 0x0c, 0x76, 0x6f, 0x6c, 0x75, 0x6d,
0x65, 0x0f, 0x9c, 0x03, 0x02, 0x9e, 0x03, 0xa0,
0x03, 0x01, 0x00, 0x03, 0xa2, 0x03, 0x00, 0x02,
0x00, 0xf8, 0x01, 0x00, 0x01, 0xf8, 0x01, 0x01,
0x0e, 0x00, 0x06, 0x01, 0xa0, 0x01, 0x00, 0x02,
0x00, 0x03, 0x04, 0x0f, 0x8a, 0x01, 0x02, 0xa4,
0x03, 0x02, 0x00, 0x60, 0xea, 0x01, 0x03, 0x01,
0xe0, 0x9e, 0x03, 0x00, 0x0d, 0xa0, 0x03, 0x01,
0x0d, 0xa4, 0x03, 0x00, 0x09, 0xa2, 0x03, 0x01,
0x01, 0xbf, 0x0e, 0xe3, 0x61, 0x00, 0x00, 0x65,
0x00, 0x00, 0x41, 0xd3, 0x00, 0x00, 0x00, 0x61,
0x01, 0x00, 0xbe, 0x00, 0x56, 0xd2, 0x00, 0x00,
0x00, 0x01, 0xbf, 0x01, 0x54, 0xd4, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x02, 0x54, 0xd5, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x03, 0x54, 0xd6, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x04, 0x54, 0xd7, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x05, 0x54, 0xd8, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x06, 0x54, 0xd9, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x07, 0x54, 0xda, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x08, 0x54, 0xdb, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x09, 0x54, 0xdc, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x0a, 0x54, 0xdd, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x0b, 0x54, 0xde, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x0c, 0x54, 0xdf, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x0d, 0x54, 0xe0, 0x00, 0x00,
0x00, 0x00, 0x06, 0xc9, 0x0e, 0xcc, 0x68, 0x01,
0x00, 0xe2, 0x29, 0x9c, 0x03, 0x01, 0x2f, 0x01,
0x00, 0x03, 0x08, 0x00, 0x16, 0x18, 0x00, 0x08,
0x08, 0x00, 0x08, 0x08, 0x00, 0x08, 0x08, 0x00,
0x08, 0x0e, 0x00, 0x08, 0x08, 0x00, 0x08, 0x08,
0x00, 0x08, 0x08, 0x00, 0x08, 0x0c, 0x00, 0x08,
0x0e, 0x00, 0x08, 0x08, 0x00, 0x08, 0x0e, 0x00,
0x08, 0x08, 0x2b, 0x00, 0x08, 0x08, 0x0e, 0xc6,
0x07, 0x01, 0x00, 0x00, 0x03, 0x00, 0x03, 0x01,
0x00, 0x33, 0x03, 0xe2, 0x01, 0x00, 0x01, 0x00,
0xe0, 0x01, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01,
0x40, 0xea, 0x01, 0x01, 0x0d, 0x0c, 0x02, 0xc8,
0x0c, 0x03, 0xc9, 0x61, 0x02, 0x00, 0x2b, 0xc4,
0x34, 0xc5, 0x21, 0x00, 0x00, 0x11, 0x64, 0x02,
0x00, 0x65, 0x00, 0x00, 0x11, 0xe9, 0x08, 0x62,
0x02, 0x00, 0x1b, 0x24, 0x00, 0x00, 0x0e, 0x0e,
0x62, 0x02, 0x00, 0x42, 0xdc, 0x00, 0x00, 0x00,
0x24, 0x00, 0x00, 0x0e, 0x62, 0x02, 0x00, 0x28,
0x9c, 0x03, 0x05, 0x03, 0x35, 0x80, 0x3f, 0x0e,
0x42, 0x07, 0x01, 0x00, 0x02, 0x00, 0x02, 0x04,
0x01, 0x00, 0x3b, 0x02, 0xd6, 0x01, 0x00, 0x01,
0x00, 0xc2, 0x03, 0x00, 0x01, 0x00, 0xa0, 0x03,
0x01, 0x0c, 0xd0, 0x97, 0x11, 0xea, 0x04, 0x0e,
0xd1, 0x97, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00,
0x00, 0x11, 0x04, 0xe2, 0x00, 0x00, 0x00, 0x21,
0x01, 0x00, 0x2f, 0x38, 0xe3, 0x00, 0x00, 0x00,
0x42, 0xe4, 0x00, 0x00, 0x00, 0x04, 0xe5, 0x00,
0x00, 0x00, 0xd0, 0x9e, 0x24, 0x01, 0x00, 0x0e,
0x65, 0x00, 0x00, 0x42, 0xd4, 0x00, 0x00, 0x00,
0xd0, 0xd1, 0x25, 0x02, 0x00, 0x9c, 0x03, 0x0a,
0x05, 0x03, 0x35, 0x49, 0x08, 0x6c, 0x0e, 0x42,
0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x01,
0x00, 0x0b, 0x00, 0xa0, 0x03, 0x01, 0x0c, 0x65,
0x00, 0x00, 0x42, 0xd5, 0x00, 0x00, 0x00, 0x25,
0x00, 0x00, 0x9c, 0x03, 0x12, 0x01, 0x03, 0x0e,
0x42, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x02,
0x01, 0x00, 0x0b, 0x00, 0xa0, 0x03, 0x01, 0x0c,
0x65, 0x00, 0x00, 0x42, 0xd6, 0x00, 0x00, 0x00,
0x25, 0x00, 0x00, 0x9c, 0x03, 0x16, 0x01, 0x03,
0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00,
0x02, 0x01, 0x00, 0x0b, 0x00, 0xa0, 0x03, 0x01,
0x0c, 0x65, 0x00, 0x00, 0x42, 0xd7, 0x00, 0x00,
0x00, 0x25, 0x00, 0x00, 0x9c, 0x03, 0x1a, 0x01,
0x03, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x01, 0x00,
0x01, 0x03, 0x01, 0x00, 0x20, 0x01, 0xcc, 0x03,
0x00, 0x01, 0x00, 0xa0, 0x03, 0x01, 0x0c, 0xd0,
0xb4, 0xa4, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00,
0x00, 0x11, 0x04, 0xe2, 0x00, 0x00, 0x00, 0x21,
0x01, 0x00, 0x2f, 0x65, 0x00, 0x00, 0x42, 0xd8,
0x00, 0x00, 0x00, 0xd0, 0x25, 0x01, 0x00, 0x9c,
0x03, 0x1e, 0x04, 0x03, 0x1c, 0x49, 0x08, 0x0e,
0x42, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x02,
0x01, 0x00, 0x0b, 0x00, 0xa0, 0x03, 0x01, 0x0c,
0x65, 0x00, 0x00, 0x42, 0xd9, 0x00, 0x00, 0x00,
0x25, 0x00, 0x00, 0x9c, 0x03, 0x25, 0x01, 0x03,
0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00,
0x02, 0x01, 0x00, 0x0b, 0x00, 0xa0, 0x03, 0x01,
0x0c, 0x65, 0x00, 0x00, 0x42, 0xda, 0x00, 0x00,
0x00, 0x25, 0x00, 0x00, 0x9c, 0x03, 0x29, 0x01,
0x03, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x00,
0x00, 0x02, 0x01, 0x00, 0x0b, 0x00, 0xa0, 0x03,
0x01, 0x0c, 0x65, 0x00, 0x00, 0x42, 0xdb, 0x00,
0x00, 0x00, 0x25, 0x00, 0x00, 0x9c, 0x03, 0x2d,
0x01, 0x03, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00,
0x01, 0x00, 0x05, 0x01, 0x01, 0x19, 0x01, 0x10,
0x00, 0x01, 0x00, 0xa0, 0x03, 0x01, 0x0c, 0x08,
0xc8, 0x65, 0x00, 0x00, 0x42, 0xe7, 0x00, 0x00,
0x00, 0xbf, 0x00, 0x42, 0xe8, 0x00, 0x00, 0x00,
0xc4, 0x24, 0x01, 0x00, 0x24, 0x01, 0x00, 0x29,
0x9c, 0x03, 0x31, 0x03, 0x0d, 0x2c, 0x49, 0x0e,
0x43, 0x06, 0x01, 0x00, 0x01, 0x01, 0x01, 0x04,
0x00, 0x00, 0x12, 0x02, 0xd2, 0x03, 0x00, 0x01,
0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc8, 0xc4,
0x42, 0xea, 0x00, 0x00, 0x00, 0x04, 0xeb, 0x00,
0x00, 0x00, 0xd0, 0x24, 0x02, 0x00, 0x29, 0x9c,
0x03, 0x32, 0x02, 0x0d, 0x4e, 0x0e, 0x42, 0x07,
0x01, 0x00, 0x02, 0x00, 0x02, 0x04, 0x01, 0x00,
0x26, 0x02, 0xd8, 0x03, 0x00, 0x01, 0x00, 0xc2,
0x03, 0x00, 0x01, 0x00, 0xa0, 0x03, 0x01, 0x0c,
0xd0, 0x97, 0x11, 0xea, 0x04, 0x0e, 0xd1, 0x97,
0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11,
0x04, 0xe2, 0x00, 0x00, 0x00, 0x21, 0x01, 0x00,
0x2f, 0x65, 0x00, 0x00, 0x42, 0xdd, 0x00, 0x00,
0x00, 0xd0, 0xd1, 0x25, 0x02, 0x00, 0x9c, 0x03,
0x37, 0x04, 0x03, 0x35, 0x49, 0x08, 0x0e, 0x42,
0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x01,
0x00, 0x0b, 0x00, 0xa0, 0x03, 0x01, 0x0c, 0x65,
0x00, 0x00, 0x42, 0xde, 0x00, 0x00, 0x00, 0x25,
0x00, 0x00, 0x9c, 0x03, 0x3e, 0x01, 0x03, 0x0e,
0x42, 0x07, 0x01, 0x00, 0x01, 0x00, 0x01, 0x03,
0x01, 0x00, 0x20, 0x01, 0xda, 0x03, 0x00, 0x01,
0x00, 0xa0, 0x03, 0x01, 0x0c, 0xd0, 0xb4, 0xa4,
0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11,
0x04, 0xe2, 0x00, 0x00, 0x00, 0x21, 0x01, 0x00,
0x2f, 0x65, 0x00, 0x00, 0x42, 0xdf, 0x00, 0x00,
0x00, 0xd0, 0x25, 0x01, 0x00, 0x9c, 0x03, 0x42,
0x04, 0x03, 0x1c, 0x49, 0x08, 0x0e, 0x42, 0x07,
0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x01, 0x00,
0x0b, 0x00, 0xa0, 0x03, 0x01, 0x0c, 0x65, 0x00,
0x00, 0x42, 0xe0, 0x00, 0x00, 0x00, 0x25, 0x00,
0x00, 0x9c, 0x03, 0x49, 0x01, 0x03, 0x0e, 0x43,
0x06, 0x01, 0xa2, 0x03, 0x00, 0x00, 0x00, 0x02,
0x01, 0x00, 0x08, 0x00, 0xa4, 0x03, 0x02, 0x08,
0x65, 0x00, 0x00, 0x11, 0x21, 0x00, 0x00, 0x28,
0x9c, 0x03, 0x4e, 0x01, 0x03,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_audioplayer.c | C | apache-2.0 | 8,244 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_audiorecorder_size = 712;
const uint8_t jslib_audiorecorder[712] = {
0x01, 0x12, 0x28, 0x73, 0x72, 0x63, 0x2f, 0x61,
0x75, 0x64, 0x69, 0x6f, 0x72, 0x65, 0x63, 0x6f,
0x72, 0x64, 0x65, 0x72, 0x2e, 0x6a, 0x73, 0x0c,
0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x1a, 0x41,
0x55, 0x44, 0x49, 0x4f, 0x52, 0x45, 0x43, 0x4f,
0x52, 0x44, 0x45, 0x52, 0x08, 0x6f, 0x70, 0x65,
0x6e, 0x1c, 0x41, 0x55, 0x44, 0x49, 0x4f, 0x5f,
0x52, 0x45, 0x43, 0x4f, 0x52, 0x44, 0x45, 0x52,
0x18, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x45, 0x6d,
0x69, 0x74, 0x74, 0x65, 0x72, 0x0c, 0x72, 0x65,
0x63, 0x6f, 0x72, 0x64, 0x0a, 0x70, 0x61, 0x75,
0x73, 0x65, 0x0c, 0x72, 0x65, 0x73, 0x75, 0x6d,
0x65, 0x08, 0x73, 0x74, 0x6f, 0x70, 0x16, 0x67,
0x65, 0x74, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69,
0x6f, 0x6e, 0x10, 0x67, 0x65, 0x74, 0x53, 0x74,
0x61, 0x74, 0x65, 0x14, 0x73, 0x61, 0x6d, 0x70,
0x6c, 0x65, 0x72, 0x61, 0x74, 0x65, 0x10, 0x63,
0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x73, 0x0a,
0x73, 0x62, 0x69, 0x74, 0x73, 0x0c, 0x66, 0x72,
0x61, 0x6d, 0x65, 0x73, 0x08, 0x73, 0x69, 0x6e,
0x6b, 0x1c, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69,
0x64, 0x20, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73,
0x0f, 0x9c, 0x03, 0x02, 0x9e, 0x03, 0xa0, 0x03,
0x01, 0x00, 0x03, 0xa2, 0x03, 0x00, 0x02, 0x00,
0xf8, 0x01, 0x00, 0x01, 0xf8, 0x01, 0x01, 0x0e,
0x00, 0x06, 0x01, 0xa0, 0x01, 0x00, 0x02, 0x00,
0x03, 0x04, 0x08, 0x52, 0x02, 0xa4, 0x03, 0x02,
0x00, 0x60, 0xea, 0x01, 0x03, 0x01, 0xe0, 0x9e,
0x03, 0x00, 0x0d, 0xa0, 0x03, 0x01, 0x0d, 0xa4,
0x03, 0x00, 0x09, 0xa2, 0x03, 0x01, 0x01, 0xbf,
0x07, 0xe3, 0x61, 0x00, 0x00, 0x65, 0x00, 0x00,
0x41, 0xd3, 0x00, 0x00, 0x00, 0x61, 0x01, 0x00,
0xbe, 0x00, 0x56, 0xd2, 0x00, 0x00, 0x00, 0x01,
0xbf, 0x01, 0x54, 0xd4, 0x00, 0x00, 0x00, 0x00,
0xbf, 0x02, 0x54, 0xd5, 0x00, 0x00, 0x00, 0x00,
0xbf, 0x03, 0x54, 0xd6, 0x00, 0x00, 0x00, 0x00,
0xbf, 0x04, 0x54, 0xd7, 0x00, 0x00, 0x00, 0x00,
0xbf, 0x05, 0x54, 0xd8, 0x00, 0x00, 0x00, 0x00,
0xbf, 0x06, 0x54, 0xd9, 0x00, 0x00, 0x00, 0x00,
0x06, 0xc9, 0x0e, 0xcc, 0x68, 0x01, 0x00, 0xe2,
0x29, 0x9c, 0x03, 0x01, 0x1a, 0x01, 0x00, 0x03,
0x08, 0x00, 0x16, 0x14, 0x00, 0x08, 0x08, 0x00,
0x08, 0x08, 0x00, 0x08, 0x08, 0x00, 0x08, 0x08,
0x00, 0x08, 0x08, 0x2b, 0x00, 0x08, 0x08, 0x0e,
0xc6, 0x07, 0x01, 0x00, 0x00, 0x03, 0x00, 0x03,
0x01, 0x00, 0x27, 0x03, 0xe2, 0x01, 0x00, 0x01,
0x00, 0xe0, 0x01, 0x00, 0x01, 0x00, 0x10, 0x00,
0x01, 0x40, 0xea, 0x01, 0x01, 0x0d, 0x0c, 0x02,
0xc8, 0x0c, 0x03, 0xc9, 0x61, 0x02, 0x00, 0x2b,
0xc4, 0x34, 0xc5, 0x21, 0x00, 0x00, 0x11, 0x64,
0x02, 0x00, 0x65, 0x00, 0x00, 0x11, 0xe9, 0x08,
0x62, 0x02, 0x00, 0x1b, 0x24, 0x00, 0x00, 0x0e,
0x0e, 0x62, 0x02, 0x00, 0x28, 0x9c, 0x03, 0x05,
0x02, 0x35, 0x80, 0x0e, 0x42, 0x07, 0x01, 0x00,
0x05, 0x00, 0x05, 0x07, 0x01, 0x00, 0x27, 0x05,
0xb4, 0x03, 0x00, 0x01, 0x00, 0xb6, 0x03, 0x00,
0x01, 0x00, 0xb8, 0x03, 0x00, 0x01, 0x00, 0xba,
0x03, 0x00, 0x01, 0x00, 0xbc, 0x03, 0x00, 0x01,
0x00, 0xa0, 0x03, 0x01, 0x0c, 0x5b, 0x04, 0x00,
0x97, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00,
0x11, 0x04, 0xdf, 0x00, 0x00, 0x00, 0x21, 0x01,
0x00, 0x2f, 0x65, 0x00, 0x00, 0x42, 0xd4, 0x00,
0x00, 0x00, 0xd0, 0xd1, 0xd2, 0xd3, 0x5b, 0x04,
0x00, 0x25, 0x05, 0x00, 0x9c, 0x03, 0x09, 0x04,
0x03, 0x21, 0x49, 0x08, 0x0e, 0x42, 0x07, 0x01,
0x00, 0x00, 0x00, 0x00, 0x02, 0x01, 0x00, 0x0b,
0x00, 0xa0, 0x03, 0x01, 0x0c, 0x65, 0x00, 0x00,
0x42, 0xd5, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00,
0x9c, 0x03, 0x10, 0x01, 0x03, 0x0e, 0x42, 0x07,
0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x01, 0x00,
0x0b, 0x00, 0xa0, 0x03, 0x01, 0x0c, 0x65, 0x00,
0x00, 0x42, 0xd6, 0x00, 0x00, 0x00, 0x25, 0x00,
0x00, 0x9c, 0x03, 0x14, 0x01, 0x03, 0x0e, 0x42,
0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x01,
0x00, 0x0b, 0x00, 0xa0, 0x03, 0x01, 0x0c, 0x65,
0x00, 0x00, 0x42, 0xd7, 0x00, 0x00, 0x00, 0x25,
0x00, 0x00, 0x9c, 0x03, 0x18, 0x01, 0x03, 0x0e,
0x42, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x02,
0x01, 0x00, 0x0b, 0x00, 0xa0, 0x03, 0x01, 0x0c,
0x65, 0x00, 0x00, 0x42, 0xd8, 0x00, 0x00, 0x00,
0x25, 0x00, 0x00, 0x9c, 0x03, 0x1c, 0x01, 0x03,
0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00,
0x02, 0x01, 0x00, 0x0b, 0x00, 0xa0, 0x03, 0x01,
0x0c, 0x65, 0x00, 0x00, 0x42, 0xd9, 0x00, 0x00,
0x00, 0x25, 0x00, 0x00, 0x9c, 0x03, 0x20, 0x01,
0x03, 0x0e, 0x43, 0x06, 0x01, 0xa2, 0x03, 0x00,
0x00, 0x00, 0x02, 0x01, 0x00, 0x08, 0x00, 0xa4,
0x03, 0x02, 0x08, 0x65, 0x00, 0x00, 0x11, 0x21,
0x00, 0x00, 0x28, 0x9c, 0x03, 0x25, 0x01, 0x03,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_audiorecorder.c | C | apache-2.0 | 4,540 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_bt_host_size = 2574;
const uint8_t jslib_bt_host[2574] = {
0x01, 0x3a, 0x1c, 0x73, 0x72, 0x63, 0x2f, 0x62,
0x74, 0x5f, 0x68, 0x6f, 0x73, 0x74, 0x2e, 0x6a,
0x73, 0x0e, 0x42, 0x54, 0x5f, 0x48, 0x4f, 0x53,
0x54, 0x0c, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73,
0x08, 0x6f, 0x70, 0x65, 0x6e, 0x0e, 0x62, 0x74,
0x5f, 0x68, 0x6f, 0x73, 0x74, 0x18, 0x45, 0x76,
0x65, 0x6e, 0x74, 0x45, 0x6d, 0x69, 0x74, 0x74,
0x65, 0x72, 0x0a, 0x5f, 0x69, 0x6e, 0x69, 0x74,
0x12, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x61,
0x64, 0x76, 0x10, 0x73, 0x74, 0x6f, 0x70, 0x5f,
0x61, 0x64, 0x76, 0x14, 0x73, 0x74, 0x61, 0x72,
0x74, 0x5f, 0x73, 0x63, 0x61, 0x6e, 0x12, 0x73,
0x74, 0x6f, 0x70, 0x5f, 0x73, 0x63, 0x61, 0x6e,
0x16, 0x61, 0x64, 0x64, 0x5f, 0x73, 0x65, 0x72,
0x76, 0x69, 0x63, 0x65, 0x16, 0x75, 0x70, 0x64,
0x61, 0x74, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72,
0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
0x24, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
0x20, 0x69, 0x73, 0x20, 0x69, 0x6e, 0x76, 0x61,
0x6c, 0x69, 0x64, 0x0c, 0x69, 0x6e, 0x69, 0x74,
0x65, 0x64, 0x2c, 0x62, 0x74, 0x5f, 0x68, 0x6f,
0x73, 0x74, 0x20, 0x61, 0x6c, 0x72, 0x65, 0x61,
0x64, 0x79, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x65,
0x64, 0x14, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65,
0x4e, 0x61, 0x6d, 0x65, 0x18, 0x63, 0x6f, 0x6e,
0x6e, 0x5f, 0x6e, 0x75, 0x6d, 0x5f, 0x6d, 0x61,
0x78, 0x0e, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73,
0x73, 0x0c, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64,
0x0c, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x0e,
0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x06,
0x6c, 0x6f, 0x67, 0x26, 0x62, 0x74, 0x5f, 0x68,
0x6f, 0x73, 0x74, 0x20, 0x6e, 0x61, 0x74, 0x69,
0x76, 0x65, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x08,
0x69, 0x6e, 0x69, 0x74, 0x1c, 0x62, 0x74, 0x20,
0x68, 0x6f, 0x73, 0x74, 0x20, 0x69, 0x6e, 0x69,
0x74, 0x65, 0x64, 0x26, 0x62, 0x74, 0x20, 0x68,
0x6f, 0x73, 0x74, 0x20, 0x69, 0x6e, 0x69, 0x74,
0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x0c,
0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x22, 0x62,
0x74, 0x20, 0x68, 0x6f, 0x73, 0x74, 0x20, 0x73,
0x74, 0x61, 0x72, 0x74, 0x20, 0x61, 0x64, 0x76,
0x2a, 0x62, 0x74, 0x20, 0x68, 0x6f, 0x73, 0x74,
0x20, 0x6e, 0x6f, 0x74, 0x20, 0x69, 0x6e, 0x69,
0x74, 0x69, 0x61, 0x6c, 0x65, 0x64, 0x10, 0x61,
0x64, 0x76, 0x5f, 0x66, 0x6c, 0x61, 0x67, 0x08,
0x62, 0x69, 0x6e, 0x64, 0x16, 0x63, 0x6f, 0x6e,
0x6e, 0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65,
0x0e, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74,
0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74,
0x20, 0x63, 0x61, 0x6c, 0x6c, 0x62, 0x61, 0x63,
0x6b, 0x08, 0x65, 0x6d, 0x69, 0x74, 0x14, 0x64,
0x69, 0x73, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63,
0x74, 0x24, 0x62, 0x74, 0x20, 0x68, 0x6f, 0x73,
0x74, 0x20, 0x73, 0x74, 0x61, 0x72, 0x74, 0x20,
0x73, 0x63, 0x61, 0x6e, 0x12, 0x73, 0x63, 0x61,
0x6e, 0x5f, 0x66, 0x6c, 0x61, 0x67, 0x08, 0x61,
0x64, 0x64, 0x72, 0x12, 0x61, 0x64, 0x64, 0x72,
0x5f, 0x74, 0x79, 0x70, 0x65, 0x10, 0x61, 0x64,
0x76, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x10, 0x61,
0x64, 0x76, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x08,
0x72, 0x73, 0x73, 0x69, 0x28, 0x73, 0x63, 0x61,
0x6e, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
0x20, 0x63, 0x61, 0x6c, 0x6c, 0x62, 0x61, 0x63,
0x6b, 0x0c, 0x20, 0x61, 0x64, 0x64, 0x72, 0x3a,
0x0c, 0x20, 0x64, 0x61, 0x74, 0x61, 0x3a, 0x14,
0x73, 0x72, 0x76, 0x63, 0x5f, 0x63, 0x66, 0x67,
0x3a, 0x20, 0x0e, 0x73, 0x65, 0x72, 0x76, 0x69,
0x63, 0x65, 0x28, 0x61, 0x64, 0x64, 0x5f, 0x73,
0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x20, 0x72,
0x65, 0x73, 0x75, 0x6c, 0x74, 0x3a, 0x20, 0x06,
0x6c, 0x65, 0x6e, 0x08, 0x64, 0x61, 0x74, 0x61,
0x24, 0x61, 0x64, 0x64, 0x5f, 0x73, 0x65, 0x72,
0x76, 0x69, 0x63, 0x65, 0x3a, 0x20, 0x6c, 0x65,
0x6e, 0x3a, 0x20, 0x10, 0x2c, 0x20, 0x64, 0x61,
0x74, 0x61, 0x3a, 0x20, 0x16, 0x6f, 0x6e, 0x43,
0x68, 0x61, 0x72, 0x57, 0x72, 0x69, 0x74, 0x65,
0x18, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f,
0x63, 0x68, 0x61, 0x72, 0x73, 0x06, 0x61, 0x72,
0x67, 0x0f, 0x9c, 0x03, 0x02, 0x9e, 0x03, 0xa0,
0x03, 0x01, 0x00, 0x03, 0xa2, 0x03, 0x00, 0x02,
0x00, 0xf8, 0x01, 0x00, 0x01, 0xf8, 0x01, 0x01,
0x0e, 0x00, 0x06, 0x01, 0xa0, 0x01, 0x00, 0x02,
0x00, 0x03, 0x04, 0x09, 0x5a, 0x02, 0xa4, 0x03,
0x02, 0x00, 0x60, 0xea, 0x01, 0x03, 0x01, 0xe0,
0x9e, 0x03, 0x00, 0x0d, 0xa0, 0x03, 0x01, 0x0d,
0xa4, 0x03, 0x00, 0x09, 0xa2, 0x03, 0x01, 0x01,
0xbf, 0x08, 0xe3, 0x61, 0x00, 0x00, 0x65, 0x01,
0x00, 0x41, 0xd3, 0x00, 0x00, 0x00, 0x61, 0x01,
0x00, 0xbe, 0x00, 0x56, 0xd2, 0x00, 0x00, 0x00,
0x01, 0xbf, 0x01, 0x54, 0xd4, 0x00, 0x00, 0x00,
0x00, 0xbf, 0x02, 0x54, 0xd5, 0x00, 0x00, 0x00,
0x00, 0xbf, 0x03, 0x54, 0xd6, 0x00, 0x00, 0x00,
0x00, 0xbf, 0x04, 0x54, 0xd7, 0x00, 0x00, 0x00,
0x00, 0xbf, 0x05, 0x54, 0xd8, 0x00, 0x00, 0x00,
0x00, 0xbf, 0x06, 0x54, 0xd9, 0x00, 0x00, 0x00,
0x00, 0xbf, 0x07, 0x54, 0xda, 0x00, 0x00, 0x00,
0x00, 0x06, 0xc9, 0x0e, 0xcc, 0x68, 0x01, 0x00,
0xe2, 0x29, 0x9c, 0x03, 0x01, 0x1d, 0x01, 0x00,
0x03, 0x08, 0x00, 0x16, 0x40, 0x00, 0x08, 0x3e,
0x00, 0x08, 0x2c, 0x00, 0x08, 0x32, 0x00, 0x08,
0x2c, 0x00, 0x08, 0x2a, 0x00, 0x08, 0x20, 0x2b,
0x00, 0x08, 0x08, 0x0e, 0xc6, 0x07, 0x01, 0x00,
0x01, 0x03, 0x01, 0x03, 0x01, 0x02, 0xa8, 0x01,
0x04, 0xb6, 0x03, 0x00, 0x01, 0x00, 0xe2, 0x01,
0x00, 0x01, 0x00, 0xe0, 0x01, 0x00, 0x01, 0x00,
0x10, 0x00, 0x01, 0x40, 0xea, 0x01, 0x01, 0x0d,
0x0c, 0x02, 0xc8, 0x0c, 0x03, 0xc9, 0x61, 0x02,
0x00, 0x2b, 0xc4, 0x34, 0xc5, 0x21, 0x00, 0x00,
0x11, 0x64, 0x02, 0x00, 0x65, 0x00, 0x00, 0x11,
0xe9, 0x08, 0x62, 0x02, 0x00, 0x1b, 0x24, 0x00,
0x00, 0x0e, 0x0e, 0xd0, 0x97, 0xe9, 0x10, 0x38,
0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0xdc, 0x00,
0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0x62, 0x02,
0x00, 0x41, 0xdd, 0x00, 0x00, 0x00, 0x0a, 0xaa,
0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11,
0x04, 0xde, 0x00, 0x00, 0x00, 0x21, 0x01, 0x00,
0x2f, 0x62, 0x02, 0x00, 0x0b, 0xd0, 0x41, 0xdf,
0x00, 0x00, 0x00, 0x4c, 0xdf, 0x00, 0x00, 0x00,
0xd0, 0x41, 0xe0, 0x00, 0x00, 0x00, 0x4c, 0xe0,
0x00, 0x00, 0x00, 0x43, 0xdb, 0x00, 0x00, 0x00,
0x62, 0x02, 0x00, 0xd0, 0x41, 0xe1, 0x00, 0x00,
0x00, 0x11, 0xea, 0x04, 0x0e, 0xbf, 0x00, 0x43,
0xe1, 0x00, 0x00, 0x00, 0x62, 0x02, 0x00, 0xd0,
0x41, 0xe2, 0x00, 0x00, 0x00, 0x11, 0xea, 0x04,
0x0e, 0xbf, 0x01, 0x43, 0xe2, 0x00, 0x00, 0x00,
0x62, 0x02, 0x00, 0x42, 0xd4, 0x00, 0x00, 0x00,
0x24, 0x00, 0x00, 0x0e, 0x62, 0x02, 0x00, 0x28,
0x9c, 0x03, 0x05, 0x0f, 0x35, 0x80, 0x17, 0x49,
0x09, 0x3f, 0x49, 0x08, 0x17, 0x3a, 0x3a, 0x1d,
0x67, 0x68, 0x3f, 0x0e, 0x43, 0x06, 0x01, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
0x29, 0x9c, 0x03, 0x13, 0x00, 0x0e, 0x43, 0x06,
0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x01, 0x00, 0x29, 0x9c, 0x03, 0x14, 0x00, 0x0e,
0x42, 0x07, 0x01, 0x00, 0x00, 0x02, 0x00, 0x03,
0x01, 0x00, 0x74, 0x02, 0xc6, 0x03, 0x01, 0x00,
0x40, 0x10, 0x00, 0x01, 0x00, 0x9e, 0x03, 0x00,
0x0c, 0x08, 0xc9, 0x61, 0x00, 0x00, 0x38, 0xe4,
0x00, 0x00, 0x00, 0x42, 0xe5, 0x00, 0x00, 0x00,
0x04, 0xe6, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00,
0x0e, 0x65, 0x00, 0x00, 0x42, 0xe7, 0x00, 0x00,
0x00, 0xc5, 0x41, 0xdb, 0x00, 0x00, 0x00, 0x24,
0x01, 0x00, 0xc8, 0x62, 0x00, 0x00, 0xb4, 0xaa,
0xe9, 0x26, 0xc5, 0x0a, 0x43, 0xdd, 0x00, 0x00,
0x00, 0x38, 0xe4, 0x00, 0x00, 0x00, 0x42, 0xe5,
0x00, 0x00, 0x00, 0x04, 0xe8, 0x00, 0x00, 0x00,
0x24, 0x01, 0x00, 0x0e, 0xc5, 0x42, 0xe1, 0x00,
0x00, 0x00, 0x24, 0x00, 0x00, 0x0e, 0x29, 0x38,
0xe4, 0x00, 0x00, 0x00, 0x42, 0xe5, 0x00, 0x00,
0x00, 0x04, 0xe9, 0x00, 0x00, 0x00, 0x24, 0x01,
0x00, 0x0e, 0xc5, 0x42, 0xe2, 0x00, 0x00, 0x00,
0x24, 0x00, 0x00, 0x0e, 0x29, 0x9c, 0x03, 0x19,
0x0a, 0x1c, 0x62, 0x5d, 0x26, 0x26, 0x62, 0x35,
0x08, 0x62, 0x36, 0x0e, 0x42, 0x07, 0x01, 0x00,
0x01, 0x02, 0x01, 0x06, 0x01, 0x01, 0x91, 0x01,
0x03, 0xd4, 0x03, 0x00, 0x01, 0x00, 0xc6, 0x03,
0x01, 0x00, 0x40, 0x10, 0x00, 0x01, 0x00, 0x9e,
0x03, 0x00, 0x0c, 0x08, 0xc9, 0x61, 0x00, 0x00,
0x38, 0xe4, 0x00, 0x00, 0x00, 0x42, 0xe5, 0x00,
0x00, 0x00, 0x04, 0xeb, 0x00, 0x00, 0x00, 0x24,
0x01, 0x00, 0x0e, 0xc5, 0x41, 0xdd, 0x00, 0x00,
0x00, 0x09, 0xaa, 0xe9, 0x10, 0x38, 0x8d, 0x00,
0x00, 0x00, 0x11, 0x04, 0xec, 0x00, 0x00, 0x00,
0x21, 0x01, 0x00, 0x2f, 0xc5, 0x41, 0xed, 0x00,
0x00, 0x00, 0x0a, 0xaa, 0xe9, 0x0b, 0xc5, 0x42,
0xd6, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x0e,
0x65, 0x00, 0x00, 0x42, 0xd5, 0x00, 0x00, 0x00,
0xd0, 0xbf, 0x00, 0x42, 0xee, 0x00, 0x00, 0x00,
0xc5, 0x24, 0x01, 0x00, 0x24, 0x02, 0x00, 0xc8,
0x62, 0x00, 0x00, 0xb4, 0xaa, 0xe9, 0x1b, 0xc5,
0x0a, 0x43, 0xed, 0x00, 0x00, 0x00, 0xd0, 0x41,
0xe1, 0x00, 0x00, 0x00, 0xe9, 0x1e, 0xd0, 0x42,
0xe1, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x0e,
0x29, 0xd0, 0x41, 0xe2, 0x00, 0x00, 0x00, 0xe9,
0x0b, 0xd0, 0x42, 0xe2, 0x00, 0x00, 0x00, 0x24,
0x00, 0x00, 0x0e, 0x29, 0x9c, 0x03, 0x26, 0x12,
0x1c, 0x62, 0x35, 0x49, 0x09, 0x35, 0x37, 0x00,
0x09, 0x10, 0x4e, 0x26, 0x26, 0x2b, 0x36, 0x08,
0x2b, 0x37, 0x0e, 0x43, 0x06, 0x01, 0x00, 0x02,
0x01, 0x02, 0x04, 0x00, 0x00, 0x41, 0x03, 0xde,
0x03, 0x00, 0x01, 0x00, 0xe0, 0x03, 0x00, 0x01,
0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc8, 0x38,
0xe4, 0x00, 0x00, 0x00, 0x42, 0xe5, 0x00, 0x00,
0x00, 0x04, 0xf1, 0x00, 0x00, 0x00, 0x24, 0x01,
0x00, 0x0e, 0xd1, 0xe9, 0x19, 0xc4, 0x09, 0x43,
0xed, 0x00, 0x00, 0x00, 0xc4, 0x42, 0xf2, 0x00,
0x00, 0x00, 0x04, 0xf0, 0x00, 0x00, 0x00, 0xd0,
0x24, 0x02, 0x00, 0x0e, 0x29, 0xc4, 0x42, 0xf2,
0x00, 0x00, 0x00, 0x04, 0xf3, 0x00, 0x00, 0x00,
0xd0, 0x24, 0x02, 0x00, 0x0e, 0x29, 0x9c, 0x03,
0x30, 0x07, 0x0d, 0x62, 0x12, 0x26, 0x53, 0x08,
0x54, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x01, 0x02,
0x01, 0x03, 0x01, 0x00, 0x69, 0x03, 0xd4, 0x03,
0x00, 0x01, 0x00, 0xc6, 0x03, 0x01, 0x00, 0x40,
0x10, 0x00, 0x01, 0x00, 0x9e, 0x03, 0x00, 0x0c,
0x08, 0xc9, 0x61, 0x00, 0x00, 0xc5, 0x41, 0xdd,
0x00, 0x00, 0x00, 0x09, 0xaa, 0xe9, 0x10, 0x38,
0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0xec, 0x00,
0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0xc5, 0x41,
0xed, 0x00, 0x00, 0x00, 0x09, 0xaa, 0xe9, 0x02,
0x29, 0x65, 0x00, 0x00, 0x42, 0xd6, 0x00, 0x00,
0x00, 0x24, 0x00, 0x00, 0xc8, 0x62, 0x00, 0x00,
0xb4, 0xaa, 0xe9, 0x1b, 0xd0, 0x41, 0xe1, 0x00,
0x00, 0x00, 0xe9, 0x0b, 0xd0, 0x42, 0xe1, 0x00,
0x00, 0x00, 0x24, 0x00, 0x00, 0x0e, 0xc5, 0x09,
0x43, 0xed, 0x00, 0x00, 0x00, 0x29, 0xd0, 0x41,
0xe2, 0x00, 0x00, 0x00, 0xe9, 0x0b, 0xd0, 0x42,
0xe2, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x0e,
0x29, 0x9c, 0x03, 0x45, 0x0e, 0x1c, 0x35, 0x49,
0x09, 0x36, 0x09, 0x3f, 0x26, 0x2b, 0x36, 0x26,
0x08, 0x2b, 0x37, 0x0e, 0x42, 0x07, 0x01, 0x00,
0x01, 0x02, 0x01, 0x06, 0x01, 0x01, 0x8e, 0x01,
0x03, 0xd4, 0x03, 0x00, 0x01, 0x00, 0xc6, 0x03,
0x01, 0x00, 0x40, 0x10, 0x00, 0x01, 0x00, 0x9e,
0x03, 0x00, 0x0c, 0x08, 0xc9, 0x61, 0x00, 0x00,
0x38, 0xe4, 0x00, 0x00, 0x00, 0x42, 0xe5, 0x00,
0x00, 0x00, 0x04, 0xf4, 0x00, 0x00, 0x00, 0x24,
0x01, 0x00, 0x0e, 0xc5, 0x41, 0xdd, 0x00, 0x00,
0x00, 0x09, 0xaa, 0xe9, 0x10, 0x38, 0x8d, 0x00,
0x00, 0x00, 0x11, 0x04, 0xec, 0x00, 0x00, 0x00,
0x21, 0x01, 0x00, 0x2f, 0xc5, 0x41, 0xf5, 0x00,
0x00, 0x00, 0x0a, 0xaa, 0xe9, 0x08, 0x38, 0xd8,
0x00, 0x00, 0x00, 0xed, 0x0e, 0x65, 0x00, 0x00,
0x42, 0xd7, 0x00, 0x00, 0x00, 0xd0, 0xbf, 0x00,
0x42, 0xee, 0x00, 0x00, 0x00, 0xc5, 0x24, 0x01,
0x00, 0x24, 0x02, 0x00, 0xc8, 0x62, 0x00, 0x00,
0xb4, 0xaa, 0xe9, 0x1b, 0xc5, 0x0a, 0x43, 0xf5,
0x00, 0x00, 0x00, 0xd0, 0x41, 0xe1, 0x00, 0x00,
0x00, 0xe9, 0x1e, 0xd0, 0x42, 0xe1, 0x00, 0x00,
0x00, 0x24, 0x00, 0x00, 0x0e, 0x29, 0xd0, 0x41,
0xe2, 0x00, 0x00, 0x00, 0xe9, 0x0b, 0xd0, 0x42,
0xe2, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x0e,
0x29, 0x9c, 0x03, 0x5b, 0x10, 0x1c, 0x62, 0x35,
0x49, 0x09, 0x35, 0x28, 0x31, 0x4e, 0x26, 0x26,
0x2b, 0x36, 0x08, 0x2b, 0x37, 0x0e, 0x43, 0x06,
0x01, 0x00, 0x05, 0x00, 0x05, 0x04, 0x00, 0x00,
0x23, 0x05, 0xec, 0x03, 0x00, 0x01, 0x00, 0xee,
0x03, 0x00, 0x01, 0x00, 0xf0, 0x03, 0x00, 0x01,
0x00, 0xf2, 0x03, 0x00, 0x01, 0x00, 0xf4, 0x03,
0x00, 0x01, 0x00, 0x38, 0xe4, 0x00, 0x00, 0x00,
0x42, 0xe5, 0x00, 0x00, 0x00, 0x04, 0xfb, 0x00,
0x00, 0x00, 0x04, 0xfc, 0x00, 0x00, 0x00, 0x9e,
0xd0, 0x9e, 0x04, 0xfd, 0x00, 0x00, 0x00, 0x9e,
0xd3, 0x9e, 0x24, 0x01, 0x00, 0x29, 0x9c, 0x03,
0x65, 0x02, 0x03, 0xad, 0x0e, 0x42, 0x07, 0x01,
0x00, 0x01, 0x02, 0x01, 0x03, 0x01, 0x00, 0x69,
0x03, 0xd4, 0x03, 0x00, 0x01, 0x00, 0xc6, 0x03,
0x01, 0x00, 0x40, 0x10, 0x00, 0x01, 0x00, 0x9e,
0x03, 0x00, 0x0c, 0x08, 0xc9, 0x61, 0x00, 0x00,
0xc5, 0x41, 0xdd, 0x00, 0x00, 0x00, 0x09, 0xaa,
0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11,
0x04, 0xec, 0x00, 0x00, 0x00, 0x21, 0x01, 0x00,
0x2f, 0xc5, 0x41, 0xf5, 0x00, 0x00, 0x00, 0x09,
0xaa, 0xe9, 0x02, 0x29, 0x65, 0x00, 0x00, 0x42,
0xd8, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0xc8,
0x62, 0x00, 0x00, 0xb4, 0xaa, 0xe9, 0x1b, 0xc5,
0x09, 0x43, 0xf5, 0x00, 0x00, 0x00, 0xd0, 0x41,
0xe1, 0x00, 0x00, 0x00, 0xe9, 0x1e, 0xd0, 0x42,
0xe1, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x0e,
0x29, 0xd0, 0x41, 0xe2, 0x00, 0x00, 0x00, 0xe9,
0x0b, 0xd0, 0x42, 0xe2, 0x00, 0x00, 0x00, 0x24,
0x00, 0x00, 0x0e, 0x29, 0x9c, 0x03, 0x74, 0x0e,
0x1c, 0x35, 0x49, 0x09, 0x36, 0x09, 0x3f, 0x26,
0x26, 0x2b, 0x36, 0x08, 0x2b, 0x37, 0x0e, 0x42,
0x07, 0x01, 0x00, 0x01, 0x02, 0x01, 0x06, 0x01,
0x01, 0x99, 0x01, 0x03, 0xd4, 0x03, 0x00, 0x01,
0x00, 0xc6, 0x03, 0x01, 0x00, 0x40, 0x10, 0x00,
0x01, 0x00, 0x9e, 0x03, 0x00, 0x0c, 0x08, 0xc9,
0x61, 0x00, 0x00, 0xc5, 0x41, 0xdd, 0x00, 0x00,
0x00, 0x09, 0xaa, 0xe9, 0x10, 0x38, 0x8d, 0x00,
0x00, 0x00, 0x11, 0x04, 0xec, 0x00, 0x00, 0x00,
0x21, 0x01, 0x00, 0x2f, 0x38, 0xe4, 0x00, 0x00,
0x00, 0x42, 0xe5, 0x00, 0x00, 0x00, 0x04, 0xfe,
0x00, 0x00, 0x00, 0xd0, 0x41, 0xff, 0x00, 0x00,
0x00, 0x9e, 0x24, 0x01, 0x00, 0x0e, 0x65, 0x00,
0x00, 0x42, 0xd9, 0x00, 0x00, 0x00, 0xd0, 0x41,
0xff, 0x00, 0x00, 0x00, 0xbf, 0x00, 0x42, 0xee,
0x00, 0x00, 0x00, 0xc5, 0x24, 0x01, 0x00, 0x24,
0x02, 0x00, 0xc8, 0x38, 0xe4, 0x00, 0x00, 0x00,
0x42, 0xe5, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01,
0x00, 0x00, 0x62, 0x00, 0x00, 0x9e, 0x24, 0x01,
0x00, 0x0e, 0x62, 0x00, 0x00, 0xb4, 0xaa, 0xe9,
0x14, 0xd0, 0x41, 0xe1, 0x00, 0x00, 0x00, 0xe9,
0x1e, 0xd0, 0x42, 0xe1, 0x00, 0x00, 0x00, 0x24,
0x00, 0x00, 0x0e, 0x29, 0xd0, 0x41, 0xe2, 0x00,
0x00, 0x00, 0xe9, 0x0b, 0xd0, 0x42, 0xe2, 0x00,
0x00, 0x00, 0x24, 0x00, 0x00, 0x0e, 0x29, 0x9c,
0x03, 0x8a, 0x01, 0x0e, 0x1c, 0x35, 0x49, 0x08,
0x85, 0x4b, 0x4e, 0x76, 0x26, 0x2b, 0x36, 0x08,
0x2b, 0x37, 0x0e, 0x43, 0x06, 0x01, 0x00, 0x02,
0x01, 0x02, 0x04, 0x00, 0x00, 0x2f, 0x03, 0x82,
0x04, 0x00, 0x01, 0x00, 0x84, 0x04, 0x00, 0x01,
0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc8, 0x38,
0xe4, 0x00, 0x00, 0x00, 0x42, 0xe5, 0x00, 0x00,
0x00, 0x04, 0x03, 0x01, 0x00, 0x00, 0xd0, 0x9e,
0x04, 0x04, 0x01, 0x00, 0x00, 0x9e, 0xd1, 0x9e,
0x24, 0x01, 0x00, 0x0e, 0xc4, 0x42, 0xf2, 0x00,
0x00, 0x00, 0x04, 0x05, 0x01, 0x00, 0x00, 0xd1,
0x24, 0x02, 0x00, 0x29, 0x9c, 0x03, 0x8f, 0x01,
0x03, 0x0d, 0x94, 0x4e, 0x0e, 0x42, 0x07, 0x01,
0x00, 0x01, 0x02, 0x01, 0x03, 0x01, 0x00, 0x5d,
0x03, 0xd4, 0x03, 0x00, 0x01, 0x00, 0xc6, 0x03,
0x01, 0x00, 0x40, 0x10, 0x00, 0x01, 0x00, 0x9e,
0x03, 0x00, 0x0c, 0x08, 0xc9, 0x61, 0x00, 0x00,
0xc5, 0x41, 0xdd, 0x00, 0x00, 0x00, 0x09, 0xaa,
0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11,
0x04, 0xec, 0x00, 0x00, 0x00, 0x21, 0x01, 0x00,
0x2f, 0x65, 0x00, 0x00, 0x42, 0x06, 0x01, 0x00,
0x00, 0xd0, 0x41, 0x07, 0x01, 0x00, 0x00, 0x24,
0x01, 0x00, 0xc8, 0x62, 0x00, 0x00, 0xb4, 0xaa,
0xe9, 0x14, 0xd0, 0x41, 0xe1, 0x00, 0x00, 0x00,
0xe9, 0x1e, 0xd0, 0x42, 0xe1, 0x00, 0x00, 0x00,
0x24, 0x00, 0x00, 0x0e, 0x29, 0xd0, 0x41, 0xe2,
0x00, 0x00, 0x00, 0xe9, 0x0b, 0xd0, 0x42, 0xe2,
0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x0e, 0x29,
0x9c, 0x03, 0x9f, 0x01, 0x0b, 0x1c, 0x35, 0x49,
0x08, 0x5d, 0x26, 0x2b, 0x36, 0x08, 0x2b, 0x37,
0x0e, 0x43, 0x06, 0x01, 0xa2, 0x03, 0x01, 0x00,
0x01, 0x03, 0x01, 0x00, 0x09, 0x01, 0xb6, 0x03,
0x00, 0x01, 0x00, 0xa4, 0x03, 0x02, 0x08, 0x65,
0x00, 0x00, 0x11, 0xd0, 0x21, 0x01, 0x00, 0x28,
0x9c, 0x03, 0xb0, 0x01, 0x01, 0x03,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_bt_host.c | C | apache-2.0 | 15,935 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_crypto_size = 455;
const uint8_t jslib_crypto[455] = {
0x01, 0x0e, 0x1a, 0x73, 0x72, 0x63, 0x2f, 0x63,
0x72, 0x79, 0x70, 0x74, 0x6f, 0x2e, 0x6a, 0x73,
0x0c, 0x43, 0x52, 0x59, 0x50, 0x54, 0x4f, 0x0e,
0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x0e,
0x64, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x0a,
0x70, 0x61, 0x72, 0x61, 0x6d, 0x0c, 0x72, 0x65,
0x73, 0x75, 0x6c, 0x74, 0x0e, 0x61, 0x65, 0x73,
0x5f, 0x63, 0x62, 0x63, 0x14, 0x63, 0x72, 0x79,
0x70, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x0e,
0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x06,
0x6c, 0x6f, 0x67, 0x20, 0x65, 0x6e, 0x63, 0x72,
0x79, 0x70, 0x74, 0x20, 0x73, 0x75, 0x63, 0x63,
0x65, 0x73, 0x73, 0x3a, 0x1c, 0x65, 0x6e, 0x63,
0x72, 0x79, 0x70, 0x74, 0x20, 0x66, 0x61, 0x69,
0x6c, 0x65, 0x64, 0x20, 0x64, 0x65, 0x63, 0x72,
0x79, 0x70, 0x74, 0x20, 0x73, 0x75, 0x63, 0x63,
0x65, 0x73, 0x73, 0x3a, 0x1c, 0x64, 0x65, 0x63,
0x72, 0x79, 0x70, 0x74, 0x20, 0x66, 0x61, 0x69,
0x6c, 0x65, 0x64, 0x0f, 0x9c, 0x03, 0x01, 0x9e,
0x03, 0x02, 0x00, 0x01, 0xa0, 0x03, 0x00, 0x02,
0xa2, 0x03, 0x00, 0x01, 0x00, 0xf8, 0x01, 0x00,
0x0e, 0x00, 0x06, 0x01, 0xa0, 0x01, 0x00, 0x00,
0x00, 0x01, 0x03, 0x02, 0x07, 0x00, 0x9e, 0x03,
0x00, 0x0d, 0xa0, 0x03, 0x00, 0x01, 0xa2, 0x03,
0x01, 0x01, 0xbf, 0x00, 0xe1, 0xbf, 0x01, 0xe2,
0x29, 0x9c, 0x03, 0x01, 0x04, 0x01, 0x00, 0x06,
0x36, 0x0e, 0x43, 0x06, 0x01, 0xa0, 0x03, 0x01,
0x01, 0x01, 0x04, 0x01, 0x00, 0x52, 0x02, 0xa4,
0x03, 0x00, 0x01, 0x00, 0xa6, 0x03, 0x01, 0x00,
0x40, 0x9e, 0x03, 0x00, 0x0c, 0x61, 0x00, 0x00,
0x65, 0x00, 0x00, 0x42, 0xd0, 0x00, 0x00, 0x00,
0x0b, 0x04, 0xd4, 0x00, 0x00, 0x00, 0x4c, 0xd5,
0x00, 0x00, 0x00, 0xd0, 0x24, 0x02, 0x00, 0xc8,
0x62, 0x00, 0x00, 0xc0, 0xab, 0xe9, 0x1a, 0x38,
0xd6, 0x00, 0x00, 0x00, 0x42, 0xd7, 0x00, 0x00,
0x00, 0x04, 0xd8, 0x00, 0x00, 0x00, 0x62, 0x00,
0x00, 0x9e, 0x24, 0x01, 0x00, 0x0e, 0xeb, 0x14,
0x38, 0xd6, 0x00, 0x00, 0x00, 0x42, 0xd7, 0x00,
0x00, 0x00, 0x04, 0xd9, 0x00, 0x00, 0x00, 0x24,
0x01, 0x00, 0x0e, 0x62, 0x00, 0x00, 0x28, 0x9c,
0x03, 0x03, 0x09, 0x12, 0x2b, 0x3a, 0x08, 0x17,
0x26, 0x76, 0x0d, 0x63, 0x0e, 0x43, 0x06, 0x01,
0xa2, 0x03, 0x01, 0x01, 0x01, 0x04, 0x01, 0x00,
0x52, 0x02, 0xa4, 0x03, 0x00, 0x01, 0x00, 0xa6,
0x03, 0x01, 0x00, 0x40, 0x9e, 0x03, 0x00, 0x0c,
0x61, 0x00, 0x00, 0x65, 0x00, 0x00, 0x42, 0xd1,
0x00, 0x00, 0x00, 0x0b, 0x04, 0xd4, 0x00, 0x00,
0x00, 0x4c, 0xd5, 0x00, 0x00, 0x00, 0xd0, 0x24,
0x02, 0x00, 0xc8, 0x62, 0x00, 0x00, 0xc0, 0xab,
0xe9, 0x1a, 0x38, 0xd6, 0x00, 0x00, 0x00, 0x42,
0xd7, 0x00, 0x00, 0x00, 0x04, 0xda, 0x00, 0x00,
0x00, 0x62, 0x00, 0x00, 0x9e, 0x24, 0x01, 0x00,
0x0e, 0xeb, 0x14, 0x38, 0xd6, 0x00, 0x00, 0x00,
0x42, 0xd7, 0x00, 0x00, 0x00, 0x04, 0xdb, 0x00,
0x00, 0x00, 0x24, 0x01, 0x00, 0x0e, 0x62, 0x00,
0x00, 0x28, 0x9c, 0x03, 0x10, 0x09, 0x12, 0x2b,
0x3a, 0x08, 0x17, 0x26, 0x76, 0x0d, 0x63,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_crypto.c | C | apache-2.0 | 2,952 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_dac_size = 835;
const uint8_t jslib_dac[835] = {
0x01, 0x12, 0x14, 0x73, 0x72, 0x63, 0x2f, 0x64,
0x61, 0x63, 0x2e, 0x6a, 0x73, 0x06, 0x44, 0x41,
0x43, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x0c, 0x48,
0x57, 0x5f, 0x44, 0x41, 0x43, 0x0a, 0x5f, 0x6f,
0x70, 0x65, 0x6e, 0x12, 0x72, 0x65, 0x61, 0x64,
0x56, 0x61, 0x6c, 0x75, 0x65, 0x14, 0x77, 0x72,
0x69, 0x74, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65,
0x0a, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x0e, 0x6f,
0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x04, 0x69,
0x64, 0x24, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
0x73, 0x20, 0x69, 0x73, 0x20, 0x69, 0x6e, 0x76,
0x61, 0x6c, 0x69, 0x64, 0x0e, 0x73, 0x75, 0x63,
0x63, 0x65, 0x73, 0x73, 0x08, 0x66, 0x61, 0x69,
0x6c, 0x16, 0x64, 0x61, 0x63, 0x49, 0x6e, 0x73,
0x74, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x64, 0x61,
0x63, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x69, 0x6e,
0x69, 0x74, 0x0c, 0x67, 0x65, 0x74, 0x56, 0x6f,
0x6c, 0x42, 0x64, 0x61, 0x63, 0x20, 0x6e, 0x6f,
0x74, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x20, 0x6f,
0x72, 0x20, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73,
0x20, 0x69, 0x73, 0x20, 0x69, 0x6e, 0x76, 0x61,
0x6c, 0x69, 0x64, 0x0c, 0x73, 0x65, 0x74, 0x56,
0x6f, 0x6c, 0x0f, 0x9c, 0x03, 0x01, 0x9e, 0x03,
0x01, 0x00, 0x02, 0xa0, 0x03, 0x00, 0x01, 0x00,
0xf8, 0x01, 0x00, 0x0e, 0x00, 0x06, 0x01, 0xa0,
0x01, 0x00, 0x02, 0x00, 0x03, 0x03, 0x06, 0x3b,
0x02, 0xa2, 0x03, 0x02, 0x00, 0x60, 0xea, 0x01,
0x03, 0x01, 0xe0, 0x9e, 0x03, 0x00, 0x0d, 0xa2,
0x03, 0x00, 0x09, 0xa0, 0x03, 0x01, 0x01, 0xbf,
0x05, 0xe2, 0x61, 0x00, 0x00, 0x06, 0x61, 0x01,
0x00, 0xbe, 0x00, 0x56, 0xd1, 0x00, 0x00, 0x00,
0x00, 0xbf, 0x01, 0x54, 0xd2, 0x00, 0x00, 0x00,
0x00, 0xbf, 0x02, 0x54, 0xd3, 0x00, 0x00, 0x00,
0x00, 0xbf, 0x03, 0x54, 0xd4, 0x00, 0x00, 0x00,
0x00, 0xbf, 0x04, 0x54, 0xd5, 0x00, 0x00, 0x00,
0x00, 0x06, 0xc9, 0x0e, 0xcc, 0x68, 0x01, 0x00,
0xe1, 0x29, 0x9c, 0x03, 0x01, 0x12, 0x01, 0x14,
0x00, 0x0f, 0x2a, 0x00, 0x08, 0x0e, 0x00, 0x08,
0x0e, 0x00, 0x08, 0x0e, 0x2b, 0x00, 0x08, 0x08,
0x0e, 0x42, 0x07, 0x01, 0x00, 0x01, 0x01, 0x01,
0x03, 0x01, 0x02, 0x6d, 0x02, 0xac, 0x03, 0x00,
0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0xea, 0x01,
0x01, 0x0d, 0x08, 0xc8, 0x2b, 0x65, 0x00, 0x00,
0x11, 0xe9, 0x06, 0xc4, 0x1b, 0x24, 0x00, 0x00,
0x0e, 0xd0, 0x97, 0x11, 0xea, 0x09, 0x0e, 0xd0,
0x41, 0xd7, 0x00, 0x00, 0x00, 0x97, 0xe9, 0x10,
0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0xd8,
0x00, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0xc4,
0x0b, 0xd0, 0x41, 0xd7, 0x00, 0x00, 0x00, 0x4c,
0xd7, 0x00, 0x00, 0x00, 0x43, 0xd6, 0x00, 0x00,
0x00, 0xc4, 0xd0, 0x41, 0xd9, 0x00, 0x00, 0x00,
0x11, 0xea, 0x04, 0x0e, 0xbf, 0x00, 0x43, 0xd9,
0x00, 0x00, 0x00, 0xc4, 0xd0, 0x41, 0xda, 0x00,
0x00, 0x00, 0x11, 0xea, 0x04, 0x0e, 0xbf, 0x01,
0x43, 0xda, 0x00, 0x00, 0x00, 0xc4, 0x42, 0xd2,
0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x29, 0x9c,
0x03, 0x04, 0x0a, 0x4e, 0x4e, 0x49, 0x08, 0x0d,
0x3a, 0x1d, 0x5d, 0x5d, 0x30, 0x0e, 0x43, 0x06,
0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x01, 0x00, 0x29, 0x9c, 0x03, 0x0c, 0x00, 0x0e,
0x43, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x01, 0x00, 0x29, 0x9c, 0x03, 0x0d,
0x00, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x01,
0x00, 0x04, 0x01, 0x00, 0x3b, 0x01, 0x10, 0x00,
0x01, 0x00, 0x9e, 0x03, 0x00, 0x0c, 0x08, 0xc8,
0xc4, 0x65, 0x00, 0x00, 0x42, 0xd0, 0x00, 0x00,
0x00, 0xc4, 0x41, 0xd6, 0x00, 0x00, 0x00, 0x41,
0xd7, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0x43,
0xdb, 0x00, 0x00, 0x00, 0xc4, 0x41, 0xdb, 0x00,
0x00, 0x00, 0x97, 0xe9, 0x0b, 0xc4, 0x42, 0xda,
0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x29, 0xc4,
0x42, 0xd9, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00,
0x29, 0x9c, 0x03, 0x11, 0x06, 0x0d, 0x8f, 0x30,
0x31, 0x08, 0x30, 0x0e, 0x42, 0x07, 0x01, 0x00,
0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x28, 0x01,
0x10, 0x00, 0x01, 0x00, 0x08, 0xc8, 0xc4, 0x41,
0xdb, 0x00, 0x00, 0x00, 0x97, 0xe9, 0x10, 0x38,
0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0xdc, 0x00,
0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0xc4, 0x41,
0xdb, 0x00, 0x00, 0x00, 0x42, 0xdd, 0x00, 0x00,
0x00, 0x25, 0x00, 0x00, 0x9c, 0x03, 0x1a, 0x04,
0x0d, 0x30, 0x49, 0x08, 0x0e, 0x42, 0x07, 0x01,
0x00, 0x01, 0x01, 0x01, 0x03, 0x00, 0x00, 0x30,
0x02, 0x80, 0x01, 0x00, 0x01, 0x00, 0x10, 0x00,
0x01, 0x00, 0x08, 0xc8, 0xc4, 0x41, 0xdb, 0x00,
0x00, 0x00, 0x97, 0x11, 0xea, 0x04, 0x0e, 0xd0,
0x97, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00,
0x11, 0x04, 0xde, 0x00, 0x00, 0x00, 0x21, 0x01,
0x00, 0x2f, 0xc4, 0x41, 0xdb, 0x00, 0x00, 0x00,
0x42, 0xdf, 0x00, 0x00, 0x00, 0xd0, 0x24, 0x01,
0x00, 0x29, 0x9c, 0x03, 0x21, 0x05, 0x0d, 0x4e,
0x49, 0x08, 0x4e, 0x0e, 0x42, 0x07, 0x01, 0x00,
0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x29, 0x01,
0x10, 0x00, 0x01, 0x00, 0x08, 0xc8, 0xc4, 0x41,
0xdb, 0x00, 0x00, 0x00, 0x97, 0xe9, 0x10, 0x38,
0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0xdc, 0x00,
0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0xc4, 0x41,
0xdb, 0x00, 0x00, 0x00, 0x42, 0xd5, 0x00, 0x00,
0x00, 0x24, 0x00, 0x00, 0x29, 0x9c, 0x03, 0x28,
0x05, 0x0d, 0x30, 0x49, 0x08, 0x49, 0x0e, 0x43,
0x06, 0x01, 0xa0, 0x03, 0x01, 0x00, 0x01, 0x03,
0x01, 0x00, 0x09, 0x01, 0xac, 0x03, 0x00, 0x01,
0x00, 0xa2, 0x03, 0x01, 0x08, 0x65, 0x00, 0x00,
0x11, 0xd0, 0x21, 0x01, 0x00, 0x28, 0x9c, 0x03,
0x30, 0x01, 0x03,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_dac.c | C | apache-2.0 | 5,274 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_device_size = 544;
const uint8_t jslib_device[544] = {
0x01, 0x12, 0x1a, 0x73, 0x72, 0x63, 0x2f, 0x64,
0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x6a, 0x73,
0x04, 0x6b, 0x76, 0x1a, 0x73, 0x65, 0x74, 0x44,
0x65, 0x76, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66,
0x6f, 0x10, 0x73, 0x65, 0x74, 0x54, 0x6f, 0x6b,
0x65, 0x6e, 0x10, 0x67, 0x65, 0x74, 0x54, 0x6f,
0x6b, 0x65, 0x6e, 0x04, 0x70, 0x6b, 0x04, 0x70,
0x73, 0x1c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
0x74, 0x6b, 0x65, 0x79, 0x5f, 0x6b, 0x65, 0x79,
0x22, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x5f, 0x6b,
0x65, 0x79, 0x22, 0x70, 0x61, 0x72, 0x61, 0x6d,
0x73, 0x20, 0x69, 0x73, 0x20, 0x69, 0x6e, 0x76,
0x61, 0x6c, 0x69, 0x64, 0x30, 0x5f, 0x61, 0x6d,
0x70, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e,
0x61, 0x6c, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75,
0x63, 0x74, 0x6b, 0x65, 0x79, 0x36, 0x5f, 0x61,
0x6d, 0x70, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72,
0x6e, 0x61, 0x6c, 0x5f, 0x70, 0x72, 0x6f, 0x64,
0x75, 0x63, 0x74, 0x73, 0x65, 0x63, 0x72, 0x65,
0x74, 0x1c, 0x73, 0x65, 0x74, 0x53, 0x74, 0x6f,
0x72, 0x61, 0x67, 0x65, 0x53, 0x79, 0x6e, 0x63,
0x0a, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x74,
0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x6b, 0x65, 0x79,
0x1c, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64,
0x20, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x22,
0x5f, 0x61, 0x6d, 0x70, 0x5f, 0x64, 0x65, 0x76,
0x69, 0x63, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65,
0x6e, 0x1c, 0x67, 0x65, 0x74, 0x53, 0x74, 0x6f,
0x72, 0x61, 0x67, 0x65, 0x53, 0x79, 0x6e, 0x63,
0x0f, 0x9c, 0x03, 0x01, 0x9e, 0x03, 0x03, 0x00,
0x01, 0xa0, 0x03, 0x00, 0x02, 0xa2, 0x03, 0x00,
0x03, 0xa4, 0x03, 0x00, 0x01, 0x00, 0xf8, 0x01,
0x00, 0x0e, 0x00, 0x06, 0x01, 0xa0, 0x01, 0x00,
0x00, 0x00, 0x01, 0x04, 0x03, 0x0a, 0x00, 0x9e,
0x03, 0x00, 0x0d, 0xa0, 0x03, 0x00, 0x01, 0xa2,
0x03, 0x01, 0x01, 0xa4, 0x03, 0x02, 0x01, 0xbf,
0x00, 0xe1, 0xbf, 0x01, 0xe2, 0xbf, 0x02, 0xe3,
0x29, 0x9c, 0x03, 0x01, 0x04, 0x01, 0x00, 0x09,
0x32, 0x0e, 0x43, 0x06, 0x01, 0xa0, 0x03, 0x02,
0x02, 0x02, 0x04, 0x01, 0x00, 0x41, 0x04, 0xa6,
0x03, 0x00, 0x01, 0x00, 0xa8, 0x03, 0x00, 0x01,
0x00, 0xaa, 0x03, 0x00, 0x00, 0x00, 0xac, 0x03,
0x00, 0x01, 0x00, 0x9e, 0x03, 0x00, 0x0c, 0xd0,
0x97, 0x11, 0xea, 0x04, 0x0e, 0xd1, 0x97, 0xe9,
0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04,
0xd7, 0x00, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f,
0x04, 0xd8, 0x00, 0x00, 0x00, 0xc8, 0x04, 0xd9,
0x00, 0x00, 0x00, 0xc9, 0x65, 0x00, 0x00, 0x42,
0xda, 0x00, 0x00, 0x00, 0xc4, 0xd0, 0x24, 0x02,
0x00, 0x0e, 0x65, 0x00, 0x00, 0x42, 0xda, 0x00,
0x00, 0x00, 0xc5, 0xd1, 0x24, 0x02, 0x00, 0x29,
0x9c, 0x03, 0x02, 0x08, 0x03, 0x35, 0x49, 0x09,
0x21, 0x22, 0x49, 0x44, 0x0e, 0x43, 0x06, 0x01,
0xa2, 0x03, 0x01, 0x01, 0x01, 0x04, 0x01, 0x00,
0x27, 0x02, 0xb6, 0x03, 0x00, 0x01, 0x00, 0xb8,
0x03, 0x00, 0x00, 0x00, 0x9e, 0x03, 0x00, 0x0c,
0xd0, 0x97, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00,
0x00, 0x11, 0x04, 0xdd, 0x00, 0x00, 0x00, 0x21,
0x01, 0x00, 0x2f, 0x04, 0xde, 0x00, 0x00, 0x00,
0xc8, 0x65, 0x00, 0x00, 0x42, 0xda, 0x00, 0x00,
0x00, 0xc4, 0xd0, 0x24, 0x02, 0x00, 0x29, 0x9c,
0x03, 0x0e, 0x06, 0x03, 0x17, 0x49, 0x09, 0x21,
0x44, 0x0e, 0x43, 0x06, 0x01, 0xa4, 0x03, 0x00,
0x00, 0x00, 0x03, 0x01, 0x00, 0x10, 0x00, 0x9e,
0x03, 0x00, 0x0c, 0x65, 0x00, 0x00, 0x42, 0xdf,
0x00, 0x00, 0x00, 0x04, 0xde, 0x00, 0x00, 0x00,
0x25, 0x01, 0x00, 0x9c, 0x03, 0x17, 0x01, 0x03,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_device.c | C | apache-2.0 | 3,497 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_ds18b20_size = 594;
const uint8_t jslib_ds18b20[594] = {
0x01, 0x12, 0x2e, 0x2e, 0x2e, 0x2f, 0x6a, 0x73,
0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x73, 0x2f,
0x64, 0x73, 0x31, 0x38, 0x62, 0x32, 0x30, 0x2e,
0x6a, 0x73, 0x0e, 0x6f, 0x6e, 0x65, 0x77, 0x69,
0x72, 0x65, 0x08, 0x69, 0x6e, 0x69, 0x74, 0x1c,
0x67, 0x65, 0x74, 0x54, 0x65, 0x6d, 0x70, 0x65,
0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x0c, 0x64,
0x65, 0x69, 0x6e, 0x69, 0x74, 0x14, 0x44, 0x53,
0x31, 0x38, 0x42, 0x32, 0x30, 0x44, 0x65, 0x76,
0x14, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x66,
0x6c, 0x61, 0x67, 0x0c, 0x67, 0x70, 0x69, 0x6f,
0x69, 0x64, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x04,
0x69, 0x64, 0x04, 0x54, 0x4c, 0x04, 0x54, 0x48,
0x06, 0x74, 0x65, 0x6d, 0x10, 0x73, 0x65, 0x74,
0x73, 0x70, 0x65, 0x65, 0x64, 0x0a, 0x72, 0x65,
0x73, 0x65, 0x74, 0x12, 0x77, 0x72, 0x69, 0x74,
0x65, 0x42, 0x79, 0x74, 0x65, 0x10, 0x72, 0x65,
0x61, 0x64, 0x42, 0x79, 0x74, 0x65, 0x0a, 0x63,
0x6c, 0x6f, 0x73, 0x65, 0x0f, 0x9c, 0x03, 0x01,
0x9e, 0x03, 0x03, 0x00, 0x03, 0xa0, 0x03, 0x00,
0x04, 0xa2, 0x03, 0x00, 0x05, 0xa4, 0x03, 0x00,
0x01, 0x00, 0xf8, 0x01, 0x00, 0x0e, 0x00, 0x06,
0x01, 0xa0, 0x01, 0x00, 0x00, 0x00, 0x01, 0x06,
0x03, 0x10, 0x00, 0x9e, 0x03, 0x00, 0x0d, 0xa6,
0x03, 0x00, 0x01, 0xa8, 0x03, 0x01, 0x01, 0xa0,
0x03, 0x02, 0x01, 0xa2, 0x03, 0x03, 0x01, 0xa4,
0x03, 0x04, 0x01, 0xbf, 0x00, 0xe3, 0xbf, 0x01,
0x5f, 0x04, 0x00, 0xbf, 0x02, 0x5f, 0x05, 0x00,
0xb4, 0xe2, 0x29, 0x9c, 0x03, 0x01, 0x08, 0x01,
0x00, 0x0d, 0x0e, 0x00, 0x02, 0xac, 0x01, 0x0e,
0x43, 0x06, 0x01, 0xa0, 0x03, 0x01, 0x00, 0x01,
0x04, 0x02, 0x00, 0x14, 0x01, 0xaa, 0x03, 0x00,
0x01, 0x00, 0xa6, 0x03, 0x01, 0x00, 0x9e, 0x03,
0x00, 0x0c, 0x65, 0x01, 0x00, 0x42, 0xd6, 0x00,
0x00, 0x00, 0x0b, 0xd0, 0x4c, 0xd7, 0x00, 0x00,
0x00, 0x24, 0x01, 0x00, 0xe0, 0x29, 0x9c, 0x03,
0x1a, 0x02, 0x03, 0x62, 0x0e, 0x43, 0x06, 0x01,
0xa2, 0x03, 0x00, 0x03, 0x00, 0x03, 0x02, 0x04,
0x9f, 0x01, 0x03, 0xb0, 0x03, 0x00, 0x00, 0x00,
0xb2, 0x03, 0x00, 0x01, 0x00, 0xb4, 0x03, 0x00,
0x02, 0x00, 0xa8, 0x03, 0x02, 0x00, 0xa6, 0x03,
0x01, 0x00, 0xdc, 0x97, 0xe9, 0x31, 0xdd, 0x42,
0xdb, 0x00, 0x00, 0x00, 0xb5, 0x24, 0x01, 0x00,
0x0e, 0xdd, 0x42, 0xdc, 0x00, 0x00, 0x00, 0x24,
0x00, 0x00, 0x0e, 0xdd, 0x42, 0xdd, 0x00, 0x00,
0x00, 0xbd, 0xcc, 0x00, 0x24, 0x01, 0x00, 0x0e,
0xdd, 0x42, 0xdd, 0x00, 0x00, 0x00, 0xbc, 0x44,
0x24, 0x01, 0x00, 0x0e, 0xb5, 0xe0, 0xdd, 0x42,
0xdc, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x0e,
0xdd, 0x42, 0xdd, 0x00, 0x00, 0x00, 0xbd, 0xcc,
0x00, 0x24, 0x01, 0x00, 0x0e, 0xdd, 0x42, 0xdd,
0x00, 0x00, 0x00, 0xbd, 0xbe, 0x00, 0x24, 0x01,
0x00, 0x0e, 0xdd, 0x42, 0xde, 0x00, 0x00, 0x00,
0x24, 0x00, 0x00, 0xc8, 0xdd, 0x42, 0xde, 0x00,
0x00, 0x00, 0x24, 0x00, 0x00, 0xcd, 0xbb, 0xa6,
0xe9, 0x1c, 0xc5, 0x96, 0xc9, 0xc4, 0x96, 0xc8,
0xc5, 0xce, 0xbc, 0x08, 0xa1, 0xce, 0xc4, 0x9e,
0xce, 0xbe, 0x00, 0x9b, 0xbc, 0x0a, 0x9b, 0xbe,
0x01, 0x9e, 0xce, 0x8d, 0x28, 0xc5, 0xce, 0xbc,
0x08, 0xa1, 0xce, 0xc4, 0x9e, 0xce, 0xbe, 0x02,
0x9b, 0xbc, 0x0a, 0x9b, 0xbe, 0x03, 0x9e, 0xce,
0x28, 0x9c, 0x03, 0x1f, 0x1f, 0x00, 0x00, 0x22,
0x18, 0x3a, 0x36, 0x44, 0x40, 0x00, 0x02, 0x08,
0x36, 0x44, 0x45, 0x35, 0x36, 0x18, 0x12, 0x12,
0x0d, 0x17, 0x12, 0x35, 0x09, 0x09, 0x0d, 0x17,
0x12, 0x00, 0x0a, 0x0a, 0x06, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0xb0, 0x3f, 0x06, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0xe0, 0x3f, 0x06, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x3f, 0x06,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x3f,
0x0e, 0x43, 0x06, 0x01, 0xa4, 0x03, 0x00, 0x00,
0x00, 0x02, 0x01, 0x00, 0x0a, 0x00, 0xa6, 0x03,
0x01, 0x00, 0xdc, 0x42, 0xdf, 0x00, 0x00, 0x00,
0x24, 0x00, 0x00, 0x29, 0x9c, 0x03, 0x5b, 0x02,
0x03, 0x30,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_ds18b20.c | C | apache-2.0 | 3,806 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_events_size = 5023;
const uint8_t jslib_events[5023] = {
0x01, 0x61, 0x1a, 0x73, 0x72, 0x63, 0x2f, 0x65,
0x76, 0x65, 0x6e, 0x74, 0x73, 0x2e, 0x6a, 0x73,
0x18, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x45, 0x6d,
0x69, 0x74, 0x74, 0x65, 0x72, 0x12, 0x73, 0x70,
0x6c, 0x69, 0x63, 0x65, 0x4f, 0x6e, 0x65, 0x26,
0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x4d,
0x61, 0x78, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e,
0x65, 0x72, 0x73, 0x20, 0x5f, 0x67, 0x65, 0x74,
0x4d, 0x61, 0x78, 0x4c, 0x69, 0x73, 0x74, 0x65,
0x6e, 0x65, 0x72, 0x73, 0x2a, 0x6c, 0x6f, 0x6e,
0x67, 0x65, 0x73, 0x74, 0x53, 0x65, 0x71, 0x43,
0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x64,
0x49, 0x6e, 0x22, 0x65, 0x6e, 0x68, 0x61, 0x6e,
0x63, 0x65, 0x53, 0x74, 0x61, 0x63, 0x6b, 0x54,
0x72, 0x61, 0x63, 0x65, 0x18, 0x5f, 0x61, 0x64,
0x64, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65,
0x72, 0x16, 0x6f, 0x6e, 0x63, 0x65, 0x57, 0x72,
0x61, 0x70, 0x70, 0x65, 0x72, 0x12, 0x5f, 0x6f,
0x6e, 0x63, 0x65, 0x57, 0x72, 0x61, 0x70, 0x14,
0x5f, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65,
0x72, 0x73, 0x1a, 0x6c, 0x69, 0x73, 0x74, 0x65,
0x6e, 0x65, 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74,
0x14, 0x61, 0x72, 0x72, 0x61, 0x79, 0x43, 0x6c,
0x6f, 0x6e, 0x65, 0x1e, 0x75, 0x6e, 0x77, 0x72,
0x61, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e,
0x65, 0x72, 0x73, 0x18, 0x75, 0x73, 0x69, 0x6e,
0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x73,
0x0e, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73,
0x18, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73,
0x43, 0x6f, 0x75, 0x6e, 0x74, 0x1a, 0x5f, 0x6d,
0x61, 0x78, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e,
0x65, 0x72, 0x73, 0x08, 0x69, 0x6e, 0x69, 0x74,
0x1e, 0x73, 0x65, 0x74, 0x4d, 0x61, 0x78, 0x4c,
0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x73,
0x1e, 0x67, 0x65, 0x74, 0x4d, 0x61, 0x78, 0x4c,
0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x73,
0x08, 0x65, 0x6d, 0x69, 0x74, 0x16, 0x61, 0x64,
0x64, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65,
0x72, 0x04, 0x6f, 0x6e, 0x1e, 0x70, 0x72, 0x65,
0x70, 0x65, 0x6e, 0x64, 0x4c, 0x69, 0x73, 0x74,
0x65, 0x6e, 0x65, 0x72, 0x08, 0x6f, 0x6e, 0x63,
0x65, 0x26, 0x70, 0x72, 0x65, 0x70, 0x65, 0x6e,
0x64, 0x4f, 0x6e, 0x63, 0x65, 0x4c, 0x69, 0x73,
0x74, 0x65, 0x6e, 0x65, 0x72, 0x1c, 0x72, 0x65,
0x6d, 0x6f, 0x76, 0x65, 0x4c, 0x69, 0x73, 0x74,
0x65, 0x6e, 0x65, 0x72, 0x06, 0x6f, 0x66, 0x66,
0x24, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x41,
0x6c, 0x6c, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e,
0x65, 0x72, 0x73, 0x12, 0x6c, 0x69, 0x73, 0x74,
0x65, 0x6e, 0x65, 0x72, 0x73, 0x18, 0x72, 0x61,
0x77, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65,
0x72, 0x73, 0x14, 0x65, 0x76, 0x65, 0x6e, 0x74,
0x4e, 0x61, 0x6d, 0x65, 0x73, 0x08, 0x63, 0x61,
0x6c, 0x6c, 0x06, 0x61, 0x72, 0x67, 0x0a, 0x69,
0x73, 0x4e, 0x61, 0x4e, 0x52, 0x64, 0x65, 0x66,
0x61, 0x75, 0x6c, 0x74, 0x4d, 0x61, 0x78, 0x4c,
0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x73,
0x3a, 0x61, 0x20, 0x6e, 0x6f, 0x6e, 0x2d, 0x6e,
0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x20,
0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x0c, 0x63,
0x72, 0x65, 0x61, 0x74, 0x65, 0x02, 0x6e, 0x08,
0x74, 0x68, 0x61, 0x74, 0x2a, 0x61, 0x20, 0x6e,
0x6f, 0x6e, 0x2d, 0x6e, 0x65, 0x67, 0x61, 0x74,
0x69, 0x76, 0x65, 0x20, 0x6e, 0x75, 0x6d, 0x62,
0x65, 0x72, 0x02, 0x61, 0x02, 0x62, 0x06, 0x6c,
0x65, 0x6e, 0x02, 0x69, 0x02, 0x6a, 0x0e, 0x6d,
0x61, 0x74, 0x63, 0x68, 0x65, 0x73, 0x02, 0x6b,
0x06, 0x65, 0x72, 0x72, 0x06, 0x6f, 0x77, 0x6e,
0x06, 0x73, 0x65, 0x70, 0x10, 0x65, 0x72, 0x72,
0x53, 0x74, 0x61, 0x63, 0x6b, 0x10, 0x6f, 0x77,
0x6e, 0x53, 0x74, 0x61, 0x63, 0x6b, 0x06, 0x73,
0x65, 0x71, 0x36, 0x0a, 0x45, 0x6d, 0x69, 0x74,
0x74, 0x65, 0x64, 0x20, 0x27, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x27, 0x20, 0x65, 0x76, 0x65, 0x6e,
0x74, 0x20, 0x61, 0x74, 0x3a, 0x0a, 0x02, 0x0a,
0x0a, 0x73, 0x6c, 0x69, 0x63, 0x65, 0x0c, 0x73,
0x70, 0x6c, 0x69, 0x63, 0x65, 0x62, 0x20, 0x20,
0x20, 0x20, 0x5b, 0x2e, 0x2e, 0x2e, 0x20, 0x6c,
0x69, 0x6e, 0x65, 0x73, 0x20, 0x6d, 0x61, 0x74,
0x63, 0x68, 0x69, 0x6e, 0x67, 0x20, 0x6f, 0x72,
0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x20, 0x73,
0x74, 0x61, 0x63, 0x6b, 0x20, 0x74, 0x72, 0x61,
0x63, 0x65, 0x20, 0x2e, 0x2e, 0x2e, 0x5d, 0x08,
0x74, 0x79, 0x70, 0x65, 0x0e, 0x64, 0x6f, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x0c, 0x65, 0x76, 0x65,
0x6e, 0x74, 0x73, 0x08, 0x61, 0x72, 0x67, 0x73,
0x04, 0x65, 0x72, 0x0e, 0x68, 0x61, 0x6e, 0x64,
0x6c, 0x65, 0x72, 0x0a, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x08, 0x70, 0x75, 0x73, 0x68, 0x1e, 0x75,
0x6e, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x64,
0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x10, 0x6c,
0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x0e,
0x70, 0x72, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x02,
0x6d, 0x10, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69,
0x6e, 0x67, 0x4c, 0x61, 0x64, 0x64, 0x4c, 0x69,
0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x20, 0x69,
0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x20, 0x61,
0x72, 0x67, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3a,
0x20, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
0x6e, 0x16, 0x6e, 0x65, 0x77, 0x4c, 0x69, 0x73,
0x74, 0x65, 0x6e, 0x65, 0x72, 0x0e, 0x75, 0x6e,
0x73, 0x68, 0x69, 0x66, 0x74, 0x0a, 0x66, 0x69,
0x72, 0x65, 0x64, 0x0c, 0x77, 0x72, 0x61, 0x70,
0x46, 0x6e, 0x0a, 0x73, 0x74, 0x61, 0x74, 0x65,
0x0e, 0x77, 0x72, 0x61, 0x70, 0x70, 0x65, 0x64,
0x08, 0x62, 0x69, 0x6e, 0x64, 0x32, 0x6c, 0x69,
0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x20, 0x69,
0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x20, 0x61,
0x72, 0x67, 0x20, 0x74, 0x79, 0x70, 0x65, 0x48,
0x70, 0x72, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x4f,
0x6e, 0x63, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x65,
0x6e, 0x65, 0x72, 0x20, 0x69, 0x6e, 0x76, 0x61,
0x6c, 0x69, 0x64, 0x20, 0x61, 0x72, 0x67, 0x20,
0x74, 0x79, 0x70, 0x65, 0x08, 0x6c, 0x69, 0x73,
0x74, 0x10, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69,
0x6f, 0x6e, 0x20, 0x6f, 0x72, 0x69, 0x67, 0x69,
0x6e, 0x61, 0x6c, 0x4c, 0x69, 0x73, 0x74, 0x65,
0x6e, 0x65, 0x72, 0x3e, 0x72, 0x65, 0x6d, 0x6f,
0x76, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e,
0x65, 0x72, 0x20, 0x69, 0x6e, 0x76, 0x61, 0x6c,
0x69, 0x64, 0x20, 0x61, 0x72, 0x67, 0x20, 0x74,
0x79, 0x70, 0x65, 0x0a, 0x73, 0x68, 0x69, 0x66,
0x74, 0x0e, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72,
0x65, 0x1a, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e,
0x61, 0x6c, 0x2f, 0x75, 0x74, 0x69, 0x6c, 0x08,
0x6b, 0x65, 0x79, 0x73, 0x06, 0x6b, 0x65, 0x79,
0x0c, 0x75, 0x6e, 0x77, 0x72, 0x61, 0x70, 0x14,
0x65, 0x76, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e,
0x65, 0x72, 0x0e, 0x65, 0x6d, 0x69, 0x74, 0x74,
0x65, 0x72, 0x06, 0x61, 0x72, 0x72, 0x08, 0x63,
0x6f, 0x70, 0x79, 0x06, 0x72, 0x65, 0x74, 0x0f,
0x9c, 0x03, 0x00, 0x01, 0x00, 0x01, 0x9e, 0x03,
0x00, 0x00, 0x0e, 0x00, 0x06, 0x01, 0xa0, 0x01,
0x00, 0x00, 0x00, 0x06, 0x0d, 0x1b, 0x8a, 0x03,
0x00, 0xa0, 0x03, 0x00, 0x01, 0x9e, 0x03, 0x01,
0x01, 0xa2, 0x03, 0x02, 0x01, 0xa4, 0x03, 0x03,
0x01, 0xa6, 0x03, 0x04, 0x01, 0xa8, 0x03, 0x05,
0x01, 0xaa, 0x03, 0x06, 0x01, 0xac, 0x03, 0x07,
0x01, 0xae, 0x03, 0x08, 0x01, 0xb0, 0x03, 0x09,
0x01, 0xb2, 0x03, 0x0a, 0x01, 0xb4, 0x03, 0x0b,
0x01, 0xb6, 0x03, 0x0c, 0x01, 0xbf, 0x00, 0xe1,
0xbf, 0x05, 0xe3, 0xbf, 0x07, 0x5f, 0x04, 0x00,
0xbf, 0x08, 0x5f, 0x05, 0x00, 0xbf, 0x0a, 0x5f,
0x06, 0x00, 0xbf, 0x0d, 0x5f, 0x07, 0x00, 0xbf,
0x0e, 0x5f, 0x08, 0x00, 0xbf, 0x13, 0x5f, 0x09,
0x00, 0xbf, 0x17, 0x5f, 0x0a, 0x00, 0xbf, 0x19,
0x5f, 0x0b, 0x00, 0xbf, 0x1a, 0x5f, 0x0c, 0x00,
0xdd, 0xdd, 0x43, 0xcf, 0x00, 0x00, 0x00, 0xdd,
0x09, 0x43, 0xdc, 0x00, 0x00, 0x00, 0xdd, 0x41,
0x3b, 0x00, 0x00, 0x00, 0x38, 0x45, 0x00, 0x00,
0x00, 0x43, 0xdd, 0x00, 0x00, 0x00, 0xdd, 0x41,
0x3b, 0x00, 0x00, 0x00, 0xb4, 0x43, 0xde, 0x00,
0x00, 0x00, 0xdd, 0x41, 0x3b, 0x00, 0x00, 0x00,
0x38, 0x45, 0x00, 0x00, 0x00, 0x43, 0xdf, 0x00,
0x00, 0x00, 0xbc, 0x0a, 0xe2, 0x38, 0x8b, 0x00,
0x00, 0x00, 0x42, 0x64, 0x00, 0x00, 0x00, 0xdd,
0x04, 0xd1, 0x00, 0x00, 0x00, 0x0b, 0x0a, 0x4c,
0x3f, 0x00, 0x00, 0x00, 0xbf, 0x01, 0x4d, 0x41,
0x00, 0x00, 0x00, 0x4c, 0x41, 0x00, 0x00, 0x00,
0xbf, 0x02, 0x4d, 0x42, 0x00, 0x00, 0x00, 0x4c,
0x42, 0x00, 0x00, 0x00, 0x24, 0x03, 0x00, 0x0e,
0xdd, 0xbf, 0x03, 0x43, 0xe0, 0x00, 0x00, 0x00,
0xdd, 0x41, 0x3b, 0x00, 0x00, 0x00, 0xbf, 0x04,
0x43, 0xe1, 0x00, 0x00, 0x00, 0xdd, 0x41, 0x3b,
0x00, 0x00, 0x00, 0xbf, 0x06, 0x43, 0xe2, 0x00,
0x00, 0x00, 0xdd, 0x41, 0x3b, 0x00, 0x00, 0x00,
0xbf, 0x09, 0x43, 0xe3, 0x00, 0x00, 0x00, 0xdd,
0x41, 0x3b, 0x00, 0x00, 0x00, 0xbf, 0x0b, 0x43,
0xe4, 0x00, 0x00, 0x00, 0xdd, 0x41, 0x3b, 0x00,
0x00, 0x00, 0xdd, 0x41, 0x3b, 0x00, 0x00, 0x00,
0x41, 0xe4, 0x00, 0x00, 0x00, 0x43, 0xe5, 0x00,
0x00, 0x00, 0xdd, 0x41, 0x3b, 0x00, 0x00, 0x00,
0xbf, 0x0c, 0x43, 0xe6, 0x00, 0x00, 0x00, 0xdd,
0x41, 0x3b, 0x00, 0x00, 0x00, 0xbf, 0x0f, 0x43,
0xe7, 0x00, 0x00, 0x00, 0xdd, 0x41, 0x3b, 0x00,
0x00, 0x00, 0xbf, 0x10, 0x43, 0xe8, 0x00, 0x00,
0x00, 0xdd, 0x41, 0x3b, 0x00, 0x00, 0x00, 0xbf,
0x11, 0x43, 0xe9, 0x00, 0x00, 0x00, 0xdd, 0x41,
0x3b, 0x00, 0x00, 0x00, 0xdd, 0x41, 0x3b, 0x00,
0x00, 0x00, 0x41, 0xe9, 0x00, 0x00, 0x00, 0x43,
0xea, 0x00, 0x00, 0x00, 0xdd, 0x41, 0x3b, 0x00,
0x00, 0x00, 0xbf, 0x12, 0x43, 0xeb, 0x00, 0x00,
0x00, 0xdd, 0x41, 0x3b, 0x00, 0x00, 0x00, 0xbf,
0x14, 0x43, 0xec, 0x00, 0x00, 0x00, 0xdd, 0x41,
0x3b, 0x00, 0x00, 0x00, 0xbf, 0x15, 0x43, 0xed,
0x00, 0x00, 0x00, 0xdd, 0xbf, 0x16, 0x43, 0xd9,
0x00, 0x00, 0x00, 0xdd, 0x41, 0x3b, 0x00, 0x00,
0x00, 0x5e, 0x0a, 0x00, 0x43, 0xd9, 0x00, 0x00,
0x00, 0xdd, 0x41, 0x3b, 0x00, 0x00, 0x00, 0xbf,
0x18, 0x43, 0xee, 0x00, 0x00, 0x00, 0x29, 0x9c,
0x03, 0x01, 0x4e, 0x01, 0x00, 0x33, 0x12, 0x27,
0x27, 0x53, 0x3f, 0x54, 0x13, 0x58, 0x23, 0x00,
0x0c, 0x0c, 0x3f, 0x18, 0x00, 0x01, 0x12, 0x27,
0x00, 0x06, 0x0e, 0x00, 0x07, 0x10, 0x22, 0x00,
0x07, 0x48, 0x00, 0x06, 0x4c, 0x00, 0x07, 0x52,
0x22, 0x27, 0x72, 0x23, 0x00, 0x07, 0x24, 0x00,
0x06, 0x0e, 0x27, 0x00, 0x06, 0x10, 0x27, 0x00,
0x06, 0x6e, 0x27, 0x72, 0x00, 0x06, 0x5e, 0x00,
0x07, 0x26, 0x22, 0x27, 0x22, 0x27, 0x00, 0x01,
0x0c, 0x27, 0x00, 0x0e, 0x22, 0x22, 0x00, 0x07,
0x22, 0x0e, 0x43, 0x06, 0x01, 0x9e, 0x03, 0x00,
0x01, 0x00, 0x03, 0x01, 0x00, 0x12, 0x01, 0x10,
0x00, 0x01, 0x00, 0x9e, 0x03, 0x01, 0x00, 0x08,
0xc8, 0xdc, 0x41, 0xe0, 0x00, 0x00, 0x00, 0x42,
0xef, 0x00, 0x00, 0x00, 0xc4, 0x24, 0x01, 0x00,
0x29, 0x9c, 0x03, 0x05, 0x02, 0x0d, 0x4e, 0x0e,
0x43, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01,
0x01, 0x00, 0x02, 0x00, 0xa2, 0x03, 0x02, 0x00,
0xdc, 0x28, 0x9c, 0x03, 0x15, 0x01, 0x03, 0x0e,
0x43, 0x06, 0x01, 0x00, 0x01, 0x00, 0x01, 0x03,
0x01, 0x00, 0x35, 0x01, 0xe0, 0x03, 0x00, 0x01,
0x00, 0xa2, 0x03, 0x02, 0x00, 0xd0, 0x98, 0x04,
0x46, 0x00, 0x00, 0x00, 0xad, 0x11, 0xea, 0x17,
0x0e, 0xd0, 0xb4, 0xa4, 0x11, 0xea, 0x10, 0x0e,
0x38, 0x8e, 0x00, 0x00, 0x00, 0x42, 0xf1, 0x00,
0x00, 0x00, 0xd0, 0x24, 0x01, 0x00, 0xe9, 0x10,
0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0xf2,
0x00, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0xd0,
0xe0, 0x29, 0x9c, 0x03, 0x18, 0x05, 0x03, 0xb2,
0x49, 0x08, 0x0d, 0x0e, 0x43, 0x06, 0x01, 0x00,
0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x5f, 0x01,
0x10, 0x00, 0x01, 0x00, 0x08, 0xc8, 0xc4, 0x41,
0xdd, 0x00, 0x00, 0x00, 0x38, 0x45, 0x00, 0x00,
0x00, 0xac, 0x11, 0xea, 0x1c, 0x0e, 0xc4, 0x41,
0xdd, 0x00, 0x00, 0x00, 0x38, 0x8b, 0x00, 0x00,
0x00, 0x42, 0x5e, 0x00, 0x00, 0x00, 0xc4, 0x24,
0x01, 0x00, 0x41, 0xdd, 0x00, 0x00, 0x00, 0xac,
0xe9, 0x1c, 0xc4, 0x38, 0x8b, 0x00, 0x00, 0x00,
0x42, 0xf3, 0x00, 0x00, 0x00, 0x07, 0x24, 0x01,
0x00, 0x43, 0xdd, 0x00, 0x00, 0x00, 0xc4, 0xb4,
0x43, 0xde, 0x00, 0x00, 0x00, 0xc4, 0xc4, 0x41,
0xdf, 0x00, 0x00, 0x00, 0x11, 0xea, 0x07, 0x0e,
0x38, 0x45, 0x00, 0x00, 0x00, 0x43, 0xdf, 0x00,
0x00, 0x00, 0x29, 0x9c, 0x03, 0x20, 0x06, 0x0e,
0x53, 0x8f, 0x67, 0x28, 0x6c, 0x0e, 0x43, 0x06,
0x01, 0xc2, 0x03, 0x01, 0x02, 0x01, 0x03, 0x00,
0x00, 0x3e, 0x03, 0xe8, 0x03, 0x00, 0x01, 0x00,
0xea, 0x03, 0x00, 0x00, 0x00, 0x10, 0x00, 0x01,
0x00, 0x08, 0xc9, 0xd0, 0x98, 0x04, 0x46, 0x00,
0x00, 0x00, 0xad, 0x11, 0xea, 0x17, 0x0e, 0xd0,
0xb4, 0xa4, 0x11, 0xea, 0x10, 0x0e, 0x38, 0x8e,
0x00, 0x00, 0x00, 0x42, 0xf1, 0x00, 0x00, 0x00,
0xd0, 0x24, 0x01, 0x00, 0xe9, 0x10, 0x38, 0x8d,
0x00, 0x00, 0x00, 0x11, 0x04, 0xf6, 0x00, 0x00,
0x00, 0x21, 0x01, 0x00, 0x2f, 0xc5, 0xd0, 0x43,
0xdf, 0x00, 0x00, 0x00, 0xc5, 0xcc, 0x28, 0x9c,
0x03, 0x2b, 0x06, 0x0d, 0xb2, 0x49, 0x08, 0x26,
0x0d, 0x0e, 0x43, 0x06, 0x01, 0xa4, 0x03, 0x01,
0x00, 0x01, 0x02, 0x01, 0x00, 0x1c, 0x01, 0xea,
0x03, 0x00, 0x01, 0x00, 0x9e, 0x03, 0x01, 0x00,
0xd0, 0x41, 0xdf, 0x00, 0x00, 0x00, 0x38, 0x45,
0x00, 0x00, 0x00, 0xac, 0xe9, 0x08, 0xdc, 0x41,
0xd1, 0x00, 0x00, 0x00, 0x28, 0xd0, 0x41, 0xdf,
0x00, 0x00, 0x00, 0x28, 0x9c, 0x03, 0x34, 0x03,
0x03, 0x49, 0x26, 0x0e, 0x43, 0x06, 0x01, 0xc4,
0x03, 0x00, 0x01, 0x00, 0x02, 0x01, 0x00, 0x07,
0x01, 0x10, 0x00, 0x01, 0x00, 0xa4, 0x03, 0x03,
0x00, 0x08, 0xc8, 0xdc, 0xc4, 0x23, 0x01, 0x00,
0x9c, 0x03, 0x3a, 0x01, 0x0d, 0x0e, 0x43, 0x06,
0x01, 0xa6, 0x03, 0x02, 0x05, 0x02, 0x04, 0x00,
0x00, 0x5b, 0x07, 0xee, 0x03, 0x00, 0x01, 0x00,
0xf0, 0x03, 0x00, 0x01, 0x00, 0xf2, 0x03, 0x00,
0x00, 0x00, 0xf4, 0x03, 0x00, 0x01, 0x00, 0xf6,
0x03, 0x00, 0x02, 0x00, 0xf8, 0x03, 0x00, 0x03,
0x00, 0xfa, 0x03, 0x00, 0x04, 0x00, 0xd0, 0xe8,
0xc8, 0xc4, 0xb7, 0xa7, 0xe9, 0x4d, 0xb4, 0xc9,
0xc5, 0xd0, 0xe8, 0xc4, 0x9f, 0xa4, 0xe9, 0x3f,
0xb4, 0xca, 0xc6, 0xd1, 0xe8, 0xc4, 0x9f, 0xa4,
0xe9, 0x31, 0x0a, 0xcb, 0xb4, 0xc2, 0x04, 0xc1,
0x04, 0xc4, 0xa4, 0xe9, 0x18, 0xd0, 0xc5, 0xc1,
0x04, 0x9e, 0x47, 0xd1, 0xc6, 0xc1, 0x04, 0x9e,
0x47, 0xad, 0xe9, 0x05, 0x09, 0xcb, 0xeb, 0x05,
0x94, 0x04, 0xeb, 0xe4, 0xc7, 0xe9, 0x08, 0xc4,
0xc5, 0xc6, 0x26, 0x03, 0x00, 0x28, 0x94, 0x02,
0xeb, 0xc9, 0x94, 0x01, 0xeb, 0xbb, 0x93, 0x00,
0xeb, 0xb0, 0xb4, 0xb4, 0xb4, 0x26, 0x03, 0x00,
0x28, 0x9c, 0x03, 0x3e, 0x0f, 0x03, 0x2b, 0x35,
0x35, 0x0d, 0x30, 0x4e, 0x0d, 0x0e, 0x17, 0x12,
0x26, 0x17, 0x17, 0x18, 0x0e, 0x43, 0x06, 0x01,
0xa8, 0x03, 0x02, 0x04, 0x02, 0x05, 0x01, 0x00,
0x8b, 0x01, 0x06, 0xfc, 0x03, 0x00, 0x01, 0x00,
0xfe, 0x03, 0x00, 0x01, 0x00, 0x80, 0x04, 0x00,
0x00, 0x00, 0x82, 0x04, 0x00, 0x01, 0x00, 0x84,
0x04, 0x00, 0x02, 0x00, 0x86, 0x04, 0x00, 0x03,
0x00, 0xa6, 0x03, 0x04, 0x00, 0x04, 0x04, 0x01,
0x00, 0x00, 0xc8, 0xd0, 0x41, 0x35, 0x00, 0x00,
0x00, 0x42, 0x5c, 0x00, 0x00, 0x00, 0x04, 0x05,
0x01, 0x00, 0x00, 0x24, 0x01, 0x00, 0x42, 0x06,
0x01, 0x00, 0x00, 0xb5, 0x24, 0x01, 0x00, 0xc9,
0xd1, 0x41, 0x35, 0x00, 0x00, 0x00, 0x42, 0x5c,
0x00, 0x00, 0x00, 0x04, 0x05, 0x01, 0x00, 0x00,
0x24, 0x01, 0x00, 0x42, 0x06, 0x01, 0x00, 0x00,
0xb5, 0x24, 0x01, 0x00, 0xca, 0xdc, 0xc6, 0xc5,
0xef, 0xcf, 0x41, 0xf9, 0x00, 0x00, 0x00, 0xb4,
0xa6, 0xe9, 0x20, 0xc6, 0x42, 0x07, 0x01, 0x00,
0x00, 0xc7, 0x41, 0xea, 0x00, 0x00, 0x00, 0xb5,
0x9e, 0xc7, 0x41, 0xf9, 0x00, 0x00, 0x00, 0xb5,
0x9f, 0x04, 0x08, 0x01, 0x00, 0x00, 0x24, 0x03,
0x00, 0x0e, 0xd0, 0xd0, 0x41, 0x35, 0x00, 0x00,
0x00, 0xc4, 0x9e, 0xc6, 0x42, 0x5a, 0x00, 0x00,
0x00, 0x04, 0x05, 0x01, 0x00, 0x00, 0x24, 0x01,
0x00, 0x9e, 0x43, 0x35, 0x00, 0x00, 0x00, 0x29,
0x9c, 0x03, 0x52, 0x09, 0x03, 0x22, 0x94, 0x95,
0x1c, 0x30, 0x8a, 0x18, 0x94, 0x0e, 0x43, 0x06,
0x01, 0xc6, 0x03, 0x01, 0x0a, 0x01, 0x05, 0x01,
0x00, 0xf3, 0x01, 0x0b, 0x92, 0x04, 0x00, 0x01,
0x00, 0x94, 0x04, 0x00, 0x00, 0x00, 0x96, 0x04,
0x00, 0x01, 0x00, 0x98, 0x04, 0x00, 0x02, 0x00,
0xf4, 0x03, 0x00, 0x03, 0x00, 0xf2, 0x03, 0x00,
0x04, 0x00, 0x9a, 0x04, 0x00, 0x05, 0x00, 0x9c,
0x04, 0x00, 0x06, 0x00, 0xd8, 0x03, 0x00, 0x07,
0x00, 0x10, 0x00, 0x01, 0x00, 0x9a, 0x01, 0x00,
0x01, 0x00, 0xb4, 0x03, 0x0b, 0x00, 0x08, 0xc2,
0x08, 0x0c, 0x00, 0xc2, 0x09, 0xd0, 0x04, 0x0f,
0x01, 0x00, 0x00, 0xac, 0xc8, 0xc1, 0x08, 0x41,
0xdd, 0x00, 0x00, 0x00, 0xcd, 0x38, 0x45, 0x00,
0x00, 0x00, 0xad, 0xe9, 0x15, 0xc4, 0x11, 0xe9,
0x0e, 0x0e, 0xc5, 0x41, 0x0f, 0x01, 0x00, 0x00,
0x38, 0x45, 0x00, 0x00, 0x00, 0xac, 0xc8, 0xeb,
0x07, 0xc4, 0x97, 0xe9, 0x03, 0x09, 0x28, 0x26,
0x00, 0x00, 0xca, 0xb5, 0xcb, 0xc1, 0x09, 0xe8,
0xc2, 0x04, 0xc7, 0xc1, 0x04, 0xa4, 0xe9, 0x13,
0xc6, 0x42, 0x10, 0x01, 0x00, 0x00, 0xc1, 0x09,
0xc7, 0x47, 0x24, 0x01, 0x00, 0x0e, 0x94, 0x03,
0xeb, 0xe9, 0xc4, 0xe9, 0x28, 0xc6, 0xe8, 0xb4,
0xa6, 0xe9, 0x06, 0xc6, 0xb4, 0x47, 0xc2, 0x05,
0xc1, 0x05, 0x38, 0x8d, 0x00, 0x00, 0x00, 0xa8,
0xe9, 0x04, 0xc1, 0x05, 0x2f, 0x38, 0x8d, 0x00,
0x00, 0x00, 0x11, 0x04, 0x11, 0x01, 0x00, 0x00,
0x21, 0x01, 0x00, 0x2f, 0xc5, 0xd0, 0x47, 0xc3,
0x06, 0x38, 0x45, 0x00, 0x00, 0x00, 0xac, 0xe9,
0x03, 0x09, 0x28, 0xc1, 0x06, 0xf3, 0xe9, 0x20,
0x38, 0x96, 0x00, 0x00, 0x00, 0x41, 0x3b, 0x00,
0x00, 0x00, 0x41, 0x59, 0x00, 0x00, 0x00, 0x42,
0xef, 0x00, 0x00, 0x00, 0xc1, 0x06, 0xc1, 0x08,
0xc6, 0x24, 0x03, 0x00, 0x0e, 0xeb, 0x39, 0xc1,
0x06, 0xe8, 0xc2, 0x04, 0xdc, 0xc1, 0x06, 0xc1,
0x04, 0xef, 0xc2, 0x07, 0xb4, 0xcb, 0xc7, 0xc1,
0x04, 0xa4, 0xe9, 0x24, 0x38, 0x96, 0x00, 0x00,
0x00, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x41, 0x59,
0x00, 0x00, 0x00, 0x42, 0xef, 0x00, 0x00, 0x00,
0xc1, 0x07, 0xc7, 0x47, 0xc1, 0x08, 0xc6, 0x24,
0x03, 0x00, 0x0e, 0x94, 0x03, 0xeb, 0xd8, 0x0a,
0x28, 0x9c, 0x03, 0x60, 0x1d, 0x26, 0x2c, 0x2b,
0x2b, 0x67, 0x17, 0x0e, 0x17, 0x44, 0x49, 0x17,
0x13, 0x21, 0x1c, 0x35, 0x0d, 0x08, 0x49, 0x09,
0x1d, 0x2b, 0x0e, 0x1c, 0x94, 0x0d, 0x1c, 0x2b,
0x2b, 0xb4, 0x0e, 0x43, 0x06, 0x01, 0xaa, 0x03,
0x04, 0x03, 0x04, 0x05, 0x00, 0x00, 0xd1, 0x01,
0x07, 0xaa, 0x01, 0x00, 0x01, 0x00, 0x92, 0x04,
0x00, 0x01, 0x00, 0xa4, 0x04, 0x00, 0x01, 0x00,
0xa6, 0x04, 0x00, 0x01, 0x00, 0xa8, 0x04, 0x00,
0x00, 0x00, 0x96, 0x04, 0x00, 0x01, 0x00, 0xaa,
0x04, 0x00, 0x02, 0x00, 0xd2, 0xf3, 0xea, 0x10,
0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0x16,
0x01, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0xd0,
0x41, 0xdd, 0x00, 0x00, 0x00, 0xcd, 0x38, 0x45,
0x00, 0x00, 0x00, 0xac, 0xe9, 0x20, 0xd0, 0x38,
0x8b, 0x00, 0x00, 0x00, 0x42, 0xf3, 0x00, 0x00,
0x00, 0x07, 0x24, 0x01, 0x00, 0x15, 0x43, 0xdd,
0x00, 0x00, 0x00, 0xc9, 0xd0, 0xb4, 0x43, 0xde,
0x00, 0x00, 0x00, 0xeb, 0x3b, 0xc5, 0x41, 0x17,
0x01, 0x00, 0x00, 0x38, 0x45, 0x00, 0x00, 0x00,
0xad, 0xe9, 0x29, 0xd0, 0x42, 0xe3, 0x00, 0x00,
0x00, 0x04, 0x17, 0x01, 0x00, 0x00, 0xd1, 0xd2,
0x41, 0x12, 0x01, 0x00, 0x00, 0xe9, 0x09, 0xd2,
0x41, 0x12, 0x01, 0x00, 0x00, 0xeb, 0x02, 0xd2,
0x24, 0x03, 0x00, 0x0e, 0xd0, 0x41, 0xdd, 0x00,
0x00, 0x00, 0xc9, 0xc5, 0xd1, 0x47, 0xca, 0xc6,
0x38, 0x45, 0x00, 0x00, 0x00, 0xac, 0xe9, 0x16,
0xc5, 0xd1, 0x71, 0xd2, 0x16, 0x49, 0xca, 0xd0,
0x42, 0xde, 0x00, 0x00, 0x00, 0x90, 0x43, 0xde,
0x00, 0x00, 0x00, 0xeb, 0x37, 0xc6, 0xf3, 0xe9,
0x18, 0xc5, 0xd1, 0x71, 0xd3, 0xe9, 0x08, 0xd2,
0xc6, 0x26, 0x02, 0x00, 0xeb, 0x06, 0xc6, 0xd2,
0x26, 0x02, 0x00, 0x16, 0x49, 0xca, 0xeb, 0x1c,
0xd3, 0xe9, 0x0e, 0xc6, 0x42, 0x18, 0x01, 0x00,
0x00, 0xd2, 0x24, 0x01, 0x00, 0x0e, 0xeb, 0x0c,
0xc6, 0x42, 0x10, 0x01, 0x00, 0x00, 0xd2, 0x24,
0x01, 0x00, 0x0e, 0xd0, 0x28, 0x9c, 0x03, 0x88,
0x01, 0x1d, 0x00, 0x00, 0x0a, 0x17, 0x49, 0x09,
0x26, 0x2b, 0x71, 0x26, 0x0d, 0x49, 0x3f, 0x6c,
0x27, 0x19, 0x30, 0x26, 0x3f, 0x0d, 0x17, 0x12,
0x5d, 0x1c, 0x3a, 0x0d, 0x00, 0x0b, 0x08, 0x0e,
0x43, 0x06, 0x01, 0xc8, 0x03, 0x02, 0x01, 0x02,
0x05, 0x01, 0x00, 0x0a, 0x03, 0x92, 0x04, 0x00,
0x01, 0x00, 0xa4, 0x04, 0x00, 0x01, 0x00, 0x10,
0x00, 0x01, 0x00, 0xaa, 0x03, 0x06, 0x00, 0x08,
0xc8, 0xdc, 0xc4, 0xd0, 0xd1, 0x09, 0x23, 0x04,
0x00, 0x9c, 0x03, 0xaf, 0x01, 0x01, 0x0d, 0x0e,
0x43, 0x06, 0x01, 0xcc, 0x03, 0x02, 0x01, 0x02,
0x05, 0x01, 0x00, 0x0a, 0x03, 0x92, 0x04, 0x00,
0x01, 0x00, 0xa4, 0x04, 0x00, 0x01, 0x00, 0x10,
0x00, 0x01, 0x00, 0xaa, 0x03, 0x06, 0x00, 0x08,
0xc8, 0xdc, 0xc4, 0xd0, 0xd1, 0x0a, 0x23, 0x04,
0x00, 0x9c, 0x03, 0xb6, 0x01, 0x01, 0x0d, 0x0e,
0x43, 0x06, 0x01, 0xac, 0x03, 0x00, 0x02, 0x00,
0x05, 0x00, 0x00, 0x56, 0x02, 0x10, 0x00, 0x01,
0x00, 0x9a, 0x01, 0x00, 0x01, 0x00, 0x08, 0xc8,
0x0c, 0x00, 0xc9, 0xc4, 0x41, 0x19, 0x01, 0x00,
0x00, 0x97, 0xe9, 0x48, 0xc4, 0x41, 0x55, 0x00,
0x00, 0x00, 0x42, 0xe9, 0x00, 0x00, 0x00, 0xc4,
0x41, 0x09, 0x01, 0x00, 0x00, 0xc4, 0x41, 0x1a,
0x01, 0x00, 0x00, 0x24, 0x02, 0x00, 0x0e, 0xc4,
0x0a, 0x43, 0x19, 0x01, 0x00, 0x00, 0x38, 0x96,
0x00, 0x00, 0x00, 0x41, 0x3b, 0x00, 0x00, 0x00,
0x41, 0x59, 0x00, 0x00, 0x00, 0x42, 0xef, 0x00,
0x00, 0x00, 0xc4, 0x41, 0x12, 0x01, 0x00, 0x00,
0xc4, 0x41, 0x55, 0x00, 0x00, 0x00, 0xc5, 0x24,
0x03, 0x00, 0x0e, 0x29, 0x9c, 0x03, 0xba, 0x01,
0x05, 0x1c, 0x30, 0x8a, 0x26, 0xbd, 0x0e, 0x43,
0x06, 0x01, 0xae, 0x03, 0x03, 0x02, 0x03, 0x03,
0x01, 0x00, 0x3e, 0x05, 0xaa, 0x01, 0x00, 0x01,
0x00, 0x92, 0x04, 0x00, 0x01, 0x00, 0xa4, 0x04,
0x00, 0x01, 0x00, 0xb6, 0x04, 0x00, 0x00, 0x00,
0xb8, 0x04, 0x00, 0x01, 0x00, 0xac, 0x03, 0x07,
0x00, 0x0b, 0x09, 0x4c, 0x19, 0x01, 0x00, 0x00,
0x38, 0x45, 0x00, 0x00, 0x00, 0x4c, 0x1a, 0x01,
0x00, 0x00, 0xd0, 0x4c, 0x55, 0x00, 0x00, 0x00,
0xd1, 0x4c, 0x09, 0x01, 0x00, 0x00, 0xd2, 0x4c,
0x12, 0x01, 0x00, 0x00, 0xc8, 0xdc, 0x42, 0x1d,
0x01, 0x00, 0x00, 0xc4, 0x24, 0x01, 0x00, 0xcd,
0xd2, 0x43, 0x12, 0x01, 0x00, 0x00, 0xc4, 0xc5,
0x43, 0x1a, 0x01, 0x00, 0x00, 0xc5, 0x28, 0x9c,
0x03, 0xc2, 0x01, 0x05, 0x03, 0xb7, 0x3a, 0x21,
0x26, 0x0e, 0x43, 0x06, 0x01, 0xce, 0x03, 0x02,
0x02, 0x02, 0x07, 0x01, 0x00, 0x28, 0x04, 0x92,
0x04, 0x00, 0x01, 0x00, 0xa4, 0x04, 0x00, 0x01,
0x00, 0xea, 0x03, 0x00, 0x00, 0x00, 0x10, 0x00,
0x01, 0x00, 0xae, 0x03, 0x08, 0x00, 0x08, 0xc9,
0xd1, 0xf3, 0xea, 0x10, 0x38, 0x8d, 0x00, 0x00,
0x00, 0x11, 0x04, 0x1e, 0x01, 0x00, 0x00, 0x21,
0x01, 0x00, 0x2f, 0xc5, 0x42, 0xe5, 0x00, 0x00,
0x00, 0xd0, 0xdc, 0xc5, 0xd0, 0xd1, 0xf0, 0x24,
0x02, 0x00, 0x0e, 0xc5, 0xcc, 0x28, 0x9c, 0x03,
0xca, 0x01, 0x06, 0x0d, 0x17, 0x49, 0x08, 0x53,
0x0d, 0x0e, 0x43, 0x06, 0x01, 0xd0, 0x03, 0x02,
0x02, 0x02, 0x07, 0x01, 0x00, 0x28, 0x04, 0x92,
0x04, 0x00, 0x01, 0x00, 0xa4, 0x04, 0x00, 0x01,
0x00, 0xea, 0x03, 0x00, 0x00, 0x00, 0x10, 0x00,
0x01, 0x00, 0xae, 0x03, 0x08, 0x00, 0x08, 0xc9,
0xd1, 0xf3, 0xea, 0x10, 0x38, 0x8d, 0x00, 0x00,
0x00, 0x11, 0x04, 0x1f, 0x01, 0x00, 0x00, 0x21,
0x01, 0x00, 0x2f, 0xc5, 0x42, 0xe6, 0x00, 0x00,
0x00, 0xd0, 0xdc, 0xc5, 0xd0, 0xd1, 0xf0, 0x24,
0x02, 0x00, 0x0e, 0xc5, 0xcc, 0x28, 0x9c, 0x03,
0xd4, 0x01, 0x06, 0x0d, 0x17, 0x49, 0x08, 0x53,
0x0d, 0x0e, 0x43, 0x06, 0x01, 0xd2, 0x03, 0x02,
0x07, 0x02, 0x06, 0x01, 0x00, 0xcd, 0x02, 0x09,
0x92, 0x04, 0x00, 0x01, 0x00, 0xa4, 0x04, 0x00,
0x01, 0x00, 0xc0, 0x04, 0x00, 0x00, 0x00, 0x96,
0x04, 0x00, 0x01, 0x00, 0xc2, 0x04, 0x00, 0x02,
0x00, 0xf4, 0x03, 0x00, 0x03, 0x00, 0xc4, 0x04,
0x00, 0x04, 0x00, 0xea, 0x03, 0x00, 0x05, 0x00,
0x10, 0x00, 0x01, 0x00, 0xa0, 0x03, 0x00, 0x00,
0x08, 0xc2, 0x06, 0xc1, 0x06, 0xc2, 0x05, 0xd1,
0xf3, 0xea, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00,
0x11, 0x04, 0x23, 0x01, 0x00, 0x00, 0x21, 0x01,
0x00, 0x2f, 0xc1, 0x06, 0x41, 0xdd, 0x00, 0x00,
0x00, 0xcd, 0x38, 0x45, 0x00, 0x00, 0x00, 0xac,
0xe9, 0x04, 0xc1, 0x05, 0x28, 0xc5, 0xd0, 0x47,
0xcc, 0x38, 0x45, 0x00, 0x00, 0x00, 0xac, 0xe9,
0x04, 0xc1, 0x05, 0x28, 0xc4, 0xd1, 0xac, 0x11,
0xea, 0x0a, 0x0e, 0xc4, 0x41, 0x12, 0x01, 0x00,
0x00, 0xd1, 0xac, 0xe9, 0x59, 0xc1, 0x06, 0x42,
0xde, 0x00, 0x00, 0x00, 0x8f, 0x15, 0x43, 0xde,
0x00, 0x00, 0x00, 0xb4, 0xac, 0xe9, 0x19, 0xc1,
0x06, 0x38, 0x8b, 0x00, 0x00, 0x00, 0x42, 0xf3,
0x00, 0x00, 0x00, 0x07, 0x24, 0x01, 0x00, 0x43,
0xdd, 0x00, 0x00, 0x00, 0xec, 0xd5, 0x00, 0xc5,
0xd0, 0x99, 0x0e, 0xc5, 0x41, 0xe9, 0x00, 0x00,
0x00, 0x69, 0xc8, 0x00, 0x00, 0x00, 0xc1, 0x06,
0x42, 0xe3, 0x00, 0x00, 0x00, 0x04, 0xe9, 0x00,
0x00, 0x00, 0xd0, 0xc4, 0x41, 0x12, 0x01, 0x00,
0x00, 0x11, 0xea, 0x03, 0x0e, 0xd1, 0x24, 0x03,
0x00, 0x0e, 0xec, 0xa7, 0x00, 0xc4, 0xf3, 0x6a,
0xa2, 0x00, 0x00, 0x00, 0xb3, 0xca, 0xc4, 0xe8,
0xb5, 0x9f, 0xcb, 0xc7, 0xb4, 0xa7, 0xe9, 0x28,
0xc4, 0xc7, 0x47, 0xd1, 0xac, 0x11, 0xea, 0x0c,
0x0e, 0xc4, 0xc7, 0x47, 0x41, 0x12, 0x01, 0x00,
0x00, 0xd1, 0xac, 0xe9, 0x0f, 0xc4, 0xc7, 0x47,
0x41, 0x12, 0x01, 0x00, 0x00, 0xc2, 0x04, 0xc7,
0xca, 0xeb, 0x05, 0x93, 0x03, 0xeb, 0xd5, 0xc6,
0xb4, 0xa4, 0xe9, 0x04, 0xc1, 0x05, 0x28, 0xc6,
0xb4, 0xac, 0xe9, 0x0d, 0xc4, 0x42, 0x24, 0x01,
0x00, 0x00, 0x24, 0x00, 0x00, 0x0e, 0xeb, 0x20,
0xdc, 0x38, 0x45, 0x00, 0x00, 0x00, 0xac, 0xe9,
0x12, 0x38, 0x25, 0x01, 0x00, 0x00, 0x04, 0x26,
0x01, 0x00, 0x00, 0xee, 0x41, 0xd0, 0x00, 0x00,
0x00, 0xe0, 0xdc, 0xc4, 0xc6, 0xef, 0x0e, 0xc4,
0xe8, 0xb5, 0xac, 0xe9, 0x08, 0xc5, 0xd0, 0x71,
0xc4, 0xb4, 0x47, 0x49, 0xc5, 0x41, 0xe9, 0x00,
0x00, 0x00, 0x38, 0x45, 0x00, 0x00, 0x00, 0xad,
0xe9, 0x19, 0xc1, 0x06, 0x42, 0xe3, 0x00, 0x00,
0x00, 0x04, 0xe9, 0x00, 0x00, 0x00, 0xd0, 0xc1,
0x04, 0x11, 0xea, 0x03, 0x0e, 0xd1, 0x24, 0x03,
0x00, 0x0e, 0xc1, 0x05, 0x28, 0x9c, 0x03, 0xde,
0x01, 0x24, 0x13, 0x18, 0x17, 0x49, 0x09, 0x2b,
0x2b, 0x13, 0x17, 0x2b, 0x13, 0x58, 0x5d, 0x7c,
0x17, 0x3a, 0x90, 0x35, 0x0e, 0x35, 0x6c, 0x35,
0x0d, 0x0e, 0x18, 0x1c, 0x13, 0x1c, 0x40, 0x30,
0x58, 0x1e, 0x21, 0x27, 0x49, 0x7d, 0x0e, 0x43,
0x06, 0x01, 0xd6, 0x03, 0x01, 0x08, 0x01, 0x05,
0x00, 0x00, 0xb6, 0x02, 0x09, 0x92, 0x04, 0x00,
0x01, 0x00, 0xd8, 0x03, 0x00, 0x00, 0x00, 0x96,
0x04, 0x00, 0x01, 0x00, 0xf4, 0x03, 0x00, 0x02,
0x00, 0xea, 0x03, 0x00, 0x03, 0x00, 0xce, 0x04,
0x00, 0x04, 0x00, 0xd0, 0x04, 0x00, 0x05, 0x00,
0x10, 0x00, 0x01, 0x00, 0x9a, 0x01, 0x00, 0x01,
0x00, 0x08, 0xc2, 0x06, 0x0c, 0x00, 0xc2, 0x07,
0xc1, 0x06, 0xcb, 0xc1, 0x06, 0x41, 0xdd, 0x00,
0x00, 0x00, 0xcd, 0x38, 0x45, 0x00, 0x00, 0x00,
0xac, 0xe9, 0x03, 0xc7, 0x28, 0xc5, 0x41, 0xe9,
0x00, 0x00, 0x00, 0x38, 0x45, 0x00, 0x00, 0x00,
0xac, 0xe9, 0x61, 0xc1, 0x07, 0xe8, 0xb4, 0xac,
0xe9, 0x20, 0xc1, 0x06, 0x38, 0x8b, 0x00, 0x00,
0x00, 0x42, 0xf3, 0x00, 0x00, 0x00, 0x07, 0x24,
0x01, 0x00, 0x43, 0xdd, 0x00, 0x00, 0x00, 0xc1,
0x06, 0xb4, 0x43, 0xde, 0x00, 0x00, 0x00, 0xeb,
0x39, 0xc5, 0xd0, 0x47, 0x38, 0x45, 0x00, 0x00,
0x00, 0xad, 0xe9, 0x2e, 0xc1, 0x06, 0x42, 0xde,
0x00, 0x00, 0x00, 0x8f, 0x15, 0x43, 0xde, 0x00,
0x00, 0x00, 0xb4, 0xac, 0xe9, 0x18, 0xc1, 0x06,
0x38, 0x8b, 0x00, 0x00, 0x00, 0x42, 0xf3, 0x00,
0x00, 0x00, 0x07, 0x24, 0x01, 0x00, 0x43, 0xdd,
0x00, 0x00, 0x00, 0xeb, 0x05, 0xc5, 0xd0, 0x99,
0x0e, 0xc7, 0x28, 0xc1, 0x07, 0xe8, 0xb4, 0xac,
0xe9, 0x68, 0x38, 0x8b, 0x00, 0x00, 0x00, 0x42,
0x27, 0x01, 0x00, 0x00, 0xc5, 0x24, 0x01, 0x00,
0xc2, 0x04, 0xb4, 0xca, 0xc6, 0xc1, 0x04, 0xe8,
0xa4, 0xe9, 0x20, 0xc1, 0x04, 0xc6, 0x47, 0xc3,
0x05, 0x04, 0xe9, 0x00, 0x00, 0x00, 0xac, 0xea,
0x0e, 0xc1, 0x06, 0x42, 0xeb, 0x00, 0x00, 0x00,
0xc1, 0x05, 0x24, 0x01, 0x00, 0x0e, 0x94, 0x02,
0xeb, 0xdb, 0xc1, 0x06, 0x42, 0xeb, 0x00, 0x00,
0x00, 0x04, 0xe9, 0x00, 0x00, 0x00, 0x24, 0x01,
0x00, 0x0e, 0xc1, 0x06, 0x38, 0x8b, 0x00, 0x00,
0x00, 0x42, 0xf3, 0x00, 0x00, 0x00, 0x07, 0x24,
0x01, 0x00, 0x43, 0xdd, 0x00, 0x00, 0x00, 0xc1,
0x06, 0xb4, 0x43, 0xde, 0x00, 0x00, 0x00, 0xc7,
0x28, 0xc5, 0xd0, 0x47, 0xcc, 0xf3, 0xe9, 0x10,
0xc1, 0x06, 0x42, 0xe9, 0x00, 0x00, 0x00, 0xd0,
0xc4, 0x24, 0x02, 0x00, 0x0e, 0xeb, 0x27, 0xc4,
0x38, 0x45, 0x00, 0x00, 0x00, 0xad, 0xe9, 0x1e,
0xc4, 0xe8, 0xb5, 0x9f, 0xca, 0xc6, 0xb4, 0xa7,
0xe9, 0x14, 0xc1, 0x06, 0x42, 0xe9, 0x00, 0x00,
0x00, 0xd0, 0xc4, 0xc6, 0x47, 0x24, 0x02, 0x00,
0x0e, 0x93, 0x02, 0xeb, 0xe9, 0xc7, 0x28, 0x9c,
0x03, 0x99, 0x02, 0x22, 0x27, 0x13, 0x2b, 0x2b,
0x0e, 0x49, 0x26, 0x6c, 0x2b, 0x44, 0x5d, 0x77,
0x18, 0x08, 0x09, 0x26, 0x54, 0x30, 0x21, 0x2b,
0x44, 0x17, 0x53, 0x6c, 0x2b, 0x08, 0x09, 0x18,
0x12, 0x44, 0x3a, 0x35, 0x4e, 0x19, 0x0e, 0x43,
0x06, 0x01, 0xb0, 0x03, 0x03, 0x02, 0x03, 0x03,
0x02, 0x00, 0x4b, 0x05, 0xaa, 0x01, 0x00, 0x01,
0x00, 0x92, 0x04, 0x00, 0x01, 0x00, 0xd2, 0x04,
0x00, 0x01, 0x00, 0x96, 0x04, 0x00, 0x00, 0x00,
0xd4, 0x04, 0x00, 0x01, 0x00, 0xb6, 0x03, 0x0c,
0x00, 0xb4, 0x03, 0x0b, 0x00, 0xd0, 0x41, 0xdd,
0x00, 0x00, 0x00, 0xcc, 0x38, 0x45, 0x00, 0x00,
0x00, 0xac, 0xe9, 0x05, 0x26, 0x00, 0x00, 0x28,
0xc4, 0xd1, 0x47, 0xcd, 0x38, 0x45, 0x00, 0x00,
0x00, 0xac, 0xe9, 0x05, 0x26, 0x00, 0x00, 0x28,
0xc5, 0xf3, 0xe9, 0x18, 0xd2, 0xe9, 0x10, 0xc5,
0x41, 0x12, 0x01, 0x00, 0x00, 0x11, 0xea, 0x03,
0x0e, 0xc5, 0x26, 0x01, 0x00, 0x28, 0xc5, 0x26,
0x01, 0x00, 0x28, 0xd2, 0xe9, 0x05, 0xdc, 0xc5,
0xee, 0x28, 0xdd, 0xc5, 0xc5, 0xe8, 0xef, 0x28,
0x9c, 0x03, 0xc9, 0x02, 0x0a, 0x03, 0x27, 0x2b,
0x18, 0x17, 0x2b, 0x18, 0x17, 0x77, 0x12, 0x0e,
0x43, 0x06, 0x01, 0xd8, 0x03, 0x01, 0x01, 0x01,
0x04, 0x01, 0x00, 0x09, 0x02, 0x92, 0x04, 0x00,
0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0xb0, 0x03,
0x09, 0x00, 0x08, 0xc8, 0xdc, 0xc4, 0xd0, 0x0a,
0x23, 0x03, 0x00, 0x9c, 0x03, 0xda, 0x02, 0x01,
0x0d, 0x0e, 0x43, 0x06, 0x01, 0xda, 0x03, 0x01,
0x01, 0x01, 0x04, 0x01, 0x00, 0x09, 0x02, 0x92,
0x04, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00,
0xb0, 0x03, 0x09, 0x00, 0x08, 0xc8, 0xdc, 0xc4,
0xd0, 0x09, 0x23, 0x03, 0x00, 0x9c, 0x03, 0xde,
0x02, 0x01, 0x0d, 0x0e, 0x43, 0x06, 0x01, 0x00,
0x02, 0x00, 0x02, 0x04, 0x01, 0x00, 0x1e, 0x02,
0xd6, 0x04, 0x00, 0x01, 0x00, 0x92, 0x04, 0x00,
0x01, 0x00, 0xb2, 0x03, 0x0a, 0x00, 0xd0, 0x41,
0xd9, 0x00, 0x00, 0x00, 0xf3, 0xe9, 0x0b, 0xd0,
0x42, 0xd9, 0x00, 0x00, 0x00, 0xd1, 0x25, 0x01,
0x00, 0xdc, 0x42, 0xef, 0x00, 0x00, 0x00, 0xd0,
0xd1, 0x25, 0x02, 0x00, 0x9c, 0x03, 0xe2, 0x02,
0x03, 0x03, 0x30, 0x36, 0x0e, 0x43, 0x06, 0x01,
0xb2, 0x03, 0x01, 0x03, 0x01, 0x02, 0x00, 0x00,
0x28, 0x04, 0x92, 0x04, 0x00, 0x01, 0x00, 0x96,
0x04, 0x00, 0x00, 0x00, 0xd4, 0x04, 0x00, 0x01,
0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xca, 0xc6,
0x41, 0xdd, 0x00, 0x00, 0x00, 0xcc, 0x38, 0x45,
0x00, 0x00, 0x00, 0xad, 0xe9, 0x16, 0xc4, 0xd0,
0x47, 0xcd, 0xf3, 0xe9, 0x03, 0xb5, 0x28, 0xc5,
0x38, 0x45, 0x00, 0x00, 0x00, 0xad, 0xe9, 0x04,
0xc5, 0xe8, 0x28, 0xb4, 0x28, 0x9c, 0x03, 0xeb,
0x02, 0x09, 0x0d, 0x27, 0x2b, 0x18, 0x12, 0x08,
0x35, 0x0d, 0x0a, 0x0e, 0x43, 0x06, 0x01, 0xdc,
0x03, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x2e,
0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc8, 0xc4,
0x41, 0xde, 0x00, 0x00, 0x00, 0xb4, 0xa6, 0xe9,
0x1f, 0x38, 0x96, 0x00, 0x00, 0x00, 0x41, 0x3b,
0x00, 0x00, 0x00, 0x41, 0x59, 0x00, 0x00, 0x00,
0x42, 0xef, 0x00, 0x00, 0x00, 0xc4, 0x41, 0xdd,
0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0x28, 0x26,
0x00, 0x00, 0x28, 0x9c, 0x03, 0xfb, 0x02, 0x01,
0x0d, 0x0e, 0x43, 0x06, 0x01, 0xb4, 0x03, 0x02,
0x02, 0x02, 0x04, 0x00, 0x00, 0x1f, 0x04, 0xd8,
0x04, 0x00, 0x01, 0x00, 0xe8, 0x03, 0x00, 0x01,
0x00, 0xda, 0x04, 0x00, 0x00, 0x00, 0xf4, 0x03,
0x00, 0x01, 0x00, 0x38, 0x8c, 0x00, 0x00, 0x00,
0x11, 0xd1, 0x21, 0x01, 0x00, 0xc8, 0xb4, 0xc9,
0xc5, 0xd1, 0xa4, 0xe9, 0x0c, 0xc4, 0xc5, 0x71,
0xd0, 0xc5, 0x47, 0x49, 0x94, 0x01, 0xeb, 0xf1,
0xc4, 0x28, 0x9c, 0x03, 0xff, 0x02, 0x04, 0x03,
0x3a, 0x26, 0x3a, 0x0e, 0x43, 0x06, 0x01, 0xb6,
0x03, 0x01, 0x02, 0x01, 0x04, 0x00, 0x00, 0x2d,
0x03, 0xd8, 0x04, 0x00, 0x01, 0x00, 0xdc, 0x04,
0x00, 0x00, 0x00, 0xf4, 0x03, 0x00, 0x01, 0x00,
0x38, 0x8c, 0x00, 0x00, 0x00, 0x11, 0xd0, 0xe8,
0x21, 0x01, 0x00, 0xc8, 0xb4, 0xc9, 0xc5, 0xc4,
0xe8, 0xa4, 0xe9, 0x18, 0xc4, 0xc5, 0x71, 0xd0,
0xc5, 0x47, 0x41, 0x12, 0x01, 0x00, 0x00, 0x11,
0xea, 0x05, 0x0e, 0xd0, 0xc5, 0x47, 0x49, 0x94,
0x01, 0xeb, 0xe4, 0xc4, 0x28, 0x9c, 0x03, 0x86,
0x03, 0x05, 0x03, 0x3f, 0x2b, 0x62, 0x17,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_events.c | C | apache-2.0 | 30,933 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_fs_size = 627;
const uint8_t jslib_fs[627] = {
0x01, 0x13, 0x12, 0x73, 0x72, 0x63, 0x2f, 0x66,
0x73, 0x2e, 0x6a, 0x73, 0x04, 0x46, 0x53, 0x12,
0x77, 0x72, 0x69, 0x74, 0x65, 0x53, 0x79, 0x6e,
0x63, 0x10, 0x72, 0x65, 0x61, 0x64, 0x53, 0x79,
0x6e, 0x63, 0x14, 0x75, 0x6e, 0x6c, 0x69, 0x6e,
0x6b, 0x53, 0x79, 0x6e, 0x63, 0x12, 0x74, 0x6f,
0x74, 0x61, 0x6c, 0x53, 0x69, 0x7a, 0x65, 0x10,
0x75, 0x73, 0x65, 0x64, 0x53, 0x69, 0x7a, 0x65,
0x10, 0x66, 0x72, 0x65, 0x65, 0x53, 0x69, 0x7a,
0x65, 0x08, 0x70, 0x61, 0x74, 0x68, 0x08, 0x64,
0x61, 0x74, 0x61, 0x0e, 0x6f, 0x70, 0x74, 0x69,
0x6f, 0x6e, 0x73, 0x22, 0x70, 0x61, 0x72, 0x61,
0x6d, 0x73, 0x20, 0x69, 0x73, 0x20, 0x69, 0x6e,
0x76, 0x61, 0x6c, 0x69, 0x64, 0x02, 0x77, 0x08,
0x66, 0x6c, 0x61, 0x67, 0x0a, 0x77, 0x72, 0x69,
0x74, 0x65, 0x0e, 0x63, 0x6f, 0x6e, 0x74, 0x65,
0x6e, 0x74, 0x1c, 0x69, 0x6e, 0x76, 0x61, 0x6c,
0x69, 0x64, 0x20, 0x70, 0x61, 0x72, 0x61, 0x6d,
0x73, 0x08, 0x72, 0x65, 0x61, 0x64, 0x1e, 0x66,
0x69, 0x6c, 0x65, 0x20, 0x6f, 0x70, 0x65, 0x6e,
0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x0f, 0x9c,
0x03, 0x01, 0x9e, 0x03, 0x06, 0x00, 0x01, 0xa0,
0x03, 0x00, 0x02, 0xa2, 0x03, 0x00, 0x03, 0xa4,
0x03, 0x00, 0x04, 0xa6, 0x03, 0x00, 0x05, 0xa8,
0x03, 0x00, 0x06, 0xaa, 0x03, 0x00, 0x01, 0x00,
0xf8, 0x01, 0x00, 0x0e, 0x00, 0x06, 0x01, 0xa0,
0x01, 0x00, 0x00, 0x00, 0x01, 0x07, 0x06, 0x19,
0x00, 0x9e, 0x03, 0x00, 0x0d, 0xa0, 0x03, 0x00,
0x01, 0xa2, 0x03, 0x01, 0x01, 0xa4, 0x03, 0x02,
0x01, 0xa6, 0x03, 0x03, 0x01, 0xa8, 0x03, 0x04,
0x01, 0xaa, 0x03, 0x05, 0x01, 0xbf, 0x00, 0xe1,
0xbf, 0x01, 0xe2, 0xbf, 0x02, 0xe3, 0xbf, 0x03,
0x5f, 0x04, 0x00, 0xbf, 0x04, 0x5f, 0x05, 0x00,
0xbf, 0x05, 0x5f, 0x06, 0x00, 0x29, 0x9c, 0x03,
0x01, 0x04, 0x01, 0x00, 0x18, 0x4e, 0x0e, 0x43,
0x06, 0x01, 0xa0, 0x03, 0x03, 0x00, 0x03, 0x05,
0x01, 0x00, 0x39, 0x03, 0xac, 0x03, 0x00, 0x01,
0x00, 0xae, 0x03, 0x00, 0x01, 0x00, 0xb0, 0x03,
0x00, 0x01, 0x00, 0x9e, 0x03, 0x00, 0x0c, 0xd0,
0x97, 0x11, 0xea, 0x04, 0x0e, 0xd1, 0x97, 0xe9,
0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04,
0xd9, 0x00, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f,
0xd2, 0x11, 0xea, 0x0d, 0x0e, 0x0b, 0x04, 0xda,
0x00, 0x00, 0x00, 0x4c, 0xdb, 0x00, 0x00, 0x00,
0xd6, 0x65, 0x00, 0x00, 0x42, 0xdc, 0x00, 0x00,
0x00, 0xd0, 0xd1, 0xd2, 0x24, 0x03, 0x00, 0x29,
0x9c, 0x03, 0x03, 0x06, 0x03, 0x35, 0x49, 0x08,
0x58, 0x49, 0x0e, 0x43, 0x06, 0x01, 0xa2, 0x03,
0x01, 0x01, 0x01, 0x03, 0x01, 0x00, 0x2b, 0x02,
0xac, 0x03, 0x00, 0x01, 0x00, 0xba, 0x03, 0x00,
0x00, 0x00, 0x9e, 0x03, 0x00, 0x0c, 0xd0, 0x97,
0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11,
0x04, 0xde, 0x00, 0x00, 0x00, 0x21, 0x01, 0x00,
0x2f, 0x65, 0x00, 0x00, 0x42, 0xdf, 0x00, 0x00,
0x00, 0xd0, 0x24, 0x01, 0x00, 0xcc, 0x97, 0xe9,
0x07, 0x04, 0xe0, 0x00, 0x00, 0x00, 0x2f, 0xc4,
0x28, 0x9c, 0x03, 0x0b, 0x08, 0x03, 0x17, 0x49,
0x08, 0x44, 0x12, 0x1c, 0x08, 0x0e, 0x43, 0x06,
0x01, 0xa4, 0x03, 0x01, 0x00, 0x01, 0x03, 0x01,
0x00, 0x20, 0x01, 0xac, 0x03, 0x00, 0x01, 0x00,
0x9e, 0x03, 0x00, 0x0c, 0xd0, 0x97, 0xe9, 0x10,
0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0xde,
0x00, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0x65,
0x00, 0x00, 0x42, 0x09, 0x00, 0x00, 0x00, 0xd0,
0x24, 0x01, 0x00, 0x29, 0x9c, 0x03, 0x16, 0x05,
0x03, 0x17, 0x49, 0x08, 0x3f, 0x0e, 0x43, 0x06,
0x01, 0xa6, 0x03, 0x00, 0x00, 0x00, 0x02, 0x01,
0x00, 0x0b, 0x00, 0x9e, 0x03, 0x00, 0x0c, 0x65,
0x00, 0x00, 0x42, 0xd3, 0x00, 0x00, 0x00, 0x25,
0x00, 0x00, 0x9c, 0x03, 0x1d, 0x01, 0x03, 0x0e,
0x43, 0x06, 0x01, 0xa8, 0x03, 0x00, 0x00, 0x00,
0x02, 0x01, 0x00, 0x0b, 0x00, 0x9e, 0x03, 0x00,
0x0c, 0x65, 0x00, 0x00, 0x42, 0xd4, 0x00, 0x00,
0x00, 0x25, 0x00, 0x00, 0x9c, 0x03, 0x21, 0x01,
0x03, 0x0e, 0x43, 0x06, 0x01, 0xaa, 0x03, 0x00,
0x00, 0x00, 0x02, 0x01, 0x00, 0x0b, 0x00, 0x9e,
0x03, 0x00, 0x0c, 0x65, 0x00, 0x00, 0x42, 0xd5,
0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x9c, 0x03,
0x25, 0x01, 0x03,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_fs.c | C | apache-2.0 | 3,998 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_gpio_size = 1041;
const uint8_t jslib_gpio[1041] = {
0x01, 0x17, 0x16, 0x73, 0x72, 0x63, 0x2f, 0x67,
0x70, 0x69, 0x6f, 0x2e, 0x6a, 0x73, 0x08, 0x47,
0x50, 0x49, 0x4f, 0x08, 0x6f, 0x70, 0x65, 0x6e,
0x0e, 0x48, 0x57, 0x5f, 0x47, 0x50, 0x49, 0x4f,
0x0a, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x14, 0x77,
0x72, 0x69, 0x74, 0x65, 0x56, 0x61, 0x6c, 0x75,
0x65, 0x0c, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65,
0x0a, 0x6f, 0x6e, 0x49, 0x52, 0x51, 0x12, 0x72,
0x65, 0x61, 0x64, 0x56, 0x61, 0x6c, 0x75, 0x65,
0x0a, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x0e, 0x6f,
0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x04, 0x69,
0x64, 0x24, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
0x73, 0x20, 0x69, 0x73, 0x20, 0x69, 0x6e, 0x76,
0x61, 0x6c, 0x69, 0x64, 0x0e, 0x73, 0x75, 0x63,
0x63, 0x65, 0x73, 0x73, 0x08, 0x66, 0x61, 0x69,
0x6c, 0x18, 0x67, 0x70, 0x69, 0x6f, 0x49, 0x6e,
0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x0a, 0x6c,
0x65, 0x76, 0x65, 0x6c, 0x1a, 0x67, 0x70, 0x69,
0x6f, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x69, 0x6e,
0x69, 0x74, 0x0a, 0x77, 0x72, 0x69, 0x74, 0x65,
0x04, 0x63, 0x62, 0x44, 0x67, 0x70, 0x69, 0x6f,
0x20, 0x6e, 0x6f, 0x74, 0x20, 0x69, 0x6e, 0x69,
0x74, 0x20, 0x6f, 0x72, 0x20, 0x70, 0x61, 0x72,
0x61, 0x6d, 0x73, 0x20, 0x69, 0x73, 0x20, 0x69,
0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x04, 0x6f,
0x6e, 0x08, 0x72, 0x65, 0x61, 0x64, 0x0f, 0x9c,
0x03, 0x01, 0x9e, 0x03, 0x01, 0x00, 0x02, 0xa0,
0x03, 0x00, 0x01, 0x00, 0xf8, 0x01, 0x00, 0x0e,
0x00, 0x06, 0x01, 0xa0, 0x01, 0x00, 0x02, 0x00,
0x03, 0x03, 0x08, 0x4b, 0x02, 0xa2, 0x03, 0x02,
0x00, 0x60, 0xea, 0x01, 0x03, 0x01, 0xe0, 0x9e,
0x03, 0x00, 0x0d, 0xa2, 0x03, 0x00, 0x09, 0xa0,
0x03, 0x01, 0x01, 0xbf, 0x07, 0xe2, 0x61, 0x00,
0x00, 0x06, 0x61, 0x01, 0x00, 0xbe, 0x00, 0x56,
0xd1, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x01, 0x54,
0xd2, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x02, 0x54,
0xd3, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x03, 0x54,
0xd4, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x04, 0x54,
0xd5, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x05, 0x54,
0xd6, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x06, 0x54,
0xd7, 0x00, 0x00, 0x00, 0x00, 0x06, 0xc9, 0x0e,
0xcc, 0x68, 0x01, 0x00, 0xe1, 0x29, 0x9c, 0x03,
0x01, 0x18, 0x01, 0x14, 0x00, 0x0f, 0x2a, 0x00,
0x08, 0x0e, 0x00, 0x08, 0x0e, 0x00, 0x08, 0x0e,
0x00, 0x08, 0x0e, 0x00, 0x08, 0x0e, 0x2b, 0x00,
0x08, 0x08, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x01,
0x01, 0x01, 0x03, 0x01, 0x02, 0x6d, 0x02, 0xb0,
0x03, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00,
0xea, 0x01, 0x01, 0x0d, 0x08, 0xc8, 0x2b, 0x65,
0x00, 0x00, 0x11, 0xe9, 0x06, 0xc4, 0x1b, 0x24,
0x00, 0x00, 0x0e, 0xd0, 0x97, 0x11, 0xea, 0x09,
0x0e, 0xd0, 0x41, 0xd9, 0x00, 0x00, 0x00, 0x97,
0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11,
0x04, 0xda, 0x00, 0x00, 0x00, 0x21, 0x01, 0x00,
0x2f, 0xc4, 0x0b, 0xd0, 0x41, 0xd9, 0x00, 0x00,
0x00, 0x4c, 0xd9, 0x00, 0x00, 0x00, 0x43, 0xd8,
0x00, 0x00, 0x00, 0xc4, 0xd0, 0x41, 0xdb, 0x00,
0x00, 0x00, 0x11, 0xea, 0x04, 0x0e, 0xbf, 0x00,
0x43, 0xdb, 0x00, 0x00, 0x00, 0xc4, 0xd0, 0x41,
0xdc, 0x00, 0x00, 0x00, 0x11, 0xea, 0x04, 0x0e,
0xbf, 0x01, 0x43, 0xdc, 0x00, 0x00, 0x00, 0xc4,
0x42, 0xd2, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00,
0x29, 0x9c, 0x03, 0x04, 0x0a, 0x4e, 0x4e, 0x49,
0x08, 0x0d, 0x3a, 0x1d, 0x5d, 0x5d, 0x30, 0x0e,
0x43, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x01, 0x00, 0x29, 0x9c, 0x03, 0x0c,
0x00, 0x0e, 0x43, 0x06, 0x01, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x29, 0x9c,
0x03, 0x0d, 0x00, 0x0e, 0x42, 0x07, 0x01, 0x00,
0x00, 0x01, 0x00, 0x04, 0x01, 0x00, 0x3b, 0x01,
0x10, 0x00, 0x01, 0x00, 0x9e, 0x03, 0x00, 0x0c,
0x08, 0xc8, 0xc4, 0x65, 0x00, 0x00, 0x42, 0xd0,
0x00, 0x00, 0x00, 0xc4, 0x41, 0xd8, 0x00, 0x00,
0x00, 0x41, 0xd9, 0x00, 0x00, 0x00, 0x24, 0x01,
0x00, 0x43, 0xdd, 0x00, 0x00, 0x00, 0xc4, 0x41,
0xdd, 0x00, 0x00, 0x00, 0x97, 0xe9, 0x0b, 0xc4,
0x42, 0xdc, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00,
0x29, 0xc4, 0x42, 0xdb, 0x00, 0x00, 0x00, 0x24,
0x00, 0x00, 0x29, 0x9c, 0x03, 0x11, 0x06, 0x0d,
0x8f, 0x30, 0x31, 0x08, 0x30, 0x0e, 0x42, 0x07,
0x01, 0x00, 0x01, 0x01, 0x01, 0x03, 0x00, 0x00,
0x2a, 0x02, 0xbc, 0x03, 0x00, 0x01, 0x00, 0x10,
0x00, 0x01, 0x00, 0x08, 0xc8, 0xc4, 0x41, 0xdd,
0x00, 0x00, 0x00, 0x97, 0xe9, 0x10, 0x38, 0x8d,
0x00, 0x00, 0x00, 0x11, 0x04, 0xdf, 0x00, 0x00,
0x00, 0x21, 0x01, 0x00, 0x2f, 0xc4, 0x41, 0xdd,
0x00, 0x00, 0x00, 0x42, 0xe0, 0x00, 0x00, 0x00,
0xd0, 0x24, 0x01, 0x00, 0x29, 0x9c, 0x03, 0x1a,
0x05, 0x0d, 0x30, 0x49, 0x08, 0x4e, 0x0e, 0x42,
0x07, 0x01, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00,
0x00, 0x29, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08,
0xc8, 0xc4, 0x41, 0xdd, 0x00, 0x00, 0x00, 0x97,
0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11,
0x04, 0xdf, 0x00, 0x00, 0x00, 0x21, 0x01, 0x00,
0x2f, 0xc4, 0x41, 0xdd, 0x00, 0x00, 0x00, 0x42,
0xd4, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x29,
0x9c, 0x03, 0x21, 0x05, 0x0d, 0x30, 0x49, 0x08,
0x49, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x01, 0x01,
0x01, 0x03, 0x00, 0x00, 0x40, 0x02, 0xb0, 0x03,
0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08,
0xc8, 0xc4, 0x41, 0xdd, 0x00, 0x00, 0x00, 0x97,
0x11, 0xea, 0x0f, 0x0e, 0xd0, 0x97, 0x11, 0xea,
0x09, 0x0e, 0xd0, 0x41, 0xe1, 0x00, 0x00, 0x00,
0x97, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00,
0x11, 0x04, 0xe2, 0x00, 0x00, 0x00, 0x21, 0x01,
0x00, 0x2f, 0xc4, 0x41, 0xdd, 0x00, 0x00, 0x00,
0x42, 0xe3, 0x00, 0x00, 0x00, 0xd0, 0x41, 0xe1,
0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0x29, 0x9c,
0x03, 0x28, 0x05, 0x0d, 0x85, 0x49, 0x08, 0x67,
0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x01, 0x00,
0x03, 0x00, 0x00, 0x28, 0x01, 0x10, 0x00, 0x01,
0x00, 0x08, 0xc8, 0xc4, 0x41, 0xdd, 0x00, 0x00,
0x00, 0x97, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00,
0x00, 0x11, 0x04, 0xdf, 0x00, 0x00, 0x00, 0x21,
0x01, 0x00, 0x2f, 0xc4, 0x41, 0xdd, 0x00, 0x00,
0x00, 0x42, 0xe4, 0x00, 0x00, 0x00, 0x25, 0x00,
0x00, 0x9c, 0x03, 0x2f, 0x04, 0x0d, 0x30, 0x49,
0x08, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x01,
0x00, 0x03, 0x00, 0x00, 0x29, 0x01, 0x10, 0x00,
0x01, 0x00, 0x08, 0xc8, 0xc4, 0x41, 0xdd, 0x00,
0x00, 0x00, 0x97, 0xe9, 0x10, 0x38, 0x8d, 0x00,
0x00, 0x00, 0x11, 0x04, 0xdf, 0x00, 0x00, 0x00,
0x21, 0x01, 0x00, 0x2f, 0xc4, 0x41, 0xdd, 0x00,
0x00, 0x00, 0x42, 0xd7, 0x00, 0x00, 0x00, 0x24,
0x00, 0x00, 0x29, 0x9c, 0x03, 0x36, 0x05, 0x0d,
0x30, 0x49, 0x08, 0x49, 0x0e, 0x43, 0x06, 0x01,
0xa0, 0x03, 0x01, 0x00, 0x01, 0x03, 0x01, 0x00,
0x09, 0x01, 0xb0, 0x03, 0x00, 0x01, 0x00, 0xa2,
0x03, 0x01, 0x08, 0x65, 0x00, 0x00, 0x11, 0xd0,
0x21, 0x01, 0x00, 0x28, 0x9c, 0x03, 0x3e, 0x01,
0x03,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_gpio.c | C | apache-2.0 | 6,540 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_i2c_size = 1226;
const uint8_t jslib_i2c[1226] = {
0x01, 0x1c, 0x14, 0x73, 0x72, 0x63, 0x2f, 0x69,
0x32, 0x63, 0x2e, 0x6a, 0x73, 0x06, 0x49, 0x32,
0x43, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x0c, 0x48,
0x57, 0x5f, 0x49, 0x32, 0x43, 0x2c, 0x62, 0x79,
0x74, 0x65, 0x41, 0x72, 0x72, 0x61, 0x79, 0x54,
0x6f, 0x41, 0x72, 0x72, 0x61, 0x79, 0x42, 0x75,
0x66, 0x66, 0x65, 0x72, 0x0a, 0x5f, 0x6f, 0x70,
0x65, 0x6e, 0x0a, 0x77, 0x72, 0x69, 0x74, 0x65,
0x08, 0x72, 0x65, 0x61, 0x64, 0x10, 0x77, 0x72,
0x69, 0x74, 0x65, 0x4d, 0x65, 0x6d, 0x0e, 0x72,
0x65, 0x61, 0x64, 0x4d, 0x65, 0x6d, 0x0a, 0x63,
0x6c, 0x6f, 0x73, 0x65, 0x12, 0x62, 0x79, 0x74,
0x65, 0x41, 0x72, 0x72, 0x61, 0x79, 0x0c, 0x62,
0x75, 0x66, 0x66, 0x65, 0x72, 0x0e, 0x6f, 0x70,
0x74, 0x69, 0x6f, 0x6e, 0x73, 0x04, 0x69, 0x64,
0x24, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
0x20, 0x69, 0x73, 0x20, 0x69, 0x6e, 0x76, 0x61,
0x6c, 0x69, 0x64, 0x0e, 0x73, 0x75, 0x63, 0x63,
0x65, 0x73, 0x73, 0x08, 0x66, 0x61, 0x69, 0x6c,
0x16, 0x69, 0x32, 0x63, 0x49, 0x6e, 0x73, 0x74,
0x61, 0x6e, 0x63, 0x65, 0x08, 0x64, 0x61, 0x74,
0x61, 0x42, 0x69, 0x32, 0x63, 0x20, 0x6e, 0x6f,
0x74, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x20, 0x6f,
0x72, 0x20, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73,
0x20, 0x69, 0x73, 0x20, 0x69, 0x6e, 0x76, 0x61,
0x6c, 0x69, 0x64, 0x0a, 0x62, 0x79, 0x74, 0x65,
0x73, 0x0a, 0x73, 0x6c, 0x69, 0x63, 0x65, 0x08,
0x63, 0x61, 0x6c, 0x6c, 0x0e, 0x6d, 0x65, 0x6d,
0x61, 0x64, 0x64, 0x72, 0x10, 0x77, 0x72, 0x69,
0x74, 0x65, 0x52, 0x65, 0x67, 0x0e, 0x72, 0x65,
0x61, 0x64, 0x52, 0x65, 0x67, 0x18, 0x69, 0x32,
0x63, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x69, 0x6e,
0x69, 0x74, 0x0f, 0x9c, 0x03, 0x01, 0x9e, 0x03,
0x01, 0x00, 0x03, 0xa0, 0x03, 0x00, 0x01, 0x00,
0xf8, 0x01, 0x00, 0x0e, 0x00, 0x06, 0x01, 0xa0,
0x01, 0x00, 0x02, 0x00, 0x03, 0x04, 0x09, 0x4e,
0x02, 0xa2, 0x03, 0x02, 0x00, 0x60, 0xea, 0x01,
0x03, 0x01, 0xe0, 0x9e, 0x03, 0x00, 0x0d, 0xa4,
0x03, 0x00, 0x01, 0xa2, 0x03, 0x01, 0x09, 0xa0,
0x03, 0x02, 0x01, 0xbf, 0x00, 0xe1, 0xbf, 0x08,
0xe3, 0x61, 0x00, 0x00, 0x06, 0x61, 0x01, 0x00,
0xbe, 0x01, 0x56, 0xd1, 0x00, 0x00, 0x00, 0x00,
0xbf, 0x02, 0x54, 0xd3, 0x00, 0x00, 0x00, 0x00,
0xbf, 0x03, 0x54, 0xd4, 0x00, 0x00, 0x00, 0x00,
0xbf, 0x04, 0x54, 0xd5, 0x00, 0x00, 0x00, 0x00,
0xbf, 0x05, 0x54, 0xd6, 0x00, 0x00, 0x00, 0x00,
0xbf, 0x06, 0x54, 0xd7, 0x00, 0x00, 0x00, 0x00,
0xbf, 0x07, 0x54, 0xd8, 0x00, 0x00, 0x00, 0x00,
0x06, 0xc9, 0x0e, 0xcc, 0x68, 0x01, 0x00, 0xe2,
0x29, 0x9c, 0x03, 0x01, 0x1a, 0x01, 0x00, 0x06,
0x0c, 0x00, 0x0f, 0x2c, 0x00, 0x08, 0x0e, 0x00,
0x08, 0x0e, 0x00, 0x08, 0x0e, 0x00, 0x08, 0x0e,
0x00, 0x08, 0x0e, 0x2b, 0x00, 0x08, 0x08, 0x0e,
0x43, 0x06, 0x01, 0xa4, 0x03, 0x01, 0x00, 0x01,
0x03, 0x00, 0x00, 0x10, 0x01, 0xb2, 0x03, 0x00,
0x01, 0x00, 0x38, 0x9e, 0x00, 0x00, 0x00, 0x11,
0xd0, 0x21, 0x01, 0x00, 0x41, 0xda, 0x00, 0x00,
0x00, 0x28, 0x9c, 0x03, 0x03, 0x01, 0x03, 0x0e,
0x42, 0x07, 0x01, 0x00, 0x01, 0x01, 0x01, 0x03,
0x01, 0x02, 0x6d, 0x02, 0xb6, 0x03, 0x00, 0x01,
0x00, 0x10, 0x00, 0x01, 0x00, 0xea, 0x01, 0x01,
0x0d, 0x08, 0xc8, 0x2b, 0x65, 0x00, 0x00, 0x11,
0xe9, 0x06, 0xc4, 0x1b, 0x24, 0x00, 0x00, 0x0e,
0xd0, 0x97, 0x11, 0xea, 0x09, 0x0e, 0xd0, 0x41,
0xdc, 0x00, 0x00, 0x00, 0x97, 0xe9, 0x10, 0x38,
0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0xdd, 0x00,
0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0xc4, 0x0b,
0xd0, 0x41, 0xdc, 0x00, 0x00, 0x00, 0x4c, 0xdc,
0x00, 0x00, 0x00, 0x43, 0xdb, 0x00, 0x00, 0x00,
0xc4, 0xd0, 0x41, 0xde, 0x00, 0x00, 0x00, 0x11,
0xea, 0x04, 0x0e, 0xbf, 0x00, 0x43, 0xde, 0x00,
0x00, 0x00, 0xc4, 0xd0, 0x41, 0xdf, 0x00, 0x00,
0x00, 0x11, 0xea, 0x04, 0x0e, 0xbf, 0x01, 0x43,
0xdf, 0x00, 0x00, 0x00, 0xc4, 0x42, 0xd3, 0x00,
0x00, 0x00, 0x24, 0x00, 0x00, 0x29, 0x9c, 0x03,
0x07, 0x0a, 0x4e, 0x4e, 0x49, 0x09, 0x0d, 0x3a,
0x1d, 0x5d, 0x5d, 0x30, 0x0e, 0x43, 0x06, 0x01,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
0x00, 0x29, 0x9c, 0x03, 0x10, 0x00, 0x0e, 0x43,
0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x01, 0x00, 0x29, 0x9c, 0x03, 0x11, 0x00,
0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x01, 0x00,
0x04, 0x01, 0x00, 0x3b, 0x01, 0x10, 0x00, 0x01,
0x00, 0x9e, 0x03, 0x00, 0x0c, 0x08, 0xc8, 0xc4,
0x65, 0x00, 0x00, 0x42, 0xd0, 0x00, 0x00, 0x00,
0xc4, 0x41, 0xdb, 0x00, 0x00, 0x00, 0x41, 0xdc,
0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0x43, 0xe0,
0x00, 0x00, 0x00, 0xc4, 0x41, 0xe0, 0x00, 0x00,
0x00, 0x97, 0xe9, 0x0b, 0xc4, 0x42, 0xdf, 0x00,
0x00, 0x00, 0x24, 0x00, 0x00, 0x29, 0xc4, 0x42,
0xde, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x29,
0x9c, 0x03, 0x15, 0x06, 0x0d, 0x8f, 0x30, 0x31,
0x08, 0x30, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x01,
0x01, 0x01, 0x04, 0x01, 0x00, 0x31, 0x02, 0xc2,
0x03, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00,
0xa4, 0x03, 0x01, 0x00, 0x08, 0xc8, 0xc4, 0x41,
0xe0, 0x00, 0x00, 0x00, 0x97, 0x11, 0xea, 0x04,
0x0e, 0xd0, 0x97, 0xe9, 0x10, 0x38, 0x8d, 0x00,
0x00, 0x00, 0x11, 0x04, 0xe2, 0x00, 0x00, 0x00,
0x21, 0x01, 0x00, 0x2f, 0xc4, 0x41, 0xe0, 0x00,
0x00, 0x00, 0x42, 0xd4, 0x00, 0x00, 0x00, 0xdc,
0xd0, 0xee, 0x25, 0x01, 0x00, 0x9c, 0x03, 0x1e,
0x04, 0x0d, 0x4e, 0x49, 0x08, 0x0e, 0x42, 0x07,
0x01, 0x00, 0x01, 0x01, 0x01, 0x07, 0x00, 0x00,
0x4f, 0x02, 0xc6, 0x03, 0x00, 0x01, 0x00, 0x10,
0x00, 0x01, 0x00, 0x08, 0xc8, 0xc4, 0x41, 0xe0,
0x00, 0x00, 0x00, 0x97, 0x11, 0xea, 0x04, 0x0e,
0xd0, 0x97, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00,
0x00, 0x11, 0x04, 0xe2, 0x00, 0x00, 0x00, 0x21,
0x01, 0x00, 0x2f, 0x38, 0x8c, 0x00, 0x00, 0x00,
0x41, 0x3b, 0x00, 0x00, 0x00, 0x41, 0xe4, 0x00,
0x00, 0x00, 0x42, 0xe5, 0x00, 0x00, 0x00, 0x38,
0x9e, 0x00, 0x00, 0x00, 0x11, 0xc4, 0x41, 0xe0,
0x00, 0x00, 0x00, 0x42, 0xd5, 0x00, 0x00, 0x00,
0xd0, 0x24, 0x01, 0x00, 0x21, 0x01, 0x00, 0x25,
0x01, 0x00, 0x9c, 0x03, 0x25, 0x04, 0x0d, 0x4e,
0x49, 0x08, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x02,
0x01, 0x02, 0x05, 0x01, 0x00, 0x2c, 0x03, 0xcc,
0x03, 0x00, 0x01, 0x00, 0xc2, 0x03, 0x00, 0x01,
0x00, 0x10, 0x00, 0x01, 0x00, 0xa4, 0x03, 0x01,
0x00, 0x08, 0xc8, 0xc4, 0x41, 0xe0, 0x00, 0x00,
0x00, 0x97, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00,
0x00, 0x11, 0x04, 0xe2, 0x00, 0x00, 0x00, 0x21,
0x01, 0x00, 0x2f, 0xc4, 0x41, 0xe0, 0x00, 0x00,
0x00, 0x42, 0xe7, 0x00, 0x00, 0x00, 0xd0, 0xdc,
0xd1, 0xee, 0x25, 0x02, 0x00, 0x9c, 0x03, 0x2c,
0x04, 0x0d, 0x30, 0x49, 0x08, 0x0e, 0x42, 0x07,
0x01, 0x00, 0x02, 0x01, 0x02, 0x08, 0x00, 0x00,
0x4a, 0x03, 0xcc, 0x03, 0x00, 0x01, 0x00, 0xc6,
0x03, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00,
0x08, 0xc8, 0xc4, 0x41, 0xe0, 0x00, 0x00, 0x00,
0x97, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00,
0x11, 0x04, 0xe2, 0x00, 0x00, 0x00, 0x21, 0x01,
0x00, 0x2f, 0x38, 0x8c, 0x00, 0x00, 0x00, 0x41,
0x3b, 0x00, 0x00, 0x00, 0x41, 0xe4, 0x00, 0x00,
0x00, 0x42, 0xe5, 0x00, 0x00, 0x00, 0x38, 0x9e,
0x00, 0x00, 0x00, 0x11, 0xc4, 0x41, 0xe0, 0x00,
0x00, 0x00, 0x42, 0xe8, 0x00, 0x00, 0x00, 0xd0,
0xd1, 0x24, 0x02, 0x00, 0x21, 0x01, 0x00, 0x25,
0x01, 0x00, 0x9c, 0x03, 0x33, 0x04, 0x0d, 0x30,
0x49, 0x08, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00,
0x01, 0x00, 0x03, 0x00, 0x00, 0x29, 0x01, 0x10,
0x00, 0x01, 0x00, 0x08, 0xc8, 0xc4, 0x41, 0xe0,
0x00, 0x00, 0x00, 0x97, 0xe9, 0x10, 0x38, 0x8d,
0x00, 0x00, 0x00, 0x11, 0x04, 0xe9, 0x00, 0x00,
0x00, 0x21, 0x01, 0x00, 0x2f, 0xc4, 0x41, 0xe0,
0x00, 0x00, 0x00, 0x42, 0xd8, 0x00, 0x00, 0x00,
0x24, 0x00, 0x00, 0x29, 0x9c, 0x03, 0x3a, 0x05,
0x0d, 0x30, 0x49, 0x08, 0x49, 0x0e, 0x43, 0x06,
0x01, 0xa0, 0x03, 0x01, 0x00, 0x01, 0x03, 0x01,
0x00, 0x09, 0x01, 0xb6, 0x03, 0x00, 0x01, 0x00,
0xa2, 0x03, 0x02, 0x08, 0x65, 0x00, 0x00, 0x11,
0xd0, 0x21, 0x01, 0x00, 0x28, 0x9c, 0x03, 0x42,
0x01, 0x03,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_i2c.c | C | apache-2.0 | 7,671 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_iot_size = 4813;
const uint8_t jslib_iot[4813] = {
0x01, 0x51, 0x14, 0x73, 0x72, 0x63, 0x2f, 0x69,
0x6f, 0x74, 0x2e, 0x6a, 0x73, 0x0c, 0x65, 0x76,
0x65, 0x6e, 0x74, 0x73, 0x16, 0x41, 0x49, 0x4f,
0x54, 0x5f, 0x44, 0x45, 0x56, 0x49, 0x43, 0x45,
0x18, 0x41, 0x49, 0x4f, 0x54, 0x5f, 0x47, 0x41,
0x54, 0x45, 0x57, 0x41, 0x59, 0x0c, 0x64, 0x65,
0x76, 0x69, 0x63, 0x65, 0x0e, 0x67, 0x61, 0x74,
0x65, 0x77, 0x61, 0x79, 0x0c, 0x64, 0x79, 0x6e,
0x72, 0x65, 0x67, 0x1e, 0x49, 0x6f, 0x74, 0x44,
0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6c, 0x69,
0x65, 0x6e, 0x74, 0x20, 0x49, 0x6f, 0x74, 0x47,
0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x43, 0x6c,
0x69, 0x65, 0x6e, 0x74, 0x0a, 0x65, 0x76, 0x65,
0x6e, 0x74, 0x18, 0x45, 0x76, 0x65, 0x6e, 0x74,
0x45, 0x6d, 0x69, 0x74, 0x74, 0x65, 0x72, 0x10,
0x5f, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74,
0x1e, 0x67, 0x65, 0x74, 0x44, 0x65, 0x76, 0x69,
0x63, 0x65, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65,
0x12, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
0x62, 0x65, 0x16, 0x75, 0x6e, 0x73, 0x75, 0x62,
0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x0e, 0x70,
0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x14, 0x67,
0x65, 0x74, 0x4e, 0x74, 0x70, 0x54, 0x69, 0x6d,
0x65, 0x12, 0x70, 0x6f, 0x73, 0x74, 0x50, 0x72,
0x6f, 0x70, 0x73, 0x0e, 0x6f, 0x6e, 0x50, 0x72,
0x6f, 0x70, 0x73, 0x12, 0x70, 0x6f, 0x73, 0x74,
0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x6f, 0x6e,
0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x06,
0x65, 0x6e, 0x64, 0x20, 0x67, 0x65, 0x74, 0x47,
0x61, 0x74, 0x65, 0x77, 0x61, 0x79, 0x48, 0x61,
0x6e, 0x64, 0x6c, 0x65, 0x06, 0x5f, 0x6f, 0x6e,
0x0e, 0x61, 0x64, 0x64, 0x54, 0x6f, 0x70, 0x6f,
0x0e, 0x67, 0x65, 0x74, 0x54, 0x6f, 0x70, 0x6f,
0x14, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x54,
0x6f, 0x70, 0x6f, 0x0a, 0x6c, 0x6f, 0x67, 0x69,
0x6e, 0x0c, 0x6c, 0x6f, 0x67, 0x6f, 0x75, 0x74,
0x22, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65,
0x72, 0x53, 0x75, 0x62, 0x44, 0x65, 0x76, 0x69,
0x63, 0x65, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f,
0x6e, 0x73, 0x14, 0x70, 0x72, 0x6f, 0x64, 0x75,
0x63, 0x74, 0x4b, 0x65, 0x79, 0x14, 0x64, 0x65,
0x76, 0x69, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65,
0x18, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x53,
0x65, 0x63, 0x72, 0x65, 0x74, 0x22, 0x64, 0x65,
0x76, 0x69, 0x63, 0x65, 0x20, 0x69, 0x6e, 0x66,
0x6f, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x0c,
0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x16, 0x63,
0x6e, 0x2d, 0x73, 0x68, 0x61, 0x6e, 0x67, 0x68,
0x61, 0x69, 0x18, 0x6b, 0x65, 0x65, 0x70, 0x61,
0x6c, 0x69, 0x76, 0x65, 0x53, 0x65, 0x63, 0x08,
0x62, 0x69, 0x6e, 0x64, 0x22, 0x49, 0x6f, 0x54,
0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x49, 0x6e,
0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x06, 0x72,
0x65, 0x73, 0x0c, 0x68, 0x61, 0x6e, 0x64, 0x6c,
0x65, 0x0e, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c,
0x65, 0x06, 0x6c, 0x6f, 0x67, 0x26, 0x72, 0x65,
0x73, 0x2e, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65,
0x20, 0x69, 0x73, 0x20, 0x65, 0x6d, 0x70, 0x74,
0x79, 0x22, 0x69, 0x6f, 0x74, 0x5f, 0x64, 0x65,
0x76, 0x69, 0x63, 0x65, 0x5f, 0x68, 0x61, 0x6e,
0x64, 0x6c, 0x65, 0x08, 0x63, 0x6f, 0x64, 0x65,
0x08, 0x65, 0x6d, 0x69, 0x74, 0x0e, 0x63, 0x6f,
0x6e, 0x6e, 0x65, 0x63, 0x74, 0x12, 0x72, 0x65,
0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x14,
0x64, 0x69, 0x73, 0x63, 0x6f, 0x6e, 0x6e, 0x65,
0x63, 0x74, 0x04, 0x63, 0x62, 0x06, 0x72, 0x65,
0x74, 0x26, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72,
0x69, 0x62, 0x65, 0x20, 0x69, 0x73, 0x20, 0x63,
0x61, 0x6c, 0x6c, 0x65, 0x64, 0x2a, 0x73, 0x75,
0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x20,
0x74, 0x6f, 0x70, 0x69, 0x63, 0x20, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x0a, 0x74, 0x6f, 0x70, 0x69,
0x63, 0x2e, 0x75, 0x6e, 0x73, 0x75, 0x62, 0x73,
0x63, 0x72, 0x69, 0x62, 0x65, 0x20, 0x74, 0x6f,
0x70, 0x69, 0x63, 0x20, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x30, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73,
0x68, 0x20, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x20,
0x69, 0x6e, 0x66, 0x6f, 0x20, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x24, 0x67, 0x65, 0x74, 0x20, 0x6e,
0x74, 0x70, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x20,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x0c, 0x70, 0x61,
0x72, 0x61, 0x6d, 0x73, 0x26, 0x70, 0x6f, 0x73,
0x74, 0x50, 0x72, 0x6f, 0x70, 0x73, 0x20, 0x69,
0x73, 0x20, 0x63, 0x61, 0x6c, 0x6c, 0x65, 0x64,
0x20, 0x70, 0x6f, 0x73, 0x74, 0x20, 0x70, 0x72,
0x6f, 0x70, 0x73, 0x20, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x1c, 0x6f, 0x6e, 0x20, 0x70, 0x72, 0x6f,
0x70, 0x73, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x26, 0x70, 0x6f, 0x73, 0x74, 0x45, 0x76, 0x65,
0x6e, 0x74, 0x20, 0x69, 0x73, 0x20, 0x63, 0x61,
0x6c, 0x6c, 0x65, 0x64, 0x20, 0x70, 0x6f, 0x73,
0x74, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x6f, 0x6e,
0x20, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65,
0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x0a, 0x63,
0x6c, 0x6f, 0x73, 0x65, 0x28, 0x65, 0x6e, 0x64,
0x20, 0x69, 0x6f, 0x74, 0x20, 0x63, 0x6c, 0x69,
0x65, 0x6e, 0x74, 0x20, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x24, 0x49, 0x6f, 0x54, 0x47, 0x61, 0x74,
0x65, 0x77, 0x61, 0x79, 0x49, 0x6e, 0x73, 0x74,
0x61, 0x6e, 0x63, 0x65, 0x24, 0x69, 0x6f, 0x74,
0x5f, 0x67, 0x61, 0x74, 0x65, 0x77, 0x61, 0x79,
0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x1a,
0x6f, 0x6e, 0x4d, 0x71, 0x74, 0x74, 0x4d, 0x65,
0x73, 0x73, 0x61, 0x67, 0x65, 0x1c, 0x61, 0x64,
0x64, 0x20, 0x74, 0x6f, 0x70, 0x6f, 0x20, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x1c, 0x67, 0x65, 0x74,
0x20, 0x74, 0x6f, 0x70, 0x6f, 0x20, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x22, 0x72, 0x65, 0x6d, 0x6f,
0x76, 0x65, 0x20, 0x74, 0x6f, 0x70, 0x6f, 0x20,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x61, 0x69,
0x6f, 0x74, 0x20, 0x73, 0x75, 0x62, 0x64, 0x65,
0x76, 0x20, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x20,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x30, 0x61, 0x69,
0x6f, 0x74, 0x20, 0x73, 0x75, 0x62, 0x64, 0x65,
0x76, 0x20, 0x6c, 0x6f, 0x67, 0x6f, 0x75, 0x74,
0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x34, 0x61,
0x69, 0x6f, 0x74, 0x20, 0x72, 0x65, 0x67, 0x69,
0x73, 0x74, 0x65, 0x72, 0x20, 0x73, 0x75, 0x62,
0x64, 0x65, 0x76, 0x20, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x2c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
0x20, 0x49, 0x6f, 0x74, 0x44, 0x65, 0x76, 0x69,
0x63, 0x65, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
0x2e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x20,
0x49, 0x6f, 0x74, 0x47, 0x61, 0x74, 0x65, 0x77,
0x61, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
0x10, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65,
0x72, 0x2a, 0x64, 0x79, 0x6e, 0x6d, 0x69, 0x63,
0x20, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65,
0x72, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x0f,
0x9c, 0x03, 0x03, 0x9e, 0x03, 0xa0, 0x03, 0xa2,
0x03, 0x03, 0x00, 0x05, 0xa4, 0x03, 0x00, 0x06,
0xa6, 0x03, 0x00, 0x07, 0xa8, 0x03, 0x00, 0x03,
0x00, 0xf8, 0x01, 0x00, 0x01, 0xf8, 0x01, 0x01,
0x02, 0xf8, 0x01, 0x02, 0x0e, 0x00, 0x06, 0x01,
0xa0, 0x01, 0x00, 0x04, 0x00, 0x03, 0x08, 0x1d,
0x8e, 0x02, 0x04, 0xaa, 0x03, 0x02, 0x00, 0x60,
0xea, 0x01, 0x03, 0x01, 0xe0, 0xac, 0x03, 0x04,
0x00, 0x60, 0xea, 0x01, 0x05, 0x03, 0xe0, 0xae,
0x03, 0x00, 0x0d, 0xa0, 0x03, 0x01, 0x0d, 0xa2,
0x03, 0x02, 0x0d, 0xaa, 0x03, 0x00, 0x09, 0xac,
0x03, 0x01, 0x09, 0xa4, 0x03, 0x02, 0x01, 0xa6,
0x03, 0x03, 0x01, 0xa8, 0x03, 0x04, 0x01, 0xbf,
0x1a, 0x5f, 0x05, 0x00, 0xbf, 0x1b, 0x5f, 0x06,
0x00, 0xbf, 0x1c, 0x5f, 0x07, 0x00, 0x61, 0x00,
0x00, 0x65, 0x00, 0x00, 0x41, 0xd8, 0x00, 0x00,
0x00, 0x61, 0x01, 0x00, 0xbe, 0x00, 0x56, 0xd5,
0x00, 0x00, 0x00, 0x01, 0xbf, 0x01, 0x54, 0xd9,
0x00, 0x00, 0x00, 0x00, 0xbf, 0x02, 0x54, 0xda,
0x00, 0x00, 0x00, 0x00, 0xbf, 0x03, 0x54, 0xdb,
0x00, 0x00, 0x00, 0x00, 0xbf, 0x04, 0x54, 0xdc,
0x00, 0x00, 0x00, 0x00, 0xbf, 0x05, 0x54, 0xdd,
0x00, 0x00, 0x00, 0x00, 0xbf, 0x06, 0x54, 0xde,
0x00, 0x00, 0x00, 0x00, 0xbf, 0x07, 0x54, 0xdf,
0x00, 0x00, 0x00, 0x00, 0xbf, 0x08, 0x54, 0xe0,
0x00, 0x00, 0x00, 0x00, 0xbf, 0x09, 0x54, 0xe1,
0x00, 0x00, 0x00, 0x00, 0xbf, 0x0a, 0x54, 0xe2,
0x00, 0x00, 0x00, 0x00, 0xbf, 0x0b, 0x54, 0xe3,
0x00, 0x00, 0x00, 0x00, 0x06, 0xc9, 0x0e, 0xcc,
0x68, 0x01, 0x00, 0xe3, 0x61, 0x02, 0x00, 0x65,
0x00, 0x00, 0x41, 0xd8, 0x00, 0x00, 0x00, 0x61,
0x03, 0x00, 0xbe, 0x0c, 0x56, 0xd6, 0x00, 0x00,
0x00, 0x01, 0xbf, 0x0d, 0x54, 0xd9, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x0e, 0x54, 0xe4, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x0f, 0x54, 0xe5, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x10, 0x54, 0xe6, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x11, 0x54, 0xe7, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x12, 0x54, 0xe8, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x13, 0x54, 0xe9, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x14, 0x54, 0xea, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x15, 0x54, 0xeb, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x16, 0x54, 0xdb, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x17, 0x54, 0xdc, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x18, 0x54, 0xdd, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x19, 0x54, 0xde, 0x00, 0x00,
0x00, 0x00, 0x06, 0xcb, 0x0e, 0xce, 0x68, 0x03,
0x00, 0x5f, 0x04, 0x00, 0x29, 0x9c, 0x03, 0x01,
0x52, 0x01, 0x00, 0x0f, 0x0a, 0x00, 0x16, 0x4a,
0x00, 0x08, 0x08, 0x00, 0x08, 0x14, 0x00, 0x08,
0x12, 0x00, 0x08, 0x12, 0x00, 0x08, 0x10, 0x00,
0x08, 0x14, 0x00, 0x08, 0x12, 0x00, 0x08, 0x14,
0x00, 0x08, 0x12, 0x00, 0x08, 0x12, 0x2b, 0x2d,
0x00, 0x16, 0x36, 0x00, 0x08, 0x08, 0x00, 0x08,
0x1c, 0x00, 0x08, 0x12, 0x00, 0x08, 0x12, 0x00,
0x08, 0x12, 0x00, 0x08, 0x12, 0x00, 0x08, 0x12,
0x00, 0x08, 0x12, 0x00, 0x08, 0x12, 0x00, 0x08,
0x12, 0x00, 0x08, 0x12, 0x00, 0x08, 0x10, 0x2b,
0x00, 0x0a, 0x26, 0x0e, 0xc6, 0x07, 0x01, 0x00,
0x01, 0x03, 0x01, 0x04, 0x01, 0x00, 0xac, 0x01,
0x04, 0xd8, 0x03, 0x00, 0x01, 0x00, 0xe2, 0x01,
0x00, 0x01, 0x00, 0xe0, 0x01, 0x00, 0x01, 0x00,
0x10, 0x00, 0x01, 0x40, 0xea, 0x01, 0x01, 0x0d,
0x0c, 0x02, 0xc8, 0x0c, 0x03, 0xc9, 0x61, 0x02,
0x00, 0x2b, 0xc4, 0x34, 0xc5, 0x21, 0x00, 0x00,
0x11, 0x64, 0x02, 0x00, 0x65, 0x00, 0x00, 0x11,
0xe9, 0x08, 0x62, 0x02, 0x00, 0x1b, 0x24, 0x00,
0x00, 0x0e, 0x0e, 0xd0, 0x97, 0x11, 0xea, 0x1f,
0x0e, 0xd0, 0x41, 0xed, 0x00, 0x00, 0x00, 0x97,
0x11, 0xea, 0x14, 0x0e, 0xd0, 0x41, 0xee, 0x00,
0x00, 0x00, 0x97, 0x11, 0xea, 0x09, 0x0e, 0xd0,
0x41, 0xef, 0x00, 0x00, 0x00, 0x97, 0xe9, 0x10,
0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0xf0,
0x00, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0x62,
0x02, 0x00, 0x0b, 0xd0, 0x41, 0xed, 0x00, 0x00,
0x00, 0x4c, 0xed, 0x00, 0x00, 0x00, 0xd0, 0x41,
0xee, 0x00, 0x00, 0x00, 0x4c, 0xee, 0x00, 0x00,
0x00, 0xd0, 0x41, 0xef, 0x00, 0x00, 0x00, 0x4c,
0xef, 0x00, 0x00, 0x00, 0xd0, 0x41, 0xf1, 0x00,
0x00, 0x00, 0x11, 0xea, 0x07, 0x0e, 0x04, 0xf2,
0x00, 0x00, 0x00, 0x4c, 0xf1, 0x00, 0x00, 0x00,
0xbc, 0x3c, 0x4c, 0xf3, 0x00, 0x00, 0x00, 0x43,
0xec, 0x00, 0x00, 0x00, 0x62, 0x02, 0x00, 0x42,
0xd9, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x0e,
0x62, 0x02, 0x00, 0x28, 0x9c, 0x03, 0x06, 0x0d,
0x35, 0x80, 0xbc, 0x49, 0x09, 0x17, 0x3a, 0x3a,
0x3a, 0x67, 0x26, 0x1d, 0x3f, 0x0e, 0x42, 0x07,
0x01, 0x00, 0x00, 0x01, 0x00, 0x07, 0x01, 0x01,
0x25, 0x01, 0x10, 0x00, 0x01, 0x00, 0xa0, 0x03,
0x01, 0x0c, 0x08, 0xc8, 0xc4, 0x65, 0x00, 0x00,
0x42, 0xd2, 0x00, 0x00, 0x00, 0xc4, 0x41, 0xec,
0x00, 0x00, 0x00, 0xbf, 0x00, 0x42, 0xf4, 0x00,
0x00, 0x00, 0xc4, 0x24, 0x01, 0x00, 0x24, 0x02,
0x00, 0x43, 0xf5, 0x00, 0x00, 0x00, 0x29, 0x9c,
0x03, 0x17, 0x05, 0x0d, 0x00, 0x0f, 0x22, 0x62,
0x0e, 0x43, 0x06, 0x01, 0x00, 0x01, 0x01, 0x01,
0x05, 0x00, 0x00, 0x88, 0x01, 0x02, 0xec, 0x03,
0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08,
0xc8, 0xd0, 0x41, 0xf7, 0x00, 0x00, 0x00, 0x97,
0xe9, 0x14, 0x38, 0xf8, 0x00, 0x00, 0x00, 0x42,
0xf9, 0x00, 0x00, 0x00, 0x04, 0xfa, 0x00, 0x00,
0x00, 0x24, 0x01, 0x00, 0x29, 0xc4, 0xd0, 0x41,
0xf7, 0x00, 0x00, 0x00, 0x43, 0xfb, 0x00, 0x00,
0x00, 0xd0, 0x41, 0xfc, 0x00, 0x00, 0x00, 0x11,
0xb4, 0xac, 0xe9, 0x12, 0xc4, 0x42, 0xfd, 0x00,
0x00, 0x00, 0x04, 0xfe, 0x00, 0x00, 0x00, 0x24,
0x01, 0x00, 0x0e, 0xeb, 0x42, 0x11, 0xb5, 0xac,
0xe9, 0x12, 0xc4, 0x42, 0xfd, 0x00, 0x00, 0x00,
0x04, 0xff, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00,
0x0e, 0xeb, 0x2c, 0x11, 0xb6, 0xac, 0xe9, 0x12,
0xc4, 0x42, 0xfd, 0x00, 0x00, 0x00, 0x04, 0x00,
0x01, 0x00, 0x00, 0x24, 0x01, 0x00, 0x0e, 0xeb,
0x16, 0x11, 0xb7, 0xac, 0xe9, 0x11, 0xc4, 0x42,
0xfd, 0x00, 0x00, 0x00, 0x04, 0x33, 0x00, 0x00,
0x00, 0xd0, 0x24, 0x02, 0x00, 0x0e, 0x29, 0x9c,
0x03, 0x18, 0x0e, 0x0d, 0x30, 0x5e, 0x08, 0x3f,
0x21, 0x1c, 0x58, 0x1c, 0x58, 0x1c, 0x58, 0x1c,
0x55, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x01,
0x00, 0x01, 0x00, 0x00, 0x09, 0x01, 0x10, 0x00,
0x01, 0x00, 0x08, 0xc8, 0xc4, 0x41, 0xfb, 0x00,
0x00, 0x00, 0x28, 0x9c, 0x03, 0x2c, 0x01, 0x0d,
0x0e, 0x42, 0x07, 0x01, 0x00, 0x02, 0x02, 0x02,
0x05, 0x00, 0x01, 0x47, 0x04, 0xd8, 0x03, 0x00,
0x01, 0x00, 0x82, 0x04, 0x00, 0x01, 0x00, 0x84,
0x04, 0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00,
0x08, 0xc9, 0x38, 0xf8, 0x00, 0x00, 0x00, 0x42,
0xf9, 0x00, 0x00, 0x00, 0x04, 0x03, 0x01, 0x00,
0x00, 0x24, 0x01, 0x00, 0x0e, 0xc5, 0x41, 0xf5,
0x00, 0x00, 0x00, 0x42, 0xdb, 0x00, 0x00, 0x00,
0xd0, 0xd1, 0x11, 0xea, 0x04, 0x0e, 0xbf, 0x00,
0x24, 0x02, 0x00, 0xcc, 0xb4, 0xa4, 0xe9, 0x16,
0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0x04,
0x01, 0x00, 0x00, 0xd0, 0x41, 0x05, 0x01, 0x00,
0x00, 0x21, 0x02, 0x00, 0x2f, 0xc4, 0x28, 0x9c,
0x03, 0x30, 0x06, 0x0d, 0x62, 0x76, 0x17, 0x67,
0x09, 0x0e, 0x43, 0x06, 0x01, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x29, 0x9c,
0x03, 0x32, 0x00, 0x0e, 0x42, 0x07, 0x01, 0x00,
0x02, 0x02, 0x02, 0x05, 0x00, 0x01, 0x2f, 0x04,
0x8a, 0x04, 0x00, 0x01, 0x00, 0x82, 0x04, 0x00,
0x01, 0x00, 0x84, 0x04, 0x00, 0x00, 0x00, 0x10,
0x00, 0x01, 0x00, 0x08, 0xc9, 0xc5, 0x41, 0xf5,
0x00, 0x00, 0x00, 0x42, 0xdc, 0x00, 0x00, 0x00,
0xd0, 0xd1, 0x11, 0xea, 0x04, 0x0e, 0xbf, 0x00,
0x24, 0x02, 0x00, 0xcc, 0xb4, 0xa4, 0xe9, 0x11,
0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0x06,
0x01, 0x00, 0x00, 0xd0, 0x21, 0x02, 0x00, 0x2f,
0xc4, 0x28, 0x9c, 0x03, 0x3a, 0x05, 0x0d, 0x76,
0x17, 0x4e, 0x09, 0x0e, 0x43, 0x06, 0x01, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
0x29, 0x9c, 0x03, 0x3b, 0x00, 0x0e, 0x42, 0x07,
0x01, 0x00, 0x02, 0x02, 0x02, 0x05, 0x00, 0x01,
0x34, 0x04, 0xd8, 0x03, 0x00, 0x01, 0x00, 0x82,
0x04, 0x00, 0x01, 0x00, 0x84, 0x04, 0x00, 0x00,
0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xc5,
0x41, 0xf5, 0x00, 0x00, 0x00, 0x42, 0xdd, 0x00,
0x00, 0x00, 0xd0, 0xd1, 0x11, 0xea, 0x04, 0x0e,
0xbf, 0x00, 0x24, 0x02, 0x00, 0xcc, 0xb4, 0xa4,
0xe9, 0x16, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11,
0x04, 0x07, 0x01, 0x00, 0x00, 0xd0, 0x41, 0x05,
0x01, 0x00, 0x00, 0x21, 0x02, 0x00, 0x2f, 0xc4,
0x28, 0x9c, 0x03, 0x43, 0x05, 0x0d, 0x76, 0x17,
0x67, 0x09, 0x0e, 0x43, 0x06, 0x01, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x29,
0x9c, 0x03, 0x44, 0x00, 0x0e, 0x42, 0x07, 0x01,
0x00, 0x01, 0x02, 0x01, 0x04, 0x00, 0x01, 0x2d,
0x03, 0x82, 0x04, 0x00, 0x01, 0x00, 0x84, 0x04,
0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08,
0xc9, 0xc5, 0x41, 0xf5, 0x00, 0x00, 0x00, 0x42,
0xde, 0x00, 0x00, 0x00, 0xd0, 0x11, 0xea, 0x04,
0x0e, 0xbf, 0x00, 0x24, 0x01, 0x00, 0xcc, 0xb4,
0xa4, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00,
0x11, 0x04, 0x08, 0x01, 0x00, 0x00, 0x21, 0x01,
0x00, 0x2f, 0xc4, 0x28, 0x9c, 0x03, 0x4c, 0x05,
0x0d, 0x71, 0x17, 0x49, 0x08, 0x0e, 0x43, 0x06,
0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x01, 0x00, 0x29, 0x9c, 0x03, 0x4d, 0x00, 0x0e,
0x42, 0x07, 0x01, 0x00, 0x02, 0x02, 0x02, 0x05,
0x00, 0x01, 0x41, 0x04, 0x92, 0x04, 0x00, 0x01,
0x00, 0x82, 0x04, 0x00, 0x01, 0x00, 0x84, 0x04,
0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08,
0xc9, 0x38, 0xf8, 0x00, 0x00, 0x00, 0x42, 0xf9,
0x00, 0x00, 0x00, 0x04, 0x0a, 0x01, 0x00, 0x00,
0x24, 0x01, 0x00, 0x0e, 0xc5, 0x41, 0xf5, 0x00,
0x00, 0x00, 0x42, 0xdf, 0x00, 0x00, 0x00, 0xd0,
0xd1, 0x11, 0xea, 0x04, 0x0e, 0xbf, 0x00, 0x24,
0x02, 0x00, 0xcc, 0xb4, 0xa4, 0xe9, 0x10, 0x38,
0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0x0b, 0x01,
0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0xc4, 0x28,
0x9c, 0x03, 0x54, 0x06, 0x0d, 0x62, 0x76, 0x17,
0x49, 0x09, 0x0e, 0x43, 0x06, 0x01, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x29,
0x9c, 0x03, 0x56, 0x00, 0x0e, 0x42, 0x07, 0x01,
0x00, 0x01, 0x02, 0x01, 0x03, 0x00, 0x00, 0x27,
0x03, 0x82, 0x04, 0x00, 0x01, 0x00, 0x84, 0x04,
0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08,
0xc9, 0xc5, 0x41, 0xf5, 0x00, 0x00, 0x00, 0x42,
0xe0, 0x00, 0x00, 0x00, 0xd0, 0x24, 0x01, 0x00,
0xcc, 0xb4, 0xa4, 0xe9, 0x10, 0x38, 0x8d, 0x00,
0x00, 0x00, 0x11, 0x04, 0x0c, 0x01, 0x00, 0x00,
0x21, 0x01, 0x00, 0x2f, 0xc4, 0x28, 0x9c, 0x03,
0x5e, 0x05, 0x0d, 0x53, 0x17, 0x49, 0x09, 0x0e,
0x42, 0x07, 0x01, 0x00, 0x02, 0x02, 0x02, 0x05,
0x00, 0x01, 0x41, 0x04, 0xd8, 0x03, 0x00, 0x01,
0x00, 0x82, 0x04, 0x00, 0x01, 0x00, 0x84, 0x04,
0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08,
0xc9, 0x38, 0xf8, 0x00, 0x00, 0x00, 0x42, 0xf9,
0x00, 0x00, 0x00, 0x04, 0x0d, 0x01, 0x00, 0x00,
0x24, 0x01, 0x00, 0x0e, 0xc5, 0x41, 0xf5, 0x00,
0x00, 0x00, 0x42, 0xe1, 0x00, 0x00, 0x00, 0xd0,
0xd1, 0x11, 0xea, 0x04, 0x0e, 0xbf, 0x00, 0x24,
0x02, 0x00, 0xcc, 0xb4, 0xa4, 0xe9, 0x10, 0x38,
0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0x0e, 0x01,
0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0xc4, 0x28,
0x9c, 0x03, 0x67, 0x06, 0x0d, 0x62, 0x76, 0x17,
0x49, 0x09, 0x0e, 0x43, 0x06, 0x01, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x29,
0x9c, 0x03, 0x69, 0x00, 0x0e, 0x42, 0x07, 0x01,
0x00, 0x01, 0x02, 0x01, 0x03, 0x00, 0x00, 0x27,
0x03, 0x82, 0x04, 0x00, 0x01, 0x00, 0x84, 0x04,
0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08,
0xc9, 0xc5, 0x41, 0xf5, 0x00, 0x00, 0x00, 0x42,
0xe2, 0x00, 0x00, 0x00, 0xd0, 0x24, 0x01, 0x00,
0xcc, 0xb4, 0xa4, 0xe9, 0x10, 0x38, 0x8d, 0x00,
0x00, 0x00, 0x11, 0x04, 0x0f, 0x01, 0x00, 0x00,
0x21, 0x01, 0x00, 0x2f, 0xc4, 0x28, 0x9c, 0x03,
0x71, 0x05, 0x0d, 0x53, 0x17, 0x49, 0x09, 0x0e,
0x42, 0x07, 0x01, 0x00, 0x01, 0x02, 0x01, 0x04,
0x00, 0x01, 0x2d, 0x03, 0x82, 0x04, 0x00, 0x01,
0x00, 0x84, 0x04, 0x00, 0x00, 0x00, 0x10, 0x00,
0x01, 0x00, 0x08, 0xc9, 0xc5, 0x41, 0xf5, 0x00,
0x00, 0x00, 0x42, 0x10, 0x01, 0x00, 0x00, 0xd0,
0x11, 0xea, 0x04, 0x0e, 0xbf, 0x00, 0x24, 0x01,
0x00, 0xcc, 0xb4, 0xa4, 0xe9, 0x10, 0x38, 0x8d,
0x00, 0x00, 0x00, 0x11, 0x04, 0x11, 0x01, 0x00,
0x00, 0x21, 0x01, 0x00, 0x2f, 0xc4, 0x28, 0x9c,
0x03, 0x7a, 0x05, 0x0d, 0x71, 0x17, 0x49, 0x09,
0x0e, 0x43, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x01, 0x00, 0x29, 0x9c, 0x03,
0x7b, 0x00, 0x0e, 0xc6, 0x07, 0x01, 0x00, 0x01,
0x03, 0x01, 0x04, 0x01, 0x00, 0xc2, 0x01, 0x04,
0xd8, 0x03, 0x00, 0x01, 0x00, 0xe2, 0x01, 0x00,
0x01, 0x00, 0xe0, 0x01, 0x00, 0x01, 0x00, 0x10,
0x00, 0x01, 0x40, 0xea, 0x01, 0x03, 0x0d, 0x0c,
0x02, 0xc8, 0x0c, 0x03, 0xc9, 0x61, 0x02, 0x00,
0x2b, 0xc4, 0x34, 0xc5, 0x21, 0x00, 0x00, 0x11,
0x64, 0x02, 0x00, 0x65, 0x00, 0x00, 0x11, 0xe9,
0x08, 0x62, 0x02, 0x00, 0x1b, 0x24, 0x00, 0x00,
0x0e, 0x0e, 0xd0, 0x97, 0x11, 0xea, 0x1f, 0x0e,
0xd0, 0x41, 0xed, 0x00, 0x00, 0x00, 0x97, 0x11,
0xea, 0x14, 0x0e, 0xd0, 0x41, 0xee, 0x00, 0x00,
0x00, 0x97, 0x11, 0xea, 0x09, 0x0e, 0xd0, 0x41,
0xef, 0x00, 0x00, 0x00, 0x97, 0xe9, 0x10, 0x38,
0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0xf0, 0x00,
0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0x62, 0x02,
0x00, 0x0b, 0xd0, 0x41, 0xed, 0x00, 0x00, 0x00,
0x4c, 0xed, 0x00, 0x00, 0x00, 0xd0, 0x41, 0xee,
0x00, 0x00, 0x00, 0x4c, 0xee, 0x00, 0x00, 0x00,
0xd0, 0x41, 0xef, 0x00, 0x00, 0x00, 0x4c, 0xef,
0x00, 0x00, 0x00, 0xd0, 0x41, 0xf3, 0x00, 0x00,
0x00, 0x11, 0xea, 0x04, 0x0e, 0xbc, 0x3c, 0x4c,
0xf3, 0x00, 0x00, 0x00, 0xd0, 0x41, 0xf1, 0x00,
0x00, 0x00, 0x11, 0xea, 0x07, 0x0e, 0x04, 0xf2,
0x00, 0x00, 0x00, 0x4c, 0xf1, 0x00, 0x00, 0x00,
0x43, 0xec, 0x00, 0x00, 0x00, 0x62, 0x02, 0x00,
0x42, 0xe5, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00,
0x0e, 0x62, 0x02, 0x00, 0x42, 0xd9, 0x00, 0x00,
0x00, 0x24, 0x00, 0x00, 0x0e, 0x62, 0x02, 0x00,
0x28, 0x9c, 0x03, 0x86, 0x01, 0x0e, 0x35, 0x80,
0xbc, 0x49, 0x09, 0x17, 0x3a, 0x3a, 0x3a, 0x58,
0x67, 0x1d, 0x3f, 0x3f, 0x0e, 0x42, 0x07, 0x01,
0x00, 0x00, 0x01, 0x00, 0x07, 0x01, 0x01, 0x25,
0x01, 0x10, 0x00, 0x01, 0x00, 0xa2, 0x03, 0x02,
0x0c, 0x08, 0xc8, 0xc4, 0x65, 0x00, 0x00, 0x42,
0xd3, 0x00, 0x00, 0x00, 0xc4, 0x41, 0xec, 0x00,
0x00, 0x00, 0xbf, 0x00, 0x42, 0xf4, 0x00, 0x00,
0x00, 0xc4, 0x24, 0x01, 0x00, 0x24, 0x02, 0x00,
0x43, 0x12, 0x01, 0x00, 0x00, 0x29, 0x9c, 0x03,
0x98, 0x01, 0x05, 0x0d, 0x00, 0x0f, 0x0c, 0x62,
0x0e, 0x43, 0x06, 0x01, 0x00, 0x01, 0x01, 0x01,
0x03, 0x00, 0x00, 0x33, 0x02, 0xec, 0x03, 0x00,
0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc8,
0xd0, 0x41, 0xf7, 0x00, 0x00, 0x00, 0x97, 0x11,
0xea, 0x0a, 0x0e, 0xd0, 0x41, 0xfc, 0x00, 0x00,
0x00, 0xb4, 0xab, 0xe9, 0x02, 0x29, 0xc4, 0xd0,
0x41, 0xf7, 0x00, 0x00, 0x00, 0x43, 0x13, 0x01,
0x00, 0x00, 0xc4, 0x42, 0xfd, 0x00, 0x00, 0x00,
0x04, 0xfe, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00,
0x29, 0x9c, 0x03, 0x99, 0x01, 0x05, 0x0d, 0x6d,
0x08, 0x3f, 0x49, 0x0e, 0x42, 0x07, 0x01, 0x00,
0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x09, 0x01,
0x10, 0x00, 0x01, 0x00, 0x08, 0xc8, 0xc4, 0x41,
0x13, 0x01, 0x00, 0x00, 0x28, 0x9c, 0x03, 0xa2,
0x01, 0x01, 0x0d, 0x0e, 0x42, 0x07, 0x01, 0x00,
0x00, 0x01, 0x00, 0x05, 0x01, 0x01, 0x19, 0x01,
0x10, 0x00, 0x01, 0x00, 0xa2, 0x03, 0x02, 0x0c,
0x08, 0xc8, 0x65, 0x00, 0x00, 0x42, 0x14, 0x01,
0x00, 0x00, 0xbf, 0x00, 0x42, 0xf4, 0x00, 0x00,
0x00, 0xc4, 0x24, 0x01, 0x00, 0x24, 0x01, 0x00,
0x29, 0x9c, 0x03, 0xa6, 0x01, 0x05, 0x0d, 0x00,
0x08, 0x14, 0x49, 0x0e, 0x43, 0x06, 0x01, 0x00,
0x01, 0x01, 0x01, 0x05, 0x00, 0x00, 0x4a, 0x02,
0xec, 0x03, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01,
0x00, 0x08, 0xc8, 0xd0, 0x41, 0xfc, 0x00, 0x00,
0x00, 0x11, 0xb5, 0xac, 0xe9, 0x12, 0xc4, 0x42,
0xfd, 0x00, 0x00, 0x00, 0x04, 0xff, 0x00, 0x00,
0x00, 0x24, 0x01, 0x00, 0x0e, 0xeb, 0x2c, 0x11,
0xb6, 0xac, 0xe9, 0x12, 0xc4, 0x42, 0xfd, 0x00,
0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x24,
0x01, 0x00, 0x0e, 0xeb, 0x16, 0x11, 0xb7, 0xac,
0xe9, 0x11, 0xc4, 0x42, 0xfd, 0x00, 0x00, 0x00,
0x04, 0x33, 0x00, 0x00, 0x00, 0xd0, 0x24, 0x02,
0x00, 0x0e, 0x29, 0x9c, 0x03, 0xa7, 0x01, 0x08,
0x0d, 0x21, 0x1c, 0x58, 0x1c, 0x58, 0x1c, 0x55,
0x0e, 0x42, 0x07, 0x01, 0x00, 0x02, 0x02, 0x02,
0x05, 0x00, 0x01, 0x2e, 0x04, 0xd8, 0x03, 0x00,
0x01, 0x00, 0x82, 0x04, 0x00, 0x01, 0x00, 0x84,
0x04, 0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00,
0x08, 0xc9, 0xc5, 0x41, 0x12, 0x01, 0x00, 0x00,
0x42, 0xe6, 0x00, 0x00, 0x00, 0xd0, 0xd1, 0x11,
0xea, 0x04, 0x0e, 0xbf, 0x00, 0x24, 0x02, 0x00,
0xcc, 0xb4, 0xa4, 0xe9, 0x10, 0x38, 0x8d, 0x00,
0x00, 0x00, 0x11, 0x04, 0x15, 0x01, 0x00, 0x00,
0x21, 0x01, 0x00, 0x2f, 0xc4, 0x28, 0x9c, 0x03,
0xb4, 0x01, 0x05, 0x0d, 0x76, 0x17, 0x49, 0x09,
0x0e, 0x43, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x01, 0x00, 0x29, 0x9c, 0x03,
0xb5, 0x01, 0x00, 0x0e, 0x42, 0x07, 0x01, 0x00,
0x01, 0x02, 0x01, 0x04, 0x00, 0x01, 0x2d, 0x03,
0x82, 0x04, 0x00, 0x01, 0x00, 0x84, 0x04, 0x00,
0x00, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9,
0xc5, 0x41, 0x12, 0x01, 0x00, 0x00, 0x42, 0xe7,
0x00, 0x00, 0x00, 0xd0, 0x11, 0xea, 0x04, 0x0e,
0xbf, 0x00, 0x24, 0x01, 0x00, 0xcc, 0xb4, 0xa4,
0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11,
0x04, 0x16, 0x01, 0x00, 0x00, 0x21, 0x01, 0x00,
0x2f, 0xc4, 0x28, 0x9c, 0x03, 0xbd, 0x01, 0x05,
0x0d, 0x71, 0x17, 0x49, 0x09, 0x0e, 0x43, 0x06,
0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x01, 0x00, 0x29, 0x9c, 0x03, 0xbe, 0x01, 0x00,
0x0e, 0x42, 0x07, 0x01, 0x00, 0x02, 0x02, 0x02,
0x05, 0x00, 0x01, 0x2e, 0x04, 0xd8, 0x03, 0x00,
0x01, 0x00, 0x82, 0x04, 0x00, 0x01, 0x00, 0x84,
0x04, 0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00,
0x08, 0xc9, 0xc5, 0x41, 0x12, 0x01, 0x00, 0x00,
0x42, 0xe8, 0x00, 0x00, 0x00, 0xd0, 0xd1, 0x11,
0xea, 0x04, 0x0e, 0xbf, 0x00, 0x24, 0x02, 0x00,
0xcc, 0xb4, 0xa4, 0xe9, 0x10, 0x38, 0x8d, 0x00,
0x00, 0x00, 0x11, 0x04, 0x17, 0x01, 0x00, 0x00,
0x21, 0x01, 0x00, 0x2f, 0xc4, 0x28, 0x9c, 0x03,
0xc6, 0x01, 0x05, 0x0d, 0x76, 0x17, 0x49, 0x09,
0x0e, 0x43, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x01, 0x00, 0x29, 0x9c, 0x03,
0xc7, 0x01, 0x00, 0x0e, 0x42, 0x07, 0x01, 0x00,
0x02, 0x02, 0x02, 0x05, 0x00, 0x01, 0x2e, 0x04,
0xd8, 0x03, 0x00, 0x01, 0x00, 0x82, 0x04, 0x00,
0x01, 0x00, 0x84, 0x04, 0x00, 0x00, 0x00, 0x10,
0x00, 0x01, 0x00, 0x08, 0xc9, 0xc5, 0x41, 0x12,
0x01, 0x00, 0x00, 0x42, 0xe9, 0x00, 0x00, 0x00,
0xd0, 0xd1, 0x11, 0xea, 0x04, 0x0e, 0xbf, 0x00,
0x24, 0x02, 0x00, 0xcc, 0xb4, 0xa4, 0xe9, 0x10,
0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0x18,
0x01, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0xc4,
0x28, 0x9c, 0x03, 0xcf, 0x01, 0x05, 0x0d, 0x76,
0x17, 0x49, 0x09, 0x0e, 0x43, 0x06, 0x01, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
0x29, 0x9c, 0x03, 0xd0, 0x01, 0x00, 0x0e, 0x42,
0x07, 0x01, 0x00, 0x02, 0x02, 0x02, 0x05, 0x00,
0x01, 0x2e, 0x04, 0xd8, 0x03, 0x00, 0x01, 0x00,
0x82, 0x04, 0x00, 0x01, 0x00, 0x84, 0x04, 0x00,
0x00, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9,
0xc5, 0x41, 0x12, 0x01, 0x00, 0x00, 0x42, 0xea,
0x00, 0x00, 0x00, 0xd0, 0xd1, 0x11, 0xea, 0x04,
0x0e, 0xbf, 0x00, 0x24, 0x02, 0x00, 0xcc, 0xb4,
0xa4, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00,
0x11, 0x04, 0x19, 0x01, 0x00, 0x00, 0x21, 0x01,
0x00, 0x2f, 0xc4, 0x28, 0x9c, 0x03, 0xd8, 0x01,
0x05, 0x0d, 0x76, 0x17, 0x49, 0x09, 0x0e, 0x43,
0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x01, 0x00, 0x29, 0x9c, 0x03, 0xd9, 0x01,
0x00, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x02, 0x02,
0x02, 0x05, 0x00, 0x01, 0x2e, 0x04, 0xd8, 0x03,
0x00, 0x01, 0x00, 0x82, 0x04, 0x00, 0x01, 0x00,
0x84, 0x04, 0x00, 0x00, 0x00, 0x10, 0x00, 0x01,
0x00, 0x08, 0xc9, 0xc5, 0x41, 0x12, 0x01, 0x00,
0x00, 0x42, 0xeb, 0x00, 0x00, 0x00, 0xd0, 0xd1,
0x11, 0xea, 0x04, 0x0e, 0xbf, 0x00, 0x24, 0x02,
0x00, 0xcc, 0xb4, 0xa4, 0xe9, 0x10, 0x38, 0x8d,
0x00, 0x00, 0x00, 0x11, 0x04, 0x1a, 0x01, 0x00,
0x00, 0x21, 0x01, 0x00, 0x2f, 0xc4, 0x28, 0x9c,
0x03, 0xe1, 0x01, 0x05, 0x0d, 0x76, 0x17, 0x49,
0x09, 0x0e, 0x43, 0x06, 0x01, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x29, 0x9c,
0x03, 0xe2, 0x01, 0x00, 0x0e, 0x42, 0x07, 0x01,
0x00, 0x02, 0x02, 0x02, 0x05, 0x00, 0x01, 0x38,
0x04, 0x92, 0x04, 0x00, 0x01, 0x00, 0x82, 0x04,
0x00, 0x01, 0x00, 0x84, 0x04, 0x00, 0x00, 0x00,
0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xc5, 0x41,
0x12, 0x01, 0x00, 0x00, 0x42, 0xdb, 0x00, 0x00,
0x00, 0xd0, 0xd1, 0x11, 0xea, 0x04, 0x0e, 0xbf,
0x00, 0x24, 0x02, 0x00, 0xcc, 0xb4, 0xa4, 0xe9,
0x1a, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04,
0x04, 0x01, 0x00, 0x00, 0x38, 0xec, 0x00, 0x00,
0x00, 0x41, 0x05, 0x01, 0x00, 0x00, 0x21, 0x02,
0x00, 0x2f, 0xc4, 0x28, 0x9c, 0x03, 0xea, 0x01,
0x05, 0x0d, 0x76, 0x17, 0x7b, 0x09, 0x0e, 0x43,
0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x01, 0x00, 0x29, 0x9c, 0x03, 0xeb, 0x01,
0x00, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x02, 0x02,
0x02, 0x05, 0x00, 0x01, 0x2f, 0x04, 0x8a, 0x04,
0x00, 0x01, 0x00, 0x82, 0x04, 0x00, 0x01, 0x00,
0x84, 0x04, 0x00, 0x00, 0x00, 0x10, 0x00, 0x01,
0x00, 0x08, 0xc9, 0xc5, 0x41, 0x12, 0x01, 0x00,
0x00, 0x42, 0xdc, 0x00, 0x00, 0x00, 0xd0, 0xd1,
0x11, 0xea, 0x04, 0x0e, 0xbf, 0x00, 0x24, 0x02,
0x00, 0xcc, 0xb4, 0xa4, 0xe9, 0x11, 0x38, 0x8d,
0x00, 0x00, 0x00, 0x11, 0x04, 0x06, 0x01, 0x00,
0x00, 0xd0, 0x21, 0x02, 0x00, 0x2f, 0xc4, 0x28,
0x9c, 0x03, 0xf3, 0x01, 0x05, 0x0d, 0x76, 0x17,
0x4e, 0x09, 0x0e, 0x43, 0x06, 0x01, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x29,
0x9c, 0x03, 0xf4, 0x01, 0x00, 0x0e, 0x42, 0x07,
0x01, 0x00, 0x02, 0x02, 0x02, 0x05, 0x00, 0x01,
0x34, 0x04, 0xd8, 0x03, 0x00, 0x01, 0x00, 0x82,
0x04, 0x00, 0x01, 0x00, 0x84, 0x04, 0x00, 0x00,
0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9, 0xc5,
0x41, 0x12, 0x01, 0x00, 0x00, 0x42, 0xdd, 0x00,
0x00, 0x00, 0xd0, 0xd1, 0x11, 0xea, 0x04, 0x0e,
0xbf, 0x00, 0x24, 0x02, 0x00, 0xcc, 0xb4, 0xa4,
0xe9, 0x16, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11,
0x04, 0x07, 0x01, 0x00, 0x00, 0xd0, 0x41, 0x05,
0x01, 0x00, 0x00, 0x21, 0x02, 0x00, 0x2f, 0xc4,
0x28, 0x9c, 0x03, 0xfc, 0x01, 0x05, 0x0d, 0x76,
0x17, 0x67, 0x09, 0x0e, 0x43, 0x06, 0x01, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
0x29, 0x9c, 0x03, 0xfd, 0x01, 0x00, 0x0e, 0x42,
0x07, 0x01, 0x00, 0x01, 0x02, 0x01, 0x04, 0x00,
0x01, 0x2d, 0x03, 0x82, 0x04, 0x00, 0x01, 0x00,
0x84, 0x04, 0x00, 0x00, 0x00, 0x10, 0x00, 0x01,
0x00, 0x08, 0xc9, 0xc5, 0x41, 0x12, 0x01, 0x00,
0x00, 0x42, 0xde, 0x00, 0x00, 0x00, 0xd0, 0x11,
0xea, 0x04, 0x0e, 0xbf, 0x00, 0x24, 0x01, 0x00,
0xcc, 0xb4, 0xa4, 0xe9, 0x10, 0x38, 0x8d, 0x00,
0x00, 0x00, 0x11, 0x04, 0x08, 0x01, 0x00, 0x00,
0x21, 0x01, 0x00, 0x2f, 0xc4, 0x28, 0x9c, 0x03,
0x85, 0x02, 0x05, 0x0d, 0x71, 0x17, 0x49, 0x08,
0x0e, 0x43, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x01, 0x00, 0x29, 0x9c, 0x03,
0x86, 0x02, 0x00, 0x0e, 0x43, 0x06, 0x01, 0xa4,
0x03, 0x01, 0x00, 0x01, 0x03, 0x01, 0x00, 0x1c,
0x01, 0xd8, 0x03, 0x00, 0x01, 0x00, 0xaa, 0x03,
0x03, 0x08, 0x38, 0xf8, 0x00, 0x00, 0x00, 0x42,
0xf9, 0x00, 0x00, 0x00, 0x04, 0x1b, 0x01, 0x00,
0x00, 0x24, 0x01, 0x00, 0x0e, 0x65, 0x00, 0x00,
0x11, 0xd0, 0x21, 0x01, 0x00, 0x28, 0x9c, 0x03,
0x8e, 0x02, 0x02, 0x03, 0x62, 0x0e, 0x43, 0x06,
0x01, 0xa6, 0x03, 0x01, 0x00, 0x01, 0x03, 0x01,
0x00, 0x1c, 0x01, 0xd8, 0x03, 0x00, 0x01, 0x00,
0xac, 0x03, 0x04, 0x08, 0x38, 0xf8, 0x00, 0x00,
0x00, 0x42, 0xf9, 0x00, 0x00, 0x00, 0x04, 0x1c,
0x01, 0x00, 0x00, 0x24, 0x01, 0x00, 0x0e, 0x65,
0x00, 0x00, 0x11, 0xd0, 0x21, 0x01, 0x00, 0x28,
0x9c, 0x03, 0x93, 0x02, 0x02, 0x03, 0x62, 0x0e,
0x43, 0x06, 0x01, 0xa8, 0x03, 0x02, 0x01, 0x02,
0x04, 0x01, 0x00, 0x23, 0x03, 0xd8, 0x03, 0x00,
0x01, 0x00, 0x82, 0x04, 0x00, 0x01, 0x00, 0x84,
0x04, 0x00, 0x00, 0x00, 0xa0, 0x03, 0x01, 0x0c,
0x65, 0x00, 0x00, 0x42, 0x1d, 0x01, 0x00, 0x00,
0xd0, 0xd1, 0x24, 0x02, 0x00, 0xcc, 0xb4, 0xa4,
0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11,
0x04, 0x1e, 0x01, 0x00, 0x00, 0x21, 0x01, 0x00,
0x2f, 0xc4, 0x28, 0x9c, 0x03, 0x98, 0x02, 0x05,
0x03, 0x49, 0x17, 0x49, 0x09,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_iot.c | C | apache-2.0 | 29,641 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_location_size = 1487;
const uint8_t jslib_location[1487] = {
0x01, 0x27, 0x1e, 0x73, 0x72, 0x63, 0x2f, 0x6c,
0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
0x6a, 0x73, 0x06, 0x73, 0x74, 0x64, 0x0e, 0x4e,
0x45, 0x54, 0x57, 0x4f, 0x52, 0x4b, 0x08, 0x69,
0x6e, 0x69, 0x74, 0x22, 0x41, 0x44, 0x56, 0x41,
0x4e, 0x43, 0x45, 0x44, 0x5f, 0x4c, 0x4f, 0x43,
0x41, 0x54, 0x49, 0x4f, 0x4e, 0x12, 0x57, 0x49,
0x46, 0x49, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x1a,
0x43, 0x45, 0x4c, 0x4c, 0x55, 0x4c, 0x41, 0x52,
0x5f, 0x54, 0x59, 0x50, 0x45, 0x16, 0x45, 0x54,
0x48, 0x4e, 0x45, 0x54, 0x5f, 0x54, 0x59, 0x50,
0x45, 0x1e, 0x67, 0x65, 0x74, 0x41, 0x63, 0x63,
0x65, 0x73, 0x73, 0x41, 0x70, 0x49, 0x6e, 0x66,
0x6f, 0x24, 0x67, 0x65, 0x74, 0x41, 0x63, 0x63,
0x65, 0x73, 0x73, 0x65, 0x64, 0x4c, 0x62, 0x73,
0x49, 0x6e, 0x66, 0x6f, 0x0e, 0x67, 0x65, 0x74,
0x54, 0x79, 0x70, 0x65, 0x0e, 0x64, 0x65, 0x76,
0x54, 0x79, 0x70, 0x65, 0x78, 0x69, 0x6d, 0x70,
0x6f, 0x72, 0x74, 0x20, 0x2a, 0x20, 0x61, 0x73,
0x20, 0x4e, 0x45, 0x54, 0x4d, 0x47, 0x52, 0x20,
0x66, 0x72, 0x6f, 0x6d, 0x20, 0x27, 0x4e, 0x45,
0x54, 0x4d, 0x47, 0x52, 0x27, 0x3b, 0x20, 0x67,
0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x54, 0x68, 0x69,
0x73, 0x2e, 0x4e, 0x45, 0x54, 0x4d, 0x47, 0x52,
0x20, 0x3d, 0x20, 0x4e, 0x45, 0x54, 0x4d, 0x47,
0x52, 0x88, 0x01, 0x69, 0x6d, 0x70, 0x6f, 0x72,
0x74, 0x20, 0x2a, 0x20, 0x61, 0x73, 0x20, 0x43,
0x45, 0x4c, 0x4c, 0x55, 0x4c, 0x41, 0x52, 0x20,
0x66, 0x72, 0x6f, 0x6d, 0x20, 0x27, 0x43, 0x45,
0x4c, 0x4c, 0x55, 0x4c, 0x41, 0x52, 0x27, 0x3b,
0x20, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x54,
0x68, 0x69, 0x73, 0x2e, 0x43, 0x45, 0x4c, 0x4c,
0x55, 0x4c, 0x41, 0x52, 0x20, 0x3d, 0x20, 0x43,
0x45, 0x4c, 0x4c, 0x55, 0x4c, 0x41, 0x52, 0x08,
0x69, 0x6e, 0x66, 0x6f, 0x16, 0x64, 0x65, 0x76,
0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72,
0x06, 0x6d, 0x61, 0x63, 0x0e, 0x69, 0x70, 0x5f,
0x61, 0x64, 0x64, 0x72, 0x08, 0x72, 0x73, 0x73,
0x69, 0x04, 0x69, 0x70, 0x0c, 0x4e, 0x45, 0x54,
0x4d, 0x47, 0x52, 0x0c, 0x67, 0x65, 0x74, 0x44,
0x65, 0x76, 0x14, 0x2f, 0x64, 0x65, 0x76, 0x2f,
0x77, 0x69, 0x66, 0x69, 0x30, 0x10, 0x67, 0x65,
0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x16, 0x67,
0x65, 0x74, 0x49, 0x66, 0x43, 0x6f, 0x6e, 0x66,
0x69, 0x67, 0x0e, 0x63, 0x6f, 0x6e, 0x73, 0x6f,
0x6c, 0x65, 0x06, 0x6c, 0x6f, 0x67, 0x38, 0x45,
0x52, 0x52, 0x4f, 0x52, 0x3a, 0x20, 0x77, 0x69,
0x66, 0x69, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f,
0x74, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63,
0x74, 0x65, 0x64, 0x44, 0x45, 0x52, 0x52, 0x4f,
0x52, 0x3a, 0x20, 0x62, 0x6f, 0x61, 0x72, 0x64,
0x20, 0x64, 0x6f, 0x65, 0x73, 0x20, 0x6e, 0x6f,
0x74, 0x20, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72,
0x74, 0x20, 0x77, 0x69, 0x66, 0x69, 0x0c, 0x63,
0x65, 0x6c, 0x6c, 0x69, 0x64, 0x06, 0x6c, 0x61,
0x63, 0x06, 0x6d, 0x63, 0x63, 0x06, 0x6d, 0x6e,
0x63, 0x0c, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c,
0x10, 0x43, 0x45, 0x4c, 0x4c, 0x55, 0x4c, 0x41,
0x52, 0x12, 0x67, 0x65, 0x74, 0x53, 0x74, 0x61,
0x74, 0x75, 0x73, 0x1c, 0x67, 0x65, 0x74, 0x4c,
0x6f, 0x63, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x6e,
0x66, 0x6f, 0x40, 0x45, 0x52, 0x52, 0x4f, 0x52,
0x3a, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x75, 0x6c,
0x61, 0x72, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f,
0x74, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63,
0x74, 0x65, 0x64, 0x4c, 0x45, 0x52, 0x52, 0x4f,
0x52, 0x3a, 0x20, 0x62, 0x6f, 0x61, 0x72, 0x64,
0x20, 0x64, 0x6f, 0x65, 0x73, 0x20, 0x6e, 0x6f,
0x74, 0x20, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72,
0x74, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x75, 0x6c,
0x61, 0x72, 0x0f, 0x9c, 0x03, 0x02, 0x9e, 0x03,
0xa0, 0x03, 0x01, 0x00, 0x06, 0xa2, 0x03, 0x00,
0x02, 0x00, 0xf8, 0x01, 0x00, 0x01, 0xf8, 0x01,
0x01, 0x0e, 0x00, 0x06, 0x01, 0xa0, 0x01, 0x00,
0x02, 0x00, 0x03, 0x07, 0x04, 0x37, 0x02, 0xa4,
0x03, 0x02, 0x00, 0x60, 0xea, 0x01, 0x03, 0x01,
0xe0, 0x9e, 0x03, 0x00, 0x0d, 0xa0, 0x03, 0x01,
0x0d, 0xa6, 0x03, 0x00, 0x01, 0xa8, 0x03, 0x01,
0x01, 0xaa, 0x03, 0x02, 0x01, 0xa4, 0x03, 0x03,
0x09, 0xa2, 0x03, 0x04, 0x01, 0xbf, 0x03, 0x5f,
0x06, 0x00, 0xb4, 0xe2, 0xb5, 0xe3, 0xb6, 0x5f,
0x04, 0x00, 0x61, 0x00, 0x00, 0x06, 0x61, 0x01,
0x00, 0xbe, 0x00, 0x56, 0xd2, 0x00, 0x00, 0x00,
0x00, 0xbf, 0x01, 0x54, 0xd6, 0x00, 0x00, 0x00,
0x00, 0xbf, 0x02, 0x54, 0xd7, 0x00, 0x00, 0x00,
0x00, 0x06, 0xc9, 0x0e, 0xcc, 0x68, 0x01, 0x00,
0x5f, 0x05, 0x00, 0x29, 0x9c, 0x03, 0x01, 0x11,
0x01, 0x00, 0x05, 0x08, 0x0d, 0x0d, 0x18, 0x00,
0x0f, 0x38, 0x00, 0x08, 0x32, 0x2b, 0x00, 0x0a,
0x08, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x01,
0x00, 0x03, 0x05, 0x00, 0x5a, 0x01, 0x10, 0x00,
0x01, 0x00, 0xea, 0x01, 0x01, 0x0d, 0xa0, 0x03,
0x01, 0x0c, 0xa6, 0x03, 0x02, 0x00, 0x9e, 0x03,
0x00, 0x0c, 0xa8, 0x03, 0x03, 0x00, 0x08, 0xc8,
0x2b, 0x65, 0x00, 0x00, 0x11, 0xe9, 0x06, 0xc4,
0x1b, 0x24, 0x00, 0x00, 0x0e, 0xc4, 0x65, 0x01,
0x00, 0x42, 0xd8, 0x00, 0x00, 0x00, 0x24, 0x00,
0x00, 0x43, 0xd9, 0x00, 0x00, 0x00, 0xc4, 0x41,
0xd9, 0x00, 0x00, 0x00, 0xde, 0xac, 0xe9, 0x13,
0x65, 0x03, 0x00, 0x42, 0x3a, 0x00, 0x00, 0x00,
0x04, 0xda, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00,
0x0e, 0x29, 0xc4, 0x41, 0xd9, 0x00, 0x00, 0x00,
0x5e, 0x04, 0x00, 0xac, 0xe9, 0x12, 0x65, 0x03,
0x00, 0x42, 0x3a, 0x00, 0x00, 0x00, 0x04, 0xdb,
0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0x0e, 0x29,
0x9c, 0x03, 0x09, 0x07, 0x4e, 0x58, 0x35, 0x58,
0x08, 0x3f, 0x59, 0x0e, 0x42, 0x07, 0x01, 0x00,
0x00, 0x06, 0x00, 0x04, 0x01, 0x00, 0xd3, 0x01,
0x06, 0xb8, 0x03, 0x00, 0x00, 0x00, 0xba, 0x03,
0x00, 0x01, 0x00, 0xbc, 0x03, 0x00, 0x02, 0x00,
0xbe, 0x03, 0x00, 0x03, 0x00, 0xc0, 0x03, 0x00,
0x04, 0x00, 0x10, 0x00, 0x01, 0x00, 0xa6, 0x03,
0x02, 0x00, 0x08, 0xc2, 0x05, 0x0b, 0x07, 0x4c,
0xde, 0x00, 0x00, 0x00, 0x07, 0x4c, 0xe1, 0x00,
0x00, 0x00, 0x07, 0x4c, 0xe0, 0x00, 0x00, 0x00,
0xc8, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42, 0xe3,
0x00, 0x00, 0x00, 0x04, 0xe4, 0x00, 0x00, 0x00,
0x24, 0x01, 0x00, 0xc9, 0xc1, 0x05, 0x41, 0xd9,
0x00, 0x00, 0x00, 0xdc, 0xac, 0x69, 0x8a, 0x00,
0x00, 0x00, 0x38, 0xe2, 0x00, 0x00, 0x00, 0x42,
0xe5, 0x00, 0x00, 0x00, 0xc5, 0x24, 0x01, 0x00,
0xb9, 0xac, 0xe9, 0x60, 0x06, 0x11, 0xf1, 0xea,
0x32, 0x6f, 0x11, 0x78, 0xde, 0x00, 0x00, 0x00,
0x02, 0x00, 0x1d, 0x41, 0xde, 0x00, 0x00, 0x00,
0x3d, 0x11, 0x78, 0xdf, 0x00, 0x00, 0x00, 0x03,
0x00, 0x1d, 0x41, 0xdf, 0x00, 0x00, 0x00, 0x3d,
0x11, 0x78, 0xe0, 0x00, 0x00, 0x00, 0x04, 0x00,
0x1d, 0x41, 0xe0, 0x00, 0x00, 0x00, 0x3d, 0x0e,
0xeb, 0x12, 0x0e, 0x38, 0xe2, 0x00, 0x00, 0x00,
0x42, 0xe6, 0x00, 0x00, 0x00, 0xc5, 0x24, 0x01,
0x00, 0xeb, 0xbf, 0xc4, 0xc6, 0x43, 0xde, 0x00,
0x00, 0x00, 0xc4, 0xc7, 0x43, 0xe1, 0x00, 0x00,
0x00, 0xc4, 0xc1, 0x04, 0x43, 0xe0, 0x00, 0x00,
0x00, 0xeb, 0x29, 0x38, 0xe7, 0x00, 0x00, 0x00,
0x42, 0xe8, 0x00, 0x00, 0x00, 0x04, 0xe9, 0x00,
0x00, 0x00, 0x24, 0x01, 0x00, 0x0e, 0xeb, 0x14,
0x38, 0xe7, 0x00, 0x00, 0x00, 0x42, 0xe8, 0x00,
0x00, 0x00, 0x04, 0xea, 0x00, 0x00, 0x00, 0x24,
0x01, 0x00, 0x0e, 0xc4, 0x28, 0x9c, 0x03, 0x14,
0x0f, 0x12, 0x67, 0x62, 0x49, 0x5d, 0x00, 0x47,
0x02, 0x26, 0x26, 0x2b, 0x0d, 0x63, 0x0d, 0x63,
0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x07, 0x00,
0x04, 0x01, 0x00, 0xfa, 0x01, 0x07, 0xb8, 0x03,
0x00, 0x00, 0x00, 0xd6, 0x03, 0x00, 0x01, 0x00,
0xd8, 0x03, 0x00, 0x02, 0x00, 0xda, 0x03, 0x00,
0x03, 0x00, 0xdc, 0x03, 0x00, 0x04, 0x00, 0xde,
0x03, 0x00, 0x05, 0x00, 0x10, 0x00, 0x01, 0x00,
0xa8, 0x03, 0x03, 0x00, 0x08, 0xc2, 0x06, 0x0b,
0x07, 0x4c, 0xeb, 0x00, 0x00, 0x00, 0x07, 0x4c,
0xec, 0x00, 0x00, 0x00, 0x07, 0x4c, 0xed, 0x00,
0x00, 0x00, 0x07, 0x4c, 0xee, 0x00, 0x00, 0x00,
0x07, 0x4c, 0xef, 0x00, 0x00, 0x00, 0xc8, 0xc1,
0x06, 0x41, 0xd9, 0x00, 0x00, 0x00, 0xdc, 0xac,
0x69, 0xb8, 0x00, 0x00, 0x00, 0x38, 0xf0, 0x00,
0x00, 0x00, 0x42, 0xf1, 0x00, 0x00, 0x00, 0x24,
0x00, 0x00, 0xb5, 0xac, 0x69, 0x8f, 0x00, 0x00,
0x00, 0x06, 0x11, 0xf1, 0xea, 0x50, 0x6f, 0x11,
0x78, 0xeb, 0x00, 0x00, 0x00, 0x01, 0x00, 0x1d,
0x41, 0xeb, 0x00, 0x00, 0x00, 0x3d, 0x11, 0x78,
0xec, 0x00, 0x00, 0x00, 0x02, 0x00, 0x1d, 0x41,
0xec, 0x00, 0x00, 0x00, 0x3d, 0x11, 0x78, 0xed,
0x00, 0x00, 0x00, 0x03, 0x00, 0x1d, 0x41, 0xed,
0x00, 0x00, 0x00, 0x3d, 0x11, 0x78, 0xee, 0x00,
0x00, 0x00, 0x04, 0x00, 0x1d, 0x41, 0xee, 0x00,
0x00, 0x00, 0x3d, 0x11, 0x78, 0xef, 0x00, 0x00,
0x00, 0x05, 0x00, 0x1d, 0x41, 0xef, 0x00, 0x00,
0x00, 0x3d, 0x0e, 0xeb, 0x11, 0x0e, 0x38, 0xf0,
0x00, 0x00, 0x00, 0x42, 0xf2, 0x00, 0x00, 0x00,
0x24, 0x00, 0x00, 0xeb, 0xa2, 0xc4, 0xc5, 0x43,
0xeb, 0x00, 0x00, 0x00, 0xc4, 0xc6, 0x43, 0xec,
0x00, 0x00, 0x00, 0xc4, 0xc7, 0x43, 0xed, 0x00,
0x00, 0x00, 0xc4, 0xc1, 0x04, 0x43, 0xee, 0x00,
0x00, 0x00, 0xc4, 0xc1, 0x05, 0x43, 0xef, 0x00,
0x00, 0x00, 0xeb, 0x29, 0x38, 0xe7, 0x00, 0x00,
0x00, 0x42, 0xe8, 0x00, 0x00, 0x00, 0x04, 0xf3,
0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0x0e, 0xeb,
0x14, 0x38, 0xe7, 0x00, 0x00, 0x00, 0x42, 0xe8,
0x00, 0x00, 0x00, 0x04, 0xf4, 0x00, 0x00, 0x00,
0x24, 0x01, 0x00, 0x0e, 0xc4, 0x28, 0x9c, 0x03,
0x26, 0x16, 0x12, 0x08, 0x21, 0x21, 0x21, 0x21,
0x21, 0x08, 0x49, 0x67, 0x00, 0x64, 0x02, 0x26,
0x26, 0x26, 0x2b, 0x2b, 0x0d, 0x63, 0x0d, 0x63,
0x0e, 0x43, 0x06, 0x01, 0xa2, 0x03, 0x00, 0x00,
0x00, 0x02, 0x01, 0x00, 0x08, 0x00, 0xa4, 0x03,
0x05, 0x08, 0x65, 0x00, 0x00, 0x11, 0x21, 0x00,
0x00, 0x28, 0x9c, 0x03, 0x40, 0x01, 0x03,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_location.c | C | apache-2.0 | 9,279 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_mqtt_size = 2364;
const uint8_t jslib_mqtt[2364] = {
0x01, 0x36, 0x16, 0x73, 0x72, 0x63, 0x2f, 0x6d,
0x71, 0x74, 0x74, 0x2e, 0x6a, 0x73, 0x0c, 0x65,
0x76, 0x65, 0x6e, 0x74, 0x73, 0x08, 0x4d, 0x51,
0x54, 0x54, 0x18, 0x63, 0x72, 0x65, 0x61, 0x74,
0x65, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x14,
0x4d, 0x51, 0x54, 0x54, 0x43, 0x6c, 0x69, 0x65,
0x6e, 0x74, 0x0a, 0x65, 0x76, 0x65, 0x6e, 0x74,
0x18, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x45, 0x6d,
0x69, 0x74, 0x74, 0x65, 0x72, 0x24, 0x5f, 0x67,
0x65, 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d,
0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64,
0x10, 0x5f, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63,
0x74, 0x12, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72,
0x69, 0x62, 0x65, 0x16, 0x75, 0x6e, 0x73, 0x75,
0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x0e,
0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x0a,
0x63, 0x6c, 0x6f, 0x73, 0x65, 0x0e, 0x6f, 0x70,
0x74, 0x69, 0x6f, 0x6e, 0x73, 0x08, 0x68, 0x6f,
0x73, 0x74, 0x24, 0x6f, 0x70, 0x74, 0x69, 0x6f,
0x6e, 0x73, 0x20, 0x69, 0x73, 0x20, 0x69, 0x6e,
0x76, 0x61, 0x6c, 0x69, 0x64, 0x08, 0x70, 0x6f,
0x72, 0x74, 0x10, 0x63, 0x6c, 0x69, 0x65, 0x6e,
0x74, 0x49, 0x64, 0x12, 0x63, 0x6c, 0x69, 0x65,
0x6e, 0x74, 0x5f, 0x69, 0x64, 0x10, 0x75, 0x73,
0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x10, 0x70,
0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x24,
0x6b, 0x65, 0x65, 0x70, 0x61, 0x6c, 0x69, 0x76,
0x65, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76,
0x61, 0x6c, 0x08, 0x66, 0x61, 0x69, 0x6c, 0x0a,
0x5f, 0x66, 0x61, 0x69, 0x6c, 0x0e, 0x73, 0x75,
0x63, 0x63, 0x65, 0x73, 0x73, 0x10, 0x5f, 0x73,
0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x63,
0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x65, 0x64,
0x18, 0x6d, 0x71, 0x74, 0x74, 0x49, 0x6e, 0x73,
0x74, 0x61, 0x6e, 0x63, 0x65, 0x08, 0x61, 0x6d,
0x70, 0x2d, 0x10, 0x70, 0x61, 0x72, 0x73, 0x65,
0x49, 0x6e, 0x74, 0x0c, 0x72, 0x61, 0x6e, 0x64,
0x6f, 0x6d, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74,
0x08, 0x62, 0x69, 0x6e, 0x64, 0x06, 0x72, 0x65,
0x73, 0x0c, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65,
0x08, 0x63, 0x6f, 0x64, 0x65, 0x08, 0x65, 0x6d,
0x69, 0x74, 0x0e, 0x63, 0x6f, 0x6e, 0x6e, 0x65,
0x63, 0x74, 0x12, 0x72, 0x65, 0x63, 0x6f, 0x6e,
0x6e, 0x65, 0x63, 0x74, 0x14, 0x64, 0x69, 0x73,
0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x0a,
0x74, 0x6f, 0x70, 0x69, 0x63, 0x0e, 0x70, 0x61,
0x79, 0x6c, 0x6f, 0x61, 0x64, 0x06, 0x72, 0x65,
0x74, 0x40, 0x6d, 0x71, 0x74, 0x74, 0x20, 0x6e,
0x6f, 0x74, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x20,
0x6f, 0x72, 0x20, 0x6f, 0x70, 0x74, 0x69, 0x6f,
0x6e, 0x73, 0x20, 0x69, 0x6e, 0x76, 0x61, 0x6c,
0x69, 0x64, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x3a, 0x73, 0x75, 0x62, 0x73, 0x63, 0x69, 0x72,
0x62, 0x65, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x3a,
0x20, 0x6e, 0x6f, 0x74, 0x20, 0x63, 0x6f, 0x6e,
0x6e, 0x65, 0x63, 0x74, 0x65, 0x64, 0x06, 0x71,
0x6f, 0x73, 0x1e, 0x73, 0x75, 0x62, 0x73, 0x63,
0x72, 0x69, 0x62, 0x65, 0x20, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x4c, 0x6d, 0x71, 0x74, 0x74, 0x20,
0x6e, 0x6f, 0x74, 0x20, 0x69, 0x6e, 0x69, 0x74,
0x20, 0x6f, 0x72, 0x20, 0x6d, 0x71, 0x74, 0x74,
0x20, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x20, 0x69,
0x73, 0x20, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69,
0x64, 0x3e, 0x75, 0x6e, 0x73, 0x75, 0x62, 0x73,
0x63, 0x72, 0x69, 0x62, 0x65, 0x20, 0x66, 0x61,
0x69, 0x6c, 0x3a, 0x20, 0x6e, 0x6f, 0x74, 0x20,
0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x65,
0x64, 0x22, 0x75, 0x6e, 0x73, 0x75, 0x62, 0x73,
0x63, 0x72, 0x69, 0x62, 0x65, 0x20, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x36, 0x70, 0x75, 0x62, 0x6c,
0x69, 0x73, 0x68, 0x20, 0x66, 0x61, 0x69, 0x6c,
0x3a, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x63, 0x6f,
0x6e, 0x6e, 0x65, 0x63, 0x74, 0x65, 0x64, 0x1a,
0x6d, 0x71, 0x74, 0x74, 0x20, 0x6e, 0x6f, 0x74,
0x20, 0x69, 0x6e, 0x69, 0x74, 0x2e, 0x6d, 0x71,
0x74, 0x74, 0x20, 0x63, 0x6c, 0x69, 0x65, 0x6e,
0x74, 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x20,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x0f, 0x9c, 0x03,
0x02, 0x9e, 0x03, 0xa0, 0x03, 0x01, 0x00, 0x03,
0xa2, 0x03, 0x00, 0x02, 0x00, 0xf8, 0x01, 0x00,
0x01, 0xf8, 0x01, 0x01, 0x0e, 0x00, 0x06, 0x01,
0xa0, 0x01, 0x00, 0x02, 0x00, 0x03, 0x04, 0x08,
0x52, 0x02, 0xa4, 0x03, 0x02, 0x00, 0x60, 0xea,
0x01, 0x03, 0x01, 0xe0, 0xa6, 0x03, 0x00, 0x0d,
0xa0, 0x03, 0x01, 0x0d, 0xa4, 0x03, 0x00, 0x09,
0xa2, 0x03, 0x01, 0x01, 0xbf, 0x07, 0xe3, 0x61,
0x00, 0x00, 0x65, 0x00, 0x00, 0x41, 0xd4, 0x00,
0x00, 0x00, 0x61, 0x01, 0x00, 0xbe, 0x00, 0x56,
0xd2, 0x00, 0x00, 0x00, 0x01, 0xbf, 0x01, 0x54,
0xd5, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x02, 0x54,
0xd6, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x03, 0x54,
0xd7, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x04, 0x54,
0xd8, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x05, 0x54,
0xd9, 0x00, 0x00, 0x00, 0x00, 0xbf, 0x06, 0x54,
0xda, 0x00, 0x00, 0x00, 0x00, 0x06, 0xc9, 0x0e,
0xcc, 0x68, 0x01, 0x00, 0xe2, 0x29, 0x9c, 0x03,
0x01, 0x1a, 0x01, 0x00, 0x03, 0x08, 0x00, 0x16,
0x32, 0x00, 0x08, 0x2e, 0x00, 0x08, 0x30, 0x00,
0x08, 0x30, 0x00, 0x08, 0x32, 0x00, 0x08, 0x1c,
0x2b, 0x00, 0x08, 0x08, 0x0e, 0xc6, 0x07, 0x01,
0x00, 0x01, 0x03, 0x01, 0x04, 0x01, 0x02, 0xfc,
0x01, 0x04, 0xb6, 0x03, 0x00, 0x01, 0x00, 0xe2,
0x01, 0x00, 0x01, 0x00, 0xe0, 0x01, 0x00, 0x01,
0x00, 0x10, 0x00, 0x01, 0x40, 0xea, 0x01, 0x01,
0x0d, 0x0c, 0x02, 0xc8, 0x0c, 0x03, 0xc9, 0x61,
0x02, 0x00, 0x2b, 0xc4, 0x34, 0xc5, 0x21, 0x00,
0x00, 0x11, 0x64, 0x02, 0x00, 0x65, 0x00, 0x00,
0x11, 0xe9, 0x08, 0x62, 0x02, 0x00, 0x1b, 0x24,
0x00, 0x00, 0x0e, 0x0e, 0xd0, 0x97, 0x11, 0xea,
0x09, 0x0e, 0xd0, 0x41, 0xdc, 0x00, 0x00, 0x00,
0x97, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00,
0x11, 0x04, 0xdd, 0x00, 0x00, 0x00, 0x21, 0x01,
0x00, 0x2f, 0x62, 0x02, 0x00, 0x0b, 0xd0, 0x41,
0xdc, 0x00, 0x00, 0x00, 0x4c, 0xdc, 0x00, 0x00,
0x00, 0xd0, 0x41, 0xde, 0x00, 0x00, 0x00, 0x11,
0xea, 0x05, 0x0e, 0xbd, 0x5b, 0x07, 0x4c, 0xde,
0x00, 0x00, 0x00, 0xd0, 0x41, 0xdf, 0x00, 0x00,
0x00, 0x11, 0xea, 0x0d, 0x0e, 0x62, 0x02, 0x00,
0x42, 0xd5, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00,
0x4c, 0xe0, 0x00, 0x00, 0x00, 0xd0, 0x41, 0xe1,
0x00, 0x00, 0x00, 0x11, 0xea, 0x03, 0x0e, 0xc0,
0x4c, 0xe1, 0x00, 0x00, 0x00, 0xd0, 0x41, 0xe2,
0x00, 0x00, 0x00, 0x11, 0xea, 0x03, 0x0e, 0xc0,
0x4c, 0xe2, 0x00, 0x00, 0x00, 0xd0, 0x41, 0xe3,
0x00, 0x00, 0x00, 0x11, 0xea, 0x04, 0x0e, 0xbc,
0x3c, 0x4c, 0xe3, 0x00, 0x00, 0x00, 0x43, 0xdb,
0x00, 0x00, 0x00, 0x62, 0x02, 0x00, 0xd0, 0x41,
0xe4, 0x00, 0x00, 0x00, 0x11, 0xea, 0x04, 0x0e,
0xbf, 0x00, 0x43, 0xe5, 0x00, 0x00, 0x00, 0x62,
0x02, 0x00, 0xd0, 0x41, 0xe6, 0x00, 0x00, 0x00,
0x11, 0xea, 0x04, 0x0e, 0xbf, 0x01, 0x43, 0xe7,
0x00, 0x00, 0x00, 0x62, 0x02, 0x00, 0x09, 0x43,
0xe8, 0x00, 0x00, 0x00, 0x62, 0x02, 0x00, 0xb4,
0x43, 0xe9, 0x00, 0x00, 0x00, 0x62, 0x02, 0x00,
0x42, 0xd6, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00,
0x0e, 0x62, 0x02, 0x00, 0x28, 0x9c, 0x03, 0x05,
0x12, 0x35, 0x80, 0x4e, 0x49, 0x09, 0x17, 0x3a,
0x5d, 0x85, 0x53, 0x53, 0x58, 0x1d, 0x67, 0x67,
0x30, 0x30, 0x3f, 0x0e, 0x43, 0x06, 0x01, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
0x29, 0x9c, 0x03, 0x14, 0x00, 0x0e, 0x43, 0x06,
0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x01, 0x00, 0x29, 0x9c, 0x03, 0x15, 0x00, 0x0e,
0x42, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x04,
0x00, 0x00, 0x20, 0x00, 0x04, 0xea, 0x00, 0x00,
0x00, 0x38, 0xeb, 0x00, 0x00, 0x00, 0x38, 0x93,
0x00, 0x00, 0x00, 0x42, 0xec, 0x00, 0x00, 0x00,
0x24, 0x00, 0x00, 0x01, 0x40, 0x42, 0x0f, 0x00,
0x9b, 0xee, 0x9e, 0x28, 0x9c, 0x03, 0x1b, 0x01,
0x03, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x01,
0x00, 0x06, 0x01, 0x01, 0x1f, 0x01, 0x10, 0x00,
0x01, 0x00, 0xa0, 0x03, 0x01, 0x0c, 0x08, 0xc8,
0x65, 0x00, 0x00, 0x42, 0xed, 0x00, 0x00, 0x00,
0xc4, 0x41, 0xdb, 0x00, 0x00, 0x00, 0xbf, 0x00,
0x42, 0xee, 0x00, 0x00, 0x00, 0xc4, 0x24, 0x01,
0x00, 0x24, 0x02, 0x00, 0x29, 0x9c, 0x03, 0x1f,
0x05, 0x0d, 0x00, 0x0e, 0x26, 0x49, 0x0e, 0x43,
0x06, 0x01, 0x00, 0x01, 0x01, 0x01, 0x06, 0x00,
0x00, 0x96, 0x01, 0x02, 0xde, 0x03, 0x00, 0x01,
0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc8, 0xd0,
0x41, 0xf0, 0x00, 0x00, 0x00, 0x97, 0xe9, 0x02,
0x29, 0xc4, 0xd0, 0x41, 0xf0, 0x00, 0x00, 0x00,
0x43, 0xe9, 0x00, 0x00, 0x00, 0xd0, 0x41, 0xf1,
0x00, 0x00, 0x00, 0x11, 0xb4, 0xac, 0xe9, 0x19,
0xc4, 0x0a, 0x43, 0xe8, 0x00, 0x00, 0x00, 0xc4,
0x42, 0xf2, 0x00, 0x00, 0x00, 0x04, 0xf3, 0x00,
0x00, 0x00, 0x24, 0x01, 0x00, 0x0e, 0xeb, 0x5b,
0x11, 0xb5, 0xac, 0xe9, 0x19, 0xc4, 0x0a, 0x43,
0xe8, 0x00, 0x00, 0x00, 0xc4, 0x42, 0xf2, 0x00,
0x00, 0x00, 0x04, 0xf4, 0x00, 0x00, 0x00, 0x24,
0x01, 0x00, 0x0e, 0xeb, 0x3e, 0x11, 0xb6, 0xac,
0xe9, 0x19, 0xc4, 0x09, 0x43, 0xe8, 0x00, 0x00,
0x00, 0xc4, 0x42, 0xf2, 0x00, 0x00, 0x00, 0x04,
0xf5, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0x0e,
0xeb, 0x21, 0x11, 0xb7, 0xac, 0xe9, 0x1c, 0xc4,
0x42, 0xf2, 0x00, 0x00, 0x00, 0x04, 0x33, 0x00,
0x00, 0x00, 0xd0, 0x41, 0xf6, 0x00, 0x00, 0x00,
0xd0, 0x41, 0xf7, 0x00, 0x00, 0x00, 0x24, 0x03,
0x00, 0x0e, 0x29, 0x9c, 0x03, 0x20, 0x10, 0x0d,
0x31, 0x08, 0x3f, 0x21, 0x1c, 0x26, 0x58, 0x1c,
0x26, 0x58, 0x1c, 0x26, 0x58, 0x1c, 0x8c, 0x0e,
0x42, 0x07, 0x01, 0x00, 0x01, 0x02, 0x01, 0x06,
0x01, 0x00, 0xac, 0x01, 0x03, 0xb6, 0x03, 0x00,
0x01, 0x00, 0xf0, 0x03, 0x00, 0x00, 0x00, 0x10,
0x00, 0x01, 0x00, 0xa0, 0x03, 0x01, 0x0c, 0x08,
0xc9, 0xc5, 0x41, 0xe9, 0x00, 0x00, 0x00, 0x97,
0x11, 0xea, 0x0f, 0x0e, 0xd0, 0x97, 0x11, 0xea,
0x09, 0x0e, 0xd0, 0x41, 0xf6, 0x00, 0x00, 0x00,
0x97, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00,
0x11, 0x04, 0xf9, 0x00, 0x00, 0x00, 0x21, 0x01,
0x00, 0x2f, 0xc5, 0x41, 0xe8, 0x00, 0x00, 0x00,
0x09, 0xac, 0xe9, 0x15, 0xc5, 0x42, 0xf2, 0x00,
0x00, 0x00, 0x04, 0xfa, 0x00, 0x00, 0x00, 0x04,
0xfb, 0x00, 0x00, 0x00, 0x24, 0x02, 0x00, 0x29,
0x65, 0x00, 0x00, 0x42, 0xd7, 0x00, 0x00, 0x00,
0xc5, 0x41, 0xe9, 0x00, 0x00, 0x00, 0xd0, 0x41,
0xf6, 0x00, 0x00, 0x00, 0xd0, 0x41, 0xfc, 0x00,
0x00, 0x00, 0x11, 0xea, 0x03, 0x0e, 0xb4, 0x24,
0x03, 0x00, 0xcc, 0xb4, 0xa4, 0xe9, 0x29, 0xd0,
0x41, 0xe4, 0x00, 0x00, 0x00, 0xf3, 0xe9, 0x0b,
0xd0, 0x42, 0xe4, 0x00, 0x00, 0x00, 0x24, 0x00,
0x00, 0x0e, 0xc5, 0x42, 0xf2, 0x00, 0x00, 0x00,
0x04, 0xfa, 0x00, 0x00, 0x00, 0x04, 0xfd, 0x00,
0x00, 0x00, 0x24, 0x02, 0x00, 0x0e, 0x29, 0xd0,
0x41, 0xe6, 0x00, 0x00, 0x00, 0xf3, 0xe9, 0x0b,
0xd0, 0x42, 0xe6, 0x00, 0x00, 0x00, 0x24, 0x00,
0x00, 0x0e, 0x29, 0x9c, 0x03, 0x36, 0x0f, 0x0d,
0x85, 0x49, 0x09, 0x35, 0x63, 0x09, 0xb2, 0x17,
0x30, 0x36, 0x67, 0x09, 0x30, 0x37, 0x0e, 0x42,
0x07, 0x01, 0x00, 0x01, 0x02, 0x01, 0x04, 0x01,
0x00, 0xa0, 0x01, 0x03, 0xb6, 0x03, 0x00, 0x01,
0x00, 0xf0, 0x03, 0x00, 0x00, 0x00, 0x10, 0x00,
0x01, 0x00, 0xa0, 0x03, 0x01, 0x0c, 0x08, 0xc9,
0xc5, 0x41, 0xe9, 0x00, 0x00, 0x00, 0x97, 0x11,
0xea, 0x0f, 0x0e, 0xd0, 0x97, 0x11, 0xea, 0x09,
0x0e, 0xd0, 0x41, 0xf6, 0x00, 0x00, 0x00, 0x97,
0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11,
0x04, 0xfe, 0x00, 0x00, 0x00, 0x21, 0x01, 0x00,
0x2f, 0xc5, 0x41, 0xe8, 0x00, 0x00, 0x00, 0x09,
0xac, 0xe9, 0x15, 0xc5, 0x42, 0xf2, 0x00, 0x00,
0x00, 0x04, 0xfa, 0x00, 0x00, 0x00, 0x04, 0xff,
0x00, 0x00, 0x00, 0x24, 0x02, 0x00, 0x29, 0x65,
0x00, 0x00, 0x42, 0xd8, 0x00, 0x00, 0x00, 0xc5,
0x41, 0xe9, 0x00, 0x00, 0x00, 0xd0, 0x41, 0xf6,
0x00, 0x00, 0x00, 0x24, 0x02, 0x00, 0xcc, 0xb4,
0xa4, 0xe9, 0x28, 0xd0, 0x41, 0xe4, 0x00, 0x00,
0x00, 0xf3, 0xe9, 0x0b, 0xd0, 0x42, 0xe4, 0x00,
0x00, 0x00, 0x24, 0x00, 0x00, 0x0e, 0xc5, 0x42,
0xf2, 0x00, 0x00, 0x00, 0x04, 0xfa, 0x00, 0x00,
0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x24, 0x02,
0x00, 0x29, 0xd0, 0x41, 0xe6, 0x00, 0x00, 0x00,
0xf3, 0xe9, 0x0b, 0xd0, 0x42, 0xe6, 0x00, 0x00,
0x00, 0x24, 0x00, 0x00, 0x0e, 0x29, 0x9c, 0x03,
0x4e, 0x0f, 0x0d, 0x85, 0x49, 0x09, 0x35, 0x63,
0x09, 0x7b, 0x17, 0x30, 0x36, 0x63, 0x09, 0x30,
0x36, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x01, 0x01,
0x01, 0x09, 0x01, 0x01, 0x88, 0x01, 0x02, 0xb6,
0x03, 0x00, 0x01, 0x80, 0x10, 0x00, 0x01, 0x00,
0xa0, 0x03, 0x01, 0x0c, 0x08, 0xc8, 0xc4, 0x41,
0xe9, 0x00, 0x00, 0x00, 0x97, 0x11, 0xea, 0x1a,
0x0e, 0xd0, 0x97, 0x11, 0xea, 0x14, 0x0e, 0xd0,
0x41, 0xf6, 0x00, 0x00, 0x00, 0x97, 0x11, 0xea,
0x09, 0x0e, 0xd0, 0x41, 0x33, 0x00, 0x00, 0x00,
0x97, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00,
0x11, 0x04, 0xf9, 0x00, 0x00, 0x00, 0x21, 0x01,
0x00, 0x2f, 0xc4, 0x41, 0xe8, 0x00, 0x00, 0x00,
0x09, 0xac, 0xe9, 0x15, 0xc4, 0x42, 0xf2, 0x00,
0x00, 0x00, 0x04, 0xfa, 0x00, 0x00, 0x00, 0x04,
0x01, 0x01, 0x00, 0x00, 0x24, 0x02, 0x00, 0x29,
0x65, 0x00, 0x00, 0x42, 0xd9, 0x00, 0x00, 0x00,
0xc4, 0x41, 0xe9, 0x00, 0x00, 0x00, 0xd0, 0x41,
0xf6, 0x00, 0x00, 0x00, 0xd0, 0x41, 0x33, 0x00,
0x00, 0x00, 0xd0, 0x41, 0xfc, 0x00, 0x00, 0x00,
0x11, 0xea, 0x03, 0x0e, 0xb4, 0xbf, 0x00, 0x42,
0xee, 0x00, 0x00, 0x00, 0xc4, 0x24, 0x01, 0x00,
0x24, 0x05, 0x00, 0x29, 0x9c, 0x03, 0x66, 0x0b,
0x0d, 0xbc, 0x49, 0x09, 0x35, 0x63, 0x09, 0x00,
0x25, 0x18, 0x49, 0x0e, 0x43, 0x06, 0x01, 0x00,
0x01, 0x01, 0x01, 0x04, 0x01, 0x00, 0x43, 0x02,
0xf0, 0x03, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01,
0x00, 0xb6, 0x03, 0x00, 0x03, 0x08, 0xc8, 0xd0,
0xb4, 0xa4, 0xe9, 0x29, 0xdc, 0x41, 0xe4, 0x00,
0x00, 0x00, 0xf3, 0xe9, 0x0b, 0xdc, 0x42, 0xe4,
0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x0e, 0xc4,
0x42, 0xf2, 0x00, 0x00, 0x00, 0x04, 0xfa, 0x00,
0x00, 0x00, 0xdc, 0x41, 0xf6, 0x00, 0x00, 0x00,
0x24, 0x02, 0x00, 0x29, 0xdc, 0x41, 0xe6, 0x00,
0x00, 0x00, 0xf3, 0xe9, 0x0b, 0xdc, 0x42, 0xe6,
0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x0e, 0x29,
0x9c, 0x03, 0x70, 0x08, 0x0d, 0x1c, 0x30, 0x36,
0x68, 0x09, 0x30, 0x36, 0x0e, 0x42, 0x07, 0x01,
0x00, 0x00, 0x01, 0x00, 0x06, 0x01, 0x01, 0x37,
0x01, 0x10, 0x00, 0x01, 0x00, 0xa0, 0x03, 0x01,
0x0c, 0x08, 0xc8, 0xc4, 0x41, 0xe9, 0x00, 0x00,
0x00, 0x97, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00,
0x00, 0x11, 0x04, 0x02, 0x01, 0x00, 0x00, 0x21,
0x01, 0x00, 0x2f, 0x65, 0x00, 0x00, 0x42, 0xda,
0x00, 0x00, 0x00, 0xc4, 0x41, 0xe9, 0x00, 0x00,
0x00, 0xbf, 0x00, 0x42, 0xee, 0x00, 0x00, 0x00,
0xc4, 0x24, 0x01, 0x00, 0x24, 0x02, 0x00, 0x29,
0x9c, 0x03, 0x7f, 0x08, 0x0d, 0x30, 0x49, 0x08,
0x00, 0x0e, 0x0c, 0x4a, 0x0e, 0x43, 0x06, 0x01,
0x00, 0x01, 0x01, 0x01, 0x04, 0x00, 0x00, 0x2a,
0x02, 0xf0, 0x03, 0x00, 0x01, 0x00, 0x10, 0x00,
0x01, 0x00, 0x08, 0xc8, 0xd0, 0xb4, 0xab, 0xe9,
0x15, 0xc4, 0x42, 0xf2, 0x00, 0x00, 0x00, 0x04,
0xfa, 0x00, 0x00, 0x00, 0x04, 0x03, 0x01, 0x00,
0x00, 0x24, 0x02, 0x00, 0x29, 0xc4, 0x42, 0xf2,
0x00, 0x00, 0x00, 0x04, 0xda, 0x00, 0x00, 0x00,
0x24, 0x01, 0x00, 0x29, 0x9c, 0x03, 0x83, 0x01,
0x05, 0x0d, 0x1c, 0x63, 0x08, 0x49, 0x0e, 0x43,
0x06, 0x01, 0xa2, 0x03, 0x01, 0x00, 0x01, 0x03,
0x01, 0x00, 0x09, 0x01, 0xb6, 0x03, 0x00, 0x01,
0x00, 0xa4, 0x03, 0x02, 0x08, 0x65, 0x00, 0x00,
0x11, 0xd0, 0x21, 0x01, 0x00, 0x28, 0x9c, 0x03,
0x8e, 0x01, 0x01, 0x03,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_mqtt.c | C | apache-2.0 | 14,643 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_netmgr_size = 2301;
const uint8_t jslib_netmgr[2301] = {
0x01, 0x39, 0x1a, 0x73, 0x72, 0x63, 0x2f, 0x6e,
0x65, 0x74, 0x6d, 0x67, 0x72, 0x2e, 0x6a, 0x73,
0x0c, 0x4e, 0x45, 0x54, 0x4d, 0x47, 0x52, 0x0c,
0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x6f,
0x70, 0x65, 0x6e, 0x4e, 0x65, 0x74, 0x4d, 0x67,
0x72, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x0c,
0x6e, 0x65, 0x74, 0x4d, 0x67, 0x72, 0x18, 0x45,
0x76, 0x65, 0x6e, 0x74, 0x45, 0x6d, 0x69, 0x74,
0x74, 0x65, 0x72, 0x0a, 0x5f, 0x69, 0x6e, 0x69,
0x74, 0x0e, 0x5f, 0x67, 0x65, 0x74, 0x44, 0x65,
0x76, 0x10, 0x73, 0x65, 0x74, 0x4d, 0x73, 0x67,
0x43, 0x62, 0x10, 0x64, 0x65, 0x6c, 0x4d, 0x73,
0x67, 0x43, 0x62, 0x20, 0x73, 0x65, 0x74, 0x41,
0x75, 0x74, 0x6f, 0x52, 0x65, 0x63, 0x6f, 0x6e,
0x6e, 0x65, 0x63, 0x74, 0x0e, 0x63, 0x6f, 0x6e,
0x6e, 0x65, 0x63, 0x74, 0x14, 0x64, 0x69, 0x73,
0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x0e,
0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x10,
0x67, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65,
0x14, 0x73, 0x61, 0x76, 0x65, 0x43, 0x6f, 0x6e,
0x66, 0x69, 0x67, 0x16, 0x73, 0x65, 0x74, 0x49,
0x66, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x16,
0x67, 0x65, 0x74, 0x49, 0x66, 0x43, 0x6f, 0x6e,
0x66, 0x69, 0x67, 0x0e, 0x6f, 0x70, 0x74, 0x69,
0x6f, 0x6e, 0x73, 0x22, 0x64, 0x65, 0x76, 0x69,
0x63, 0x65, 0x20, 0x69, 0x6e, 0x66, 0x6f, 0x20,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x16, 0x64, 0x65,
0x76, 0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65,
0x72, 0x16, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63,
0x65, 0x49, 0x6e, 0x69, 0x74, 0x08, 0x65, 0x6d,
0x69, 0x74, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x22, 0x6e, 0x65, 0x74, 0x6d, 0x67, 0x72, 0x20,
0x69, 0x6e, 0x69, 0x74, 0x20, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x0e, 0x63, 0x6f, 0x6e, 0x73, 0x6f,
0x6c, 0x65, 0x06, 0x6c, 0x6f, 0x67, 0x14, 0x77,
0x69, 0x66, 0x69, 0x20, 0x6e, 0x61, 0x6d, 0x65,
0x3a, 0x0c, 0x67, 0x65, 0x74, 0x44, 0x65, 0x76,
0x36, 0x6e, 0x65, 0x74, 0x6d, 0x67, 0x72, 0x20,
0x67, 0x65, 0x74, 0x20, 0x77, 0x69, 0x66, 0x69,
0x20, 0x64, 0x65, 0x76, 0x20, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x3a, 0x20, 0x04, 0x63, 0x62, 0x08,
0x66, 0x6c, 0x61, 0x67, 0x06, 0x72, 0x65, 0x74,
0x3e, 0x6e, 0x65, 0x74, 0x6d, 0x67, 0x72, 0x20,
0x73, 0x65, 0x74, 0x20, 0x61, 0x75, 0x74, 0x6f,
0x20, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x6e, 0x65,
0x63, 0x74, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x08, 0x73, 0x73, 0x69, 0x64, 0x10, 0x70, 0x61,
0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x0a, 0x62,
0x73, 0x73, 0x69, 0x64, 0x14, 0x74, 0x69, 0x6d,
0x65, 0x6f, 0x75, 0x74, 0x5f, 0x6d, 0x73, 0x08,
0x62, 0x69, 0x6e, 0x64, 0x14, 0x44, 0x49, 0x53,
0x43, 0x4f, 0x4e, 0x4e, 0x45, 0x43, 0x54, 0x2e,
0x6e, 0x65, 0x74, 0x6d, 0x67, 0x72, 0x20, 0x64,
0x69, 0x73, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63,
0x74, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x1a,
0x64, 0x69, 0x73, 0x63, 0x6f, 0x6e, 0x6e, 0x65,
0x63, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x64, 0x69,
0x73, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74,
0x65, 0x64, 0x14, 0x63, 0x6f, 0x6e, 0x6e, 0x65,
0x63, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x63, 0x6f,
0x6e, 0x6e, 0x65, 0x63, 0x74, 0x65, 0x64, 0x18,
0x6f, 0x62, 0x74, 0x61, 0x69, 0x6e, 0x69, 0x6e,
0x67, 0x20, 0x69, 0x70, 0x22, 0x6e, 0x65, 0x74,
0x77, 0x6f, 0x72, 0x6b, 0x20, 0x63, 0x6f, 0x6e,
0x6e, 0x65, 0x63, 0x74, 0x65, 0x64, 0x0c, 0x66,
0x61, 0x69, 0x6c, 0x65, 0x64, 0x30, 0x6e, 0x65,
0x74, 0x6d, 0x67, 0x72, 0x20, 0x73, 0x61, 0x76,
0x65, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x0e, 0x64,
0x68, 0x63, 0x70, 0x5f, 0x65, 0x6e, 0x0e, 0x69,
0x70, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x08, 0x6d,
0x61, 0x73, 0x6b, 0x04, 0x67, 0x77, 0x14, 0x64,
0x6e, 0x73, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65,
0x72, 0x06, 0x6d, 0x61, 0x63, 0x0c, 0x63, 0x6f,
0x6e, 0x66, 0x69, 0x67, 0x26, 0x67, 0x65, 0x74,
0x20, 0x69, 0x66, 0x20, 0x63, 0x6f, 0x6e, 0x66,
0x69, 0x67, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x0f, 0x9c, 0x03, 0x02, 0x9e, 0x03, 0xa0, 0x03,
0x01, 0x00, 0x03, 0xa2, 0x03, 0x00, 0x02, 0x00,
0xf8, 0x01, 0x00, 0x01, 0xf8, 0x01, 0x01, 0x0e,
0x00, 0x06, 0x01, 0xa0, 0x01, 0x00, 0x02, 0x00,
0x03, 0x04, 0x0e, 0x82, 0x01, 0x02, 0xa4, 0x03,
0x02, 0x00, 0x60, 0xea, 0x01, 0x03, 0x01, 0xe0,
0x9e, 0x03, 0x00, 0x0d, 0xa0, 0x03, 0x01, 0x0d,
0xa4, 0x03, 0x00, 0x09, 0xa2, 0x03, 0x01, 0x01,
0xbf, 0x0d, 0xe3, 0x61, 0x00, 0x00, 0x65, 0x01,
0x00, 0x41, 0xd3, 0x00, 0x00, 0x00, 0x61, 0x01,
0x00, 0xbe, 0x00, 0x56, 0xd2, 0x00, 0x00, 0x00,
0x01, 0xbf, 0x01, 0x54, 0xd4, 0x00, 0x00, 0x00,
0x00, 0xbf, 0x02, 0x54, 0xd5, 0x00, 0x00, 0x00,
0x00, 0xbf, 0x03, 0x54, 0xd6, 0x00, 0x00, 0x00,
0x00, 0xbf, 0x04, 0x54, 0xd7, 0x00, 0x00, 0x00,
0x00, 0xbf, 0x05, 0x54, 0xd8, 0x00, 0x00, 0x00,
0x00, 0xbf, 0x06, 0x54, 0xd9, 0x00, 0x00, 0x00,
0x00, 0xbf, 0x07, 0x54, 0xda, 0x00, 0x00, 0x00,
0x00, 0xbf, 0x08, 0x54, 0xdb, 0x00, 0x00, 0x00,
0x00, 0xbf, 0x09, 0x54, 0xdc, 0x00, 0x00, 0x00,
0x00, 0xbf, 0x0a, 0x54, 0xdd, 0x00, 0x00, 0x00,
0x00, 0xbf, 0x0b, 0x54, 0xde, 0x00, 0x00, 0x00,
0x00, 0xbf, 0x0c, 0x54, 0xdf, 0x00, 0x00, 0x00,
0x00, 0x06, 0xc9, 0x0e, 0xcc, 0x68, 0x01, 0x00,
0xe2, 0x29, 0x9c, 0x03, 0x01, 0x2c, 0x01, 0x00,
0x03, 0x08, 0x00, 0x16, 0x2a, 0x00, 0x08, 0x16,
0x00, 0x08, 0x08, 0x00, 0x08, 0x08, 0x00, 0x08,
0x0e, 0x00, 0x08, 0x24, 0x00, 0x08, 0x12, 0x00,
0x08, 0x08, 0x00, 0x08, 0x28, 0x00, 0x08, 0x0e,
0x00, 0x08, 0x22, 0x00, 0x08, 0x10, 0x2b, 0x00,
0x08, 0x08, 0x0e, 0xc6, 0x07, 0x01, 0x00, 0x01,
0x03, 0x01, 0x03, 0x01, 0x00, 0x86, 0x01, 0x04,
0xc0, 0x03, 0x00, 0x01, 0x00, 0xe2, 0x01, 0x00,
0x01, 0x00, 0xe0, 0x01, 0x00, 0x01, 0x00, 0x10,
0x00, 0x01, 0x40, 0xea, 0x01, 0x01, 0x0d, 0x0c,
0x02, 0xc8, 0x0c, 0x03, 0xc9, 0x61, 0x02, 0x00,
0x2b, 0xc4, 0x34, 0xc5, 0x21, 0x00, 0x00, 0x11,
0x64, 0x02, 0x00, 0x65, 0x00, 0x00, 0x11, 0xe9,
0x08, 0x62, 0x02, 0x00, 0x1b, 0x24, 0x00, 0x00,
0x0e, 0x0e, 0xd0, 0x97, 0x11, 0xea, 0x09, 0x0e,
0xd0, 0x41, 0x36, 0x00, 0x00, 0x00, 0x97, 0xe9,
0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04,
0xe1, 0x00, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f,
0x62, 0x02, 0x00, 0x0b, 0xd0, 0x41, 0x36, 0x00,
0x00, 0x00, 0x4c, 0x36, 0x00, 0x00, 0x00, 0x43,
0xe0, 0x00, 0x00, 0x00, 0x62, 0x02, 0x00, 0xd0,
0x41, 0x36, 0x00, 0x00, 0x00, 0x43, 0x36, 0x00,
0x00, 0x00, 0x62, 0x02, 0x00, 0x42, 0xd4, 0x00,
0x00, 0x00, 0x24, 0x00, 0x00, 0x0e, 0x62, 0x02,
0x00, 0x62, 0x02, 0x00, 0x42, 0xd5, 0x00, 0x00,
0x00, 0x24, 0x00, 0x00, 0x43, 0xe2, 0x00, 0x00,
0x00, 0x62, 0x02, 0x00, 0x28, 0x9c, 0x03, 0x05,
0x0b, 0x35, 0x81, 0x4e, 0x49, 0x09, 0x17, 0x3a,
0x1d, 0x49, 0x3f, 0x62, 0x0e, 0x42, 0x07, 0x01,
0x00, 0x00, 0x01, 0x00, 0x04, 0x01, 0x00, 0x26,
0x01, 0x10, 0x00, 0x01, 0x00, 0x9e, 0x03, 0x00,
0x0c, 0x08, 0xc8, 0x65, 0x00, 0x00, 0x42, 0xe3,
0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0xb4, 0xad,
0xe9, 0x15, 0xc4, 0x42, 0xe4, 0x00, 0x00, 0x00,
0x04, 0xe5, 0x00, 0x00, 0x00, 0x04, 0xe6, 0x00,
0x00, 0x00, 0x24, 0x02, 0x00, 0x0e, 0x29, 0x9c,
0x03, 0x15, 0x03, 0x0d, 0x4e, 0x68, 0x0e, 0x42,
0x07, 0x01, 0x00, 0x00, 0x02, 0x00, 0x04, 0x01,
0x00, 0x4e, 0x02, 0xc4, 0x03, 0x00, 0x00, 0x00,
0x10, 0x00, 0x01, 0x00, 0x9e, 0x03, 0x00, 0x0c,
0x08, 0xc9, 0x38, 0xe7, 0x00, 0x00, 0x00, 0x42,
0xe8, 0x00, 0x00, 0x00, 0x04, 0xe9, 0x00, 0x00,
0x00, 0xc5, 0x41, 0x36, 0x00, 0x00, 0x00, 0x9e,
0x24, 0x01, 0x00, 0x0e, 0x65, 0x00, 0x00, 0x42,
0xea, 0x00, 0x00, 0x00, 0xc5, 0x41, 0x36, 0x00,
0x00, 0x00, 0x24, 0x01, 0x00, 0xcc, 0xb3, 0xaa,
0xe9, 0x1b, 0x38, 0xe7, 0x00, 0x00, 0x00, 0x42,
0xe8, 0x00, 0x00, 0x00, 0x04, 0xeb, 0x00, 0x00,
0x00, 0xc5, 0x41, 0x36, 0x00, 0x00, 0x00, 0x9e,
0x24, 0x01, 0x00, 0x29, 0xc4, 0x28, 0x9c, 0x03,
0x1b, 0x06, 0x0d, 0x85, 0x5d, 0x17, 0x81, 0x09,
0x0e, 0x42, 0x07, 0x01, 0x00, 0x01, 0x01, 0x01,
0x04, 0x01, 0x00, 0x15, 0x02, 0xd8, 0x03, 0x00,
0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0x9e, 0x03,
0x00, 0x0c, 0x08, 0xc8, 0x65, 0x00, 0x00, 0x42,
0xd6, 0x00, 0x00, 0x00, 0xc4, 0x41, 0xe2, 0x00,
0x00, 0x00, 0xd0, 0x24, 0x02, 0x00, 0x29, 0x9c,
0x03, 0x26, 0x02, 0x0d, 0x5d, 0x0e, 0x42, 0x07,
0x01, 0x00, 0x01, 0x01, 0x01, 0x04, 0x01, 0x00,
0x15, 0x02, 0xd8, 0x03, 0x00, 0x01, 0x00, 0x10,
0x00, 0x01, 0x00, 0x9e, 0x03, 0x00, 0x0c, 0x08,
0xc8, 0x65, 0x00, 0x00, 0x42, 0xd7, 0x00, 0x00,
0x00, 0xc4, 0x41, 0xe2, 0x00, 0x00, 0x00, 0xd0,
0x24, 0x02, 0x00, 0x29, 0x9c, 0x03, 0x2a, 0x02,
0x0d, 0x5d, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x01,
0x02, 0x01, 0x04, 0x01, 0x00, 0x2e, 0x03, 0xda,
0x03, 0x00, 0x01, 0x00, 0xdc, 0x03, 0x00, 0x00,
0x00, 0x10, 0x00, 0x01, 0x00, 0x9e, 0x03, 0x00,
0x0c, 0x08, 0xc9, 0x65, 0x00, 0x00, 0x42, 0xd8,
0x00, 0x00, 0x00, 0xc5, 0x41, 0xe2, 0x00, 0x00,
0x00, 0xd0, 0x24, 0x02, 0x00, 0xcc, 0xb4, 0xad,
0xe9, 0x15, 0xc5, 0x42, 0xe4, 0x00, 0x00, 0x00,
0x04, 0xe5, 0x00, 0x00, 0x00, 0x04, 0xef, 0x00,
0x00, 0x00, 0x24, 0x02, 0x00, 0x0e, 0x29, 0x9c,
0x03, 0x2e, 0x04, 0x0d, 0x62, 0x17, 0x68, 0x0e,
0x42, 0x07, 0x01, 0x00, 0x01, 0x01, 0x01, 0x07,
0x01, 0x01, 0x5a, 0x02, 0xc0, 0x03, 0x00, 0x01,
0x80, 0x10, 0x00, 0x01, 0x00, 0x9e, 0x03, 0x00,
0x0c, 0x08, 0xc8, 0x0b, 0xd0, 0x41, 0xf0, 0x00,
0x00, 0x00, 0x4c, 0xf0, 0x00, 0x00, 0x00, 0xd0,
0x41, 0xf1, 0x00, 0x00, 0x00, 0x4c, 0xf1, 0x00,
0x00, 0x00, 0xd0, 0x41, 0xf2, 0x00, 0x00, 0x00,
0x11, 0xea, 0x03, 0x0e, 0xc0, 0x4c, 0xf2, 0x00,
0x00, 0x00, 0xd0, 0x41, 0xf3, 0x00, 0x00, 0x00,
0x11, 0xea, 0x05, 0x0e, 0xbd, 0x50, 0x46, 0x4c,
0xf3, 0x00, 0x00, 0x00, 0xd4, 0x65, 0x00, 0x00,
0x42, 0xd9, 0x00, 0x00, 0x00, 0xc4, 0x41, 0xe2,
0x00, 0x00, 0x00, 0xd0, 0xbf, 0x00, 0x42, 0xf4,
0x00, 0x00, 0x00, 0xc4, 0x24, 0x01, 0x00, 0x24,
0x03, 0x00, 0x29, 0x9c, 0x03, 0x35, 0x0b, 0x0e,
0x08, 0x3a, 0x3a, 0x53, 0x5d, 0x09, 0x00, 0x0f,
0x0c, 0x49, 0x0e, 0x43, 0x06, 0x01, 0x00, 0x01,
0x01, 0x01, 0x04, 0x01, 0x00, 0x35, 0x02, 0x8e,
0x02, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00,
0xc0, 0x03, 0x00, 0x03, 0x08, 0xc8, 0xd0, 0x04,
0xf5, 0x00, 0x00, 0x00, 0xaa, 0xe9, 0x16, 0xc4,
0x42, 0xe4, 0x00, 0x00, 0x00, 0x04, 0xda, 0x00,
0x00, 0x00, 0xdc, 0x41, 0xf0, 0x00, 0x00, 0x00,
0x24, 0x02, 0x00, 0x29, 0xc4, 0x42, 0xe4, 0x00,
0x00, 0x00, 0x04, 0xd9, 0x00, 0x00, 0x00, 0xdc,
0x41, 0xf0, 0x00, 0x00, 0x00, 0x24, 0x02, 0x00,
0x29, 0x9c, 0x03, 0x3e, 0x05, 0x0d, 0x30, 0x68,
0x08, 0x67, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00,
0x02, 0x00, 0x04, 0x01, 0x00, 0x40, 0x02, 0xdc,
0x03, 0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00,
0x9e, 0x03, 0x00, 0x0c, 0x08, 0xc9, 0x65, 0x00,
0x00, 0x42, 0xda, 0x00, 0x00, 0x00, 0xc5, 0x41,
0xe2, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0xcc,
0xb4, 0xad, 0xe9, 0x15, 0xc5, 0x42, 0xe4, 0x00,
0x00, 0x00, 0x04, 0xe5, 0x00, 0x00, 0x00, 0x04,
0xf6, 0x00, 0x00, 0x00, 0x24, 0x02, 0x00, 0x29,
0xc5, 0x42, 0xe4, 0x00, 0x00, 0x00, 0x04, 0xda,
0x00, 0x00, 0x00, 0x38, 0xf0, 0x00, 0x00, 0x00,
0x24, 0x02, 0x00, 0x29, 0x9c, 0x03, 0x47, 0x06,
0x0d, 0x5d, 0x17, 0x63, 0x08, 0x62, 0x0e, 0x42,
0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x01,
0x00, 0x0b, 0x00, 0x9e, 0x03, 0x00, 0x0c, 0x65,
0x00, 0x00, 0x42, 0xdb, 0x00, 0x00, 0x00, 0x25,
0x00, 0x00, 0x9c, 0x03, 0x50, 0x01, 0x03, 0x0e,
0x42, 0x07, 0x01, 0x00, 0x00, 0x02, 0x00, 0x03,
0x01, 0x00, 0x62, 0x02, 0xdc, 0x03, 0x00, 0x00,
0x00, 0x10, 0x00, 0x01, 0x00, 0x9e, 0x03, 0x00,
0x0c, 0x08, 0xc9, 0x65, 0x00, 0x00, 0x42, 0xdc,
0x00, 0x00, 0x00, 0xc5, 0x41, 0xe2, 0x00, 0x00,
0x00, 0x24, 0x01, 0x00, 0xcc, 0x11, 0xb4, 0xac,
0xe9, 0x07, 0x04, 0xf7, 0x00, 0x00, 0x00, 0x28,
0x11, 0xb5, 0xac, 0xe9, 0x07, 0x04, 0xf8, 0x00,
0x00, 0x00, 0x28, 0x11, 0xb6, 0xac, 0xe9, 0x07,
0x04, 0xf9, 0x00, 0x00, 0x00, 0x28, 0x11, 0xb7,
0xac, 0xe9, 0x07, 0x04, 0xfa, 0x00, 0x00, 0x00,
0x28, 0x11, 0xb8, 0xac, 0xe9, 0x07, 0x04, 0xfb,
0x00, 0x00, 0x00, 0x28, 0x11, 0xb9, 0xac, 0xe9,
0x07, 0x04, 0xfc, 0x00, 0x00, 0x00, 0x28, 0x11,
0xba, 0xac, 0xe9, 0x07, 0x04, 0xfd, 0x00, 0x00,
0x00, 0x28, 0x29, 0x9c, 0x03, 0x54, 0x11, 0x0d,
0x5e, 0x1c, 0x21, 0x1c, 0x21, 0x1c, 0x21, 0x1c,
0x21, 0x1c, 0x21, 0x1c, 0x21, 0x1c, 0x1c, 0x08,
0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x02, 0x00,
0x04, 0x01, 0x00, 0x2d, 0x02, 0xdc, 0x03, 0x00,
0x00, 0x00, 0x10, 0x00, 0x01, 0x00, 0x9e, 0x03,
0x00, 0x0c, 0x08, 0xc9, 0x65, 0x00, 0x00, 0x42,
0xdd, 0x00, 0x00, 0x00, 0xc5, 0x41, 0xe2, 0x00,
0x00, 0x00, 0x24, 0x01, 0x00, 0xcc, 0xb4, 0xad,
0xe9, 0x15, 0xc5, 0x42, 0xe4, 0x00, 0x00, 0x00,
0x04, 0xe5, 0x00, 0x00, 0x00, 0x04, 0xfe, 0x00,
0x00, 0x00, 0x24, 0x02, 0x00, 0x0e, 0x29, 0x9c,
0x03, 0x68, 0x04, 0x0d, 0x5d, 0x17, 0x68, 0x0e,
0x42, 0x07, 0x01, 0x00, 0x01, 0x02, 0x01, 0x04,
0x01, 0x00, 0x90, 0x01, 0x03, 0xc0, 0x03, 0x00,
0x01, 0x00, 0xdc, 0x03, 0x00, 0x00, 0x00, 0x10,
0x00, 0x01, 0x00, 0x9e, 0x03, 0x00, 0x0c, 0x08,
0xc9, 0x0b, 0xd0, 0x41, 0xff, 0x00, 0x00, 0x00,
0x11, 0xea, 0x03, 0x0e, 0x0a, 0x4c, 0xff, 0x00,
0x00, 0x00, 0xd0, 0x41, 0x00, 0x01, 0x00, 0x00,
0x11, 0xea, 0x03, 0x0e, 0xc0, 0x4c, 0x00, 0x01,
0x00, 0x00, 0xd0, 0x41, 0x01, 0x01, 0x00, 0x00,
0x11, 0xea, 0x03, 0x0e, 0xc0, 0x4c, 0x01, 0x01,
0x00, 0x00, 0xd0, 0x41, 0x02, 0x01, 0x00, 0x00,
0x11, 0xea, 0x03, 0x0e, 0xc0, 0x4c, 0x02, 0x01,
0x00, 0x00, 0xd0, 0x41, 0x03, 0x01, 0x00, 0x00,
0x11, 0xea, 0x03, 0x0e, 0xc0, 0x4c, 0x03, 0x01,
0x00, 0x00, 0xd0, 0x41, 0x04, 0x01, 0x00, 0x00,
0x11, 0xea, 0x03, 0x0e, 0xc0, 0x4c, 0x04, 0x01,
0x00, 0x00, 0xd4, 0x65, 0x00, 0x00, 0x42, 0xde,
0x00, 0x00, 0x00, 0xc5, 0x41, 0xe2, 0x00, 0x00,
0x00, 0xd0, 0x24, 0x02, 0x00, 0xcc, 0xb4, 0xad,
0xe9, 0x15, 0xc5, 0x42, 0xe4, 0x00, 0x00, 0x00,
0x04, 0xe5, 0x00, 0x00, 0x00, 0x04, 0xfe, 0x00,
0x00, 0x00, 0x24, 0x02, 0x00, 0x0e, 0x29, 0x9c,
0x03, 0x6f, 0x0c, 0x0e, 0x08, 0x53, 0x53, 0x53,
0x53, 0x53, 0x53, 0x09, 0x62, 0x17, 0x68, 0x0e,
0x42, 0x07, 0x01, 0x00, 0x00, 0x02, 0x00, 0x04,
0x01, 0x00, 0x2d, 0x02, 0x8a, 0x04, 0x00, 0x00,
0x00, 0x10, 0x00, 0x01, 0x00, 0x9e, 0x03, 0x00,
0x0c, 0x08, 0xc9, 0x65, 0x00, 0x00, 0x42, 0xdf,
0x00, 0x00, 0x00, 0xc5, 0x41, 0xe2, 0x00, 0x00,
0x00, 0x24, 0x01, 0x00, 0xcc, 0x97, 0xe9, 0x15,
0xc5, 0x42, 0xe4, 0x00, 0x00, 0x00, 0x04, 0xe5,
0x00, 0x00, 0x00, 0x04, 0x06, 0x01, 0x00, 0x00,
0x24, 0x02, 0x00, 0x0e, 0xc4, 0x28, 0x9c, 0x03,
0x80, 0x01, 0x04, 0x0d, 0x5d, 0x12, 0x68, 0x0e,
0x43, 0x06, 0x01, 0xa2, 0x03, 0x01, 0x00, 0x01,
0x03, 0x01, 0x00, 0x09, 0x01, 0xc0, 0x03, 0x00,
0x01, 0x00, 0xa4, 0x03, 0x02, 0x08, 0x65, 0x00,
0x00, 0x11, 0xd0, 0x21, 0x01, 0x00, 0x28, 0x9c,
0x03, 0x89, 0x01, 0x01, 0x03,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_netmgr.c | C | apache-2.0 | 14,261 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_network_size = 3775;
const uint8_t jslib_network[3775] = {
0x01, 0x52, 0x1c, 0x73, 0x72, 0x63, 0x2f, 0x6e,
0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x2e, 0x6a,
0x73, 0x06, 0x73, 0x74, 0x64, 0x0c, 0x65, 0x76,
0x65, 0x6e, 0x74, 0x73, 0x0e, 0x4e, 0x45, 0x54,
0x57, 0x4f, 0x52, 0x4b, 0x22, 0x6f, 0x70, 0x65,
0x6e, 0x4e, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b,
0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x0e, 0x6e,
0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x0e, 0x64,
0x65, 0x76, 0x54, 0x79, 0x70, 0x65, 0x18, 0x45,
0x76, 0x65, 0x6e, 0x74, 0x45, 0x6d, 0x69, 0x74,
0x74, 0x65, 0x72, 0x16, 0x5f, 0x6e, 0x65, 0x74,
0x6d, 0x67, 0x72, 0x49, 0x6e, 0x69, 0x74, 0x1a,
0x5f, 0x6e, 0x65, 0x74, 0x6d, 0x67, 0x72, 0x47,
0x65, 0x74, 0x44, 0x65, 0x76, 0x14, 0x5f, 0x6f,
0x6e, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74,
0x0e, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65,
0x0e, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74,
0x14, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x6e, 0x6e,
0x65, 0x63, 0x74, 0x0e, 0x67, 0x65, 0x74, 0x49,
0x6e, 0x66, 0x6f, 0x12, 0x67, 0x65, 0x74, 0x53,
0x74, 0x61, 0x74, 0x75, 0x73, 0x14, 0x73, 0x61,
0x76, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
0x16, 0x73, 0x65, 0x74, 0x49, 0x66, 0x43, 0x6f,
0x6e, 0x66, 0x69, 0x67, 0x16, 0x67, 0x65, 0x74,
0x49, 0x66, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
0x08, 0x77, 0x69, 0x66, 0x69, 0x10, 0x63, 0x65,
0x6c, 0x6c, 0x75, 0x6c, 0x61, 0x72, 0x0c, 0x65,
0x74, 0x68, 0x6e, 0x65, 0x74, 0x7c, 0x64, 0x65,
0x76, 0x54, 0x79, 0x70, 0x65, 0x20, 0x6f, 0x6e,
0x6c, 0x79, 0x20, 0x73, 0x75, 0x70, 0x70, 0x6f,
0x72, 0x74, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x75,
0x6c, 0x61, 0x72, 0x2f, 0x77, 0x69, 0x66, 0x69,
0x2f, 0x65, 0x74, 0x68, 0x6e, 0x65, 0x74, 0x2c,
0x20, 0x70, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x20,
0x63, 0x68, 0x65, 0x63, 0x6b, 0x20, 0x69, 0x6e,
0x70, 0x75, 0x74, 0x21, 0x0e, 0x63, 0x6f, 0x6e,
0x73, 0x6f, 0x6c, 0x65, 0x06, 0x6c, 0x6f, 0x67,
0x16, 0x64, 0x65, 0x76, 0x54, 0x79, 0x70, 0x65,
0x20, 0x69, 0x73, 0x20, 0x78, 0x69, 0x6d, 0x70,
0x6f, 0x72, 0x74, 0x20, 0x2a, 0x20, 0x61, 0x73,
0x20, 0x4e, 0x45, 0x54, 0x4d, 0x47, 0x52, 0x20,
0x66, 0x72, 0x6f, 0x6d, 0x20, 0x27, 0x4e, 0x45,
0x54, 0x4d, 0x47, 0x52, 0x27, 0x3b, 0x20, 0x67,
0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x54, 0x68, 0x69,
0x73, 0x2e, 0x4e, 0x45, 0x54, 0x4d, 0x47, 0x52,
0x20, 0x3d, 0x20, 0x4e, 0x45, 0x54, 0x4d, 0x47,
0x52, 0x14, 0x2f, 0x64, 0x65, 0x76, 0x2f, 0x77,
0x69, 0x66, 0x69, 0x30, 0x16, 0x64, 0x65, 0x76,
0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72,
0x12, 0x2f, 0x64, 0x65, 0x76, 0x2f, 0x65, 0x74,
0x68, 0x30, 0x88, 0x01, 0x69, 0x6d, 0x70, 0x6f,
0x72, 0x74, 0x20, 0x2a, 0x20, 0x61, 0x73, 0x20,
0x43, 0x45, 0x4c, 0x4c, 0x55, 0x4c, 0x41, 0x52,
0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x27, 0x43,
0x45, 0x4c, 0x4c, 0x55, 0x4c, 0x41, 0x52, 0x27,
0x3b, 0x20, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c,
0x54, 0x68, 0x69, 0x73, 0x2e, 0x43, 0x45, 0x4c,
0x4c, 0x55, 0x4c, 0x41, 0x52, 0x20, 0x3d, 0x20,
0x43, 0x45, 0x4c, 0x4c, 0x55, 0x4c, 0x41, 0x52,
0x0c, 0x4e, 0x45, 0x54, 0x4d, 0x47, 0x52, 0x16,
0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x49,
0x6e, 0x69, 0x74, 0x22, 0x6e, 0x65, 0x74, 0x6d,
0x67, 0x72, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x20,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x64, 0x65,
0x76, 0x69, 0x63, 0x65, 0x20, 0x6e, 0x65, 0x74,
0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3a, 0x0c, 0x67,
0x65, 0x74, 0x44, 0x65, 0x76, 0x3a, 0x6e, 0x65,
0x74, 0x6d, 0x67, 0x72, 0x20, 0x67, 0x65, 0x74,
0x20, 0x64, 0x65, 0x76, 0x20, 0x68, 0x61, 0x6e,
0x64, 0x6c, 0x65, 0x20, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x3a, 0x20, 0x04, 0x63, 0x62, 0x06, 0x63,
0x62, 0x5f, 0x10, 0x43, 0x45, 0x4c, 0x4c, 0x55,
0x4c, 0x41, 0x52, 0x12, 0x6f, 0x6e, 0x43, 0x6f,
0x6e, 0x6e, 0x65, 0x63, 0x74, 0x08, 0x62, 0x69,
0x6e, 0x64, 0x40, 0x6e, 0x65, 0x74, 0x77, 0x6f,
0x72, 0x6b, 0x20, 0x6f, 0x6e, 0x20, 0x63, 0x65,
0x6c, 0x6c, 0x75, 0x6c, 0x61, 0x72, 0x20, 0x73,
0x74, 0x61, 0x74, 0x75, 0x73, 0x20, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x3c, 0x6e, 0x65, 0x74, 0x77,
0x6f, 0x72, 0x6b, 0x20, 0x6f, 0x6e, 0x20, 0x65,
0x74, 0x68, 0x6e, 0x65, 0x74, 0x20, 0x73, 0x74,
0x61, 0x74, 0x75, 0x73, 0x20, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x08, 0x65, 0x6d, 0x69, 0x74, 0x14,
0x44, 0x49, 0x53, 0x43, 0x4f, 0x4e, 0x4e, 0x45,
0x43, 0x54, 0x24, 0x65, 0x74, 0x68, 0x6e, 0x65,
0x74, 0x20, 0x20, 0x64, 0x69, 0x73, 0x63, 0x6f,
0x6e, 0x6e, 0x65, 0x63, 0x74, 0x1e, 0x65, 0x74,
0x68, 0x6e, 0x65, 0x74, 0x20, 0x20, 0x63, 0x6f,
0x6e, 0x6e, 0x65, 0x63, 0x74, 0x08, 0x74, 0x79,
0x70, 0x65, 0x0c, 0x75, 0x6e, 0x6b, 0x6e, 0x6f,
0x77, 0x36, 0x4e, 0x6f, 0x74, 0x20, 0x77, 0x69,
0x66, 0x69, 0x20, 0x64, 0x65, 0x76, 0x2c, 0x20,
0x63, 0x61, 0x6e, 0x27, 0x74, 0x20, 0x63, 0x6f,
0x6e, 0x6e, 0x65, 0x63, 0x74, 0x08, 0x73, 0x73,
0x69, 0x64, 0x10, 0x70, 0x61, 0x73, 0x73, 0x77,
0x6f, 0x72, 0x64, 0x0a, 0x62, 0x73, 0x73, 0x69,
0x64, 0x14, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75,
0x74, 0x5f, 0x6d, 0x73, 0x06, 0x72, 0x65, 0x74,
0x3c, 0x4e, 0x6f, 0x74, 0x20, 0x77, 0x69, 0x66,
0x69, 0x20, 0x64, 0x65, 0x76, 0x2c, 0x20, 0x63,
0x61, 0x6e, 0x27, 0x74, 0x20, 0x64, 0x69, 0x73,
0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x0a,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6e, 0x65,
0x74, 0x6d, 0x67, 0x72, 0x20, 0x64, 0x69, 0x73,
0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x20,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x08, 0x69, 0x6e,
0x66, 0x6f, 0x0e, 0x73, 0x69, 0x6d, 0x49, 0x6e,
0x66, 0x6f, 0x16, 0x6c, 0x6f, 0x63, 0x61, 0x74,
0x6f, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x0e, 0x6e,
0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x14, 0x67,
0x65, 0x74, 0x53, 0x69, 0x6d, 0x49, 0x6e, 0x66,
0x6f, 0x1c, 0x67, 0x65, 0x74, 0x4c, 0x6f, 0x63,
0x61, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x66, 0x6f,
0x20, 0x6e, 0x65, 0x74, 0x20, 0x6d, 0x6f, 0x64,
0x65, 0x20, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69,
0x64, 0x10, 0x67, 0x65, 0x74, 0x53, 0x74, 0x61,
0x74, 0x65, 0x52, 0x63, 0x65, 0x6c, 0x6c, 0x75,
0x6c, 0x61, 0x72, 0x20, 0x64, 0x65, 0x76, 0x69,
0x63, 0x65, 0x20, 0x69, 0x73, 0x6e, 0x27, 0x74,
0x20, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74,
0x20, 0x73, 0x61, 0x76, 0x65, 0x43, 0x6f, 0x6e,
0x66, 0x69, 0x67, 0x21, 0x30, 0x6e, 0x65, 0x74,
0x6d, 0x67, 0x72, 0x20, 0x73, 0x61, 0x76, 0x65,
0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x20,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x56, 0x73, 0x65,
0x74, 0x49, 0x66, 0x43, 0x6f, 0x6e, 0x66, 0x69,
0x67, 0x3a, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x75,
0x6c, 0x61, 0x72, 0x20, 0x64, 0x65, 0x76, 0x69,
0x63, 0x65, 0x20, 0x69, 0x73, 0x6e, 0x27, 0x74,
0x20, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74,
0x21, 0x1c, 0x68, 0x61, 0x73, 0x4f, 0x77, 0x6e,
0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
0x0e, 0x64, 0x68, 0x63, 0x70, 0x5f, 0x65, 0x6e,
0x80, 0x01, 0x73, 0x65, 0x74, 0x49, 0x66, 0x43,
0x6f, 0x6e, 0x66, 0x69, 0x67, 0x3a, 0x20, 0x70,
0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
0x64, 0x68, 0x63, 0x70, 0x5f, 0x65, 0x6e, 0x20,
0x75, 0x6e, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x65,
0x64, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x73, 0x68,
0x6f, 0x75, 0x6c, 0x64, 0x20, 0x62, 0x65, 0x20,
0x62, 0x6f, 0x6f, 0x6c, 0x20, 0x74, 0x79, 0x70,
0x65, 0x21, 0x0e, 0x69, 0x70, 0x5f, 0x61, 0x64,
0x64, 0x72, 0x08, 0x6d, 0x61, 0x73, 0x6b, 0x04,
0x67, 0x77, 0x14, 0x64, 0x6e, 0x73, 0x5f, 0x73,
0x65, 0x72, 0x76, 0x65, 0x72, 0x30, 0x73, 0x65,
0x74, 0x49, 0x66, 0x43, 0x6f, 0x6e, 0x66, 0x69,
0x67, 0x3a, 0x20, 0x65, 0x6e, 0x61, 0x62, 0x6c,
0x65, 0x20, 0x64, 0x68, 0x63, 0x70, 0x0c, 0x63,
0x6f, 0x6e, 0x66, 0x69, 0x67, 0x54, 0x63, 0x65,
0x6c, 0x6c, 0x75, 0x6c, 0x61, 0x72, 0x20, 0x64,
0x65, 0x76, 0x69, 0x63, 0x65, 0x20, 0x69, 0x73,
0x6e, 0x27, 0x74, 0x20, 0x73, 0x75, 0x70, 0x70,
0x6f, 0x72, 0x74, 0x20, 0x67, 0x65, 0x74, 0x49,
0x66, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x21,
0x26, 0x67, 0x65, 0x74, 0x20, 0x69, 0x66, 0x20,
0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x20, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x0f, 0x9c, 0x03, 0x03,
0x9e, 0x03, 0xa0, 0x03, 0xa2, 0x03, 0x01, 0x00,
0x05, 0xa4, 0x03, 0x00, 0x03, 0x00, 0xf8, 0x01,
0x00, 0x01, 0xf8, 0x01, 0x01, 0x02, 0xf8, 0x01,
0x02, 0x0e, 0x00, 0x06, 0x01, 0xa0, 0x01, 0x00,
0x02, 0x00, 0x03, 0x06, 0x0d, 0x80, 0x01, 0x02,
0xa6, 0x03, 0x02, 0x00, 0x60, 0xea, 0x01, 0x03,
0x01, 0xe0, 0x9e, 0x03, 0x00, 0x0d, 0xa0, 0x03,
0x01, 0x0d, 0xa2, 0x03, 0x02, 0x0d, 0xa8, 0x03,
0x00, 0x01, 0xa6, 0x03, 0x01, 0x09, 0xa4, 0x03,
0x02, 0x01, 0xbf, 0x0c, 0x5f, 0x05, 0x00, 0xb4,
0xe3, 0x61, 0x00, 0x00, 0x65, 0x01, 0x00, 0x41,
0xd5, 0x00, 0x00, 0x00, 0x61, 0x01, 0x00, 0xbe,
0x00, 0x56, 0xd3, 0x00, 0x00, 0x00, 0x01, 0xbf,
0x01, 0x54, 0xd6, 0x00, 0x00, 0x00, 0x00, 0xbf,
0x02, 0x54, 0xd7, 0x00, 0x00, 0x00, 0x00, 0xbf,
0x03, 0x54, 0xd8, 0x00, 0x00, 0x00, 0x00, 0xbf,
0x04, 0x54, 0xd9, 0x00, 0x00, 0x00, 0x00, 0xbf,
0x05, 0x54, 0xda, 0x00, 0x00, 0x00, 0x00, 0xbf,
0x06, 0x54, 0xdb, 0x00, 0x00, 0x00, 0x00, 0xbf,
0x07, 0x54, 0xdc, 0x00, 0x00, 0x00, 0x00, 0xbf,
0x08, 0x54, 0xdd, 0x00, 0x00, 0x00, 0x00, 0xbf,
0x09, 0x54, 0xde, 0x00, 0x00, 0x00, 0x00, 0xbf,
0x0a, 0x54, 0xdf, 0x00, 0x00, 0x00, 0x00, 0xbf,
0x0b, 0x54, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x06,
0xc9, 0x0e, 0xcc, 0x68, 0x01, 0x00, 0x5f, 0x04,
0x00, 0x29, 0x9c, 0x03, 0x01, 0x2a, 0x01, 0x00,
0x05, 0x0c, 0x0d, 0x00, 0x16, 0x50, 0x00, 0x08,
0x14, 0x00, 0x08, 0x44, 0x00, 0x08, 0x2c, 0x00,
0x08, 0x32, 0x00, 0x08, 0x20, 0x00, 0x08, 0x2a,
0x00, 0x08, 0x24, 0x00, 0x08, 0x16, 0x00, 0x08,
0x3a, 0x00, 0x08, 0x18, 0x2b, 0x00, 0x0a, 0x08,
0x0e, 0xc6, 0x07, 0x01, 0x00, 0x01, 0x03, 0x01,
0x04, 0x03, 0x00, 0xc0, 0x02, 0x04, 0xc2, 0x03,
0x00, 0x01, 0x00, 0xe2, 0x01, 0x00, 0x01, 0x00,
0xe0, 0x01, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01,
0x40, 0xea, 0x01, 0x01, 0x0d, 0xa8, 0x03, 0x03,
0x00, 0x9e, 0x03, 0x00, 0x0c, 0x0c, 0x02, 0xc8,
0x0c, 0x03, 0xc9, 0x61, 0x02, 0x00, 0x2b, 0xc4,
0x34, 0xc5, 0x21, 0x00, 0x00, 0x11, 0x64, 0x02,
0x00, 0x65, 0x00, 0x00, 0x11, 0xe9, 0x08, 0x62,
0x02, 0x00, 0x1b, 0x24, 0x00, 0x00, 0x0e, 0x0e,
0xd0, 0x97, 0x11, 0xea, 0x09, 0x0e, 0xd0, 0x41,
0xd4, 0x00, 0x00, 0x00, 0x97, 0xe9, 0x0f, 0x62,
0x02, 0x00, 0x42, 0xd9, 0x00, 0x00, 0x00, 0x24,
0x00, 0x00, 0xe1, 0xeb, 0x08, 0xd0, 0x41, 0xd4,
0x00, 0x00, 0x00, 0xe1, 0xdd, 0x04, 0xe2, 0x00,
0x00, 0x00, 0xab, 0xe9, 0x22, 0xdd, 0x04, 0xe3,
0x00, 0x00, 0x00, 0xab, 0xe9, 0x19, 0xdd, 0x04,
0xe4, 0x00, 0x00, 0x00, 0xab, 0xe9, 0x10, 0x38,
0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0xe5, 0x00,
0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0x38, 0xe6,
0x00, 0x00, 0x00, 0x42, 0xe7, 0x00, 0x00, 0x00,
0x04, 0xe8, 0x00, 0x00, 0x00, 0xdd, 0x9e, 0x24,
0x01, 0x00, 0x0e, 0xdd, 0x04, 0xe2, 0x00, 0x00,
0x00, 0xaa, 0xe9, 0x40, 0x65, 0x02, 0x00, 0x42,
0x3a, 0x00, 0x00, 0x00, 0x04, 0xe9, 0x00, 0x00,
0x00, 0x24, 0x01, 0x00, 0x0e, 0x62, 0x02, 0x00,
0x04, 0xea, 0x00, 0x00, 0x00, 0x43, 0x36, 0x00,
0x00, 0x00, 0x62, 0x02, 0x00, 0x42, 0xd6, 0x00,
0x00, 0x00, 0x24, 0x00, 0x00, 0x0e, 0x62, 0x02,
0x00, 0x62, 0x02, 0x00, 0x42, 0xd7, 0x00, 0x00,
0x00, 0x24, 0x00, 0x00, 0x43, 0xeb, 0x00, 0x00,
0x00, 0xeb, 0x6f, 0xdd, 0x04, 0xe4, 0x00, 0x00,
0x00, 0xaa, 0xe9, 0x40, 0x65, 0x02, 0x00, 0x42,
0x3a, 0x00, 0x00, 0x00, 0x04, 0xe9, 0x00, 0x00,
0x00, 0x24, 0x01, 0x00, 0x0e, 0x62, 0x02, 0x00,
0x04, 0xec, 0x00, 0x00, 0x00, 0x43, 0x36, 0x00,
0x00, 0x00, 0x62, 0x02, 0x00, 0x42, 0xd6, 0x00,
0x00, 0x00, 0x24, 0x00, 0x00, 0x0e, 0x62, 0x02,
0x00, 0x62, 0x02, 0x00, 0x42, 0xd7, 0x00, 0x00,
0x00, 0x24, 0x00, 0x00, 0x43, 0xeb, 0x00, 0x00,
0x00, 0xeb, 0x27, 0xdd, 0x04, 0xe3, 0x00, 0x00,
0x00, 0xaa, 0xe9, 0x1e, 0x65, 0x02, 0x00, 0x42,
0x3a, 0x00, 0x00, 0x00, 0x04, 0xed, 0x00, 0x00,
0x00, 0x24, 0x01, 0x00, 0x0e, 0x62, 0x02, 0x00,
0x42, 0xd8, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00,
0x0e, 0x62, 0x02, 0x00, 0x28, 0x9c, 0x03, 0x08,
0x19, 0x35, 0x81, 0x4e, 0x3f, 0x0e, 0x28, 0x8a,
0x49, 0x09, 0x6c, 0x30, 0x58, 0x44, 0x3f, 0x62,
0x0d, 0x30, 0x58, 0x44, 0x3f, 0x64, 0x0d, 0x30,
0x58, 0x40, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00,
0x00, 0x00, 0x03, 0x00, 0x00, 0x21, 0x00, 0x38,
0xee, 0x00, 0x00, 0x00, 0x42, 0xef, 0x00, 0x00,
0x00, 0x24, 0x00, 0x00, 0xb4, 0xad, 0xe9, 0x10,
0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0xf0,
0x00, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0x29,
0x9c, 0x03, 0x2b, 0x04, 0x03, 0x58, 0x49, 0x08,
0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x02, 0x00,
0x04, 0x00, 0x00, 0x4c, 0x02, 0xd6, 0x03, 0x00,
0x00, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc9,
0x38, 0xe6, 0x00, 0x00, 0x00, 0x42, 0xe7, 0x00,
0x00, 0x00, 0x04, 0xf1, 0x00, 0x00, 0x00, 0xc5,
0x41, 0x36, 0x00, 0x00, 0x00, 0x9e, 0x24, 0x01,
0x00, 0x0e, 0x38, 0xee, 0x00, 0x00, 0x00, 0x42,
0xf2, 0x00, 0x00, 0x00, 0xc5, 0x41, 0x36, 0x00,
0x00, 0x00, 0x24, 0x01, 0x00, 0xcc, 0xb3, 0xaa,
0xe9, 0x17, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11,
0x04, 0xf3, 0x00, 0x00, 0x00, 0xc5, 0x41, 0x36,
0x00, 0x00, 0x00, 0x9e, 0x21, 0x01, 0x00, 0x2f,
0xc4, 0x28, 0x9c, 0x03, 0x31, 0x06, 0x0d, 0x85,
0x67, 0x17, 0x6c, 0x09, 0x0e, 0x42, 0x07, 0x01,
0x00, 0x00, 0x03, 0x00, 0x06, 0x01, 0x02, 0x81,
0x01, 0x03, 0xe8, 0x03, 0x00, 0x00, 0x00, 0xea,
0x03, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00,
0xa8, 0x03, 0x03, 0x00, 0x08, 0xca, 0xdc, 0x04,
0xe3, 0x00, 0x00, 0x00, 0xaa, 0xe9, 0x34, 0xbf,
0x00, 0x4d, 0xf4, 0x00, 0x00, 0x00, 0xc8, 0x38,
0xf6, 0x00, 0x00, 0x00, 0x42, 0xf7, 0x00, 0x00,
0x00, 0xc4, 0x42, 0xf8, 0x00, 0x00, 0x00, 0xc6,
0x24, 0x01, 0x00, 0x24, 0x01, 0x00, 0xb4, 0xad,
0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11,
0x04, 0xf9, 0x00, 0x00, 0x00, 0x21, 0x01, 0x00,
0x2f, 0x29, 0xdc, 0x04, 0xe4, 0x00, 0x00, 0x00,
0xaa, 0xe9, 0x3a, 0xbf, 0x01, 0x4d, 0xf5, 0x00,
0x00, 0x00, 0xc9, 0x38, 0xee, 0x00, 0x00, 0x00,
0x42, 0xda, 0x00, 0x00, 0x00, 0xc6, 0x41, 0xeb,
0x00, 0x00, 0x00, 0xc5, 0x42, 0xf8, 0x00, 0x00,
0x00, 0xc6, 0x24, 0x01, 0x00, 0x24, 0x02, 0x00,
0xb4, 0xad, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00,
0x00, 0x11, 0x04, 0xfa, 0x00, 0x00, 0x00, 0x21,
0x01, 0x00, 0x2f, 0x29, 0x29, 0x9c, 0x03, 0x3b,
0x11, 0x0d, 0x00, 0x09, 0x0e, 0x2c, 0x8a, 0x49,
0x09, 0x09, 0x00, 0x09, 0x12, 0x2c, 0xa8, 0x49,
0x09, 0x08, 0x0e, 0x43, 0x06, 0x01, 0x00, 0x01,
0x01, 0x01, 0x03, 0x00, 0x00, 0x27, 0x02, 0x8e,
0x02, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00,
0x08, 0xc8, 0xd0, 0xb5, 0xac, 0xe9, 0x11, 0xc4,
0x42, 0xfb, 0x00, 0x00, 0x00, 0x04, 0xda, 0x00,
0x00, 0x00, 0x24, 0x01, 0x00, 0x0e, 0x29, 0xc4,
0x42, 0xfb, 0x00, 0x00, 0x00, 0x04, 0xdb, 0x00,
0x00, 0x00, 0x24, 0x01, 0x00, 0x0e, 0x29, 0x9c,
0x03, 0x3d, 0x05, 0x0d, 0x1c, 0x4e, 0x08, 0x4f,
0x0e, 0x43, 0x06, 0x01, 0x00, 0x01, 0x01, 0x01,
0x03, 0x00, 0x00, 0x51, 0x02, 0x8e, 0x02, 0x00,
0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc8,
0xd0, 0x04, 0xfc, 0x00, 0x00, 0x00, 0xaa, 0xe9,
0x24, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x42, 0xe7,
0x00, 0x00, 0x00, 0x04, 0xfd, 0x00, 0x00, 0x00,
0x24, 0x01, 0x00, 0x0e, 0xc4, 0x42, 0xfb, 0x00,
0x00, 0x00, 0x04, 0xdb, 0x00, 0x00, 0x00, 0x24,
0x01, 0x00, 0x0e, 0x29, 0x38, 0xe6, 0x00, 0x00,
0x00, 0x42, 0xe7, 0x00, 0x00, 0x00, 0x04, 0xfe,
0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0x0e, 0xc4,
0x42, 0xfb, 0x00, 0x00, 0x00, 0x04, 0xda, 0x00,
0x00, 0x00, 0x24, 0x01, 0x00, 0x0e, 0x29, 0x9c,
0x03, 0x4c, 0x07, 0x0d, 0x30, 0x62, 0x4e, 0x08,
0x62, 0x4f, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00,
0x01, 0x00, 0x03, 0x02, 0x00, 0x43, 0x01, 0xfe,
0x03, 0x00, 0x00, 0x00, 0xa8, 0x03, 0x03, 0x00,
0xa2, 0x03, 0x02, 0x0c, 0xdc, 0xb4, 0xaa, 0xe9,
0x3d, 0x65, 0x01, 0x00, 0x42, 0xd9, 0x00, 0x00,
0x00, 0x24, 0x00, 0x00, 0xcc, 0x11, 0xb4, 0xac,
0xe9, 0x09, 0x04, 0xe2, 0x00, 0x00, 0x00, 0xc8,
0xeb, 0x21, 0x11, 0xb5, 0xac, 0xe9, 0x09, 0x04,
0xe3, 0x00, 0x00, 0x00, 0xc8, 0xeb, 0x14, 0x11,
0xb6, 0xac, 0xe9, 0x09, 0x04, 0xe4, 0x00, 0x00,
0x00, 0xc8, 0xeb, 0x07, 0x04, 0x00, 0x01, 0x00,
0x00, 0xc8, 0x0e, 0xc4, 0x28, 0xdc, 0x28, 0x9c,
0x03, 0x60, 0x0d, 0x03, 0x1c, 0x40, 0x1c, 0x2b,
0x1c, 0x2b, 0x1c, 0x2c, 0x21, 0x08, 0x08, 0x08,
0x0e, 0x42, 0x07, 0x01, 0x00, 0x01, 0x01, 0x01,
0x07, 0x01, 0x01, 0x78, 0x02, 0xc2, 0x03, 0x00,
0x01, 0x80, 0x10, 0x00, 0x01, 0x00, 0xa8, 0x03,
0x03, 0x00, 0x08, 0xc8, 0xdc, 0x04, 0xe2, 0x00,
0x00, 0x00, 0xab, 0xe9, 0x14, 0x38, 0xe6, 0x00,
0x00, 0x00, 0x42, 0xe7, 0x00, 0x00, 0x00, 0x04,
0x01, 0x01, 0x00, 0x00, 0x24, 0x01, 0x00, 0x29,
0x0b, 0xd0, 0x41, 0x02, 0x01, 0x00, 0x00, 0x4c,
0x02, 0x01, 0x00, 0x00, 0xd0, 0x41, 0x03, 0x01,
0x00, 0x00, 0x4c, 0x03, 0x01, 0x00, 0x00, 0xd0,
0x41, 0x04, 0x01, 0x00, 0x00, 0x11, 0xea, 0x03,
0x0e, 0xc0, 0x4c, 0x04, 0x01, 0x00, 0x00, 0xd0,
0x41, 0x05, 0x01, 0x00, 0x00, 0x11, 0xea, 0x05,
0x0e, 0xbd, 0x50, 0x46, 0x4c, 0x05, 0x01, 0x00,
0x00, 0xd4, 0x38, 0xee, 0x00, 0x00, 0x00, 0x42,
0xda, 0x00, 0x00, 0x00, 0xc4, 0x41, 0xeb, 0x00,
0x00, 0x00, 0xd0, 0xbf, 0x00, 0x42, 0xf8, 0x00,
0x00, 0x00, 0xc4, 0x24, 0x01, 0x00, 0x24, 0x03,
0x00, 0x29, 0x9c, 0x03, 0x76, 0x0e, 0x0d, 0x30,
0x5e, 0x09, 0x08, 0x3a, 0x3a, 0x53, 0x5d, 0x09,
0x00, 0x11, 0x0c, 0x49, 0x0e, 0x43, 0x06, 0x01,
0x00, 0x01, 0x01, 0x01, 0x04, 0x01, 0x00, 0x35,
0x02, 0x8e, 0x02, 0x00, 0x01, 0x00, 0x10, 0x00,
0x01, 0x00, 0xc2, 0x03, 0x00, 0x03, 0x08, 0xc8,
0xd0, 0x04, 0xfc, 0x00, 0x00, 0x00, 0xaa, 0xe9,
0x16, 0xc4, 0x42, 0xfb, 0x00, 0x00, 0x00, 0x04,
0xdb, 0x00, 0x00, 0x00, 0xdc, 0x41, 0x02, 0x01,
0x00, 0x00, 0x24, 0x02, 0x00, 0x29, 0xc4, 0x42,
0xfb, 0x00, 0x00, 0x00, 0x04, 0xda, 0x00, 0x00,
0x00, 0xdc, 0x41, 0x02, 0x01, 0x00, 0x00, 0x24,
0x02, 0x00, 0x29, 0x9c, 0x03, 0x83, 0x01, 0x05,
0x0d, 0x30, 0x68, 0x08, 0x67, 0x0e, 0x42, 0x07,
0x01, 0x00, 0x00, 0x02, 0x00, 0x04, 0x01, 0x00,
0x5a, 0x02, 0x8c, 0x04, 0x00, 0x00, 0x00, 0x10,
0x00, 0x01, 0x00, 0xa8, 0x03, 0x03, 0x00, 0x08,
0xc9, 0xdc, 0x04, 0xe2, 0x00, 0x00, 0x00, 0xab,
0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11,
0x04, 0x07, 0x01, 0x00, 0x00, 0x21, 0x01, 0x00,
0x2f, 0x38, 0xee, 0x00, 0x00, 0x00, 0x42, 0xdb,
0x00, 0x00, 0x00, 0xc5, 0x41, 0xeb, 0x00, 0x00,
0x00, 0x24, 0x01, 0x00, 0xcc, 0xb4, 0xad, 0xe9,
0x15, 0xc5, 0x42, 0xfb, 0x00, 0x00, 0x00, 0x04,
0x08, 0x01, 0x00, 0x00, 0x04, 0x09, 0x01, 0x00,
0x00, 0x24, 0x02, 0x00, 0x29, 0xc5, 0x42, 0xfb,
0x00, 0x00, 0x00, 0x04, 0xdb, 0x00, 0x00, 0x00,
0x38, 0x02, 0x01, 0x00, 0x00, 0x24, 0x02, 0x00,
0x29, 0x9c, 0x03, 0x8f, 0x01, 0x09, 0x0d, 0x30,
0x49, 0x09, 0x67, 0x17, 0x63, 0x08, 0x62, 0x0e,
0x42, 0x07, 0x01, 0x00, 0x00, 0x03, 0x00, 0x03,
0x01, 0x00, 0x80, 0x01, 0x03, 0x94, 0x04, 0x00,
0x00, 0x00, 0xfe, 0x03, 0x00, 0x01, 0x00, 0x10,
0x00, 0x01, 0x00, 0xa8, 0x03, 0x03, 0x00, 0x08,
0xca, 0x0b, 0x07, 0x4c, 0x0b, 0x01, 0x00, 0x00,
0x07, 0x4c, 0x0c, 0x01, 0x00, 0x00, 0x07, 0x4c,
0x0d, 0x01, 0x00, 0x00, 0xc8, 0xdc, 0xcd, 0x04,
0xe2, 0x00, 0x00, 0x00, 0xaa, 0x11, 0xea, 0x09,
0x0e, 0xc5, 0x04, 0xe4, 0x00, 0x00, 0x00, 0xaa,
0xe9, 0x12, 0xc4, 0xc6, 0x42, 0xe0, 0x00, 0x00,
0x00, 0x24, 0x00, 0x00, 0x43, 0x0d, 0x01, 0x00,
0x00, 0xc4, 0x28, 0xc5, 0x04, 0xe3, 0x00, 0x00,
0x00, 0xaa, 0xe9, 0x29, 0xc4, 0x38, 0xf6, 0x00,
0x00, 0x00, 0x42, 0x0e, 0x01, 0x00, 0x00, 0x24,
0x00, 0x00, 0x43, 0x0b, 0x01, 0x00, 0x00, 0xc4,
0x38, 0xf6, 0x00, 0x00, 0x00, 0x42, 0x0f, 0x01,
0x00, 0x00, 0x24, 0x00, 0x00, 0x43, 0x0c, 0x01,
0x00, 0x00, 0xc4, 0x28, 0x38, 0xe6, 0x00, 0x00,
0x00, 0x42, 0xe7, 0x00, 0x00, 0x00, 0x04, 0x10,
0x01, 0x00, 0x00, 0x24, 0x01, 0x00, 0x29, 0x9c,
0x03, 0x9c, 0x01, 0x11, 0x0d, 0x08, 0x21, 0x21,
0x21, 0x08, 0x0d, 0x62, 0x4e, 0x08, 0x09, 0x30,
0x62, 0x62, 0x08, 0x08, 0x5d, 0x0e, 0x42, 0x07,
0x01, 0x00, 0x00, 0x03, 0x00, 0x03, 0x01, 0x00,
0x62, 0x03, 0xfe, 0x03, 0x00, 0x00, 0x00, 0x8c,
0x04, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00,
0xa8, 0x03, 0x03, 0x00, 0x08, 0xca, 0xdc, 0xcc,
0x04, 0xe2, 0x00, 0x00, 0x00, 0xaa, 0x11, 0xea,
0x09, 0x0e, 0xc4, 0x04, 0xe4, 0x00, 0x00, 0x00,
0xaa, 0xe9, 0x25, 0x38, 0xee, 0x00, 0x00, 0x00,
0x42, 0x11, 0x01, 0x00, 0x00, 0xc6, 0x41, 0xeb,
0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0xcd, 0xb9,
0xaa, 0xe9, 0x07, 0x04, 0xda, 0x00, 0x00, 0x00,
0x28, 0x04, 0xdb, 0x00, 0x00, 0x00, 0x28, 0xc4,
0x04, 0xe3, 0x00, 0x00, 0x00, 0xaa, 0xe9, 0x1e,
0x38, 0xf6, 0x00, 0x00, 0x00, 0x42, 0xdd, 0x00,
0x00, 0x00, 0x24, 0x00, 0x00, 0xb5, 0xab, 0xe9,
0x07, 0x04, 0xdb, 0x00, 0x00, 0x00, 0x28, 0x04,
0xda, 0x00, 0x00, 0x00, 0x28, 0x29, 0x9c, 0x03,
0xb1, 0x01, 0x0f, 0x0d, 0x0d, 0x62, 0x67, 0x17,
0x1c, 0x08, 0x1d, 0x08, 0x30, 0x58, 0x1c, 0x08,
0x1c, 0x08, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00,
0x02, 0x00, 0x03, 0x01, 0x00, 0x42, 0x02, 0x8c,
0x04, 0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00,
0xa8, 0x03, 0x03, 0x00, 0x08, 0xc9, 0xdc, 0x04,
0xe3, 0x00, 0x00, 0x00, 0xaa, 0xe9, 0x10, 0x38,
0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0x12, 0x01,
0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0x38, 0xee,
0x00, 0x00, 0x00, 0x42, 0xde, 0x00, 0x00, 0x00,
0xc5, 0x41, 0xeb, 0x00, 0x00, 0x00, 0x24, 0x01,
0x00, 0xcc, 0xb4, 0xad, 0xe9, 0x10, 0x38, 0x8d,
0x00, 0x00, 0x00, 0x11, 0x04, 0x13, 0x01, 0x00,
0x00, 0x21, 0x01, 0x00, 0x2f, 0x29, 0x9c, 0x03,
0xc3, 0x01, 0x08, 0x0d, 0x30, 0x49, 0x09, 0x67,
0x17, 0x49, 0x08, 0x0e, 0x42, 0x07, 0x01, 0x00,
0x01, 0x02, 0x01, 0x04, 0x01, 0x00, 0xd3, 0x01,
0x03, 0xc2, 0x03, 0x00, 0x01, 0x00, 0x8c, 0x04,
0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00, 0xa8,
0x03, 0x03, 0x00, 0x08, 0xc9, 0xdc, 0x04, 0xe3,
0x00, 0x00, 0x00, 0xaa, 0xe9, 0x10, 0x38, 0x8d,
0x00, 0x00, 0x00, 0x11, 0x04, 0x14, 0x01, 0x00,
0x00, 0x21, 0x01, 0x00, 0x2f, 0xd0, 0x42, 0x15,
0x01, 0x00, 0x00, 0x04, 0x16, 0x01, 0x00, 0x00,
0x24, 0x01, 0x00, 0x97, 0xe9, 0x10, 0x38, 0x8d,
0x00, 0x00, 0x00, 0x11, 0x04, 0x17, 0x01, 0x00,
0x00, 0x21, 0x01, 0x00, 0x2f, 0x0b, 0xd0, 0x41,
0x16, 0x01, 0x00, 0x00, 0x4c, 0x16, 0x01, 0x00,
0x00, 0xd0, 0x41, 0x18, 0x01, 0x00, 0x00, 0x11,
0xea, 0x03, 0x0e, 0xc0, 0x4c, 0x18, 0x01, 0x00,
0x00, 0xd0, 0x41, 0x19, 0x01, 0x00, 0x00, 0x11,
0xea, 0x03, 0x0e, 0xc0, 0x4c, 0x19, 0x01, 0x00,
0x00, 0xd0, 0x41, 0x1a, 0x01, 0x00, 0x00, 0x11,
0xea, 0x03, 0x0e, 0xc0, 0x4c, 0x1a, 0x01, 0x00,
0x00, 0xd0, 0x41, 0x1b, 0x01, 0x00, 0x00, 0x11,
0xea, 0x03, 0x0e, 0xc0, 0x4c, 0x1b, 0x01, 0x00,
0x00, 0xd8, 0x41, 0x16, 0x01, 0x00, 0x00, 0xe9,
0x14, 0x38, 0xe6, 0x00, 0x00, 0x00, 0x42, 0xe7,
0x00, 0x00, 0x00, 0x04, 0x1c, 0x01, 0x00, 0x00,
0x24, 0x01, 0x00, 0x0e, 0x38, 0xee, 0x00, 0x00,
0x00, 0x42, 0xdf, 0x00, 0x00, 0x00, 0xc5, 0x41,
0xeb, 0x00, 0x00, 0x00, 0xd0, 0x24, 0x02, 0x00,
0xcc, 0xb4, 0xad, 0xe9, 0x10, 0x38, 0x8d, 0x00,
0x00, 0x00, 0x11, 0x04, 0x13, 0x01, 0x00, 0x00,
0x21, 0x01, 0x00, 0x2f, 0xc5, 0x42, 0xd8, 0x00,
0x00, 0x00, 0x24, 0x00, 0x00, 0x29, 0x9c, 0x03,
0xce, 0x01, 0x15, 0x0d, 0x30, 0x49, 0x09, 0x58,
0x49, 0x09, 0x08, 0x3a, 0x53, 0x53, 0x53, 0x53,
0x09, 0x26, 0x64, 0x6c, 0x17, 0x49, 0x09, 0x30,
0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x02, 0x00,
0x03, 0x01, 0x00, 0x42, 0x02, 0xba, 0x04, 0x00,
0x00, 0x00, 0x10, 0x00, 0x01, 0x00, 0xa8, 0x03,
0x03, 0x00, 0x08, 0xc9, 0xdc, 0x04, 0xe3, 0x00,
0x00, 0x00, 0xaa, 0xe9, 0x10, 0x38, 0x8d, 0x00,
0x00, 0x00, 0x11, 0x04, 0x1e, 0x01, 0x00, 0x00,
0x21, 0x01, 0x00, 0x2f, 0x38, 0xee, 0x00, 0x00,
0x00, 0x42, 0xe0, 0x00, 0x00, 0x00, 0xc5, 0x41,
0xeb, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0xcc,
0x97, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00,
0x11, 0x04, 0x1f, 0x01, 0x00, 0x00, 0x21, 0x01,
0x00, 0x2f, 0xc4, 0x28, 0x9c, 0x03, 0xeb, 0x01,
0x08, 0x0d, 0x30, 0x49, 0x09, 0x67, 0x12, 0x49,
0x08, 0x0e, 0x43, 0x06, 0x01, 0xa4, 0x03, 0x01,
0x00, 0x01, 0x03, 0x01, 0x00, 0x09, 0x01, 0xc2,
0x03, 0x00, 0x01, 0x00, 0xa6, 0x03, 0x04, 0x08,
0x65, 0x00, 0x00, 0x11, 0xd0, 0x21, 0x01, 0x00,
0x28, 0x9c, 0x03, 0xf8, 0x01, 0x01, 0x03,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_network.c | C | apache-2.0 | 23,291 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_onewire_size = 988;
const uint8_t jslib_onewire[988] = {
0x01, 0x13, 0x1c, 0x73, 0x72, 0x63, 0x2f, 0x6f,
0x6e, 0x65, 0x77, 0x69, 0x72, 0x65, 0x2e, 0x6a,
0x73, 0x0e, 0x4f, 0x4e, 0x45, 0x57, 0x49, 0x52,
0x45, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x14, 0x48,
0x57, 0x5f, 0x4f, 0x4e, 0x45, 0x57, 0x49, 0x52,
0x45, 0x0a, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x10,
0x73, 0x65, 0x74, 0x73, 0x70, 0x65, 0x65, 0x64,
0x0a, 0x72, 0x65, 0x73, 0x65, 0x74, 0x10, 0x72,
0x65, 0x61, 0x64, 0x42, 0x79, 0x74, 0x65, 0x12,
0x77, 0x72, 0x69, 0x74, 0x65, 0x42, 0x79, 0x74,
0x65, 0x0a, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x0e,
0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x04,
0x69, 0x64, 0x24, 0x6f, 0x70, 0x74, 0x69, 0x6f,
0x6e, 0x73, 0x20, 0x69, 0x73, 0x20, 0x69, 0x6e,
0x76, 0x61, 0x6c, 0x69, 0x64, 0x0e, 0x73, 0x75,
0x63, 0x63, 0x65, 0x73, 0x73, 0x08, 0x66, 0x61,
0x69, 0x6c, 0x1e, 0x6f, 0x6e, 0x65, 0x77, 0x69,
0x72, 0x65, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e,
0x63, 0x65, 0x10, 0x73, 0x74, 0x61, 0x6e, 0x64,
0x61, 0x72, 0x64, 0x20, 0x6f, 0x6e, 0x65, 0x77,
0x69, 0x72, 0x65, 0x20, 0x6e, 0x6f, 0x74, 0x20,
0x69, 0x6e, 0x69, 0x74, 0x08, 0x64, 0x61, 0x74,
0x61, 0x0f, 0x9c, 0x03, 0x01, 0x9e, 0x03, 0x01,
0x00, 0x02, 0xa0, 0x03, 0x00, 0x01, 0x00, 0xf8,
0x01, 0x00, 0x0e, 0x00, 0x06, 0x01, 0xa0, 0x01,
0x00, 0x02, 0x00, 0x03, 0x03, 0x08, 0x4b, 0x02,
0xa2, 0x03, 0x02, 0x00, 0x60, 0xea, 0x01, 0x03,
0x01, 0xe0, 0x9e, 0x03, 0x00, 0x0d, 0xa2, 0x03,
0x00, 0x09, 0xa0, 0x03, 0x01, 0x01, 0xbf, 0x07,
0xe2, 0x61, 0x00, 0x00, 0x06, 0x61, 0x01, 0x00,
0xbe, 0x00, 0x56, 0xd1, 0x00, 0x00, 0x00, 0x00,
0xbf, 0x01, 0x54, 0xd2, 0x00, 0x00, 0x00, 0x00,
0xbf, 0x02, 0x54, 0xd3, 0x00, 0x00, 0x00, 0x00,
0xbf, 0x03, 0x54, 0xd4, 0x00, 0x00, 0x00, 0x00,
0xbf, 0x04, 0x54, 0xd5, 0x00, 0x00, 0x00, 0x00,
0xbf, 0x05, 0x54, 0xd6, 0x00, 0x00, 0x00, 0x00,
0xbf, 0x06, 0x54, 0xd7, 0x00, 0x00, 0x00, 0x00,
0x06, 0xc9, 0x0e, 0xcc, 0x68, 0x01, 0x00, 0xe1,
0x29, 0x9c, 0x03, 0x01, 0x18, 0x01, 0x14, 0x00,
0x0f, 0x2a, 0x00, 0x08, 0x0c, 0x00, 0x08, 0x0e,
0x00, 0x08, 0x0e, 0x00, 0x08, 0x0e, 0x00, 0x08,
0x0e, 0x2b, 0x00, 0x08, 0x08, 0x0e, 0x42, 0x07,
0x01, 0x00, 0x01, 0x01, 0x01, 0x03, 0x01, 0x02,
0x6d, 0x02, 0xb0, 0x03, 0x00, 0x01, 0x00, 0x10,
0x00, 0x01, 0x00, 0xea, 0x01, 0x01, 0x0d, 0x08,
0xc8, 0x2b, 0x65, 0x00, 0x00, 0x11, 0xe9, 0x06,
0xc4, 0x1b, 0x24, 0x00, 0x00, 0x0e, 0xd0, 0x97,
0x11, 0xea, 0x09, 0x0e, 0xd0, 0x41, 0xd9, 0x00,
0x00, 0x00, 0x97, 0xe9, 0x10, 0x38, 0x8d, 0x00,
0x00, 0x00, 0x11, 0x04, 0xda, 0x00, 0x00, 0x00,
0x21, 0x01, 0x00, 0x2f, 0xc4, 0x0b, 0xd0, 0x41,
0xd9, 0x00, 0x00, 0x00, 0x4c, 0xd9, 0x00, 0x00,
0x00, 0x43, 0xd8, 0x00, 0x00, 0x00, 0xc4, 0xd0,
0x41, 0xdb, 0x00, 0x00, 0x00, 0x11, 0xea, 0x04,
0x0e, 0xbf, 0x00, 0x43, 0xdb, 0x00, 0x00, 0x00,
0xc4, 0xd0, 0x41, 0xdc, 0x00, 0x00, 0x00, 0x11,
0xea, 0x04, 0x0e, 0xbf, 0x01, 0x43, 0xdc, 0x00,
0x00, 0x00, 0xc4, 0x42, 0xd2, 0x00, 0x00, 0x00,
0x24, 0x00, 0x00, 0x29, 0x9c, 0x03, 0x04, 0x0a,
0x4e, 0x4e, 0x49, 0x08, 0x0d, 0x3a, 0x1d, 0x5d,
0x5d, 0x30, 0x0e, 0x43, 0x06, 0x01, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x29,
0x9c, 0x03, 0x0c, 0x00, 0x0e, 0x43, 0x06, 0x01,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
0x00, 0x29, 0x9c, 0x03, 0x0d, 0x00, 0x0e, 0x42,
0x07, 0x01, 0x00, 0x00, 0x01, 0x00, 0x04, 0x01,
0x00, 0x3b, 0x01, 0x10, 0x00, 0x01, 0x00, 0x9e,
0x03, 0x00, 0x0c, 0x08, 0xc8, 0xc4, 0x65, 0x00,
0x00, 0x42, 0xd0, 0x00, 0x00, 0x00, 0xc4, 0x41,
0xd8, 0x00, 0x00, 0x00, 0x41, 0xd9, 0x00, 0x00,
0x00, 0x24, 0x01, 0x00, 0x43, 0xdd, 0x00, 0x00,
0x00, 0xc4, 0x41, 0xdd, 0x00, 0x00, 0x00, 0x97,
0xe9, 0x0b, 0xc4, 0x42, 0xdc, 0x00, 0x00, 0x00,
0x24, 0x00, 0x00, 0x29, 0xc4, 0x42, 0xdb, 0x00,
0x00, 0x00, 0x24, 0x00, 0x00, 0x29, 0x9c, 0x03,
0x11, 0x06, 0x0d, 0x8f, 0x30, 0x31, 0x08, 0x30,
0x0e, 0x42, 0x07, 0x01, 0x00, 0x01, 0x01, 0x01,
0x03, 0x00, 0x00, 0x2a, 0x02, 0xbc, 0x03, 0x00,
0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc8,
0xc4, 0x41, 0xdd, 0x00, 0x00, 0x00, 0x97, 0xe9,
0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04,
0xdf, 0x00, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f,
0xc4, 0x41, 0xdd, 0x00, 0x00, 0x00, 0x42, 0xd3,
0x00, 0x00, 0x00, 0xd0, 0x24, 0x01, 0x00, 0x29,
0x9c, 0x03, 0x19, 0x05, 0x0d, 0x30, 0x49, 0x08,
0x4e, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x01,
0x00, 0x03, 0x00, 0x00, 0x29, 0x01, 0x10, 0x00,
0x01, 0x00, 0x08, 0xc8, 0xc4, 0x41, 0xdd, 0x00,
0x00, 0x00, 0x97, 0xe9, 0x10, 0x38, 0x8d, 0x00,
0x00, 0x00, 0x11, 0x04, 0xdf, 0x00, 0x00, 0x00,
0x21, 0x01, 0x00, 0x2f, 0xc4, 0x41, 0xdd, 0x00,
0x00, 0x00, 0x42, 0xd4, 0x00, 0x00, 0x00, 0x24,
0x00, 0x00, 0x29, 0x9c, 0x03, 0x20, 0x05, 0x0d,
0x30, 0x49, 0x08, 0x49, 0x0e, 0x42, 0x07, 0x01,
0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x28,
0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc8, 0xc4,
0x41, 0xdd, 0x00, 0x00, 0x00, 0x97, 0xe9, 0x10,
0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0xdf,
0x00, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0xc4,
0x41, 0xdd, 0x00, 0x00, 0x00, 0x42, 0xd5, 0x00,
0x00, 0x00, 0x25, 0x00, 0x00, 0x9c, 0x03, 0x27,
0x04, 0x0d, 0x30, 0x49, 0x08, 0x0e, 0x42, 0x07,
0x01, 0x00, 0x01, 0x01, 0x01, 0x03, 0x00, 0x00,
0x29, 0x02, 0xc0, 0x03, 0x00, 0x01, 0x00, 0x10,
0x00, 0x01, 0x00, 0x08, 0xc8, 0xc4, 0x41, 0xdd,
0x00, 0x00, 0x00, 0x97, 0xe9, 0x10, 0x38, 0x8d,
0x00, 0x00, 0x00, 0x11, 0x04, 0xdf, 0x00, 0x00,
0x00, 0x21, 0x01, 0x00, 0x2f, 0xc4, 0x41, 0xdd,
0x00, 0x00, 0x00, 0x42, 0xd6, 0x00, 0x00, 0x00,
0xd0, 0x25, 0x01, 0x00, 0x9c, 0x03, 0x2e, 0x04,
0x0d, 0x30, 0x49, 0x08, 0x0e, 0x42, 0x07, 0x01,
0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x29,
0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc8, 0xc4,
0x41, 0xdd, 0x00, 0x00, 0x00, 0x97, 0xe9, 0x10,
0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0xdf,
0x00, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0xc4,
0x41, 0xdd, 0x00, 0x00, 0x00, 0x42, 0xd7, 0x00,
0x00, 0x00, 0x24, 0x00, 0x00, 0x29, 0x9c, 0x03,
0x35, 0x05, 0x0d, 0x30, 0x49, 0x08, 0x49, 0x0e,
0x43, 0x06, 0x01, 0xa0, 0x03, 0x01, 0x00, 0x01,
0x03, 0x01, 0x00, 0x09, 0x01, 0xb0, 0x03, 0x00,
0x01, 0x00, 0xa2, 0x03, 0x01, 0x08, 0x65, 0x00,
0x00, 0x11, 0xd0, 0x21, 0x01, 0x00, 0x28, 0x9c,
0x03, 0x3d, 0x01, 0x03,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_onewire.c | C | apache-2.0 | 6,219 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_pwm_size = 941;
const uint8_t jslib_pwm[941] = {
0x01, 0x14, 0x14, 0x73, 0x72, 0x63, 0x2f, 0x70,
0x77, 0x6d, 0x2e, 0x6a, 0x73, 0x06, 0x50, 0x57,
0x4d, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x0c, 0x48,
0x57, 0x5f, 0x50, 0x57, 0x4d, 0x0a, 0x5f, 0x6f,
0x70, 0x65, 0x6e, 0x0a, 0x63, 0x6c, 0x6f, 0x73,
0x65, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
0x73, 0x04, 0x69, 0x64, 0x24, 0x6f, 0x70, 0x74,
0x69, 0x6f, 0x6e, 0x73, 0x20, 0x69, 0x73, 0x20,
0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x0e,
0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x06,
0x6c, 0x6f, 0x67, 0x36, 0x70, 0x77, 0x6d, 0x3a,
0x20, 0x70, 0x77, 0x6d, 0x20, 0x63, 0x6f, 0x6e,
0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x6f, 0x72,
0x20, 0x73, 0x74, 0x61, 0x72, 0x74, 0x20, 0x0e,
0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x08,
0x66, 0x61, 0x69, 0x6c, 0x28, 0x70, 0x77, 0x6d,
0x3a, 0x20, 0x70, 0x77, 0x6d, 0x20, 0x74, 0x65,
0x73, 0x74, 0x20, 0x73, 0x74, 0x61, 0x72, 0x74,
0x20, 0x16, 0x70, 0x77, 0x6d, 0x49, 0x6e, 0x73,
0x74, 0x61, 0x6e, 0x63, 0x65, 0x42, 0x70, 0x77,
0x6d, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x69, 0x6e,
0x69, 0x74, 0x20, 0x6f, 0x72, 0x20, 0x70, 0x61,
0x72, 0x61, 0x6d, 0x73, 0x20, 0x69, 0x73, 0x20,
0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x12,
0x73, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69,
0x67, 0x18, 0x70, 0x77, 0x6d, 0x20, 0x6e, 0x6f,
0x74, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x12, 0x67,
0x65, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
0x0f, 0x9c, 0x03, 0x01, 0x9e, 0x03, 0x01, 0x00,
0x02, 0xa0, 0x03, 0x00, 0x01, 0x00, 0xf8, 0x01,
0x00, 0x0e, 0x00, 0x06, 0x01, 0xa0, 0x01, 0x00,
0x02, 0x00, 0x03, 0x03, 0x06, 0x3b, 0x02, 0xa2,
0x03, 0x02, 0x00, 0x60, 0xea, 0x01, 0x03, 0x01,
0xe0, 0x9e, 0x03, 0x00, 0x0d, 0xa2, 0x03, 0x00,
0x09, 0xa0, 0x03, 0x01, 0x01, 0xbf, 0x05, 0xe2,
0x61, 0x00, 0x00, 0x06, 0x61, 0x01, 0x00, 0xbe,
0x00, 0x56, 0xd1, 0x00, 0x00, 0x00, 0x00, 0xbf,
0x01, 0x54, 0xd2, 0x00, 0x00, 0x00, 0x00, 0xbf,
0x02, 0x54, 0x42, 0x00, 0x00, 0x00, 0x00, 0xbf,
0x03, 0x54, 0x41, 0x00, 0x00, 0x00, 0x00, 0xbf,
0x04, 0x54, 0xd3, 0x00, 0x00, 0x00, 0x00, 0x06,
0xc9, 0x0e, 0xcc, 0x68, 0x01, 0x00, 0xe1, 0x29,
0x9c, 0x03, 0x01, 0x12, 0x01, 0x14, 0x00, 0x0f,
0x2e, 0x00, 0x08, 0x0e, 0x00, 0x08, 0x0e, 0x00,
0x08, 0x0e, 0x2b, 0x00, 0x08, 0x08, 0x0e, 0x42,
0x07, 0x01, 0x00, 0x01, 0x01, 0x01, 0x04, 0x01,
0x02, 0x87, 0x01, 0x02, 0xa8, 0x03, 0x00, 0x01,
0x00, 0x10, 0x00, 0x01, 0x00, 0xea, 0x01, 0x01,
0x0d, 0x08, 0xc8, 0x2b, 0x65, 0x00, 0x00, 0x11,
0xe9, 0x06, 0xc4, 0x1b, 0x24, 0x00, 0x00, 0x0e,
0xd0, 0x97, 0x11, 0xea, 0x09, 0x0e, 0xd0, 0x41,
0xd5, 0x00, 0x00, 0x00, 0x97, 0xe9, 0x10, 0x38,
0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0xd6, 0x00,
0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0x38, 0xd7,
0x00, 0x00, 0x00, 0x42, 0xd8, 0x00, 0x00, 0x00,
0x04, 0xd9, 0x00, 0x00, 0x00, 0xd0, 0x41, 0xd5,
0x00, 0x00, 0x00, 0x9e, 0x24, 0x01, 0x00, 0x0e,
0xc4, 0x0b, 0xd0, 0x41, 0xd5, 0x00, 0x00, 0x00,
0x4c, 0xd5, 0x00, 0x00, 0x00, 0x43, 0xd4, 0x00,
0x00, 0x00, 0xc4, 0xd0, 0x41, 0xda, 0x00, 0x00,
0x00, 0x11, 0xea, 0x04, 0x0e, 0xbf, 0x00, 0x43,
0xda, 0x00, 0x00, 0x00, 0xc4, 0xd0, 0x41, 0xdb,
0x00, 0x00, 0x00, 0x11, 0xea, 0x04, 0x0e, 0xbf,
0x01, 0x43, 0xdb, 0x00, 0x00, 0x00, 0xc4, 0x42,
0xd2, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x29,
0x9c, 0x03, 0x04, 0x0b, 0x4e, 0x4e, 0x49, 0x08,
0x85, 0x0d, 0x3a, 0x1d, 0x5d, 0x5d, 0x30, 0x0e,
0x43, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x01, 0x00, 0x29, 0x9c, 0x03, 0x0d,
0x00, 0x0e, 0x43, 0x06, 0x01, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x29, 0x9c,
0x03, 0x0e, 0x00, 0x0e, 0x42, 0x07, 0x01, 0x00,
0x00, 0x01, 0x00, 0x04, 0x01, 0x00, 0x5a, 0x01,
0x10, 0x00, 0x01, 0x00, 0x9e, 0x03, 0x00, 0x0c,
0x08, 0xc8, 0x38, 0xd7, 0x00, 0x00, 0x00, 0x42,
0xd8, 0x00, 0x00, 0x00, 0x04, 0xdc, 0x00, 0x00,
0x00, 0xc4, 0x41, 0xd4, 0x00, 0x00, 0x00, 0x41,
0xd5, 0x00, 0x00, 0x00, 0x9e, 0x24, 0x01, 0x00,
0x0e, 0xc4, 0x65, 0x00, 0x00, 0x42, 0xd0, 0x00,
0x00, 0x00, 0xc4, 0x41, 0xd4, 0x00, 0x00, 0x00,
0x41, 0xd5, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00,
0x43, 0xdd, 0x00, 0x00, 0x00, 0xc4, 0x41, 0xdd,
0x00, 0x00, 0x00, 0x97, 0xe9, 0x0b, 0xc4, 0x42,
0xdb, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x29,
0xc4, 0x42, 0xda, 0x00, 0x00, 0x00, 0x24, 0x00,
0x00, 0x29, 0x9c, 0x03, 0x12, 0x07, 0x0d, 0x9e,
0x8f, 0x30, 0x31, 0x08, 0x30, 0x0e, 0x42, 0x07,
0x01, 0x00, 0x01, 0x01, 0x01, 0x03, 0x00, 0x00,
0x30, 0x02, 0xa8, 0x03, 0x00, 0x01, 0x00, 0x10,
0x00, 0x01, 0x00, 0x08, 0xc8, 0xc4, 0x41, 0xdd,
0x00, 0x00, 0x00, 0x97, 0x11, 0xea, 0x04, 0x0e,
0xd0, 0x97, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00,
0x00, 0x11, 0x04, 0xde, 0x00, 0x00, 0x00, 0x21,
0x01, 0x00, 0x2f, 0xc4, 0x41, 0xdd, 0x00, 0x00,
0x00, 0x42, 0xdf, 0x00, 0x00, 0x00, 0xd0, 0x24,
0x01, 0x00, 0x29, 0x9c, 0x03, 0x1c, 0x05, 0x0d,
0x4e, 0x49, 0x08, 0x4e, 0x0e, 0x42, 0x07, 0x01,
0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x28,
0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc8, 0xc4,
0x41, 0xdd, 0x00, 0x00, 0x00, 0x97, 0xe9, 0x10,
0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0xe0,
0x00, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0xc4,
0x41, 0xdd, 0x00, 0x00, 0x00, 0x42, 0xe1, 0x00,
0x00, 0x00, 0x25, 0x00, 0x00, 0x9c, 0x03, 0x23,
0x04, 0x0d, 0x30, 0x49, 0x08, 0x0e, 0x42, 0x07,
0x01, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00,
0x29, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc8,
0xc4, 0x41, 0xdd, 0x00, 0x00, 0x00, 0x97, 0xe9,
0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04,
0xe0, 0x00, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f,
0xc4, 0x41, 0xdd, 0x00, 0x00, 0x00, 0x42, 0xd3,
0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x29, 0x9c,
0x03, 0x2a, 0x05, 0x0d, 0x30, 0x49, 0x08, 0x49,
0x0e, 0x43, 0x06, 0x01, 0xa0, 0x03, 0x01, 0x00,
0x01, 0x03, 0x01, 0x00, 0x09, 0x01, 0xa8, 0x03,
0x00, 0x01, 0x00, 0xa2, 0x03, 0x01, 0x08, 0x65,
0x00, 0x00, 0x11, 0xd0, 0x21, 0x01, 0x00, 0x28,
0x9c, 0x03, 0x32, 0x01, 0x03,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_pwm.c | C | apache-2.0 | 5,923 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_repl_size = 19852;
const uint8_t jslib_repl[19852] = {
0x01, 0xdd, 0x03, 0x16, 0x73, 0x72, 0x63, 0x2f,
0x72, 0x65, 0x70, 0x6c, 0x2e, 0x6a, 0x73, 0x06,
0x73, 0x74, 0x64, 0x04, 0x6f, 0x73, 0x08, 0x52,
0x45, 0x50, 0x4c, 0x02, 0x67, 0x10, 0x69, 0x73,
0x46, 0x69, 0x6e, 0x69, 0x74, 0x65, 0x14, 0x70,
0x61, 0x72, 0x73, 0x65, 0x46, 0x6c, 0x6f, 0x61,
0x74, 0x1c, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
0x5f, 0x6e, 0x75, 0x6d, 0x63, 0x61, 0x6c, 0x63,
0x14, 0x68, 0x61, 0x73, 0x5f, 0x6a, 0x73, 0x63,
0x61, 0x6c, 0x63, 0x14, 0x68, 0x61, 0x73, 0x5f,
0x62, 0x69, 0x67, 0x6e, 0x75, 0x6d, 0x0c, 0x63,
0x6f, 0x6c, 0x6f, 0x72, 0x73, 0x0c, 0x73, 0x74,
0x79, 0x6c, 0x65, 0x73, 0x0e, 0x68, 0x69, 0x73,
0x74, 0x6f, 0x72, 0x79, 0x14, 0x63, 0x6c, 0x69,
0x70, 0x5f, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x08,
0x70, 0x72, 0x65, 0x63, 0x0e, 0x65, 0x78, 0x70,
0x42, 0x69, 0x74, 0x73, 0x0e, 0x6c, 0x6f, 0x67,
0x32, 0x5f, 0x31, 0x30, 0x0c, 0x70, 0x73, 0x74,
0x61, 0x74, 0x65, 0x0c, 0x70, 0x72, 0x6f, 0x6d,
0x70, 0x74, 0x08, 0x70, 0x6c, 0x65, 0x6e, 0x06,
0x70, 0x73, 0x31, 0x06, 0x70, 0x73, 0x32, 0x08,
0x75, 0x74, 0x66, 0x38, 0x12, 0x73, 0x68, 0x6f,
0x77, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x16, 0x73,
0x68, 0x6f, 0x77, 0x5f, 0x63, 0x6f, 0x6c, 0x6f,
0x72, 0x73, 0x12, 0x65, 0x76, 0x61, 0x6c, 0x5f,
0x74, 0x69, 0x6d, 0x65, 0x0a, 0x6d, 0x65, 0x78,
0x70, 0x72, 0x0a, 0x6c, 0x65, 0x76, 0x65, 0x6c,
0x06, 0x63, 0x6d, 0x64, 0x14, 0x63, 0x75, 0x72,
0x73, 0x6f, 0x72, 0x5f, 0x70, 0x6f, 0x73, 0x10,
0x6c, 0x61, 0x73, 0x74, 0x5f, 0x63, 0x6d, 0x64,
0x1e, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x63, 0x75,
0x72, 0x73, 0x6f, 0x72, 0x5f, 0x70, 0x6f, 0x73,
0x1a, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79,
0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x10, 0x74,
0x68, 0x69, 0x73, 0x5f, 0x66, 0x75, 0x6e, 0x10,
0x6c, 0x61, 0x73, 0x74, 0x5f, 0x66, 0x75, 0x6e,
0x14, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x5f, 0x66,
0x6c, 0x61, 0x67, 0x14, 0x75, 0x74, 0x66, 0x38,
0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x10, 0x75,
0x74, 0x66, 0x38, 0x5f, 0x76, 0x61, 0x6c, 0x0e,
0x74, 0x65, 0x72, 0x6d, 0x5f, 0x66, 0x64, 0x1a,
0x74, 0x65, 0x72, 0x6d, 0x5f, 0x72, 0x65, 0x61,
0x64, 0x5f, 0x62, 0x75, 0x66, 0x14, 0x74, 0x65,
0x72, 0x6d, 0x5f, 0x77, 0x69, 0x64, 0x74, 0x68,
0x1a, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x63, 0x75,
0x72, 0x73, 0x6f, 0x72, 0x5f, 0x78, 0x08, 0x43,
0x52, 0x4c, 0x46, 0x10, 0x74, 0x65, 0x72, 0x6d,
0x49, 0x6e, 0x69, 0x74, 0x1c, 0x73, 0x69, 0x67,
0x69, 0x6e, 0x74, 0x5f, 0x68, 0x61, 0x6e, 0x64,
0x6c, 0x65, 0x72, 0x22, 0x74, 0x65, 0x72, 0x6d,
0x5f, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x68, 0x61,
0x6e, 0x64, 0x6c, 0x65, 0x72, 0x16, 0x68, 0x61,
0x6e, 0x64, 0x6c, 0x65, 0x5f, 0x62, 0x79, 0x74,
0x65, 0x10, 0x69, 0x73, 0x5f, 0x61, 0x6c, 0x70,
0x68, 0x61, 0x10, 0x69, 0x73, 0x5f, 0x64, 0x69,
0x67, 0x69, 0x74, 0x0e, 0x69, 0x73, 0x5f, 0x77,
0x6f, 0x72, 0x64, 0x14, 0x75, 0x63, 0x73, 0x5f,
0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x2a, 0x69,
0x73, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x6c, 0x69,
0x6e, 0x67, 0x5f, 0x73, 0x75, 0x72, 0x72, 0x6f,
0x67, 0x61, 0x74, 0x65, 0x16, 0x69, 0x73, 0x5f,
0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x64,
0x20, 0x70, 0x72, 0x69, 0x6e, 0x74, 0x5f, 0x63,
0x6f, 0x6c, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x78,
0x74, 0x12, 0x70, 0x72, 0x69, 0x6e, 0x74, 0x5f,
0x63, 0x73, 0x69, 0x16, 0x6d, 0x6f, 0x76, 0x65,
0x5f, 0x63, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x0c,
0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x0c, 0x69,
0x6e, 0x73, 0x65, 0x72, 0x74, 0x1a, 0x71, 0x75,
0x6f, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x73,
0x65, 0x72, 0x74, 0x0a, 0x61, 0x62, 0x6f, 0x72,
0x74, 0x0a, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x22,
0x62, 0x65, 0x67, 0x69, 0x6e, 0x6e, 0x69, 0x6e,
0x67, 0x5f, 0x6f, 0x66, 0x5f, 0x6c, 0x69, 0x6e,
0x65, 0x16, 0x65, 0x6e, 0x64, 0x5f, 0x6f, 0x66,
0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x18, 0x66, 0x6f,
0x72, 0x77, 0x61, 0x72, 0x64, 0x5f, 0x63, 0x68,
0x61, 0x72, 0x1a, 0x62, 0x61, 0x63, 0x6b, 0x77,
0x61, 0x72, 0x64, 0x5f, 0x63, 0x68, 0x61, 0x72,
0x22, 0x73, 0x6b, 0x69, 0x70, 0x5f, 0x77, 0x6f,
0x72, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x77, 0x61,
0x72, 0x64, 0x24, 0x73, 0x6b, 0x69, 0x70, 0x5f,
0x77, 0x6f, 0x72, 0x64, 0x5f, 0x62, 0x61, 0x63,
0x6b, 0x77, 0x61, 0x72, 0x64, 0x18, 0x66, 0x6f,
0x72, 0x77, 0x61, 0x72, 0x64, 0x5f, 0x77, 0x6f,
0x72, 0x64, 0x1a, 0x62, 0x61, 0x63, 0x6b, 0x77,
0x61, 0x72, 0x64, 0x5f, 0x77, 0x6f, 0x72, 0x64,
0x16, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x5f,
0x6c, 0x69, 0x6e, 0x65, 0x16, 0x68, 0x69, 0x73,
0x74, 0x6f, 0x72, 0x79, 0x5f, 0x61, 0x64, 0x64,
0x20, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75,
0x73, 0x5f, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72,
0x79, 0x18, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x68,
0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x1c, 0x68,
0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x73,
0x65, 0x61, 0x72, 0x63, 0x68, 0x2e, 0x68, 0x69,
0x73, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x73, 0x65,
0x61, 0x72, 0x63, 0x68, 0x5f, 0x62, 0x61, 0x63,
0x6b, 0x77, 0x61, 0x72, 0x64, 0x2c, 0x68, 0x69,
0x73, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x73, 0x65,
0x61, 0x72, 0x63, 0x68, 0x5f, 0x66, 0x6f, 0x72,
0x77, 0x61, 0x72, 0x64, 0x1e, 0x64, 0x65, 0x6c,
0x65, 0x74, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72,
0x5f, 0x64, 0x69, 0x72, 0x16, 0x64, 0x65, 0x6c,
0x65, 0x74, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72,
0x12, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c,
0x5f, 0x64, 0x28, 0x62, 0x61, 0x63, 0x6b, 0x77,
0x61, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x6c, 0x65,
0x74, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x1e,
0x74, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x73,
0x65, 0x5f, 0x63, 0x68, 0x61, 0x72, 0x73, 0x1e,
0x74, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x73,
0x65, 0x5f, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x16,
0x75, 0x70, 0x63, 0x61, 0x73, 0x65, 0x5f, 0x77,
0x6f, 0x72, 0x64, 0x1a, 0x64, 0x6f, 0x77, 0x6e,
0x63, 0x61, 0x73, 0x65, 0x5f, 0x77, 0x6f, 0x72,
0x64, 0x16, 0x6b, 0x69, 0x6c, 0x6c, 0x5f, 0x72,
0x65, 0x67, 0x69, 0x6f, 0x6e, 0x12, 0x6b, 0x69,
0x6c, 0x6c, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x24,
0x62, 0x61, 0x63, 0x6b, 0x77, 0x61, 0x72, 0x64,
0x5f, 0x6b, 0x69, 0x6c, 0x6c, 0x5f, 0x6c, 0x69,
0x6e, 0x65, 0x12, 0x6b, 0x69, 0x6c, 0x6c, 0x5f,
0x77, 0x6f, 0x72, 0x64, 0x24, 0x62, 0x61, 0x63,
0x6b, 0x77, 0x61, 0x72, 0x64, 0x5f, 0x6b, 0x69,
0x6c, 0x6c, 0x5f, 0x77, 0x6f, 0x72, 0x64, 0x08,
0x79, 0x61, 0x6e, 0x6b, 0x12, 0x63, 0x6f, 0x6e,
0x74, 0x72, 0x6f, 0x6c, 0x5f, 0x63, 0x0a, 0x72,
0x65, 0x73, 0x65, 0x74, 0x20, 0x67, 0x65, 0x74,
0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74,
0x5f, 0x77, 0x6f, 0x72, 0x64, 0x24, 0x67, 0x65,
0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78,
0x74, 0x5f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
0x1e, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x6d,
0x70, 0x6c, 0x65, 0x74, 0x69, 0x6f, 0x6e, 0x73,
0x14, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74,
0x69, 0x6f, 0x6e, 0x10, 0x63, 0x6f, 0x6d, 0x6d,
0x61, 0x6e, 0x64, 0x73, 0x0c, 0x64, 0x75, 0x70,
0x73, 0x74, 0x72, 0x1a, 0x72, 0x65, 0x61, 0x64,
0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x6b, 0x65, 0x79,
0x73, 0x1c, 0x72, 0x65, 0x61, 0x64, 0x6c, 0x69,
0x6e, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65,
0x16, 0x72, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e,
0x65, 0x5f, 0x63, 0x62, 0x2a, 0x72, 0x65, 0x61,
0x64, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x70, 0x72,
0x69, 0x6e, 0x74, 0x5f, 0x70, 0x72, 0x6f, 0x6d,
0x70, 0x74, 0x1c, 0x72, 0x65, 0x61, 0x64, 0x6c,
0x69, 0x6e, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x72,
0x74, 0x16, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65,
0x5f, 0x63, 0x68, 0x61, 0x72, 0x14, 0x68, 0x61,
0x6e, 0x64, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79,
0x10, 0x68, 0x65, 0x78, 0x5f, 0x6d, 0x6f, 0x64,
0x65, 0x12, 0x65, 0x76, 0x61, 0x6c, 0x5f, 0x6d,
0x6f, 0x64, 0x65, 0x20, 0x6e, 0x75, 0x6d, 0x62,
0x65, 0x72, 0x5f, 0x74, 0x6f, 0x5f, 0x73, 0x74,
0x72, 0x69, 0x6e, 0x67, 0x24, 0x62, 0x69, 0x67,
0x66, 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x74, 0x6f,
0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x20,
0x62, 0x69, 0x67, 0x69, 0x6e, 0x74, 0x5f, 0x74,
0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
0x0a, 0x70, 0x72, 0x69, 0x6e, 0x74, 0x22, 0x65,
0x78, 0x74, 0x72, 0x61, 0x63, 0x74, 0x5f, 0x64,
0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65,
0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x5f,
0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x76,
0x65, 0x08, 0x68, 0x65, 0x6c, 0x70, 0x1c, 0x65,
0x76, 0x61, 0x6c, 0x5f, 0x61, 0x6e, 0x64, 0x5f,
0x70, 0x72, 0x69, 0x6e, 0x74, 0x12, 0x63, 0x6d,
0x64, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x24,
0x63, 0x6d, 0x64, 0x5f, 0x72, 0x65, 0x61, 0x64,
0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x73, 0x74, 0x61,
0x72, 0x74, 0x26, 0x72, 0x65, 0x61, 0x64, 0x6c,
0x69, 0x6e, 0x65, 0x5f, 0x68, 0x61, 0x6e, 0x64,
0x6c, 0x65, 0x5f, 0x63, 0x6d, 0x64, 0x14, 0x68,
0x61, 0x6e, 0x64, 0x6c, 0x65, 0x5f, 0x63, 0x6d,
0x64, 0x16, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x69,
0x7a, 0x65, 0x5f, 0x6a, 0x73, 0x08, 0x6f, 0x70,
0x65, 0x6e, 0x10, 0x46, 0x72, 0x61, 0x63, 0x74,
0x69, 0x6f, 0x6e, 0x10, 0x42, 0x69, 0x67, 0x46,
0x6c, 0x6f, 0x61, 0x74, 0x08, 0x1b, 0x5b, 0x30,
0x6d, 0x08, 0x6e, 0x6f, 0x6e, 0x65, 0x0a, 0x1b,
0x5b, 0x33, 0x30, 0x6d, 0x0a, 0x62, 0x6c, 0x61,
0x63, 0x6b, 0x0a, 0x1b, 0x5b, 0x33, 0x31, 0x6d,
0x06, 0x72, 0x65, 0x64, 0x0a, 0x1b, 0x5b, 0x33,
0x32, 0x6d, 0x0a, 0x67, 0x72, 0x65, 0x65, 0x6e,
0x0a, 0x1b, 0x5b, 0x33, 0x33, 0x6d, 0x0c, 0x79,
0x65, 0x6c, 0x6c, 0x6f, 0x77, 0x0a, 0x1b, 0x5b,
0x33, 0x34, 0x6d, 0x08, 0x62, 0x6c, 0x75, 0x65,
0x0a, 0x1b, 0x5b, 0x33, 0x35, 0x6d, 0x0e, 0x6d,
0x61, 0x67, 0x65, 0x6e, 0x74, 0x61, 0x0a, 0x1b,
0x5b, 0x33, 0x36, 0x6d, 0x08, 0x63, 0x79, 0x61,
0x6e, 0x0a, 0x1b, 0x5b, 0x33, 0x37, 0x6d, 0x0a,
0x77, 0x68, 0x69, 0x74, 0x65, 0x0e, 0x1b, 0x5b,
0x33, 0x30, 0x3b, 0x31, 0x6d, 0x08, 0x67, 0x72,
0x61, 0x79, 0x08, 0x67, 0x72, 0x65, 0x79, 0x0e,
0x1b, 0x5b, 0x33, 0x31, 0x3b, 0x31, 0x6d, 0x14,
0x62, 0x72, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x72,
0x65, 0x64, 0x0e, 0x1b, 0x5b, 0x33, 0x32, 0x3b,
0x31, 0x6d, 0x18, 0x62, 0x72, 0x69, 0x67, 0x68,
0x74, 0x5f, 0x67, 0x72, 0x65, 0x65, 0x6e, 0x0e,
0x1b, 0x5b, 0x33, 0x33, 0x3b, 0x31, 0x6d, 0x1a,
0x62, 0x72, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x79,
0x65, 0x6c, 0x6c, 0x6f, 0x77, 0x0e, 0x1b, 0x5b,
0x33, 0x34, 0x3b, 0x31, 0x6d, 0x16, 0x62, 0x72,
0x69, 0x67, 0x68, 0x74, 0x5f, 0x62, 0x6c, 0x75,
0x65, 0x0e, 0x1b, 0x5b, 0x33, 0x35, 0x3b, 0x31,
0x6d, 0x1c, 0x62, 0x72, 0x69, 0x67, 0x68, 0x74,
0x5f, 0x6d, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x61,
0x0e, 0x1b, 0x5b, 0x33, 0x36, 0x3b, 0x31, 0x6d,
0x16, 0x62, 0x72, 0x69, 0x67, 0x68, 0x74, 0x5f,
0x63, 0x79, 0x61, 0x6e, 0x0e, 0x1b, 0x5b, 0x33,
0x37, 0x3b, 0x31, 0x6d, 0x18, 0x62, 0x72, 0x69,
0x67, 0x68, 0x74, 0x5f, 0x77, 0x68, 0x69, 0x74,
0x65, 0x0e, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e,
0x74, 0x0a, 0x72, 0x65, 0x67, 0x65, 0x78, 0x0e,
0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x08,
0x74, 0x79, 0x70, 0x65, 0x14, 0x69, 0x64, 0x65,
0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x0a,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x0c, 0x72, 0x65,
0x73, 0x75, 0x6c, 0x74, 0x12, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x04, 0x3e,
0x20, 0x0c, 0x61, 0x6d, 0x70, 0x20, 0x3e, 0x20,
0x0c, 0x20, 0x20, 0x2e, 0x2e, 0x2e, 0x20, 0x04,
0x0d, 0x0a, 0x02, 0x01, 0x02, 0x02, 0x02, 0x03,
0x02, 0x04, 0x02, 0x05, 0x02, 0x06, 0x02, 0x07,
0x02, 0x08, 0x02, 0x09, 0x02, 0x0a, 0x02, 0x0b,
0x02, 0x0d, 0x02, 0x0e, 0x02, 0x10, 0x02, 0x11,
0x02, 0x12, 0x02, 0x13, 0x02, 0x14, 0x02, 0x18,
0x02, 0x19, 0x06, 0x1b, 0x4f, 0x41, 0x06, 0x1b,
0x4f, 0x42, 0x06, 0x1b, 0x4f, 0x43, 0x06, 0x1b,
0x4f, 0x44, 0x06, 0x1b, 0x4f, 0x46, 0x06, 0x1b,
0x4f, 0x48, 0x0c, 0x1b, 0x5b, 0x31, 0x3b, 0x35,
0x43, 0x0c, 0x1b, 0x5b, 0x31, 0x3b, 0x35, 0x44,
0x08, 0x1b, 0x5b, 0x31, 0x7e, 0x08, 0x1b, 0x5b,
0x33, 0x7e, 0x08, 0x1b, 0x5b, 0x34, 0x7e, 0x08,
0x1b, 0x5b, 0x35, 0x7e, 0x08, 0x1b, 0x5b, 0x36,
0x7e, 0x06, 0x1b, 0x5b, 0x41, 0x06, 0x1b, 0x5b,
0x42, 0x06, 0x1b, 0x5b, 0x43, 0x06, 0x1b, 0x5b,
0x44, 0x06, 0x1b, 0x5b, 0x46, 0x06, 0x1b, 0x5b,
0x48, 0x04, 0x1b, 0x7f, 0x04, 0x1b, 0x62, 0x04,
0x1b, 0x64, 0x04, 0x1b, 0x66, 0x04, 0x1b, 0x6b,
0x04, 0x1b, 0x6c, 0x04, 0x1b, 0x74, 0x04, 0x1b,
0x75, 0x02, 0x7f, 0x0e, 0x65, 0x78, 0x65, 0x63,
0x43, 0x6d, 0x64, 0x06, 0x74, 0x61, 0x62, 0x1c,
0x73, 0x65, 0x74, 0x52, 0x65, 0x61, 0x64, 0x48,
0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x02, 0x6c,
0x02, 0x69, 0x08, 0x72, 0x65, 0x61, 0x64, 0x0c,
0x62, 0x75, 0x66, 0x66, 0x65, 0x72, 0x02, 0x63,
0x02, 0x41, 0x02, 0x5a, 0x02, 0x61, 0x02, 0x7a,
0x02, 0x5f, 0x02, 0x24, 0x06, 0x73, 0x74, 0x72,
0x06, 0x6c, 0x65, 0x6e, 0x0e, 0x73, 0x74, 0x72,
0x5f, 0x6c, 0x65, 0x6e, 0x14, 0x63, 0x68, 0x61,
0x72, 0x43, 0x6f, 0x64, 0x65, 0x41, 0x74, 0x02,
0x64, 0x16, 0x63, 0x6f, 0x64, 0x65, 0x50, 0x6f,
0x69, 0x6e, 0x74, 0x41, 0x74, 0x02, 0x62, 0x04,
0x28, 0x29, 0x04, 0x5b, 0x5d, 0x04, 0x7b, 0x7d,
0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x16, 0x73,
0x74, 0x79, 0x6c, 0x65, 0x5f, 0x6e, 0x61, 0x6d,
0x65, 0x73, 0x02, 0x6a, 0x0a, 0x73, 0x74, 0x79,
0x6c, 0x65, 0x08, 0x70, 0x75, 0x74, 0x73, 0x12,
0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e,
0x67, 0x02, 0x6e, 0x08, 0x63, 0x6f, 0x64, 0x65,
0x04, 0x1b, 0x5b, 0x0a, 0x64, 0x65, 0x6c, 0x74,
0x61, 0x06, 0x6d, 0x69, 0x6e, 0x02, 0x43, 0x02,
0x44, 0x0e, 0x63, 0x6d, 0x64, 0x5f, 0x6c, 0x65,
0x6e, 0x14, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x73,
0x74, 0x61, 0x74, 0x65, 0x04, 0x20, 0x08, 0x06,
0x1b, 0x5b, 0x4a, 0x06, 0x6f, 0x75, 0x74, 0x0a,
0x66, 0x6c, 0x75, 0x73, 0x68, 0x0c, 0x63, 0x68,
0x61, 0x72, 0x41, 0x74, 0x06, 0x70, 0x6f, 0x73,
0x08, 0x70, 0x75, 0x73, 0x68, 0x06, 0x64, 0x69,
0x72, 0x06, 0x65, 0x6e, 0x64, 0x04, 0x70, 0x31,
0x04, 0x70, 0x32, 0x04, 0x70, 0x34, 0x04, 0x70,
0x33, 0x16, 0x74, 0x6f, 0x55, 0x70, 0x70, 0x65,
0x72, 0x43, 0x61, 0x73, 0x65, 0x16, 0x74, 0x6f,
0x4c, 0x6f, 0x77, 0x65, 0x72, 0x43, 0x61, 0x73,
0x65, 0x02, 0x73, 0x08, 0x65, 0x78, 0x69, 0x74,
0x38, 0x28, 0x50, 0x72, 0x65, 0x73, 0x73, 0x20,
0x43, 0x74, 0x72, 0x6c, 0x2d, 0x43, 0x20, 0x61,
0x67, 0x61, 0x69, 0x6e, 0x20, 0x74, 0x6f, 0x20,
0x71, 0x75, 0x69, 0x74, 0x29, 0x08, 0x6c, 0x69,
0x6e, 0x65, 0x06, 0x6f, 0x62, 0x6a, 0x08, 0x62,
0x61, 0x73, 0x65, 0x2a, 0x20, 0x7e, 0x21, 0x25,
0x5e, 0x26, 0x2a, 0x28, 0x2d, 0x2b, 0x3d, 0x7b,
0x5b, 0x7c, 0x3a, 0x3b, 0x2c, 0x3c, 0x3e, 0x3f,
0x2f, 0x0e, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x4f,
0x66, 0x02, 0x2e, 0x02, 0x27, 0x02, 0x22, 0x02,
0x5d, 0x02, 0x7d, 0x02, 0x2f, 0x10, 0x69, 0x6e,
0x63, 0x6c, 0x75, 0x64, 0x65, 0x73, 0x0a, 0x69,
0x73, 0x4e, 0x61, 0x4e, 0x0e, 0x63, 0x74, 0x78,
0x5f, 0x6f, 0x62, 0x6a, 0x02, 0x72, 0x0a, 0x70,
0x61, 0x72, 0x65, 0x6e, 0x0a, 0x70, 0x72, 0x6f,
0x70, 0x73, 0x08, 0x70, 0x72, 0x6f, 0x70, 0x0c,
0x73, 0x79, 0x6d, 0x63, 0x6d, 0x70, 0x26, 0x67,
0x65, 0x74, 0x4f, 0x77, 0x6e, 0x50, 0x72, 0x6f,
0x70, 0x65, 0x72, 0x74, 0x79, 0x4e, 0x61, 0x6d,
0x65, 0x73, 0x14, 0x73, 0x74, 0x61, 0x72, 0x74,
0x73, 0x57, 0x69, 0x74, 0x68, 0x08, 0x73, 0x6f,
0x72, 0x74, 0x06, 0x63, 0x74, 0x78, 0x06, 0x72,
0x65, 0x73, 0x02, 0x74, 0x12, 0x6d, 0x61, 0x78,
0x5f, 0x77, 0x69, 0x64, 0x74, 0x68, 0x06, 0x63,
0x6f, 0x6c, 0x0c, 0x6e, 0x5f, 0x63, 0x6f, 0x6c,
0x73, 0x06, 0x72, 0x6f, 0x77, 0x0c, 0x6e, 0x5f,
0x72, 0x6f, 0x77, 0x73, 0x02, 0x6d, 0x02, 0x28,
0x02, 0x29, 0x06, 0x6d, 0x61, 0x78, 0x0a, 0x66,
0x6c, 0x6f, 0x6f, 0x72, 0x08, 0x63, 0x65, 0x69,
0x6c, 0x0c, 0x70, 0x61, 0x64, 0x45, 0x6e, 0x64,
0x0a, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x0c, 0x64,
0x65, 0x66, 0x73, 0x74, 0x72, 0x04, 0x63, 0x62,
0x02, 0x20, 0x0a, 0x72, 0x6f, 0x75, 0x6e, 0x64,
0x04, 0x63, 0x31, 0x1a, 0x66, 0x72, 0x6f, 0x6d,
0x43, 0x6f, 0x64, 0x65, 0x50, 0x6f, 0x69, 0x6e,
0x74, 0x02, 0x1b, 0x02, 0x5b, 0x02, 0x4f, 0x02,
0x3b, 0x08, 0x6b, 0x65, 0x79, 0x73, 0x06, 0x66,
0x75, 0x6e, 0x0c, 0x73, 0x69, 0x67, 0x6e, 0x61,
0x6c, 0x0c, 0x53, 0x49, 0x47, 0x49, 0x4e, 0x54,
0x0a, 0x72, 0x61, 0x64, 0x69, 0x78, 0x04, 0x2d,
0x30, 0x02, 0x2d, 0x04, 0x30, 0x78, 0x08, 0x6d,
0x61, 0x74, 0x68, 0x12, 0x42, 0x69, 0x67, 0x46,
0x6c, 0x6f, 0x61, 0x74, 0x28, 0x10, 0x62, 0x69,
0x67, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x02, 0x70,
0x02, 0x65, 0x04, 0x2e, 0x30, 0x12, 0x70, 0x72,
0x69, 0x6e, 0x74, 0x5f, 0x72, 0x65, 0x63, 0x06,
0x6b, 0x65, 0x79, 0x14, 0x5b, 0x63, 0x69, 0x72,
0x63, 0x75, 0x6c, 0x61, 0x72, 0x5d, 0x0e, 0x43,
0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x06, 0x4d,
0x6f, 0x64, 0x14, 0x50, 0x6f, 0x6c, 0x79, 0x6e,
0x6f, 0x6d, 0x69, 0x61, 0x6c, 0x0e, 0x50, 0x6f,
0x6c, 0x79, 0x4d, 0x6f, 0x64, 0x20, 0x52, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x75,
0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x0c, 0x53,
0x65, 0x72, 0x69, 0x65, 0x73, 0x0e, 0x69, 0x73,
0x41, 0x72, 0x72, 0x61, 0x79, 0x04, 0x5b, 0x20,
0x04, 0x2c, 0x20, 0x0e, 0x3c, 0x65, 0x6d, 0x70,
0x74, 0x79, 0x3e, 0x06, 0x2e, 0x2e, 0x2e, 0x04,
0x20, 0x5d, 0x14, 0x5f, 0x5f, 0x67, 0x65, 0x74,
0x43, 0x6c, 0x61, 0x73, 0x73, 0x04, 0x7b, 0x20,
0x04, 0x3a, 0x20, 0x04, 0x20, 0x7d, 0x06, 0x70,
0x6f, 0x70, 0x0e, 0x5f, 0x5f, 0x71, 0x75, 0x6f,
0x74, 0x65, 0x08, 0x2e, 0x2e, 0x2e, 0x22, 0x0c,
0x62, 0x69, 0x67, 0x69, 0x6e, 0x74, 0x14, 0x62,
0x69, 0x67, 0x64, 0x65, 0x63, 0x69, 0x6d, 0x61,
0x6c, 0x12, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
0x6f, 0x6e, 0x20, 0x02, 0x5c, 0x08, 0x65, 0x78,
0x70, 0x72, 0x0a, 0x70, 0x61, 0x72, 0x61, 0x6d,
0x0a, 0x70, 0x72, 0x65, 0x63, 0x31, 0x10, 0x65,
0x78, 0x70, 0x42, 0x69, 0x74, 0x73, 0x31, 0x10,
0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65,
0x02, 0x68, 0x02, 0x3f, 0x08, 0x6c, 0x6f, 0x61,
0x64, 0x08, 0x74, 0x72, 0x69, 0x6d, 0x16, 0x6c,
0x61, 0x73, 0x74, 0x49, 0x6e, 0x64, 0x65, 0x78,
0x4f, 0x66, 0x06, 0x2e, 0x6a, 0x73, 0x14, 0x6c,
0x6f, 0x61, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70,
0x74, 0x02, 0x78, 0x26, 0x42, 0x69, 0x67, 0x46,
0x6c, 0x6f, 0x61, 0x74, 0x20, 0x70, 0x72, 0x65,
0x63, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x10,
0x20, 0x62, 0x69, 0x74, 0x73, 0x20, 0x28, 0x7e,
0x30, 0x20, 0x64, 0x69, 0x67, 0x69, 0x74, 0x73,
0x29, 0x2c, 0x20, 0x65, 0x78, 0x70, 0x6f, 0x6e,
0x65, 0x6e, 0x74, 0x20, 0x73, 0x69, 0x7a, 0x65,
0x3d, 0x0a, 0x20, 0x62, 0x69, 0x74, 0x73, 0x06,
0x66, 0x31, 0x36, 0x06, 0x66, 0x33, 0x32, 0x06,
0x66, 0x36, 0x34, 0x08, 0x66, 0x31, 0x32, 0x38,
0x10, 0x70, 0x61, 0x72, 0x73, 0x65, 0x49, 0x6e,
0x74, 0x16, 0x42, 0x69, 0x67, 0x46, 0x6c, 0x6f,
0x61, 0x74, 0x45, 0x6e, 0x76, 0x14, 0x65, 0x78,
0x70, 0x42, 0x69, 0x74, 0x73, 0x4d, 0x61, 0x78,
0x0e, 0x70, 0x72, 0x65, 0x63, 0x4d, 0x69, 0x6e,
0x0e, 0x70, 0x72, 0x65, 0x63, 0x4d, 0x61, 0x78,
0x22, 0x49, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64,
0x20, 0x70, 0x72, 0x65, 0x63, 0x69, 0x73, 0x69,
0x6f, 0x6e, 0x14, 0x65, 0x78, 0x70, 0x42, 0x69,
0x74, 0x73, 0x4d, 0x69, 0x6e, 0x2a, 0x49, 0x6e,
0x76, 0x61, 0x6c, 0x69, 0x64, 0x20, 0x65, 0x78,
0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x20, 0x62,
0x69, 0x74, 0x73, 0x0c, 0x64, 0x69, 0x67, 0x69,
0x74, 0x73, 0x08, 0x6d, 0x6f, 0x64, 0x65, 0x1a,
0x52, 0x75, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x20,
0x6d, 0x6f, 0x64, 0x65, 0x3d, 0x18, 0x49, 0x6e,
0x76, 0x61, 0x6c, 0x69, 0x64, 0x20, 0x6d, 0x6f,
0x64, 0x65, 0x0a, 0x63, 0x6c, 0x65, 0x61, 0x72,
0x0c, 0x1b, 0x5b, 0x48, 0x1b, 0x5b, 0x4a, 0x02,
0x71, 0x1a, 0x61, 0x6c, 0x67, 0x65, 0x62, 0x72,
0x61, 0x69, 0x63, 0x4d, 0x6f, 0x64, 0x65, 0x0a,
0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x1c, 0x74, 0x75,
0x72, 0x6e, 0x20, 0x6f, 0x6e, 0x20, 0x63, 0x6f,
0x6c, 0x6f, 0x72, 0x73, 0x1e, 0x74, 0x75, 0x72,
0x6e, 0x20, 0x6f, 0x66, 0x66, 0x20, 0x63, 0x6f,
0x6c, 0x6f, 0x72, 0x73, 0x26, 0x55, 0x6e, 0x6b,
0x6e, 0x6f, 0x77, 0x6e, 0x20, 0x64, 0x69, 0x72,
0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x3a, 0x20,
0x06, 0x64, 0x65, 0x63, 0x06, 0x68, 0x65, 0x78,
0x06, 0x6e, 0x75, 0x6d, 0x06, 0x61, 0x6c, 0x67,
0x06, 0x73, 0x65, 0x6c, 0x2a, 0x5c, 0x68, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x74, 0x68, 0x69, 0x73, 0x20, 0x68, 0x65,
0x6c, 0x70, 0x16, 0x5c, 0x78, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x34, 0x68,
0x65, 0x78, 0x61, 0x64, 0x65, 0x63, 0x69, 0x6d,
0x61, 0x6c, 0x20, 0x6e, 0x75, 0x6d, 0x62, 0x65,
0x72, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61,
0x79, 0x16, 0x5c, 0x64, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x2c, 0x64, 0x65,
0x63, 0x69, 0x6d, 0x61, 0x6c, 0x20, 0x6e, 0x75,
0x6d, 0x62, 0x65, 0x72, 0x20, 0x64, 0x69, 0x73,
0x70, 0x6c, 0x61, 0x79, 0x16, 0x5c, 0x74, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x2a, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x20,
0x74, 0x69, 0x6d, 0x69, 0x6e, 0x67, 0x20, 0x64,
0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x16, 0x5c,
0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x20, 0x20, 0x20,
0x20, 0x20, 0x28, 0x74, 0x6f, 0x67, 0x67, 0x6c,
0x65, 0x20, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x20,
0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3c,
0x5c, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x63, 0x6c, 0x65, 0x61,
0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x74, 0x65,
0x72, 0x6d, 0x69, 0x6e, 0x61, 0x6c, 0x16, 0x5c,
0x61, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x1c, 0x61, 0x6c, 0x67, 0x65, 0x62,
0x72, 0x61, 0x69, 0x63, 0x20, 0x6d, 0x6f, 0x64,
0x65, 0x16, 0x5c, 0x6e, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x18, 0x6e, 0x75,
0x6d, 0x65, 0x72, 0x69, 0x63, 0x20, 0x6d, 0x6f,
0x64, 0x65, 0x64, 0x5c, 0x70, 0x20, 0x5b, 0x6d,
0x20, 0x5b, 0x65, 0x5d, 0x5d, 0x20, 0x20, 0x73,
0x65, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20, 0x42,
0x69, 0x67, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x20,
0x70, 0x72, 0x65, 0x63, 0x69, 0x73, 0x69, 0x6f,
0x6e, 0x20, 0x74, 0x6f, 0x20, 0x27, 0x6d, 0x27,
0x20, 0x62, 0x69, 0x74, 0x73, 0x82, 0x01, 0x5c,
0x64, 0x69, 0x67, 0x69, 0x74, 0x73, 0x20, 0x6e,
0x20, 0x20, 0x20, 0x73, 0x65, 0x74, 0x20, 0x74,
0x68, 0x65, 0x20, 0x42, 0x69, 0x67, 0x46, 0x6c,
0x6f, 0x61, 0x74, 0x20, 0x70, 0x72, 0x65, 0x63,
0x69, 0x73, 0x69, 0x6f, 0x6e, 0x20, 0x74, 0x6f,
0x20, 0x27, 0x63, 0x65, 0x69, 0x6c, 0x28, 0x6e,
0x2a, 0x6c, 0x6f, 0x67, 0x32, 0x28, 0x31, 0x30,
0x29, 0x29, 0x27, 0x20, 0x62, 0x69, 0x74, 0x73,
0x68, 0x5c, 0x6d, 0x6f, 0x64, 0x65, 0x20, 0x5b,
0x73, 0x74, 0x64, 0x7c, 0x6d, 0x61, 0x74, 0x68,
0x5d, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65,
0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x75, 0x6e,
0x6e, 0x69, 0x6e, 0x67, 0x20, 0x6d, 0x6f, 0x64,
0x65, 0x20, 0x28, 0x63, 0x75, 0x72, 0x72, 0x65,
0x6e, 0x74, 0x20, 0x3d, 0x20, 0x20, 0x5c, 0x71,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x65, 0x78, 0x69, 0x74, 0x26, 0x5c,
0x65, 0x78, 0x69, 0x74, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x78,
0x69, 0x74, 0x06, 0x6e, 0x6f, 0x77, 0x26, 0x22,
0x75, 0x73, 0x65, 0x20, 0x6d, 0x61, 0x74, 0x68,
0x22, 0x3b, 0x20, 0x76, 0x6f, 0x69, 0x64, 0x20,
0x30, 0x3b, 0x0e, 0x67, 0x65, 0x74, 0x54, 0x69,
0x6d, 0x65, 0x14, 0x65, 0x76, 0x61, 0x6c, 0x53,
0x63, 0x72, 0x69, 0x70, 0x74, 0x22, 0x62, 0x61,
0x63, 0x6b, 0x74, 0x72, 0x61, 0x63, 0x65, 0x5f,
0x62, 0x61, 0x72, 0x72, 0x69, 0x65, 0x72, 0x0e,
0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x06,
0x6c, 0x6f, 0x67, 0x0e, 0x54, 0x68, 0x72, 0x6f,
0x77, 0x3a, 0x20, 0x3a, 0x51, 0x4a, 0x53, 0x43,
0x61, 0x6c, 0x63, 0x20, 0x2d, 0x20, 0x54, 0x79,
0x70, 0x65, 0x20, 0x22, 0x5c, 0x68, 0x22, 0x20,
0x66, 0x6f, 0x72, 0x20, 0x68, 0x65, 0x6c, 0x70,
0x0a, 0x3a, 0x51, 0x75, 0x69, 0x63, 0x6b, 0x4a,
0x53, 0x20, 0x2d, 0x20, 0x54, 0x79, 0x70, 0x65,
0x20, 0x22, 0x5c, 0x68, 0x22, 0x20, 0x66, 0x6f,
0x72, 0x20, 0x68, 0x65, 0x6c, 0x70, 0x0a, 0x08,
0x20, 0x20, 0x20, 0x20, 0x0e, 0x73, 0x65, 0x74,
0x50, 0x72, 0x65, 0x63, 0x08, 0x62, 0x69, 0x6e,
0x64, 0x04, 0x67, 0x63, 0x0a, 0x73, 0x74, 0x61,
0x74, 0x65, 0x0e, 0x70, 0x72, 0x69, 0x6d, 0x61,
0x72, 0x79, 0x12, 0x63, 0x61, 0x6e, 0x5f, 0x72,
0x65, 0x67, 0x65, 0x78, 0x14, 0x70, 0x75, 0x73,
0x68, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x14,
0x6c, 0x61, 0x73, 0x74, 0x5f, 0x73, 0x74, 0x61,
0x74, 0x65, 0x12, 0x70, 0x6f, 0x70, 0x5f, 0x73,
0x74, 0x61, 0x74, 0x65, 0x26, 0x70, 0x61, 0x72,
0x73, 0x65, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b,
0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74,
0x24, 0x70, 0x61, 0x72, 0x73, 0x65, 0x5f, 0x6c,
0x69, 0x6e, 0x65, 0x5f, 0x63, 0x6f, 0x6d, 0x6d,
0x65, 0x6e, 0x74, 0x18, 0x70, 0x61, 0x72, 0x73,
0x65, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
0x16, 0x70, 0x61, 0x72, 0x73, 0x65, 0x5f, 0x72,
0x65, 0x67, 0x65, 0x78, 0x18, 0x70, 0x61, 0x72,
0x73, 0x65, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65,
0x72, 0x16, 0x6a, 0x73, 0x5f, 0x6b, 0x65, 0x79,
0x77, 0x6f, 0x72, 0x64, 0x73, 0x16, 0x6a, 0x73,
0x5f, 0x6e, 0x6f, 0x5f, 0x72, 0x65, 0x67, 0x65,
0x78, 0x10, 0x6a, 0x73, 0x5f, 0x74, 0x79, 0x70,
0x65, 0x73, 0x20, 0x70, 0x61, 0x72, 0x73, 0x65,
0x5f, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66,
0x69, 0x65, 0x72, 0x12, 0x73, 0x65, 0x74, 0x5f,
0x73, 0x74, 0x79, 0x6c, 0x65, 0x02, 0x7c, 0x6a,
0x62, 0x72, 0x65, 0x61, 0x6b, 0x7c, 0x63, 0x61,
0x73, 0x65, 0x7c, 0x63, 0x61, 0x74, 0x63, 0x68,
0x7c, 0x63, 0x6f, 0x6e, 0x74, 0x69, 0x6e, 0x75,
0x65, 0x7c, 0x64, 0x65, 0x62, 0x75, 0x67, 0x67,
0x65, 0x72, 0x7c, 0x64, 0x65, 0x66, 0x61, 0x75,
0x6c, 0x74, 0x7c, 0x64, 0x65, 0x6c, 0x65, 0x74,
0x65, 0x7c, 0x64, 0x6f, 0x7c, 0x5e, 0x65, 0x6c,
0x73, 0x65, 0x7c, 0x66, 0x69, 0x6e, 0x61, 0x6c,
0x6c, 0x79, 0x7c, 0x66, 0x6f, 0x72, 0x7c, 0x66,
0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x7c,
0x69, 0x66, 0x7c, 0x69, 0x6e, 0x7c, 0x69, 0x6e,
0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x6f, 0x66,
0x7c, 0x6e, 0x65, 0x77, 0x7c, 0x5e, 0x72, 0x65,
0x74, 0x75, 0x72, 0x6e, 0x7c, 0x73, 0x77, 0x69,
0x74, 0x63, 0x68, 0x7c, 0x74, 0x68, 0x69, 0x73,
0x7c, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x7c, 0x74,
0x72, 0x79, 0x7c, 0x74, 0x79, 0x70, 0x65, 0x6f,
0x66, 0x7c, 0x77, 0x68, 0x69, 0x6c, 0x65, 0x7c,
0x77, 0x69, 0x74, 0x68, 0x7c, 0x5a, 0x63, 0x6c,
0x61, 0x73, 0x73, 0x7c, 0x63, 0x6f, 0x6e, 0x73,
0x74, 0x7c, 0x65, 0x6e, 0x75, 0x6d, 0x7c, 0x69,
0x6d, 0x70, 0x6f, 0x72, 0x74, 0x7c, 0x65, 0x78,
0x70, 0x6f, 0x72, 0x74, 0x7c, 0x65, 0x78, 0x74,
0x65, 0x6e, 0x64, 0x73, 0x7c, 0x73, 0x75, 0x70,
0x65, 0x72, 0x7c, 0x66, 0x69, 0x6d, 0x70, 0x6c,
0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x7c, 0x69,
0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65,
0x7c, 0x6c, 0x65, 0x74, 0x7c, 0x70, 0x61, 0x63,
0x6b, 0x61, 0x67, 0x65, 0x7c, 0x70, 0x72, 0x69,
0x76, 0x61, 0x74, 0x65, 0x7c, 0x70, 0x72, 0x6f,
0x74, 0x65, 0x63, 0x74, 0x65, 0x64, 0x7c, 0x28,
0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x7c, 0x73,
0x74, 0x61, 0x74, 0x69, 0x63, 0x7c, 0x79, 0x69,
0x65, 0x6c, 0x64, 0x7c, 0x4e, 0x75, 0x6e, 0x64,
0x65, 0x66, 0x69, 0x6e, 0x65, 0x64, 0x7c, 0x6e,
0x75, 0x6c, 0x6c, 0x7c, 0x74, 0x72, 0x75, 0x65,
0x7c, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7c, 0x49,
0x6e, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x79, 0x7c,
0x4e, 0x61, 0x4e, 0x7c, 0x1e, 0x65, 0x76, 0x61,
0x6c, 0x7c, 0x61, 0x72, 0x67, 0x75, 0x6d, 0x65,
0x6e, 0x74, 0x73, 0x7c, 0x0c, 0x61, 0x77, 0x61,
0x69, 0x74, 0x7c, 0x7a, 0x7c, 0x74, 0x68, 0x69,
0x73, 0x7c, 0x73, 0x75, 0x70, 0x65, 0x72, 0x7c,
0x75, 0x6e, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x65,
0x64, 0x7c, 0x6e, 0x75, 0x6c, 0x6c, 0x7c, 0x74,
0x72, 0x75, 0x65, 0x7c, 0x66, 0x61, 0x6c, 0x73,
0x65, 0x7c, 0x49, 0x6e, 0x66, 0x69, 0x6e, 0x69,
0x74, 0x79, 0x7c, 0x4e, 0x61, 0x4e, 0x7c, 0x61,
0x72, 0x67, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x73,
0x7c, 0x14, 0x7c, 0x76, 0x6f, 0x69, 0x64, 0x7c,
0x76, 0x61, 0x72, 0x7c, 0x02, 0x2b, 0x02, 0x60,
0x02, 0x7b, 0x0a, 0x64, 0x65, 0x6c, 0x69, 0x6d,
0x02, 0x77, 0x04, 0x69, 0x31, 0x04, 0x74, 0x6f,
0x0f, 0x9c, 0x03, 0x03, 0x9e, 0x03, 0xa0, 0x03,
0xa2, 0x03, 0x00, 0x00, 0x03, 0x00, 0xf8, 0x01,
0x00, 0x01, 0xf8, 0x01, 0x01, 0x02, 0xf8, 0x01,
0x02, 0x0e, 0x00, 0x06, 0x01, 0xa0, 0x01, 0x00,
0x00, 0x00, 0x02, 0x03, 0x01, 0x09, 0x00, 0x9e,
0x03, 0x00, 0x0d, 0xa0, 0x03, 0x01, 0x0d, 0xa2,
0x03, 0x02, 0x0d, 0xbf, 0x00, 0x38, 0x89, 0x00,
0x00, 0x00, 0xee, 0x29, 0x9c, 0x03, 0x01, 0x04,
0x00, 0x00, 0xe4, 0x18, 0x0e, 0x43, 0x06, 0x01,
0x00, 0x01, 0x78, 0x01, 0x02, 0x03, 0x48, 0xfe,
0x09, 0x79, 0xa4, 0x03, 0x00, 0x01, 0x80, 0x96,
0x02, 0x00, 0x00, 0x80, 0x9e, 0x02, 0x00, 0x01,
0x80, 0x98, 0x02, 0x00, 0x02, 0x80, 0xaa, 0x02,
0x00, 0x03, 0x80, 0xa6, 0x02, 0x00, 0x04, 0x80,
0xa6, 0x03, 0x00, 0x05, 0x80, 0xa8, 0x03, 0x00,
0x06, 0x80, 0xaa, 0x03, 0x00, 0x07, 0x80, 0xac,
0x03, 0x00, 0x08, 0x80, 0xae, 0x03, 0x00, 0x09,
0x80, 0xb0, 0x03, 0x00, 0x0a, 0x80, 0xb2, 0x03,
0x00, 0x0b, 0x80, 0xb4, 0x03, 0x00, 0x0c, 0x80,
0xb6, 0x03, 0x00, 0x0d, 0x80, 0xb8, 0x03, 0x00,
0x0e, 0x80, 0xba, 0x03, 0x00, 0x0f, 0x80, 0xbc,
0x03, 0x00, 0x10, 0x80, 0xbe, 0x03, 0x00, 0x11,
0x80, 0xc0, 0x03, 0x00, 0x12, 0x80, 0xc2, 0x03,
0x00, 0x13, 0x80, 0xc4, 0x03, 0x00, 0x14, 0x80,
0xc6, 0x03, 0x00, 0x15, 0x80, 0xc8, 0x03, 0x00,
0x16, 0x80, 0xca, 0x03, 0x00, 0x17, 0x80, 0xcc,
0x03, 0x00, 0x18, 0x80, 0xce, 0x03, 0x00, 0x19,
0x80, 0xd0, 0x03, 0x00, 0x1a, 0x80, 0xd2, 0x03,
0x00, 0x1b, 0x80, 0xd4, 0x03, 0x00, 0x1c, 0x80,
0xd6, 0x03, 0x00, 0x1d, 0x80, 0xd8, 0x03, 0x00,
0x1e, 0x80, 0xda, 0x03, 0x00, 0x1f, 0x80, 0xdc,
0x03, 0x00, 0x20, 0x80, 0xde, 0x03, 0x00, 0x21,
0x80, 0xe0, 0x03, 0x00, 0x22, 0x80, 0xe2, 0x03,
0x00, 0x23, 0x80, 0xe4, 0x03, 0x00, 0x24, 0x80,
0xe6, 0x03, 0x00, 0x25, 0x80, 0xe8, 0x03, 0x00,
0x26, 0x80, 0xea, 0x03, 0x00, 0x27, 0x80, 0xec,
0x03, 0x00, 0x28, 0x80, 0xee, 0x03, 0x00, 0x29,
0x80, 0xf0, 0x03, 0x00, 0x2a, 0x80, 0xf2, 0x03,
0x00, 0x2b, 0x00, 0xf4, 0x03, 0x00, 0x2c, 0x00,
0xf6, 0x03, 0x00, 0x2d, 0x80, 0xf8, 0x03, 0x00,
0x2e, 0x80, 0xfa, 0x03, 0x00, 0x2f, 0x80, 0xfc,
0x03, 0x00, 0x30, 0x80, 0xfe, 0x03, 0x00, 0x31,
0x80, 0x80, 0x04, 0x00, 0x32, 0x80, 0x82, 0x04,
0x00, 0x33, 0x80, 0x84, 0x04, 0x00, 0x34, 0x80,
0x86, 0x04, 0x00, 0x35, 0x80, 0x88, 0x04, 0x00,
0x36, 0x80, 0x8a, 0x04, 0x00, 0x37, 0x80, 0x8c,
0x04, 0x00, 0x38, 0x80, 0x8e, 0x04, 0x00, 0x39,
0x80, 0x90, 0x04, 0x00, 0x3a, 0x00, 0x92, 0x04,
0x00, 0x3b, 0x00, 0x94, 0x04, 0x00, 0x3c, 0x80,
0x96, 0x04, 0x00, 0x3d, 0x00, 0x98, 0x04, 0x00,
0x3e, 0x00, 0x9a, 0x04, 0x00, 0x3f, 0x00, 0x9c,
0x04, 0x00, 0x40, 0x00, 0x9e, 0x04, 0x00, 0x41,
0x80, 0xa0, 0x04, 0x00, 0x42, 0x80, 0xa2, 0x04,
0x00, 0x43, 0x00, 0xa4, 0x04, 0x00, 0x44, 0x00,
0xa6, 0x04, 0x00, 0x45, 0x00, 0xa8, 0x04, 0x00,
0x46, 0x80, 0xaa, 0x04, 0x00, 0x47, 0x00, 0xac,
0x04, 0x00, 0x48, 0x00, 0xae, 0x04, 0x00, 0x49,
0x80, 0xb0, 0x04, 0x00, 0x4a, 0x00, 0xb2, 0x04,
0x00, 0x4b, 0x00, 0xb4, 0x04, 0x00, 0x4c, 0x80,
0xb6, 0x04, 0x00, 0x4d, 0x00, 0xb8, 0x04, 0x00,
0x4e, 0x00, 0xba, 0x04, 0x00, 0x4f, 0x00, 0xbc,
0x04, 0x00, 0x50, 0x00, 0xbe, 0x04, 0x00, 0x51,
0x00, 0xc0, 0x04, 0x00, 0x52, 0x00, 0xc2, 0x04,
0x00, 0x53, 0x00, 0xc4, 0x04, 0x00, 0x54, 0x80,
0xc6, 0x04, 0x00, 0x55, 0x00, 0xc8, 0x04, 0x00,
0x56, 0x00, 0xca, 0x04, 0x00, 0x57, 0x00, 0xcc,
0x04, 0x00, 0x58, 0x00, 0xce, 0x04, 0x00, 0x59,
0x00, 0xd0, 0x04, 0x00, 0x5a, 0x80, 0xd2, 0x04,
0x00, 0x5b, 0x00, 0xd4, 0x04, 0x00, 0x5c, 0x80,
0xd6, 0x04, 0x00, 0x5d, 0x80, 0xd8, 0x04, 0x00,
0x5e, 0x80, 0xda, 0x04, 0x00, 0x5f, 0x80, 0xdc,
0x04, 0x00, 0x60, 0x80, 0xde, 0x04, 0x00, 0x61,
0x80, 0xe0, 0x04, 0x00, 0x62, 0x80, 0xe2, 0x04,
0x00, 0x63, 0x80, 0xe4, 0x04, 0x00, 0x64, 0x80,
0xe6, 0x04, 0x00, 0x65, 0x80, 0xe8, 0x04, 0x00,
0x66, 0x80, 0xea, 0x04, 0x00, 0x67, 0x80, 0xec,
0x04, 0x00, 0x68, 0x80, 0xee, 0x04, 0x00, 0x69,
0x80, 0xf0, 0x04, 0x00, 0x6a, 0x80, 0xf2, 0x04,
0x00, 0x6b, 0x80, 0xf4, 0x04, 0x00, 0x6c, 0x80,
0xf6, 0x04, 0x00, 0x6d, 0x80, 0xf8, 0x04, 0x00,
0x6e, 0x80, 0xfa, 0x04, 0x00, 0x6f, 0x80, 0xfc,
0x04, 0x00, 0x70, 0x80, 0xfe, 0x04, 0x00, 0x71,
0x80, 0x80, 0x05, 0x00, 0x72, 0x80, 0x82, 0x05,
0x00, 0x73, 0x00, 0x84, 0x05, 0x00, 0x74, 0x80,
0x86, 0x05, 0x00, 0x75, 0x80, 0x88, 0x05, 0x00,
0x76, 0x80, 0x8a, 0x05, 0x00, 0x77, 0x80, 0xa2,
0x03, 0x02, 0x0c, 0x9e, 0x03, 0x00, 0x0c, 0xa0,
0x03, 0x01, 0x0c, 0xbf, 0x00, 0xc2, 0x2b, 0xbf,
0x01, 0xc2, 0x2c, 0xbf, 0x02, 0xc2, 0x2d, 0xbf,
0x03, 0xc2, 0x2e, 0xbf, 0x04, 0xc2, 0x2f, 0xbf,
0x05, 0xc2, 0x30, 0xbf, 0x06, 0xc2, 0x31, 0xbf,
0x07, 0xc2, 0x32, 0xbf, 0x08, 0xc2, 0x33, 0xbf,
0x09, 0xc2, 0x34, 0xbf, 0x0a, 0xc2, 0x35, 0xbf,
0x0b, 0xc2, 0x36, 0xbf, 0x0c, 0xc2, 0x37, 0xbf,
0x0d, 0xc2, 0x38, 0xbf, 0x0e, 0xc2, 0x39, 0xbf,
0x0f, 0xc2, 0x3a, 0xbf, 0x10, 0xc2, 0x3b, 0xbf,
0x11, 0xc2, 0x3c, 0xbf, 0x12, 0xc2, 0x3d, 0xbf,
0x13, 0xc2, 0x3e, 0xbf, 0x14, 0xc2, 0x3f, 0xbf,
0x15, 0xc2, 0x40, 0xbf, 0x16, 0xc2, 0x41, 0xbf,
0x17, 0xc2, 0x42, 0xbf, 0x18, 0xc2, 0x43, 0xbf,
0x19, 0xc2, 0x44, 0xbf, 0x1a, 0xc2, 0x45, 0xbf,
0x1b, 0xc2, 0x46, 0xbf, 0x1c, 0xc2, 0x47, 0xbf,
0x1d, 0xc2, 0x48, 0xbf, 0x1e, 0xc2, 0x49, 0xbf,
0x1f, 0xc2, 0x4a, 0xbf, 0x20, 0xc2, 0x4b, 0xbf,
0x21, 0xc2, 0x4c, 0xbf, 0x22, 0xc2, 0x4d, 0xbf,
0x23, 0xc2, 0x4e, 0xbf, 0x24, 0xc2, 0x4f, 0xbf,
0x25, 0xc2, 0x50, 0xbf, 0x26, 0xc2, 0x51, 0xbf,
0x27, 0xc2, 0x52, 0xbf, 0x28, 0xc2, 0x53, 0xbf,
0x29, 0xc2, 0x54, 0xbf, 0x2a, 0xc2, 0x55, 0xbf,
0x2b, 0xc2, 0x56, 0xbf, 0x2c, 0xc2, 0x57, 0xbf,
0x2d, 0xc2, 0x58, 0xbf, 0x2e, 0xc2, 0x59, 0xbf,
0x2f, 0xc2, 0x5a, 0xbf, 0x30, 0xc2, 0x5b, 0xbf,
0x31, 0xc2, 0x5c, 0xbf, 0x32, 0xc2, 0x5d, 0xbf,
0x33, 0xc2, 0x5e, 0xbf, 0x34, 0xc2, 0x5f, 0xbf,
0x35, 0xc2, 0x61, 0xbf, 0x36, 0xc2, 0x65, 0xbf,
0x37, 0xc2, 0x66, 0xbf, 0x38, 0xc2, 0x67, 0xbf,
0x39, 0xc2, 0x68, 0xbf, 0x3a, 0xc2, 0x6b, 0xbf,
0x3b, 0xc2, 0x6c, 0xbf, 0x3c, 0xc2, 0x6d, 0xbf,
0x3d, 0xc2, 0x6e, 0xbf, 0x3e, 0xc2, 0x6f, 0xbf,
0x3f, 0xc2, 0x70, 0xbf, 0x41, 0xc2, 0x71, 0xbf,
0x42, 0xc2, 0x72, 0xbf, 0x43, 0xc2, 0x73, 0xbf,
0x44, 0xc2, 0x74, 0xbf, 0x45, 0xc2, 0x75, 0xbf,
0x46, 0xc2, 0x76, 0xbf, 0x47, 0xc2, 0x77, 0xd0,
0x65, 0x02, 0x00, 0x43, 0xd0, 0x00, 0x00, 0x00,
0xd0, 0x65, 0x01, 0x00, 0x43, 0xcf, 0x00, 0x00,
0x00, 0xd0, 0x41, 0x8b, 0x00, 0x00, 0x00, 0xc8,
0xd0, 0x41, 0x8f, 0x00, 0x00, 0x00, 0xc9, 0xd0,
0x41, 0x8c, 0x00, 0x00, 0x00, 0xca, 0xd0, 0x41,
0x95, 0x00, 0x00, 0x00, 0xcb, 0xd0, 0x41, 0x93,
0x00, 0x00, 0x00, 0xc2, 0x04, 0xd0, 0x41, 0xd3,
0x00, 0x00, 0x00, 0xc2, 0x05, 0xd0, 0x41, 0xd4,
0x00, 0x00, 0x00, 0xc2, 0x06, 0x65, 0x02, 0x00,
0x41, 0x46, 0x01, 0x00, 0x00, 0xf1, 0xc2, 0x07,
0x37, 0x47, 0x01, 0x00, 0x00, 0xf3, 0xc2, 0x08,
0x37, 0x48, 0x01, 0x00, 0x00, 0xf3, 0xc2, 0x09,
0x0b, 0x04, 0x49, 0x01, 0x00, 0x00, 0x4c, 0x4a,
0x01, 0x00, 0x00, 0x04, 0x4b, 0x01, 0x00, 0x00,
0x4c, 0x4c, 0x01, 0x00, 0x00, 0x04, 0x4d, 0x01,
0x00, 0x00, 0x4c, 0x4e, 0x01, 0x00, 0x00, 0x04,
0x4f, 0x01, 0x00, 0x00, 0x4c, 0x50, 0x01, 0x00,
0x00, 0x04, 0x51, 0x01, 0x00, 0x00, 0x4c, 0x52,
0x01, 0x00, 0x00, 0x04, 0x53, 0x01, 0x00, 0x00,
0x4c, 0x54, 0x01, 0x00, 0x00, 0x04, 0x55, 0x01,
0x00, 0x00, 0x4c, 0x56, 0x01, 0x00, 0x00, 0x04,
0x57, 0x01, 0x00, 0x00, 0x4c, 0x58, 0x01, 0x00,
0x00, 0x04, 0x59, 0x01, 0x00, 0x00, 0x4c, 0x5a,
0x01, 0x00, 0x00, 0x04, 0x5b, 0x01, 0x00, 0x00,
0x4c, 0x5c, 0x01, 0x00, 0x00, 0x04, 0x5b, 0x01,
0x00, 0x00, 0x4c, 0x5d, 0x01, 0x00, 0x00, 0x04,
0x5e, 0x01, 0x00, 0x00, 0x4c, 0x5f, 0x01, 0x00,
0x00, 0x04, 0x60, 0x01, 0x00, 0x00, 0x4c, 0x61,
0x01, 0x00, 0x00, 0x04, 0x62, 0x01, 0x00, 0x00,
0x4c, 0x63, 0x01, 0x00, 0x00, 0x04, 0x64, 0x01,
0x00, 0x00, 0x4c, 0x65, 0x01, 0x00, 0x00, 0x04,
0x66, 0x01, 0x00, 0x00, 0x4c, 0x67, 0x01, 0x00,
0x00, 0x04, 0x68, 0x01, 0x00, 0x00, 0x4c, 0x69,
0x01, 0x00, 0x00, 0x04, 0x6a, 0x01, 0x00, 0x00,
0x4c, 0x6b, 0x01, 0x00, 0x00, 0xc2, 0x0a, 0xc1,
0x07, 0xe9, 0x7e, 0x0b, 0x04, 0x4c, 0x01, 0x00,
0x00, 0x4c, 0x16, 0x00, 0x00, 0x00, 0x04, 0x5a,
0x01, 0x00, 0x00, 0x4c, 0x6c, 0x01, 0x00, 0x00,
0x04, 0x50, 0x01, 0x00, 0x00, 0x4c, 0x48, 0x00,
0x00, 0x00, 0x04, 0x58, 0x01, 0x00, 0x00, 0x4c,
0x6d, 0x01, 0x00, 0x00, 0x04, 0x50, 0x01, 0x00,
0x00, 0x4c, 0x46, 0x00, 0x00, 0x00, 0x04, 0x54,
0x01, 0x00, 0x00, 0x4c, 0x6e, 0x01, 0x00, 0x00,
0x04, 0x5c, 0x01, 0x00, 0x00, 0x4c, 0x1b, 0x00,
0x00, 0x00, 0x04, 0x67, 0x01, 0x00, 0x00, 0x4c,
0x6f, 0x01, 0x00, 0x00, 0x04, 0x52, 0x01, 0x00,
0x00, 0x4c, 0x70, 0x01, 0x00, 0x00, 0x04, 0x5f,
0x01, 0x00, 0x00, 0x4c, 0x71, 0x01, 0x00, 0x00,
0x04, 0x4c, 0x01, 0x00, 0x00, 0x4c, 0x72, 0x01,
0x00, 0x00, 0x04, 0x5f, 0x01, 0x00, 0x00, 0x4c,
0x73, 0x01, 0x00, 0x00, 0xc2, 0x0b, 0xeb, 0x7c,
0x0b, 0x04, 0x61, 0x01, 0x00, 0x00, 0x4c, 0x16,
0x00, 0x00, 0x00, 0x04, 0x5a, 0x01, 0x00, 0x00,
0x4c, 0x6c, 0x01, 0x00, 0x00, 0x04, 0x69, 0x01,
0x00, 0x00, 0x4c, 0x48, 0x00, 0x00, 0x00, 0x04,
0x58, 0x01, 0x00, 0x00, 0x4c, 0x6d, 0x01, 0x00,
0x00, 0x04, 0x50, 0x01, 0x00, 0x00, 0x4c, 0x46,
0x00, 0x00, 0x00, 0x04, 0x6b, 0x01, 0x00, 0x00,
0x4c, 0x6e, 0x01, 0x00, 0x00, 0x04, 0x63, 0x01,
0x00, 0x00, 0x4c, 0x1b, 0x00, 0x00, 0x00, 0x04,
0x67, 0x01, 0x00, 0x00, 0x4c, 0x6f, 0x01, 0x00,
0x00, 0x04, 0x61, 0x01, 0x00, 0x00, 0x4c, 0x70,
0x01, 0x00, 0x00, 0x04, 0x4e, 0x01, 0x00, 0x00,
0x4c, 0x71, 0x01, 0x00, 0x00, 0x04, 0x6b, 0x01,
0x00, 0x00, 0x4c, 0x72, 0x01, 0x00, 0x00, 0x04,
0x5f, 0x01, 0x00, 0x00, 0x4c, 0x73, 0x01, 0x00,
0x00, 0xc2, 0x0b, 0x26, 0x00, 0x00, 0xc2, 0x0c,
0xc0, 0xc2, 0x0d, 0xc0, 0xc2, 0x11, 0xc0, 0xc2,
0x12, 0xb4, 0xc2, 0x13, 0xc1, 0x07, 0xe9, 0x0a,
0x04, 0x74, 0x01, 0x00, 0x00, 0xc2, 0x14, 0xeb,
0x08, 0x04, 0x75, 0x01, 0x00, 0x00, 0xc2, 0x14,
0x04, 0x76, 0x01, 0x00, 0x00, 0xc2, 0x15, 0x0a,
0xc2, 0x16, 0x09, 0xc2, 0x17, 0x09, 0xc2, 0x18,
0xb4, 0xc2, 0x19, 0xc0, 0xc2, 0x1a, 0xb4, 0xc2,
0x1b, 0xc0, 0xc2, 0x1c, 0xb4, 0xc2, 0x1d, 0xc0,
0xc2, 0x1e, 0xb4, 0xc2, 0x1f, 0x09, 0xc2, 0x23,
0xb4, 0xc2, 0x24, 0xb4, 0xc2, 0x25, 0xb4, 0xc2,
0x29, 0x04, 0x77, 0x01, 0x00, 0x00, 0xc2, 0x2a,
0x0b, 0xc1, 0x3d, 0x4c, 0x78, 0x01, 0x00, 0x00,
0xc1, 0x40, 0x4c, 0x79, 0x01, 0x00, 0x00, 0xc1,
0x5a, 0x4c, 0x7a, 0x01, 0x00, 0x00, 0xc1, 0x4e,
0x4c, 0x7b, 0x01, 0x00, 0x00, 0xc1, 0x3e, 0x4c,
0x7c, 0x01, 0x00, 0x00, 0xc1, 0x3f, 0x4c, 0x7d,
0x01, 0x00, 0x00, 0xc1, 0x3b, 0x4c, 0x7e, 0x01,
0x00, 0x00, 0xc1, 0x4f, 0x4c, 0x7f, 0x01, 0x00,
0x00, 0xc1, 0x5f, 0x4c, 0x80, 0x01, 0x00, 0x00,
0xc1, 0x45, 0x4c, 0x81, 0x01, 0x00, 0x00, 0xc1,
0x55, 0x4c, 0x82, 0x01, 0x00, 0x00, 0xc1, 0x45,
0x4c, 0x83, 0x01, 0x00, 0x00, 0xc1, 0x48, 0x4c,
0x84, 0x01, 0x00, 0x00, 0xc1, 0x47, 0x4c, 0x85,
0x01, 0x00, 0x00, 0xc1, 0x3a, 0x4c, 0x86, 0x01,
0x00, 0x00, 0xc1, 0x3c, 0x4c, 0x87, 0x01, 0x00,
0x00, 0xc1, 0x3c, 0x4c, 0x88, 0x01, 0x00, 0x00,
0xc1, 0x50, 0x4c, 0x89, 0x01, 0x00, 0x00, 0xc1,
0x5b, 0x4c, 0x8a, 0x01, 0x00, 0x00, 0xc1, 0x59,
0x4c, 0x8b, 0x01, 0x00, 0x00, 0xc1, 0x47, 0x4c,
0x8c, 0x01, 0x00, 0x00, 0xc1, 0x48, 0x4c, 0x8d,
0x01, 0x00, 0x00, 0xc1, 0x3f, 0x4c, 0x8e, 0x01,
0x00, 0x00, 0xc1, 0x40, 0x4c, 0x8f, 0x01, 0x00,
0x00, 0xc1, 0x43, 0x4c, 0x90, 0x01, 0x00, 0x00,
0xc1, 0x44, 0x4c, 0x91, 0x01, 0x00, 0x00, 0xc1,
0x43, 0x4c, 0x92, 0x01, 0x00, 0x00, 0xc1, 0x44,
0x4c, 0x93, 0x01, 0x00, 0x00, 0xc1, 0x3d, 0x4c,
0x94, 0x01, 0x00, 0x00, 0xc1, 0x4d, 0x4c, 0x95,
0x01, 0x00, 0x00, 0xc1, 0x3e, 0x4c, 0x96, 0x01,
0x00, 0x00, 0xc1, 0x4a, 0x4c, 0x97, 0x01, 0x00,
0x00, 0xc1, 0x4b, 0x4c, 0x98, 0x01, 0x00, 0x00,
0xc1, 0x47, 0x4c, 0x99, 0x01, 0x00, 0x00, 0xc1,
0x48, 0x4c, 0x9a, 0x01, 0x00, 0x00, 0xc1, 0x3f,
0x4c, 0x9b, 0x01, 0x00, 0x00, 0xc1, 0x40, 0x4c,
0x9c, 0x01, 0x00, 0x00, 0xc1, 0x3e, 0x4c, 0x9d,
0x01, 0x00, 0x00, 0xc1, 0x3d, 0x4c, 0x9e, 0x01,
0x00, 0x00, 0xc1, 0x58, 0x4c, 0x9f, 0x01, 0x00,
0x00, 0xc1, 0x44, 0x4c, 0xa0, 0x01, 0x00, 0x00,
0xc1, 0x57, 0x4c, 0xa1, 0x01, 0x00, 0x00, 0xc1,
0x43, 0x4c, 0xa2, 0x01, 0x00, 0x00, 0xc1, 0x56,
0x4c, 0xa3, 0x01, 0x00, 0x00, 0xc1, 0x53, 0x4c,
0xa4, 0x01, 0x00, 0x00, 0xc1, 0x51, 0x4c, 0xa5,
0x01, 0x00, 0x00, 0xc1, 0x52, 0x4c, 0xa6, 0x01,
0x00, 0x00, 0xc1, 0x4f, 0x4c, 0xa7, 0x01, 0x00,
0x00, 0xc2, 0x60, 0x09, 0xc2, 0x69, 0x04, 0xcf,
0x00, 0x00, 0x00, 0xc2, 0x6a, 0xc1, 0x07, 0xe9,
0x09, 0xd0, 0xbf, 0x40, 0x43, 0xa8, 0x01, 0x00,
0x00, 0xc1, 0x2b, 0xed, 0x0e, 0xc1, 0x73, 0xed,
0x29, 0x9c, 0x03, 0x1f, 0xa5, 0x01, 0x00, 0x9c,
0x02, 0x04, 0x30, 0x32, 0x26, 0x26, 0x26, 0x26,
0x2b, 0x2b, 0x2d, 0x3a, 0x2b, 0x2c, 0x08, 0x35,
0x35, 0x35, 0x35, 0x35, 0x35, 0x35, 0x35, 0x35,
0x35, 0x35, 0x35, 0x35, 0x35, 0x35, 0x35, 0x35,
0x35, 0x0f, 0x17, 0x08, 0x35, 0x35, 0x35, 0x35,
0x35, 0x35, 0x35, 0x35, 0x35, 0x35, 0x35, 0x35,
0x0d, 0x0d, 0x08, 0x35, 0x35, 0x35, 0x35, 0x35,
0x35, 0x35, 0x35, 0x35, 0x35, 0x35, 0x35, 0x0f,
0x1c, 0x00, 0x03, 0x0a, 0x12, 0x12, 0x13, 0x17,
0x31, 0x26, 0x26, 0x12, 0x12, 0x12, 0x13, 0x12,
0x12, 0x12, 0x12, 0x12, 0x14, 0x13, 0x12, 0x00,
0x03, 0x0c, 0x12, 0x00, 0x07, 0xb0, 0x09, 0x08,
0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26,
0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26,
0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26,
0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26,
0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26,
0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26,
0x00, 0x02, 0xf2, 0x01, 0x12, 0x00, 0x07, 0xb0,
0x04, 0x18, 0x00, 0x01, 0x1e, 0x00, 0x07, 0xea,
0x05, 0x18, 0x13, 0x0e, 0x43, 0x06, 0x01, 0xf2,
0x03, 0x00, 0x01, 0x00, 0x03, 0x05, 0x00, 0x2c,
0x01, 0xd2, 0x06, 0x00, 0x00, 0x00, 0xe8, 0x03,
0x26, 0x01, 0xec, 0x03, 0x28, 0x01, 0xea, 0x03,
0x27, 0x01, 0xa2, 0x03, 0x00, 0x0c, 0xf6, 0x03,
0x2d, 0x01, 0xb4, 0xe0, 0xbc, 0x50, 0xe1, 0x38,
0x9e, 0x00, 0x00, 0x00, 0x11, 0xbc, 0x40, 0x21,
0x01, 0x00, 0xe2, 0x65, 0x03, 0x00, 0x42, 0xaa,
0x01, 0x00, 0x00, 0x5e, 0x04, 0x00, 0x24, 0x01,
0x00, 0x0e, 0x65, 0x03, 0x00, 0x42, 0x46, 0x01,
0x00, 0x00, 0x24, 0x00, 0x00, 0x29, 0x9c, 0x03,
0x90, 0x01, 0x0a, 0x04, 0x00, 0x02, 0x08, 0x00,
0x03, 0x22, 0x40, 0x4e, 0x3a, 0x0e, 0x43, 0x06,
0x01, 0xf4, 0x03, 0x00, 0x00, 0x00, 0x02, 0x01,
0x00, 0x04, 0x00, 0xf8, 0x03, 0x2e, 0x01, 0xdc,
0xb7, 0xee, 0x29, 0x9c, 0x03, 0xad, 0x01, 0x02,
0x04, 0x12, 0x0e, 0x43, 0x06, 0x01, 0xf6, 0x03,
0x00, 0x02, 0x00, 0x05, 0x03, 0x00, 0x27, 0x02,
0xd6, 0x06, 0x00, 0x00, 0x00, 0xd8, 0x06, 0x00,
0x01, 0x00, 0xa2, 0x03, 0x00, 0x0c, 0xea, 0x03,
0x27, 0x01, 0xf8, 0x03, 0x2e, 0x01, 0x65, 0x00,
0x00, 0x42, 0xad, 0x01, 0x00, 0x00, 0xdd, 0x41,
0xae, 0x01, 0x00, 0x00, 0xb4, 0xdd, 0xe8, 0x24,
0x03, 0x00, 0xc8, 0xb4, 0xc9, 0xc5, 0xc4, 0xa4,
0xe9, 0x0b, 0xde, 0xdd, 0xc5, 0x47, 0xee, 0x0e,
0x94, 0x01, 0xeb, 0xf2, 0x29, 0x9c, 0x03, 0xb2,
0x01, 0x04, 0x05, 0x6c, 0x26, 0x35, 0x0e, 0x43,
0x06, 0x01, 0xf8, 0x03, 0x01, 0x00, 0x01, 0x04,
0x04, 0x00, 0x5f, 0x01, 0xde, 0x06, 0x00, 0x01,
0x00, 0xc8, 0x03, 0x16, 0x01, 0xea, 0x04, 0x67,
0x01, 0xe4, 0x03, 0x24, 0x01, 0xe6, 0x03, 0x25,
0x01, 0xdc, 0x97, 0xe9, 0x06, 0xdd, 0xd0, 0xee,
0x0e, 0x29, 0xde, 0xb4, 0xad, 0xe9, 0x24, 0xd0,
0xbd, 0x80, 0x00, 0xa7, 0xe9, 0x1d, 0xd0, 0xbd,
0xc0, 0x00, 0xa4, 0xe9, 0x16, 0xdf, 0xba, 0xa1,
0xd0, 0xbc, 0x3f, 0xae, 0xb0, 0xe3, 0xde, 0x8f,
0xe6, 0xb4, 0xac, 0xe9, 0x33, 0xdd, 0xdf, 0xee,
0x0e, 0x29, 0xd0, 0xbd, 0xc0, 0x00, 0xa7, 0xe9,
0x21, 0xd0, 0xbd, 0xf8, 0x00, 0xa4, 0xe9, 0x1a,
0xb5, 0xd0, 0xbd, 0xe0, 0x00, 0xa7, 0x9e, 0xd0,
0xbd, 0xf0, 0x00, 0xa7, 0x9e, 0xe2, 0xd0, 0xb5,
0xba, 0xde, 0x9f, 0xa1, 0xb5, 0x9f, 0xae, 0xe3,
0x29, 0xb4, 0xe2, 0xdd, 0xd0, 0xee, 0x0e, 0x29,
0x9c, 0x03, 0xba, 0x01, 0x0e, 0x03, 0x17, 0x17,
0x67, 0x30, 0x08, 0x21, 0x18, 0x4e, 0x49, 0x35,
0x08, 0x0d, 0x18, 0x0e, 0x43, 0x06, 0x01, 0xfa,
0x03, 0x01, 0x00, 0x01, 0x02, 0x00, 0x00, 0x35,
0x01, 0xde, 0x06, 0x00, 0x01, 0x00, 0xd0, 0x98,
0x04, 0x48, 0x00, 0x00, 0x00, 0xac, 0x11, 0xe9,
0x2a, 0x0e, 0xd0, 0x04, 0xb0, 0x01, 0x00, 0x00,
0xa7, 0x11, 0xe9, 0x09, 0x0e, 0xd0, 0x04, 0xb1,
0x01, 0x00, 0x00, 0xa5, 0x11, 0xea, 0x14, 0x0e,
0xd0, 0x04, 0xb2, 0x01, 0x00, 0x00, 0xa7, 0x11,
0xe9, 0x09, 0x0e, 0xd0, 0x04, 0xb3, 0x01, 0x00,
0x00, 0xa5, 0x28, 0x9c, 0x03, 0xcc, 0x01, 0x02,
0x03, 0x3f, 0x0e, 0x43, 0x06, 0x01, 0xfc, 0x03,
0x01, 0x00, 0x01, 0x02, 0x00, 0x02, 0x19, 0x01,
0xde, 0x06, 0x00, 0x01, 0x00, 0xd0, 0x98, 0x04,
0x48, 0x00, 0x00, 0x00, 0xac, 0x11, 0xe9, 0x0e,
0x0e, 0xd0, 0xbe, 0x00, 0xa7, 0x11, 0xe9, 0x06,
0x0e, 0xd0, 0xbe, 0x01, 0xa5, 0x28, 0x9c, 0x03,
0xd1, 0x01, 0x01, 0x03, 0x07, 0x02, 0x30, 0x07,
0x02, 0x39, 0x0e, 0x43, 0x06, 0x01, 0xfe, 0x03,
0x01, 0x00, 0x01, 0x02, 0x02, 0x00, 0x2d, 0x01,
0xde, 0x06, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x2f,
0x01, 0xfc, 0x03, 0x30, 0x01, 0xd0, 0x98, 0x04,
0x48, 0x00, 0x00, 0x00, 0xac, 0x11, 0xe9, 0x22,
0x0e, 0xdc, 0xd0, 0xee, 0x11, 0xea, 0x1b, 0x0e,
0xdd, 0xd0, 0xee, 0x11, 0xea, 0x14, 0x0e, 0xd0,
0x04, 0xb4, 0x01, 0x00, 0x00, 0xaa, 0x11, 0xea,
0x09, 0x0e, 0xd0, 0x04, 0xb5, 0x01, 0x00, 0x00,
0xaa, 0x28, 0x9c, 0x03, 0xd5, 0x01, 0x02, 0x03,
0x3f, 0x0e, 0x43, 0x06, 0x01, 0x80, 0x04, 0x01,
0x04, 0x01, 0x03, 0x00, 0x00, 0x32, 0x05, 0xec,
0x06, 0x00, 0x01, 0x00, 0xee, 0x06, 0x00, 0x00,
0x00, 0xde, 0x06, 0x00, 0x01, 0x00, 0xd8, 0x06,
0x00, 0x02, 0x00, 0xf0, 0x06, 0x00, 0x03, 0x00,
0xd0, 0xe8, 0xcb, 0xb4, 0xc8, 0xb4, 0xca, 0xc6,
0xc7, 0xa4, 0xe9, 0x25, 0xd0, 0x42, 0xb9, 0x01,
0x00, 0x00, 0xc6, 0x24, 0x01, 0x00, 0xcd, 0x01,
0x00, 0xdc, 0x00, 0x00, 0xa4, 0x11, 0xea, 0x09,
0x0e, 0xc5, 0x01, 0x00, 0xe0, 0x00, 0x00, 0xa7,
0xe9, 0x03, 0x94, 0x00, 0x94, 0x02, 0xeb, 0xd8,
0xc4, 0x28, 0x9c, 0x03, 0xda, 0x01, 0x0a, 0x03,
0x12, 0x00, 0x02, 0x0a, 0x26, 0x3a, 0x62, 0x0d,
0x17, 0x0e, 0x43, 0x06, 0x01, 0x82, 0x04, 0x01,
0x01, 0x01, 0x03, 0x00, 0x00, 0x29, 0x02, 0xde,
0x06, 0x00, 0x01, 0x00, 0xf4, 0x06, 0x00, 0x00,
0x00, 0xd0, 0x98, 0x04, 0x48, 0x00, 0x00, 0x00,
0xad, 0xe9, 0x03, 0x09, 0x28, 0xd0, 0x42, 0xbb,
0x01, 0x00, 0x00, 0xb4, 0x24, 0x01, 0x00, 0xcc,
0x01, 0x00, 0xdc, 0x00, 0x00, 0xa7, 0x11, 0xe9,
0x09, 0x0e, 0xc4, 0x01, 0x00, 0xe0, 0x00, 0x00,
0xa4, 0x28, 0x9c, 0x03, 0xe9, 0x01, 0x04, 0x04,
0x35, 0x0d, 0x3a, 0x0e, 0x43, 0x06, 0x01, 0x84,
0x04, 0x02, 0x00, 0x02, 0x03, 0x00, 0x00, 0x23,
0x02, 0xe4, 0x06, 0x00, 0x01, 0x00, 0xf8, 0x06,
0x00, 0x01, 0x00, 0xd0, 0xd1, 0x9e, 0x11, 0x04,
0xbd, 0x01, 0x00, 0x00, 0xac, 0xea, 0x13, 0x11,
0x04, 0xbe, 0x01, 0x00, 0x00, 0xac, 0xea, 0x0a,
0x11, 0x04, 0xbf, 0x01, 0x00, 0x00, 0xac, 0xe9,
0x03, 0x0a, 0x28, 0x0e, 0x09, 0x28, 0x9c, 0x03,
0xf1, 0x01, 0x07, 0x03, 0x12, 0x30, 0x30, 0x30,
0x08, 0x0d, 0x0e, 0x43, 0x06, 0x01, 0x86, 0x04,
0x03, 0x03, 0x03, 0x06, 0x03, 0x00, 0x63, 0x06,
0xec, 0x06, 0x00, 0x01, 0x00, 0x80, 0x07, 0x00,
0x01, 0x00, 0x82, 0x07, 0x00, 0x01, 0x00, 0xd8,
0x06, 0x00, 0x00, 0x00, 0x84, 0x07, 0x00, 0x01,
0x00, 0x86, 0x07, 0x00, 0x02, 0x00, 0xa2, 0x03,
0x00, 0x0c, 0xb0, 0x03, 0x0a, 0x01, 0xb2, 0x03,
0x0b, 0x01, 0xd1, 0xc9, 0xc5, 0xd0, 0xe8, 0xa4,
0xe9, 0x5b, 0xd2, 0xc5, 0xcc, 0x47, 0xca, 0xc5,
0x90, 0xcd, 0xd0, 0xe8, 0xa4, 0xe9, 0x08, 0xd2,
0xc5, 0x47, 0xc6, 0xaa, 0xea, 0xf2, 0x65, 0x00,
0x00, 0x42, 0xc4, 0x01, 0x00, 0x00, 0xdd, 0xde,
0xc6, 0x47, 0x11, 0xea, 0x07, 0x0e, 0x04, 0x16,
0x00, 0x00, 0x00, 0x47, 0x24, 0x01, 0x00, 0x0e,
0x65, 0x00, 0x00, 0x42, 0xc4, 0x01, 0x00, 0x00,
0xd0, 0x42, 0xc5, 0x01, 0x00, 0x00, 0xc4, 0xc5,
0x24, 0x02, 0x00, 0x24, 0x01, 0x00, 0x0e, 0x65,
0x00, 0x00, 0x42, 0xc4, 0x01, 0x00, 0x00, 0xdd,
0x04, 0x4a, 0x01, 0x00, 0x00, 0x47, 0x24, 0x01,
0x00, 0x0e, 0xeb, 0xa1, 0x29, 0x9c, 0x03, 0xfb,
0x01, 0x09, 0x04, 0x2b, 0x1c, 0x44, 0x0d, 0x85,
0x76, 0x62, 0x0d, 0x0e, 0x43, 0x06, 0x01, 0x88,
0x04, 0x02, 0x00, 0x02, 0x05, 0x01, 0x00, 0x1d,
0x02, 0x8c, 0x07, 0x00, 0x01, 0x00, 0x8e, 0x07,
0x00, 0x01, 0x00, 0xa2, 0x03, 0x00, 0x0c, 0x65,
0x00, 0x00, 0x42, 0xc4, 0x01, 0x00, 0x00, 0x04,
0xc8, 0x01, 0x00, 0x00, 0xd0, 0xb5, 0xab, 0xe9,
0x04, 0xd0, 0xeb, 0x02, 0xc0, 0x9e, 0xd1, 0x9e,
0x24, 0x01, 0x00, 0x29, 0x9c, 0x03, 0x87, 0x02,
0x02, 0x03, 0x8f, 0x0e, 0x43, 0x06, 0x01, 0x8a,
0x04, 0x01, 0x02, 0x01, 0x04, 0x06, 0x00, 0xa1,
0x01, 0x03, 0x92, 0x07, 0x00, 0x01, 0x00, 0xd8,
0x06, 0x00, 0x00, 0x00, 0xd6, 0x06, 0x00, 0x01,
0x00, 0xee, 0x03, 0x29, 0x01, 0xec, 0x03, 0x28,
0x01, 0xa2, 0x03, 0x00, 0x0c, 0xf0, 0x03, 0x2a,
0x01, 0xa6, 0x02, 0x04, 0x01, 0x88, 0x04, 0x36,
0x01, 0xd0, 0xb4, 0xa6, 0xe9, 0x4b, 0xd0, 0xb4,
0xab, 0x69, 0x97, 0x00, 0x00, 0x00, 0xdc, 0xdd,
0xb5, 0x9f, 0xaa, 0xe9, 0x15, 0x65, 0x02, 0x00,
0x42, 0xc4, 0x01, 0x00, 0x00, 0xdf, 0x24, 0x01,
0x00, 0x0e, 0xb4, 0xe0, 0xd0, 0x8f, 0xd4, 0xeb,
0xde, 0x5e, 0x04, 0x00, 0x42, 0xca, 0x01, 0x00,
0x00, 0xdd, 0xb5, 0x9f, 0xdc, 0x9f, 0xd0, 0x24,
0x02, 0x00, 0xc9, 0x5e, 0x05, 0x00, 0xc5, 0x04,
0xcb, 0x01, 0x00, 0x00, 0xef, 0x0e, 0xd0, 0xc5,
0x9f, 0xd4, 0xdc, 0xc5, 0x9e, 0xe0, 0xeb, 0xb7,
0xd0, 0x8d, 0xd4, 0xd0, 0xb4, 0xab, 0xe9, 0x4a,
0xdc, 0xb4, 0xaa, 0xe9, 0x22, 0x5e, 0x05, 0x00,
0xb5, 0x04, 0xb0, 0x01, 0x00, 0x00, 0xef, 0x0e,
0x5e, 0x05, 0x00, 0xdd, 0xb5, 0x9f, 0x04, 0xcb,
0x01, 0x00, 0x00, 0xef, 0x0e, 0xd0, 0x8f, 0xd4,
0xdd, 0xb5, 0x9f, 0xe0, 0xeb, 0xd6, 0x5e, 0x04,
0x00, 0x42, 0xca, 0x01, 0x00, 0x00, 0xd0, 0xdc,
0x24, 0x02, 0x00, 0xc9, 0x5e, 0x05, 0x00, 0xc5,
0x04, 0xcc, 0x01, 0x00, 0x00, 0xef, 0x0e, 0xd0,
0xc5, 0x9f, 0xd4, 0xdc, 0xc5, 0x9f, 0xe0, 0xeb,
0xb3, 0x29, 0x9c, 0x03, 0x8c, 0x02, 0x1a, 0x04,
0x1c, 0x2b, 0x26, 0x44, 0x0d, 0x12, 0x0d, 0x5d,
0x3a, 0x17, 0x18, 0x0e, 0x12, 0x1c, 0x1c, 0x3a,
0x44, 0x12, 0x17, 0x0d, 0x49, 0x3a, 0x17, 0x18,
0x0e, 0x0e, 0x43, 0x06, 0x01, 0x8c, 0x04, 0x00,
0x05, 0x00, 0x06, 0x0e, 0x00, 0x9f, 0x02, 0x05,
0xd8, 0x06, 0x00, 0x00, 0x00, 0x9a, 0x07, 0x00,
0x01, 0x00, 0xec, 0x06, 0x00, 0x02, 0x00, 0x80,
0x07, 0x00, 0x03, 0x00, 0x9c, 0x07, 0x00, 0x04,
0x00, 0xd4, 0x03, 0x1c, 0x01, 0xd8, 0x03, 0x1e,
0x01, 0xcc, 0x03, 0x18, 0x01, 0xda, 0x03, 0x1f,
0x01, 0xa2, 0x03, 0x00, 0x0c, 0x8a, 0x04, 0x37,
0x01, 0x80, 0x04, 0x32, 0x01, 0xd0, 0x03, 0x1a,
0x01, 0x8a, 0x05, 0x77, 0x01, 0x86, 0x04, 0x35,
0x01, 0xee, 0x03, 0x29, 0x01, 0xec, 0x03, 0x28,
0x01, 0xd6, 0x03, 0x1d, 0x01, 0x9e, 0x03, 0x01,
0x0c, 0xdc, 0xdd, 0xab, 0x69, 0xc9, 0x00, 0x00,
0x00, 0xde, 0x97, 0xe9, 0x32, 0xdd, 0x42, 0xc5,
0x01, 0x00, 0x00, 0xb4, 0xdf, 0x24, 0x02, 0x00,
0xdc, 0x42, 0xc5, 0x01, 0x00, 0x00, 0xb4, 0xdf,
0x24, 0x02, 0x00, 0xaa, 0xe9, 0x19, 0x65, 0x04,
0x00, 0x42, 0xc4, 0x01, 0x00, 0x00, 0xdc, 0x42,
0xc5, 0x01, 0x00, 0x00, 0xdf, 0x24, 0x01, 0x00,
0x24, 0x01, 0x00, 0x0e, 0xeb, 0x53, 0x5e, 0x05,
0x00, 0x5e, 0x06, 0x00, 0xdd, 0x42, 0xc5, 0x01,
0x00, 0x00, 0xb4, 0xdf, 0x24, 0x02, 0x00, 0xee,
0x8d, 0xee, 0x0e, 0xde, 0xe9, 0x2e, 0x5e, 0x07,
0x00, 0xe9, 0x0e, 0x5e, 0x07, 0x00, 0x04, 0xf8,
0x00, 0x00, 0x00, 0x9e, 0xdc, 0x9e, 0xeb, 0x02,
0xdc, 0xce, 0xe8, 0xdc, 0xe8, 0x9f, 0xcb, 0x5e,
0x08, 0x00, 0xc6, 0xee, 0xc2, 0x04, 0x5e, 0x09,
0x00, 0xc6, 0xc7, 0xc1, 0x04, 0xb6, 0x47, 0xf0,
0x0e, 0xeb, 0x0e, 0x65, 0x04, 0x00, 0x42, 0xc4,
0x01, 0x00, 0x00, 0xdc, 0x24, 0x01, 0x00, 0x0e,
0x5e, 0x0a, 0x00, 0x5e, 0x06, 0x00, 0xdc, 0xee,
0x9e, 0x5e, 0x0b, 0x00, 0x9d, 0x60, 0x0a, 0x00,
0xb4, 0xaa, 0xe9, 0x12, 0x65, 0x04, 0x00, 0x42,
0xc4, 0x01, 0x00, 0x00, 0x04, 0xcf, 0x01, 0x00,
0x00, 0x24, 0x01, 0x00, 0x0e, 0xde, 0xe9, 0x12,
0x65, 0x04, 0x00, 0x42, 0xc4, 0x01, 0x00, 0x00,
0x04, 0xd0, 0x01, 0x00, 0x00, 0x24, 0x01, 0x00,
0x0e, 0xdc, 0xe1, 0xdc, 0xe8, 0xe3, 0x5e, 0x0c,
0x00, 0xdf, 0xa6, 0xe9, 0x19, 0x5e, 0x05, 0x00,
0x5e, 0x06, 0x00, 0xdc, 0x42, 0xc5, 0x01, 0x00,
0x00, 0xdf, 0x5e, 0x0c, 0x00, 0x24, 0x02, 0x00,
0xee, 0xee, 0x0e, 0xeb, 0x1f, 0x5e, 0x0c, 0x00,
0xdf, 0xa4, 0xe9, 0x18, 0x5e, 0x05, 0x00, 0x5e,
0x06, 0x00, 0xdc, 0x42, 0xc5, 0x01, 0x00, 0x00,
0x5e, 0x0c, 0x00, 0xdf, 0x24, 0x02, 0x00, 0xee,
0x8d, 0xee, 0x0e, 0x5e, 0x0c, 0x00, 0xe3, 0x65,
0x0d, 0x00, 0x41, 0xd1, 0x01, 0x00, 0x00, 0x42,
0xd2, 0x01, 0x00, 0x00, 0x24, 0x00, 0x00, 0x29,
0x9c, 0x03, 0xad, 0x02, 0x1c, 0x00, 0x00, 0x08,
0x2b, 0x95, 0x71, 0x0e, 0x6c, 0x12, 0x67, 0x1c,
0x26, 0x3a, 0x0d, 0x46, 0x53, 0x18, 0x5a, 0x12,
0x59, 0x0d, 0x13, 0x26, 0x71, 0x30, 0x77, 0x17,
0x53, 0x0e, 0x43, 0x06, 0x01, 0x8e, 0x04, 0x01,
0x00, 0x01, 0x04, 0x02, 0x00, 0x22, 0x01, 0xec,
0x06, 0x00, 0x01, 0x00, 0xd4, 0x03, 0x1c, 0x01,
0xd6, 0x03, 0x1d, 0x01, 0xd0, 0xe9, 0x1f, 0xdc,
0x42, 0xc5, 0x01, 0x00, 0x00, 0xb4, 0xdd, 0x24,
0x02, 0x00, 0xd0, 0x9e, 0xdc, 0x42, 0xc5, 0x01,
0x00, 0x00, 0xdd, 0x24, 0x01, 0x00, 0x9e, 0xe0,
0xdd, 0xd0, 0xe8, 0x9e, 0xe1, 0x29, 0x9c, 0x03,
0xd7, 0x02, 0x04, 0x03, 0x12, 0x80, 0x1d, 0x0e,
0x43, 0x06, 0x01, 0x90, 0x04, 0x00, 0x00, 0x00,
0x01, 0x01, 0x00, 0x03, 0x00, 0xe2, 0x03, 0x23,
0x01, 0x0a, 0xe0, 0x29, 0x9c, 0x03, 0xde, 0x02,
0x02, 0x03, 0x0d, 0x0e, 0x43, 0x06, 0x01, 0x92,
0x04, 0x00, 0x00, 0x00, 0x01, 0x02, 0x00, 0x07,
0x00, 0xd4, 0x03, 0x1c, 0x01, 0xd6, 0x03, 0x1d,
0x01, 0xc0, 0xe0, 0xb4, 0xe1, 0xbc, 0xfe, 0x28,
0x9c, 0x03, 0xe2, 0x02, 0x03, 0x03, 0x0d, 0x0d,
0x0e, 0x43, 0x06, 0x01, 0x94, 0x04, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x29, 0x9c,
0x03, 0xe8, 0x02, 0x01, 0x03, 0x0e, 0x43, 0x06,
0x01, 0x96, 0x04, 0x00, 0x00, 0x00, 0x01, 0x01,
0x00, 0x03, 0x00, 0xd6, 0x03, 0x1d, 0x01, 0xb4,
0xe0, 0x29, 0x9c, 0x03, 0xeb, 0x02, 0x02, 0x03,
0x0d, 0x0e, 0x43, 0x06, 0x01, 0x98, 0x04, 0x00,
0x00, 0x00, 0x01, 0x02, 0x00, 0x04, 0x00, 0xd6,
0x03, 0x1d, 0x01, 0xd4, 0x03, 0x1c, 0x01, 0xdd,
0xe8, 0xe0, 0x29, 0x9c, 0x03, 0xef, 0x02, 0x02,
0x03, 0x12, 0x0e, 0x43, 0x06, 0x01, 0x9a, 0x04,
0x00, 0x00, 0x00, 0x04, 0x03, 0x00, 0x1d, 0x00,
0xd6, 0x03, 0x1d, 0x01, 0xd4, 0x03, 0x1c, 0x01,
0x82, 0x04, 0x33, 0x01, 0xdc, 0xdd, 0xe8, 0xa4,
0xe9, 0x17, 0xdc, 0x90, 0xe0, 0xde, 0xdd, 0x42,
0xd3, 0x01, 0x00, 0x00, 0xdc, 0x24, 0x01, 0x00,
0xee, 0xe9, 0x06, 0xdc, 0x90, 0xe0, 0xeb, 0xee,
0x29, 0x9c, 0x03, 0xf3, 0x02, 0x05, 0x03, 0x21,
0x12, 0x49, 0x1d, 0x0e, 0x43, 0x06, 0x01, 0x9c,
0x04, 0x00, 0x00, 0x00, 0x04, 0x03, 0x00, 0x1c,
0x00, 0xd6, 0x03, 0x1d, 0x01, 0x82, 0x04, 0x33,
0x01, 0xd4, 0x03, 0x1c, 0x01, 0xdc, 0xb4, 0xa6,
0xe9, 0x17, 0xdc, 0x8f, 0xe0, 0xdd, 0xde, 0x42,
0xd3, 0x01, 0x00, 0x00, 0xdc, 0x24, 0x01, 0x00,
0xee, 0xe9, 0x06, 0xdc, 0x8f, 0xe0, 0xeb, 0xee,
0x29, 0x9c, 0x03, 0xfb, 0x02, 0x05, 0x03, 0x1c,
0x12, 0x49, 0x1d, 0x0e, 0x43, 0x06, 0x01, 0x9e,
0x04, 0x01, 0x00, 0x01, 0x04, 0x02, 0x00, 0x35,
0x01, 0xa8, 0x07, 0x00, 0x01, 0x00, 0xd4, 0x03,
0x1c, 0x01, 0xfe, 0x03, 0x31, 0x01, 0xd0, 0xdc,
0xe8, 0xa4, 0xe9, 0x15, 0xdd, 0xdc, 0x42, 0xd3,
0x01, 0x00, 0x00, 0xd0, 0x24, 0x01, 0x00, 0xee,
0x97, 0xe9, 0x06, 0xd0, 0x90, 0xd4, 0xeb, 0xe7,
0xd0, 0xdc, 0xe8, 0xa4, 0xe9, 0x14, 0xdd, 0xdc,
0x42, 0xd3, 0x01, 0x00, 0x00, 0xd0, 0x24, 0x01,
0x00, 0xee, 0xe9, 0x06, 0xd0, 0x90, 0xd4, 0xeb,
0xe8, 0xd0, 0x28, 0x9c, 0x03, 0x83, 0x03, 0x05,
0x03, 0x6c, 0x1c, 0x67, 0x1c, 0x0e, 0x43, 0x06,
0x01, 0xa0, 0x04, 0x01, 0x00, 0x01, 0x05, 0x02,
0x00, 0x37, 0x01, 0xa8, 0x07, 0x00, 0x01, 0x00,
0xfe, 0x03, 0x31, 0x01, 0xd4, 0x03, 0x1c, 0x01,
0xd0, 0xb4, 0xa6, 0xe9, 0x17, 0xdc, 0xdd, 0x42,
0xd3, 0x01, 0x00, 0x00, 0xd0, 0xb5, 0x9f, 0x24,
0x01, 0x00, 0xee, 0x97, 0xe9, 0x06, 0xd0, 0x8f,
0xd4, 0xeb, 0xe6, 0xd0, 0xb4, 0xa6, 0xe9, 0x16,
0xdc, 0xdd, 0x42, 0xd3, 0x01, 0x00, 0x00, 0xd0,
0xb5, 0x9f, 0x24, 0x01, 0x00, 0xee, 0xe9, 0x06,
0xd0, 0x8f, 0xd4, 0xeb, 0xe7, 0xd0, 0x28, 0x9c,
0x03, 0x8b, 0x03, 0x05, 0x03, 0x71, 0x1c, 0x6c,
0x1c, 0x0e, 0x43, 0x06, 0x01, 0xa2, 0x04, 0x00,
0x00, 0x00, 0x02, 0x02, 0x00, 0x05, 0x00, 0xd6,
0x03, 0x1d, 0x01, 0x9e, 0x04, 0x41, 0x01, 0xdd,
0xdc, 0xee, 0xe0, 0x29, 0x9c, 0x03, 0x93, 0x03,
0x02, 0x03, 0x17, 0x0e, 0x43, 0x06, 0x01, 0xa4,
0x04, 0x00, 0x00, 0x00, 0x02, 0x02, 0x00, 0x05,
0x00, 0xd6, 0x03, 0x1d, 0x01, 0xa0, 0x04, 0x42,
0x01, 0xdd, 0xdc, 0xee, 0xe0, 0x29, 0x9c, 0x03,
0x97, 0x03, 0x02, 0x03, 0x17, 0x0e, 0x43, 0x06,
0x01, 0xa6, 0x04, 0x00, 0x00, 0x00, 0x03, 0x04,
0x00, 0x13, 0x00, 0xa2, 0x03, 0x00, 0x0c, 0xf0,
0x03, 0x2a, 0x01, 0xa8, 0x04, 0x46, 0x01, 0xd4,
0x03, 0x1c, 0x01, 0x65, 0x00, 0x00, 0x42, 0xc4,
0x01, 0x00, 0x00, 0xdd, 0x24, 0x01, 0x00, 0x0e,
0xde, 0xdf, 0xee, 0x0e, 0xb3, 0x28, 0x9c, 0x03,
0x9b, 0x03, 0x03, 0x03, 0x44, 0x17, 0x0e, 0x43,
0x06, 0x01, 0xa8, 0x04, 0x01, 0x00, 0x01, 0x03,
0x02, 0x00, 0x12, 0x01, 0xec, 0x06, 0x00, 0x01,
0x00, 0xb4, 0x03, 0x0c, 0x01, 0xdc, 0x03, 0x20,
0x01, 0xd0, 0xe9, 0x0c, 0xdc, 0x42, 0xd5, 0x01,
0x00, 0x00, 0xd0, 0x24, 0x01, 0x00, 0x0e, 0xdc,
0xe8, 0xe1, 0x29, 0x9c, 0x03, 0xa1, 0x03, 0x04,
0x03, 0x12, 0x3b, 0x12, 0x0e, 0x43, 0x06, 0x01,
0xaa, 0x04, 0x00, 0x00, 0x00, 0x03, 0x04, 0x00,
0x20, 0x00, 0xdc, 0x03, 0x20, 0x01, 0xb4, 0x03,
0x0c, 0x01, 0xd4, 0x03, 0x1c, 0x01, 0xd6, 0x03,
0x1d, 0x01, 0xdc, 0xb4, 0xa6, 0xe9, 0x1b, 0xdc,
0xdd, 0xe8, 0xaa, 0xe9, 0x0c, 0xdd, 0x42, 0xd5,
0x01, 0x00, 0x00, 0xde, 0x24, 0x01, 0x00, 0x0e,
0xdc, 0x8f, 0xe0, 0xdd, 0xdc, 0x47, 0xe6, 0xe8,
0xe3, 0x29, 0x9c, 0x03, 0xa8, 0x03, 0x07, 0x03,
0x1c, 0x21, 0x3b, 0x12, 0x17, 0x0e, 0x0e, 0x43,
0x06, 0x01, 0xac, 0x04, 0x00, 0x00, 0x00, 0x03,
0x04, 0x00, 0x12, 0x00, 0xdc, 0x03, 0x20, 0x01,
0xb4, 0x03, 0x0c, 0x01, 0xd4, 0x03, 0x1c, 0x01,
0xd6, 0x03, 0x1d, 0x01, 0xdc, 0xdd, 0xe8, 0xb5,
0x9f, 0xa4, 0xe9, 0x0a, 0xdc, 0x90, 0xe0, 0xdd,
0xdc, 0x47, 0xe6, 0xe8, 0xe3, 0x29, 0x9c, 0x03,
0xb3, 0x03, 0x05, 0x03, 0x2b, 0x12, 0x17, 0x0e,
0x0e, 0x43, 0x06, 0x01, 0xae, 0x04, 0x01, 0x03,
0x01, 0x05, 0x04, 0x00, 0x3d, 0x04, 0xac, 0x07,
0x00, 0x01, 0x00, 0xa8, 0x07, 0x00, 0x00, 0x00,
0xd8, 0x06, 0x00, 0x01, 0x00, 0xac, 0x01, 0x00,
0x02, 0x00, 0xd6, 0x03, 0x1d, 0x01, 0xb4, 0x03,
0x0c, 0x01, 0xdc, 0x03, 0x20, 0x01, 0xd4, 0x03,
0x1c, 0x01, 0xdc, 0xc8, 0xb5, 0xc9, 0xc5, 0xdd,
0xe8, 0xa5, 0xe9, 0x33, 0xdd, 0xe8, 0xc5, 0xd0,
0x9b, 0x9e, 0xde, 0x9e, 0xdd, 0xe8, 0x9d, 0xca,
0xdd, 0xc6, 0x47, 0x42, 0xc5, 0x01, 0x00, 0x00,
0xb4, 0xc4, 0x24, 0x02, 0x00, 0xdf, 0x42, 0xc5,
0x01, 0x00, 0x00, 0xb4, 0xc4, 0x24, 0x02, 0x00,
0xaa, 0xe9, 0x08, 0xc6, 0xe2, 0xdd, 0xc6, 0x47,
0xe3, 0x29, 0x94, 0x01, 0xeb, 0xc9, 0x29, 0x9c,
0x03, 0xbb, 0x03, 0x09, 0x03, 0x0d, 0x2b, 0x3f,
0x8a, 0x0d, 0x18, 0x08, 0x17, 0x0e, 0x43, 0x06,
0x01, 0xb0, 0x04, 0x00, 0x00, 0x00, 0x02, 0x01,
0x00, 0x05, 0x00, 0xae, 0x04, 0x49, 0x01, 0xdc,
0xb3, 0x23, 0x01, 0x00, 0x9c, 0x03, 0xc7, 0x03,
0x01, 0x03, 0x0e, 0x43, 0x06, 0x01, 0xb2, 0x04,
0x00, 0x00, 0x00, 0x02, 0x01, 0x00, 0x05, 0x00,
0xae, 0x04, 0x49, 0x01, 0xdc, 0xb5, 0x23, 0x01,
0x00, 0x9c, 0x03, 0xcb, 0x03, 0x01, 0x03, 0x0e,
0x43, 0x06, 0x01, 0xb4, 0x04, 0x01, 0x02, 0x01,
0x04, 0x05, 0x00, 0x66, 0x03, 0xac, 0x07, 0x00,
0x01, 0x00, 0x80, 0x07, 0x00, 0x00, 0x00, 0xae,
0x07, 0x00, 0x01, 0x00, 0xd6, 0x03, 0x1d, 0x01,
0x82, 0x04, 0x33, 0x01, 0xd4, 0x03, 0x1c, 0x01,
0xe0, 0x03, 0x22, 0x01, 0xc4, 0x04, 0x54, 0x01,
0xdc, 0xc8, 0xd0, 0xb4, 0xa4, 0xe9, 0x15, 0x93,
0x00, 0xdd, 0xde, 0x42, 0xd3, 0x01, 0x00, 0x00,
0xc4, 0x24, 0x01, 0x00, 0xee, 0xe9, 0x05, 0x93,
0x00, 0xeb, 0xef, 0xc4, 0xb5, 0x9e, 0xc9, 0xdd,
0xde, 0x42, 0xd3, 0x01, 0x00, 0x00, 0xc5, 0x24,
0x01, 0x00, 0xee, 0xe9, 0x05, 0x94, 0x01, 0xeb,
0xef, 0xc4, 0xb4, 0xa7, 0xe9, 0x30, 0xc4, 0xde,
0xe8, 0xa4, 0xe9, 0x2a, 0xdf, 0x5e, 0x04, 0x00,
0xac, 0xe9, 0x0a, 0x5e, 0x04, 0x00, 0xc4, 0xc5,
0xd0, 0xf0, 0x0e, 0x29, 0xde, 0x42, 0xc5, 0x01,
0x00, 0x00, 0xb4, 0xc4, 0x24, 0x02, 0x00, 0xde,
0x42, 0xc5, 0x01, 0x00, 0x00, 0xc5, 0x24, 0x01,
0x00, 0x9e, 0xe2, 0xc4, 0xe0, 0x29, 0x9c, 0x03,
0xcf, 0x03, 0x0f, 0x05, 0x0d, 0x1c, 0x0d, 0x49,
0x18, 0x17, 0x49, 0x18, 0x3a, 0x26, 0x2b, 0x08,
0x76, 0x0f, 0x0e, 0x43, 0x06, 0x01, 0xb6, 0x04,
0x00, 0x00, 0x00, 0x02, 0x01, 0x00, 0x04, 0x00,
0xb4, 0x04, 0x4c, 0x01, 0xdc, 0xb5, 0xee, 0x29,
0x9c, 0x03, 0xe6, 0x03, 0x02, 0x03, 0x12, 0x0e,
0x43, 0x06, 0x01, 0xb8, 0x04, 0x00, 0x00, 0x00,
0x03, 0x04, 0x00, 0x1b, 0x00, 0xd4, 0x03, 0x1c,
0x01, 0xa2, 0x03, 0x00, 0x0c, 0xf0, 0x03, 0x2a,
0x01, 0xb4, 0x04, 0x4c, 0x01, 0xdc, 0xe8, 0xb4,
0xaa, 0xe9, 0x11, 0x65, 0x01, 0x00, 0x42, 0xc4,
0x01, 0x00, 0x00, 0xde, 0x24, 0x01, 0x00, 0x0e,
0xbc, 0xfd, 0x28, 0xdf, 0xb5, 0xee, 0x0e, 0x29,
0x9c, 0x03, 0xea, 0x03, 0x06, 0x03, 0x21, 0x44,
0x0d, 0x08, 0x18, 0x0e, 0x43, 0x06, 0x01, 0xba,
0x04, 0x00, 0x00, 0x00, 0x02, 0x01, 0x00, 0x04,
0x00, 0xb4, 0x04, 0x4c, 0x01, 0xdc, 0xb3, 0xee,
0x29, 0x9c, 0x03, 0xf3, 0x03, 0x02, 0x03, 0x12,
0x0e, 0x43, 0x06, 0x01, 0xbc, 0x04, 0x00, 0x01,
0x00, 0x06, 0x02, 0x00, 0x51, 0x01, 0xa8, 0x07,
0x00, 0x00, 0x00, 0xd6, 0x03, 0x1d, 0x01, 0xd4,
0x03, 0x1c, 0x01, 0xdc, 0xc8, 0xdd, 0xe8, 0xb5,
0xa6, 0xe9, 0x49, 0xc4, 0xb4, 0xa6, 0xe9, 0x44,
0xc4, 0xdd, 0xe8, 0xaa, 0xe9, 0x03, 0x93, 0x00,
0xdd, 0x42, 0xc5, 0x01, 0x00, 0x00, 0xb4, 0xc4,
0xb5, 0x9f, 0x24, 0x02, 0x00, 0xdd, 0x42, 0xc5,
0x01, 0x00, 0x00, 0xc4, 0xc4, 0xb5, 0x9e, 0x24,
0x02, 0x00, 0x9e, 0xdd, 0x42, 0xc5, 0x01, 0x00,
0x00, 0xc4, 0xb5, 0x9f, 0xc4, 0x24, 0x02, 0x00,
0x9e, 0xdd, 0x42, 0xc5, 0x01, 0x00, 0x00, 0xc4,
0xb5, 0x9e, 0x24, 0x01, 0x00, 0x9e, 0xe1, 0xc4,
0xb5, 0x9e, 0xe0, 0x29, 0x9c, 0x03, 0xf7, 0x03,
0x08, 0x03, 0x0d, 0x3a, 0x21, 0x0d, 0x8a, 0x8f,
0x18, 0x0e, 0x43, 0x06, 0x01, 0xbe, 0x04, 0x00,
0x04, 0x00, 0x05, 0x04, 0x00, 0x57, 0x04, 0xb0,
0x07, 0x00, 0x00, 0x00, 0xb2, 0x07, 0x00, 0x01,
0x00, 0xb4, 0x07, 0x00, 0x02, 0x00, 0xb6, 0x07,
0x00, 0x03, 0x00, 0xa0, 0x04, 0x42, 0x01, 0xd6,
0x03, 0x1d, 0x01, 0x9e, 0x04, 0x41, 0x01, 0xd4,
0x03, 0x1c, 0x01, 0xdc, 0xdd, 0xee, 0xc8, 0xde,
0xc4, 0xee, 0xc9, 0xde, 0xdd, 0xee, 0xca, 0xdc,
0xc6, 0xee, 0xcb, 0xc4, 0xc5, 0xa4, 0xe9, 0x42,
0xc5, 0xdd, 0xa5, 0xe9, 0x3d, 0xdd, 0xc7, 0xa5,
0xe9, 0x38, 0xc7, 0xc6, 0xa4, 0xe9, 0x33, 0xdf,
0x42, 0xc5, 0x01, 0x00, 0x00, 0xb4, 0xc4, 0x24,
0x02, 0x00, 0xdf, 0x42, 0xc5, 0x01, 0x00, 0x00,
0xc7, 0xc6, 0x24, 0x02, 0x00, 0x9e, 0xdf, 0x42,
0xc5, 0x01, 0x00, 0x00, 0xc5, 0xc7, 0x24, 0x02,
0x00, 0x9e, 0xdf, 0x42, 0xc5, 0x01, 0x00, 0x00,
0xc4, 0xc5, 0x24, 0x02, 0x00, 0x9e, 0xe3, 0xc6,
0xe1, 0x29, 0x9c, 0x03, 0x82, 0x04, 0x09, 0x03,
0x17, 0x17, 0x17, 0x18, 0x67, 0x76, 0x80, 0x0e,
0x0e, 0x43, 0x06, 0x01, 0xc0, 0x04, 0x00, 0x01,
0x00, 0x05, 0x03, 0x00, 0x30, 0x01, 0xae, 0x07,
0x00, 0x00, 0x00, 0x9e, 0x04, 0x41, 0x01, 0xd6,
0x03, 0x1d, 0x01, 0xd4, 0x03, 0x1c, 0x01, 0xdc,
0xdd, 0xee, 0xc8, 0xde, 0x42, 0xc5, 0x01, 0x00,
0x00, 0xb4, 0xdd, 0x24, 0x02, 0x00, 0xde, 0x42,
0xc5, 0x01, 0x00, 0x00, 0xdd, 0xc4, 0x24, 0x02,
0x00, 0x42, 0xdc, 0x01, 0x00, 0x00, 0x24, 0x00,
0x00, 0x9e, 0xde, 0x42, 0xc5, 0x01, 0x00, 0x00,
0xc4, 0x24, 0x01, 0x00, 0x9e, 0xe2, 0x29, 0x9c,
0x03, 0x8f, 0x04, 0x05, 0x03, 0x17, 0x3a, 0x67,
0x3f, 0x0e, 0x43, 0x06, 0x01, 0xc2, 0x04, 0x00,
0x01, 0x00, 0x05, 0x03, 0x00, 0x30, 0x01, 0xae,
0x07, 0x00, 0x00, 0x00, 0x9e, 0x04, 0x41, 0x01,
0xd6, 0x03, 0x1d, 0x01, 0xd4, 0x03, 0x1c, 0x01,
0xdc, 0xdd, 0xee, 0xc8, 0xde, 0x42, 0xc5, 0x01,
0x00, 0x00, 0xb4, 0xdd, 0x24, 0x02, 0x00, 0xde,
0x42, 0xc5, 0x01, 0x00, 0x00, 0xdd, 0xc4, 0x24,
0x02, 0x00, 0x42, 0xdd, 0x01, 0x00, 0x00, 0x24,
0x00, 0x00, 0x9e, 0xde, 0x42, 0xc5, 0x01, 0x00,
0x00, 0xc4, 0x24, 0x01, 0x00, 0x9e, 0xe2, 0x29,
0x9c, 0x03, 0x96, 0x04, 0x05, 0x03, 0x17, 0x3a,
0x67, 0x3f, 0x0e, 0x43, 0x06, 0x01, 0xc4, 0x04,
0x03, 0x01, 0x03, 0x04, 0x06, 0x00, 0x5e, 0x04,
0x80, 0x07, 0x00, 0x01, 0x00, 0xae, 0x07, 0x00,
0x01, 0x00, 0xac, 0x07, 0x00, 0x01, 0x00, 0xbc,
0x07, 0x00, 0x00, 0x00, 0xd4, 0x03, 0x1c, 0x01,
0xe0, 0x03, 0x22, 0x01, 0xc4, 0x04, 0x54, 0x01,
0xb6, 0x03, 0x0d, 0x01, 0xd6, 0x03, 0x1d, 0x01,
0xde, 0x03, 0x21, 0x01, 0xdc, 0x42, 0xc5, 0x01,
0x00, 0x00, 0xd0, 0xd1, 0x24, 0x02, 0x00, 0xc8,
0xdd, 0xde, 0xad, 0xe9, 0x05, 0xc4, 0xe3, 0xeb,
0x10, 0xd2, 0xb4, 0xa4, 0xe9, 0x07, 0xc4, 0xdf,
0x9e, 0xe3, 0xeb, 0x05, 0xdf, 0xc4, 0x9e, 0xe3,
0xdc, 0x42, 0xc5, 0x01, 0x00, 0x00, 0xb4, 0xd0,
0x24, 0x02, 0x00, 0xdc, 0x42, 0xc5, 0x01, 0x00,
0x00, 0xd1, 0x24, 0x01, 0x00, 0x9e, 0xe0, 0x5e,
0x04, 0x00, 0xd1, 0xa6, 0xe9, 0x0d, 0x5e, 0x04,
0x00, 0xd1, 0xd0, 0x9f, 0x9f, 0x5f, 0x04, 0x00,
0xeb, 0x0c, 0x5e, 0x04, 0x00, 0xd0, 0xa6, 0xe9,
0x05, 0xd0, 0x5f, 0x04, 0x00, 0xde, 0x5f, 0x05,
0x00, 0x29, 0x9c, 0x03, 0x9d, 0x04, 0x0d, 0x03,
0x3f, 0x1c, 0x17, 0x1c, 0x22, 0x18, 0x76, 0x26,
0x3f, 0x26, 0x17, 0x17, 0x0e, 0x43, 0x06, 0x01,
0xc6, 0x04, 0x00, 0x00, 0x00, 0x04, 0x03, 0x00,
0x07, 0x00, 0xc4, 0x04, 0x54, 0x01, 0xd6, 0x03,
0x1d, 0x01, 0xd4, 0x03, 0x1c, 0x01, 0xdc, 0xdd,
0xde, 0xe8, 0xb5, 0xf0, 0x29, 0x9c, 0x03, 0xae,
0x04, 0x02, 0x03, 0x21, 0x0e, 0x43, 0x06, 0x01,
0xc8, 0x04, 0x00, 0x00, 0x00, 0x04, 0x02, 0x00,
0x06, 0x00, 0xc4, 0x04, 0x54, 0x01, 0xd6, 0x03,
0x1d, 0x01, 0xdc, 0xb4, 0xdd, 0xb3, 0xf0, 0x29,
0x9c, 0x03, 0xb2, 0x04, 0x02, 0x03, 0x1c, 0x0e,
0x43, 0x06, 0x01, 0xca, 0x04, 0x00, 0x00, 0x00,
0x04, 0x03, 0x00, 0x08, 0x00, 0xc4, 0x04, 0x54,
0x01, 0xd6, 0x03, 0x1d, 0x01, 0x9e, 0x04, 0x41,
0x01, 0xdc, 0xdd, 0xde, 0xdd, 0xee, 0xb5, 0xf0,
0x29, 0x9c, 0x03, 0xb6, 0x04, 0x02, 0x03, 0x26,
0x0e, 0x43, 0x06, 0x01, 0xcc, 0x04, 0x00, 0x00,
0x00, 0x04, 0x03, 0x00, 0x08, 0x00, 0xc4, 0x04,
0x54, 0x01, 0xa0, 0x04, 0x42, 0x01, 0xd6, 0x03,
0x1d, 0x01, 0xdc, 0xdd, 0xde, 0xee, 0xde, 0xb3,
0xf0, 0x29, 0x9c, 0x03, 0xba, 0x04, 0x02, 0x03,
0x26, 0x0e, 0x43, 0x06, 0x01, 0xce, 0x04, 0x00,
0x00, 0x00, 0x02, 0x02, 0x00, 0x04, 0x00, 0x8e,
0x04, 0x39, 0x01, 0xb6, 0x03, 0x0d, 0x01, 0xdc,
0xdd, 0xee, 0x29, 0x9c, 0x03, 0xbe, 0x04, 0x02,
0x03, 0x12, 0x0e, 0x43, 0x06, 0x01, 0xd0, 0x04,
0x00, 0x00, 0x00, 0x04, 0x05, 0x00, 0x3b, 0x00,
0xe0, 0x03, 0x22, 0x01, 0xd0, 0x04, 0x5a, 0x01,
0xa2, 0x03, 0x00, 0x0c, 0xf0, 0x03, 0x2a, 0x01,
0xe6, 0x04, 0x65, 0x01, 0xdc, 0xdd, 0xac, 0xe9,
0x1c, 0x65, 0x02, 0x00, 0x42, 0xc4, 0x01, 0x00,
0x00, 0xdf, 0x24, 0x01, 0x00, 0x0e, 0x65, 0x02,
0x00, 0x42, 0xdf, 0x01, 0x00, 0x00, 0xb4, 0x24,
0x01, 0x00, 0x0e, 0x29, 0x65, 0x02, 0x00, 0x42,
0xc4, 0x01, 0x00, 0x00, 0xdf, 0x04, 0xe0, 0x01,
0x00, 0x00, 0x9e, 0xdf, 0x9e, 0x24, 0x01, 0x00,
0x0e, 0x5e, 0x04, 0x00, 0xed, 0x0e, 0x29, 0x9c,
0x03, 0xc2, 0x04, 0x07, 0x03, 0x1c, 0x44, 0x44,
0x08, 0x6c, 0x1d, 0x0e, 0x43, 0x06, 0x01, 0xd2,
0x04, 0x00, 0x00, 0x00, 0x01, 0x02, 0x00, 0x05,
0x00, 0xd4, 0x03, 0x1c, 0x01, 0xd6, 0x03, 0x1d,
0x01, 0xc0, 0xe0, 0xb4, 0xe1, 0x29, 0x9c, 0x03,
0xcc, 0x04, 0x03, 0x03, 0x0d, 0x0d, 0x0e, 0x43,
0x06, 0x01, 0xd4, 0x04, 0x02, 0x01, 0x02, 0x04,
0x01, 0x00, 0x1d, 0x03, 0xc2, 0x07, 0x00, 0x01,
0x00, 0xa8, 0x07, 0x00, 0x01, 0x00, 0xbc, 0x07,
0x00, 0x00, 0x00, 0xfe, 0x03, 0x31, 0x01, 0xc0,
0xc8, 0xd1, 0xb4, 0xa6, 0xe9, 0x15, 0xdc, 0xd0,
0xd1, 0xb5, 0x9f, 0x47, 0xee, 0xe9, 0x0c, 0xd1,
0x8f, 0xd5, 0xd0, 0xd1, 0x47, 0xc4, 0x9e, 0xc8,
0xeb, 0xe8, 0xc4, 0x28, 0x9c, 0x03, 0xd1, 0x04,
0x06, 0x03, 0x0d, 0x49, 0x12, 0x21, 0x0d, 0x0e,
0x43, 0x06, 0x01, 0xd6, 0x04, 0x02, 0x06, 0x02,
0x05, 0x7c, 0x02, 0x87, 0x02, 0x08, 0xc2, 0x07,
0x00, 0x01, 0x00, 0xa8, 0x07, 0x00, 0x01, 0x00,
0xc4, 0x07, 0x00, 0x00, 0x00, 0xc6, 0x07, 0x00,
0x01, 0x00, 0xde, 0x06, 0x00, 0x02, 0x00, 0x10,
0x00, 0x01, 0x00, 0xe0, 0x01, 0x00, 0x01, 0x00,
0x9a, 0x01, 0x00, 0x01, 0x00, 0xa4, 0x03, 0x00,
0x03, 0x96, 0x02, 0x00, 0x01, 0x9e, 0x02, 0x01,
0x01, 0x98, 0x02, 0x02, 0x01, 0xaa, 0x02, 0x03,
0x01, 0xa6, 0x02, 0x04, 0x01, 0xa6, 0x03, 0x05,
0x01, 0xa8, 0x03, 0x06, 0x01, 0xaa, 0x03, 0x07,
0x01, 0xac, 0x03, 0x08, 0x01, 0xae, 0x03, 0x09,
0x01, 0xb0, 0x03, 0x0a, 0x01, 0xb2, 0x03, 0x0b,
0x01, 0xb4, 0x03, 0x0c, 0x01, 0xb6, 0x03, 0x0d,
0x01, 0xb8, 0x03, 0x0e, 0x01, 0xba, 0x03, 0x0f,
0x01, 0xbc, 0x03, 0x10, 0x01, 0xbe, 0x03, 0x11,
0x01, 0xc0, 0x03, 0x12, 0x01, 0xc2, 0x03, 0x13,
0x01, 0xc4, 0x03, 0x14, 0x01, 0xc6, 0x03, 0x15,
0x01, 0xc8, 0x03, 0x16, 0x01, 0xca, 0x03, 0x17,
0x01, 0xcc, 0x03, 0x18, 0x01, 0xce, 0x03, 0x19,
0x01, 0xd0, 0x03, 0x1a, 0x01, 0xd2, 0x03, 0x1b,
0x01, 0xd4, 0x03, 0x1c, 0x01, 0xd6, 0x03, 0x1d,
0x01, 0xd8, 0x03, 0x1e, 0x01, 0xda, 0x03, 0x1f,
0x01, 0xdc, 0x03, 0x20, 0x01, 0xde, 0x03, 0x21,
0x01, 0xe0, 0x03, 0x22, 0x01, 0xe2, 0x03, 0x23,
0x01, 0xe4, 0x03, 0x24, 0x01, 0xe6, 0x03, 0x25,
0x01, 0xe8, 0x03, 0x26, 0x01, 0xea, 0x03, 0x27,
0x01, 0xec, 0x03, 0x28, 0x01, 0xee, 0x03, 0x29,
0x01, 0xf0, 0x03, 0x2a, 0x01, 0xf2, 0x03, 0x2b,
0x01, 0xf4, 0x03, 0x2c, 0x01, 0xf6, 0x03, 0x2d,
0x01, 0xf8, 0x03, 0x2e, 0x01, 0xfa, 0x03, 0x2f,
0x01, 0xfc, 0x03, 0x30, 0x01, 0xfe, 0x03, 0x31,
0x01, 0x80, 0x04, 0x32, 0x01, 0x82, 0x04, 0x33,
0x01, 0x84, 0x04, 0x34, 0x01, 0x86, 0x04, 0x35,
0x01, 0x88, 0x04, 0x36, 0x01, 0x8a, 0x04, 0x37,
0x01, 0x8c, 0x04, 0x38, 0x01, 0x8e, 0x04, 0x39,
0x01, 0x90, 0x04, 0x3a, 0x01, 0x92, 0x04, 0x3b,
0x01, 0x94, 0x04, 0x3c, 0x01, 0x96, 0x04, 0x3d,
0x01, 0x98, 0x04, 0x3e, 0x01, 0x9a, 0x04, 0x3f,
0x01, 0x9c, 0x04, 0x40, 0x01, 0x9e, 0x04, 0x41,
0x01, 0xa0, 0x04, 0x42, 0x01, 0xa2, 0x04, 0x43,
0x01, 0xa4, 0x04, 0x44, 0x01, 0xa6, 0x04, 0x45,
0x01, 0xa8, 0x04, 0x46, 0x01, 0xaa, 0x04, 0x47,
0x01, 0xac, 0x04, 0x48, 0x01, 0xae, 0x04, 0x49,
0x01, 0xb0, 0x04, 0x4a, 0x01, 0xb2, 0x04, 0x4b,
0x01, 0xb4, 0x04, 0x4c, 0x01, 0xb6, 0x04, 0x4d,
0x01, 0xb8, 0x04, 0x4e, 0x01, 0xba, 0x04, 0x4f,
0x01, 0xbc, 0x04, 0x50, 0x01, 0xbe, 0x04, 0x51,
0x01, 0xc0, 0x04, 0x52, 0x01, 0xc2, 0x04, 0x53,
0x01, 0xc4, 0x04, 0x54, 0x01, 0xc6, 0x04, 0x55,
0x01, 0xc8, 0x04, 0x56, 0x01, 0xca, 0x04, 0x57,
0x01, 0xcc, 0x04, 0x58, 0x01, 0xce, 0x04, 0x59,
0x01, 0xd0, 0x04, 0x5a, 0x01, 0xd2, 0x04, 0x5b,
0x01, 0xd4, 0x04, 0x5c, 0x01, 0xd6, 0x04, 0x5d,
0x01, 0xd8, 0x04, 0x5e, 0x01, 0xda, 0x04, 0x5f,
0x01, 0xdc, 0x04, 0x60, 0x01, 0xde, 0x04, 0x61,
0x01, 0xe0, 0x04, 0x62, 0x01, 0xe2, 0x04, 0x63,
0x01, 0xe4, 0x04, 0x64, 0x01, 0xe6, 0x04, 0x65,
0x01, 0xe8, 0x04, 0x66, 0x01, 0xea, 0x04, 0x67,
0x01, 0xec, 0x04, 0x68, 0x01, 0xee, 0x04, 0x69,
0x01, 0xf0, 0x04, 0x6a, 0x01, 0xf2, 0x04, 0x6b,
0x01, 0xf4, 0x04, 0x6c, 0x01, 0xf6, 0x04, 0x6d,
0x01, 0xf8, 0x04, 0x6e, 0x01, 0xfa, 0x04, 0x6f,
0x01, 0xfc, 0x04, 0x70, 0x01, 0xfe, 0x04, 0x71,
0x01, 0x80, 0x05, 0x72, 0x01, 0x82, 0x05, 0x73,
0x01, 0x84, 0x05, 0x74, 0x01, 0x86, 0x05, 0x75,
0x01, 0x88, 0x05, 0x76, 0x01, 0x8a, 0x05, 0x77,
0x01, 0x9e, 0x03, 0x01, 0x0c, 0xa0, 0x03, 0x02,
0x0c, 0xa2, 0x03, 0x00, 0x0c, 0x0c, 0x03, 0xc2,
0x04, 0x08, 0xcb, 0x0c, 0x00, 0xc2, 0x05, 0xd1,
0xb4, 0xa5, 0x11, 0xea, 0x16, 0x0e, 0x04, 0xe4,
0x01, 0x00, 0x00, 0x42, 0xe5, 0x01, 0x00, 0x00,
0xd0, 0xd1, 0xb5, 0x9f, 0x47, 0x24, 0x01, 0x00,
0xb4, 0xa7, 0xe9, 0x03, 0xdc, 0x28, 0xd1, 0xb6,
0xa7, 0x69, 0xd9, 0x00, 0x00, 0x00, 0xd0, 0xd1,
0xb5, 0x9f, 0x47, 0x04, 0xe6, 0x01, 0x00, 0x00,
0xac, 0x69, 0xc9, 0x00, 0x00, 0x00, 0xd1, 0x8f,
0xd5, 0x0b, 0xc8, 0xd0, 0xd1, 0xb5, 0x9f, 0x47,
0xce, 0x11, 0x04, 0xe7, 0x01, 0x00, 0x00, 0xac,
0xea, 0x0a, 0x11, 0x04, 0xe8, 0x01, 0x00, 0x00,
0xac, 0xe9, 0x07, 0x04, 0xb2, 0x01, 0x00, 0x00,
0x28, 0x11, 0x04, 0xe9, 0x01, 0x00, 0x00, 0xac,
0xe9, 0x05, 0x26, 0x00, 0x00, 0x28, 0x11, 0x04,
0xea, 0x01, 0x00, 0x00, 0xac, 0xe9, 0x03, 0x0b,
0x28, 0x11, 0x04, 0xeb, 0x01, 0x00, 0x00, 0xac,
0xe9, 0x07, 0xbe, 0x00, 0xbe, 0x01, 0x33, 0x28,
0x5e, 0x32, 0x00, 0xc6, 0xee, 0xe9, 0x73, 0x5e,
0x5d, 0x00, 0xd0, 0xd1, 0xef, 0xc9, 0x04, 0x03,
0x00, 0x00, 0x00, 0x04, 0x02, 0x00, 0x00, 0x00,
0x04, 0x01, 0x00, 0x00, 0x00, 0x04, 0x08, 0x00,
0x00, 0x00, 0x26, 0x04, 0x00, 0x42, 0xec, 0x01,
0x00, 0x00, 0xc5, 0x24, 0x01, 0x00, 0x11, 0xea,
0x0b, 0x0e, 0x38, 0xed, 0x01, 0x00, 0x00, 0xc5,
0x8e, 0xee, 0x97, 0xe9, 0x0d, 0x38, 0x3a, 0x00,
0x00, 0x00, 0xc5, 0x31, 0x01, 0x00, 0x00, 0x00,
0x28, 0x5e, 0x5e, 0x00, 0xd0, 0xd1, 0xc5, 0xe8,
0x9f, 0xef, 0xcc, 0xf2, 0x11, 0xea, 0x04, 0x0e,
0xc4, 0xf1, 0xe9, 0x03, 0xc4, 0x28, 0xc4, 0xdc,
0xac, 0xe9, 0x13, 0xc4, 0xc5, 0x47, 0xf1, 0xe9,
0x0d, 0x38, 0x3a, 0x00, 0x00, 0x00, 0xc5, 0x31,
0x01, 0x00, 0x00, 0x00, 0x28, 0xc4, 0xc5, 0x47,
0x28, 0x0b, 0x28, 0x29, 0x9c, 0x03, 0xd9, 0x04,
0x1f, 0x36, 0x94, 0x0d, 0x7b, 0x12, 0x0d, 0x21,
0x30, 0x30, 0x21, 0x30, 0x17, 0x30, 0x0d, 0x30,
0x1c, 0x08, 0x26, 0x26, 0xee, 0x3f, 0x35, 0x30,
0x0d, 0x3a, 0x3a, 0x08, 0x12, 0x08, 0x09, 0x08,
0x07, 0x02, 0x20, 0x07, 0x34, 0x00, 0x01, 0x00,
0x13, 0x00, 0x00, 0x00, 0x08, 0x06, 0x00, 0x00,
0x00, 0x04, 0x07, 0xf5, 0xff, 0xff, 0xff, 0x0b,
0x00, 0x01, 0x20, 0x00, 0x0c, 0x00, 0x0a, 0x0e,
0x43, 0x06, 0x01, 0xd8, 0x04, 0x02, 0x0a, 0x02,
0x04, 0x03, 0x01, 0xe3, 0x01, 0x0c, 0xc2, 0x07,
0x00, 0x01, 0x00, 0xa8, 0x07, 0x00, 0x01, 0x00,
0xbc, 0x07, 0x00, 0x00, 0x00, 0xc4, 0x07, 0x00,
0x01, 0x00, 0xdc, 0x07, 0x00, 0x02, 0x00, 0xde,
0x07, 0x00, 0x03, 0x00, 0xd8, 0x06, 0x00, 0x04,
0x00, 0x84, 0x07, 0x00, 0x05, 0x00, 0xe0, 0x07,
0x00, 0x06, 0x00, 0xe2, 0x07, 0x00, 0x07, 0x00,
0xe4, 0x07, 0x00, 0x08, 0x00, 0xe6, 0x07, 0x08,
0x00, 0x41, 0xd4, 0x04, 0x5c, 0x01, 0xd6, 0x04,
0x5d, 0x01, 0x96, 0x02, 0x00, 0x01, 0xdc, 0xd0,
0xd1, 0xef, 0xc8, 0xdd, 0xd0, 0xd1, 0xc4, 0xe8,
0x9f, 0xef, 0xca, 0x26, 0x00, 0x00, 0xcb, 0xb4,
0xc2, 0x04, 0xc6, 0xc9, 0xc1, 0x04, 0xbc, 0x0a,
0xa4, 0xe9, 0x67, 0xc5, 0xf2, 0xea, 0x63, 0xc5,
0x06, 0xad, 0xe9, 0x5e, 0xde, 0x42, 0xf4, 0x01,
0x00, 0x00, 0xc5, 0x24, 0x01, 0x00, 0xc2, 0x07,
0xb4, 0xc2, 0x05, 0xc1, 0x05, 0xc1, 0x07, 0xe8,
0xa4, 0xe9, 0x38, 0xc1, 0x07, 0xc1, 0x05, 0x47,
0xc3, 0x08, 0x98, 0x04, 0x48, 0x00, 0x00, 0x00,
0xaa, 0xe9, 0x24, 0xc0, 0xc1, 0x08, 0x8e, 0x9e,
0xc1, 0x08, 0xab, 0xe9, 0x1a, 0xc1, 0x08, 0x42,
0xf5, 0x01, 0x00, 0x00, 0xc4, 0x24, 0x01, 0x00,
0xe9, 0x0d, 0xc7, 0x42, 0xd5, 0x01, 0x00, 0x00,
0xc1, 0x08, 0x24, 0x01, 0x00, 0x0e, 0x94, 0x05,
0xeb, 0xc2, 0xde, 0x42, 0x5e, 0x00, 0x00, 0x00,
0xc5, 0x24, 0x01, 0x00, 0xc9, 0x94, 0x04, 0xeb,
0x94, 0xc7, 0xe8, 0xb5, 0xa6, 0xe9, 0x46, 0xbf,
0x00, 0xc2, 0x09, 0xbf, 0x00, 0x0e, 0xc7, 0x42,
0xf6, 0x01, 0x00, 0x00, 0x62, 0x09, 0x00, 0x24,
0x01, 0x00, 0x0e, 0xb5, 0xc3, 0x05, 0xc2, 0x04,
0xc1, 0x04, 0xc7, 0xe8, 0xa4, 0xe9, 0x1e, 0xc7,
0xc1, 0x04, 0x47, 0xc7, 0xc1, 0x04, 0xb5, 0x9f,
0x47, 0xab, 0xe9, 0x0d, 0xc7, 0xc1, 0x05, 0x92,
0xc2, 0x05, 0x71, 0xc7, 0xc1, 0x04, 0x47, 0x49,
0x94, 0x04, 0xeb, 0xdd, 0xc7, 0xc1, 0x05, 0x43,
0x30, 0x00, 0x00, 0x00, 0x0b, 0xc7, 0x4c, 0xa9,
0x01, 0x00, 0x00, 0xc4, 0xe8, 0x4c, 0xd4, 0x01,
0x00, 0x00, 0xc6, 0x4c, 0xf7, 0x01, 0x00, 0x00,
0x28, 0x9c, 0x03, 0xfd, 0x04, 0x1b, 0x05, 0x1c,
0x2b, 0x00, 0x04, 0x08, 0x6c, 0x40, 0x3a, 0x26,
0xa3, 0x3f, 0x17, 0x3a, 0x17, 0x00, 0x0a, 0x1c,
0x12, 0x44, 0x3f, 0x44, 0x3f, 0x17, 0x00, 0x08,
0x08, 0x0e, 0x43, 0x06, 0x01, 0xe6, 0x07, 0x02,
0x00, 0x02, 0x03, 0x00, 0x00, 0x34, 0x02, 0xe4,
0x06, 0x00, 0x01, 0x00, 0xf8, 0x06, 0x00, 0x01,
0x00, 0xd0, 0xb4, 0x47, 0xd1, 0xb4, 0x47, 0xab,
0xe9, 0x1b, 0xd0, 0xb4, 0x47, 0x04, 0xb4, 0x01,
0x00, 0x00, 0xaa, 0xe9, 0x03, 0xb5, 0x28, 0xd1,
0xb4, 0x47, 0x04, 0xb4, 0x01, 0x00, 0x00, 0xaa,
0xe9, 0x03, 0xb3, 0x28, 0xd0, 0xd1, 0xa4, 0xe9,
0x03, 0xb3, 0x28, 0xd0, 0xd1, 0xa6, 0xe9, 0x04,
0xb5, 0x8e, 0x28, 0xb4, 0x28, 0x9c, 0x03, 0x92,
0x05, 0x0a, 0x03, 0x30, 0x3a, 0x0d, 0x3a, 0x0e,
0x1c, 0x0d, 0x1c, 0x12, 0x0e, 0x43, 0x06, 0x01,
0xda, 0x04, 0x00, 0x0d, 0x00, 0x07, 0x0b, 0x00,
0x8b, 0x03, 0x0d, 0xd2, 0x06, 0x00, 0x00, 0x00,
0xf0, 0x07, 0x00, 0x01, 0x00, 0xbc, 0x07, 0x00,
0x02, 0x00, 0xd8, 0x06, 0x00, 0x03, 0x00, 0x84,
0x07, 0x00, 0x04, 0x00, 0xee, 0x06, 0x00, 0x05,
0x00, 0xf2, 0x07, 0x00, 0x06, 0x00, 0xf4, 0x07,
0x00, 0x07, 0x00, 0xf6, 0x07, 0x00, 0x08, 0x00,
0xf8, 0x07, 0x00, 0x09, 0x00, 0xfa, 0x07, 0x00,
0x0a, 0x00, 0xfc, 0x07, 0x00, 0x0b, 0x00, 0xfe,
0x07, 0x00, 0x0c, 0x00, 0xd8, 0x04, 0x5e, 0x01,
0xd4, 0x03, 0x1c, 0x01, 0xd6, 0x03, 0x1d, 0x01,
0x8e, 0x04, 0x39, 0x01, 0xe0, 0x03, 0x22, 0x01,
0xda, 0x04, 0x5f, 0x01, 0xa6, 0x02, 0x04, 0x01,
0xec, 0x03, 0x28, 0x01, 0xa2, 0x03, 0x00, 0x0c,
0xf0, 0x03, 0x2a, 0x01, 0xe6, 0x04, 0x65, 0x01,
0xdc, 0xdd, 0xde, 0xef, 0xcd, 0x41, 0xa9, 0x01,
0x00, 0x00, 0xcc, 0xe8, 0xb4, 0xac, 0xe9, 0x02,
0x29, 0xc4, 0xb4, 0x47, 0xce, 0xe8, 0xc2, 0x05,
0xb5, 0xcb, 0xc7, 0xc4, 0xe8, 0xa4, 0xe9, 0x2a,
0xc4, 0xc7, 0x47, 0xc2, 0x06, 0xb4, 0xc2, 0x04,
0xc1, 0x04, 0xc1, 0x05, 0xa4, 0xe9, 0x17, 0xc1,
0x06, 0xc1, 0x04, 0x47, 0xc6, 0xc1, 0x04, 0x47,
0xad, 0xe9, 0x07, 0xc1, 0x04, 0xc2, 0x05, 0xeb,
0x05, 0x94, 0x04, 0xeb, 0xe4, 0x94, 0x03, 0xeb,
0xd2, 0xc5, 0x41, 0xd4, 0x01, 0x00, 0x00, 0xcb,
0xc7, 0xc1, 0x05, 0xa4, 0xe9, 0x0b, 0xdf, 0xc6,
0xc7, 0x47, 0xee, 0x0e, 0x94, 0x03, 0xeb, 0xf1,
0x5e, 0x04, 0x00, 0x5e, 0x05, 0x00, 0xac, 0xe9,
0x42, 0xc4, 0xe8, 0xb5, 0xaa, 0xe9, 0x3c, 0xc5,
0x41, 0xf7, 0x01, 0x00, 0x00, 0xc4, 0xb4, 0x47,
0x47, 0xc3, 0x0c, 0xf3, 0xe9, 0x1a, 0xdf, 0x04,
0x00, 0x02, 0x00, 0x00, 0xee, 0x0e, 0xc1, 0x0c,
0xe8, 0xb4, 0xaa, 0xe9, 0x1e, 0xdf, 0x04, 0x01,
0x02, 0x00, 0x00, 0xee, 0x0e, 0xeb, 0x14, 0xc1,
0x0c, 0x98, 0x04, 0x49, 0x00, 0x00, 0x00, 0xaa,
0xe9, 0x09, 0xdf, 0x04, 0xe6, 0x01, 0x00, 0x00,
0xee, 0x0e, 0x5e, 0x04, 0x00, 0x5e, 0x05, 0x00,
0xac, 0x69, 0xd8, 0x00, 0x00, 0x00, 0xc4, 0xe8,
0xb6, 0xa7, 0x69, 0xcf, 0x00, 0x00, 0x00, 0xb4,
0xc2, 0x07, 0xb4, 0xcb, 0xc7, 0xc4, 0xe8, 0xa4,
0xe9, 0x18, 0x5e, 0x06, 0x00, 0x42, 0x02, 0x02,
0x00, 0x00, 0xc1, 0x07, 0xc4, 0xc7, 0x47, 0xe8,
0x24, 0x02, 0x00, 0xc2, 0x07, 0x94, 0x03, 0xeb,
0xe4, 0xb6, 0x95, 0x07, 0x5e, 0x06, 0x00, 0x42,
0x02, 0x02, 0x00, 0x00, 0xb5, 0x5e, 0x06, 0x00,
0x42, 0x03, 0x02, 0x00, 0x00, 0x5e, 0x07, 0x00,
0xb5, 0x9e, 0xc1, 0x07, 0x9c, 0x24, 0x01, 0x00,
0x24, 0x02, 0x00, 0xc2, 0x09, 0x5e, 0x06, 0x00,
0x42, 0x04, 0x02, 0x00, 0x00, 0xc4, 0xe8, 0xc1,
0x09, 0x9c, 0x24, 0x01, 0x00, 0xc2, 0x0b, 0x65,
0x08, 0x00, 0x42, 0xc4, 0x01, 0x00, 0x00, 0x5e,
0x09, 0x00, 0x24, 0x01, 0x00, 0x0e, 0xb4, 0xc2,
0x0a, 0xc1, 0x0a, 0xc1, 0x0b, 0xa4, 0xe9, 0x56,
0xb4, 0xc2, 0x08, 0xc1, 0x08, 0xc1, 0x09, 0xa4,
0xe9, 0x39, 0xc1, 0x08, 0xc1, 0x0b, 0x9b, 0xc1,
0x0a, 0x9e, 0xcf, 0xc4, 0xe8, 0xa7, 0xea, 0x2b,
0xc4, 0xc7, 0x47, 0xca, 0xc1, 0x08, 0xc1, 0x09,
0xb5, 0x9f, 0xab, 0xe9, 0x0d, 0xc6, 0x42, 0x05,
0x02, 0x00, 0x00, 0xc1, 0x07, 0x24, 0x01, 0x00,
0xca, 0x65, 0x08, 0x00, 0x42, 0xc4, 0x01, 0x00,
0x00, 0xc6, 0x24, 0x01, 0x00, 0x0e, 0x94, 0x08,
0xeb, 0xc2, 0x65, 0x08, 0x00, 0x42, 0xc4, 0x01,
0x00, 0x00, 0x5e, 0x09, 0x00, 0x24, 0x01, 0x00,
0x0e, 0x94, 0x0a, 0xeb, 0xa5, 0x5e, 0x0a, 0x00,
0xed, 0x0e, 0x29, 0x9c, 0x03, 0xab, 0x05, 0x31,
0x04, 0x1c, 0x21, 0x1c, 0x08, 0x17, 0x13, 0x2b,
0x1c, 0x35, 0x3f, 0x17, 0x0e, 0x17, 0x17, 0x44,
0x21, 0x17, 0x4f, 0x3f, 0x12, 0x2b, 0x26, 0x2b,
0x44, 0x00, 0x08, 0x08, 0x6c, 0x12, 0x2b, 0x76,
0x12, 0xa8, 0x5d, 0x4f, 0x35, 0x35, 0x30, 0x12,
0x0d, 0x17, 0x30, 0x3f, 0x44, 0x17, 0x4e, 0x18,
0x1d, 0x0e, 0x43, 0x06, 0x01, 0xde, 0x04, 0x02,
0x01, 0x02, 0x02, 0x00, 0x00, 0x10, 0x03, 0xec,
0x06, 0x00, 0x01, 0x00, 0x8c, 0x08, 0x00, 0x01,
0x00, 0xf0, 0x07, 0x00, 0x00, 0x00, 0xc0, 0xc8,
0xd1, 0x91, 0xd5, 0xb4, 0xa6, 0xe9, 0x06, 0xd0,
0x95, 0x00, 0xeb, 0xf5, 0xc4, 0x28, 0x9c, 0x03,
0x99, 0x06, 0x04, 0x03, 0x0d, 0x26, 0x1c, 0x0e,
0x43, 0x06, 0x01, 0xe6, 0x04, 0x00, 0x00, 0x00,
0x03, 0x07, 0x00, 0x1e, 0x00, 0xa2, 0x03, 0x00,
0x0c, 0xc0, 0x03, 0x12, 0x01, 0xee, 0x03, 0x29,
0x01, 0x80, 0x04, 0x32, 0x01, 0xec, 0x03, 0x28,
0x01, 0xd8, 0x03, 0x1e, 0x01, 0xda, 0x03, 0x1f,
0x01, 0x65, 0x00, 0x00, 0x42, 0xc4, 0x01, 0x00,
0x00, 0xdd, 0x24, 0x01, 0x00, 0x0e, 0xdf, 0xdd,
0xee, 0x5e, 0x04, 0x00, 0x9d, 0xe2, 0xc0, 0x5f,
0x05, 0x00, 0xb4, 0x5f, 0x06, 0x00, 0x29, 0x9c,
0x03, 0xa4, 0x06, 0x05, 0x04, 0x44, 0x2b, 0x17,
0x17, 0x0e, 0x43, 0x06, 0x01, 0xe8, 0x04, 0x02,
0x01, 0x02, 0x06, 0x12, 0x01, 0xb0, 0x01, 0x03,
0x8e, 0x08, 0x00, 0x01, 0x00, 0x90, 0x08, 0x00,
0x01, 0x00, 0xf2, 0x07, 0x00, 0x00, 0x00, 0xd4,
0x03, 0x1c, 0x01, 0xd6, 0x03, 0x1d, 0x01, 0xdc,
0x03, 0x20, 0x01, 0xb4, 0x03, 0x0c, 0x01, 0xe4,
0x04, 0x64, 0x01, 0xc0, 0x03, 0x12, 0x01, 0xbe,
0x03, 0x11, 0x01, 0xd0, 0x03, 0x1a, 0x01, 0xde,
0x04, 0x61, 0x01, 0xc2, 0x03, 0x13, 0x01, 0xc6,
0x03, 0x15, 0x01, 0xca, 0x03, 0x17, 0x01, 0xa6,
0x02, 0x04, 0x01, 0xce, 0x03, 0x19, 0x01, 0xc4,
0x03, 0x14, 0x01, 0xe6, 0x04, 0x65, 0x01, 0x8c,
0x04, 0x38, 0x01, 0xe2, 0x04, 0x63, 0x01, 0xd0,
0x11, 0xea, 0x03, 0x0e, 0xc0, 0xe4, 0xe8, 0xe1,
0xdf, 0xe8, 0xe2, 0xd1, 0x5f, 0x04, 0x00, 0x5e,
0x06, 0x00, 0x5f, 0x05, 0x00, 0x5e, 0x07, 0x00,
0xe9, 0x22, 0x5e, 0x05, 0x00, 0x5e, 0x08, 0x00,
0x04, 0x09, 0x02, 0x00, 0x00, 0x5e, 0x09, 0x00,
0x5e, 0x05, 0x00, 0xe8, 0x9f, 0xef, 0x9e, 0x60,
0x05, 0x00, 0x5e, 0x0a, 0x00, 0x9e, 0x5f, 0x05,
0x00, 0xeb, 0x66, 0x5e, 0x0b, 0x00, 0xe9, 0x50,
0x5e, 0x0c, 0x00, 0x42, 0x0a, 0x02, 0x00, 0x00,
0x5e, 0x0d, 0x00, 0x24, 0x01, 0x00, 0x04, 0x09,
0x02, 0x00, 0x00, 0x9e, 0xc8, 0xb4, 0x5f, 0x0d,
0x00, 0x5e, 0x08, 0x00, 0xbe, 0x00, 0xb9, 0xc4,
0xe8, 0x9f, 0xef, 0xc4, 0x9e, 0xc8, 0x5e, 0x05,
0x00, 0xc4, 0x42, 0xc5, 0x01, 0x00, 0x00, 0xb4,
0xc4, 0xe8, 0xb8, 0x9f, 0x24, 0x02, 0x00, 0x04,
0xe6, 0x01, 0x00, 0x00, 0x9e, 0xc4, 0x42, 0xc5,
0x01, 0x00, 0x00, 0xc4, 0xe8, 0xb8, 0x9f, 0x24,
0x01, 0x00, 0x9e, 0x9e, 0x5f, 0x05, 0x00, 0x5e,
0x05, 0x00, 0xe8, 0x5f, 0x09, 0x00, 0x5e, 0x05,
0x00, 0x5e, 0x0e, 0x00, 0x9e, 0x5f, 0x05, 0x00,
0x5e, 0x0f, 0x00, 0xed, 0x0e, 0x5e, 0x10, 0x00,
0xed, 0x0e, 0xb4, 0x5f, 0x11, 0x00, 0x29, 0x9c,
0x03, 0xac, 0x06, 0x14, 0x03, 0x26, 0x0d, 0x12,
0x18, 0x22, 0x1c, 0x7b, 0x26, 0x0d, 0x1c, 0x6c,
0x17, 0x44, 0xd1, 0x26, 0x36, 0x1c, 0x1c, 0x17,
0x07, 0x02, 0x30, 0x0e, 0x43, 0x06, 0x01, 0xea,
0x04, 0x01, 0x01, 0x01, 0x03, 0x04, 0x02, 0x8c,
0x01, 0x02, 0x96, 0x08, 0x00, 0x01, 0x00, 0xde,
0x06, 0x00, 0x00, 0x00, 0x9e, 0x02, 0x01, 0x01,
0xe2, 0x04, 0x63, 0x01, 0xe0, 0x04, 0x62, 0x01,
0xec, 0x04, 0x68, 0x01, 0xdc, 0x42, 0x0c, 0x02,
0x00, 0x00, 0xd0, 0x24, 0x01, 0x00, 0xc8, 0xdd,
0x11, 0xb4, 0xac, 0xe9, 0x16, 0xc4, 0x04, 0x0d,
0x02, 0x00, 0x00, 0xaa, 0xe9, 0x07, 0xc4, 0xe2,
0xb5, 0xe1, 0xeb, 0x6c, 0xdf, 0xc4, 0xee, 0x0e,
0xeb, 0x66, 0x11, 0xb5, 0xac, 0xe9, 0x27, 0xde,
0xc4, 0x9e, 0xe2, 0xc4, 0x04, 0x0e, 0x02, 0x00,
0x00, 0xaa, 0xe9, 0x05, 0xb6, 0xe1, 0xeb, 0x50,
0xc4, 0x04, 0x0f, 0x02, 0x00, 0x00, 0xaa, 0xe9,
0x05, 0xb7, 0xe1, 0xeb, 0x43, 0xdf, 0xde, 0xee,
0x0e, 0xb4, 0xe1, 0xeb, 0x3b, 0x11, 0xb6, 0xac,
0xe9, 0x27, 0xde, 0xc4, 0x9e, 0xe2, 0xc4, 0x04,
0x10, 0x02, 0x00, 0x00, 0xaa, 0x11, 0xea, 0x0e,
0x0e, 0xc4, 0xbe, 0x00, 0xa7, 0x11, 0xe9, 0x06,
0x0e, 0xc4, 0xbe, 0x01, 0xa5, 0x97, 0xe9, 0x18,
0xdf, 0xde, 0xee, 0x0e, 0xb4, 0xe1, 0xeb, 0x10,
0x11, 0xb7, 0xac, 0xe9, 0x0b, 0xde, 0xc4, 0x9e,
0xe2, 0xdf, 0xde, 0xee, 0x0e, 0xb4, 0xe1, 0x29,
0x9c, 0x03, 0xc6, 0x06, 0x1e, 0x04, 0x3a, 0x08,
0x1c, 0x30, 0x0d, 0x0d, 0x0d, 0x18, 0x0d, 0x1c,
0x17, 0x30, 0x0d, 0x3a, 0x0d, 0x0d, 0x17, 0x0e,
0x0d, 0x1c, 0x17, 0x85, 0x17, 0x0e, 0x0d, 0x1c,
0x17, 0x17, 0x0f, 0x07, 0x02, 0x30, 0x07, 0x02,
0x39, 0x0e, 0x43, 0x06, 0x01, 0xec, 0x04, 0x01,
0x01, 0x01, 0x05, 0x0d, 0x00, 0xb0, 0x01, 0x02,
0xa2, 0x08, 0x00, 0x01, 0x00, 0xa4, 0x08, 0x00,
0x00, 0x00, 0xe2, 0x03, 0x23, 0x01, 0x80, 0x04,
0x32, 0x01, 0x8e, 0x04, 0x39, 0x01, 0xdc, 0x04,
0x60, 0x01, 0xde, 0x03, 0x21, 0x01, 0xe4, 0x04,
0x64, 0x01, 0xd4, 0x03, 0x1c, 0x01, 0xa0, 0x03,
0x02, 0x0c, 0xe8, 0x03, 0x26, 0x01, 0xe0, 0x03,
0x22, 0x01, 0x94, 0x04, 0x3c, 0x01, 0xd6, 0x03,
0x1d, 0x01, 0x8c, 0x04, 0x38, 0x01, 0xdc, 0xe9,
0x10, 0xdd, 0xd0, 0xee, 0xb5, 0xac, 0xe9, 0x05,
0xde, 0xd0, 0xee, 0x0e, 0x09, 0xe0, 0xeb, 0x7a,
0xdf, 0xd0, 0x47, 0xcc, 0xe9, 0x55, 0xc4, 0x5f,
0x04, 0x00, 0xc4, 0xd0, 0xee, 0x11, 0xb3, 0xac,
0xe9, 0x09, 0x5e, 0x05, 0x00, 0x5e, 0x06, 0x00,
0xee, 0x29, 0x11, 0xbc, 0xfe, 0xac, 0xe9, 0x07,
0x5e, 0x05, 0x00, 0x07, 0xee, 0x29, 0x11, 0xbc,
0xfd, 0xac, 0xe9, 0x26, 0x65, 0x07, 0x00, 0x42,
0x13, 0x02, 0x00, 0x00, 0x65, 0x07, 0x00, 0x41,
0x14, 0x02, 0x00, 0x00, 0x07, 0x24, 0x02, 0x00,
0x0e, 0x65, 0x07, 0x00, 0x42, 0xaa, 0x01, 0x00,
0x00, 0x5e, 0x08, 0x00, 0x07, 0x24, 0x02, 0x00,
0x29, 0x0e, 0x5e, 0x04, 0x00, 0x5f, 0x09, 0x00,
0xeb, 0x20, 0xdd, 0xd0, 0xee, 0xb5, 0xac, 0xe9,
0x14, 0xd0, 0x04, 0x09, 0x02, 0x00, 0x00, 0xa7,
0xe9, 0x0b, 0xde, 0xd0, 0xee, 0x0e, 0xde, 0x5f,
0x09, 0x00, 0xeb, 0x06, 0x5e, 0x0a, 0x00, 0xed,
0x0e, 0x5e, 0x0b, 0x00, 0xb4, 0xa4, 0xe9, 0x04,
0xb4, 0xeb, 0x14, 0x5e, 0x0b, 0x00, 0x5e, 0x06,
0x00, 0xe8, 0xa6, 0xe9, 0x07, 0x5e, 0x06, 0x00,
0xe8, 0xeb, 0x04, 0x5e, 0x0b, 0x00, 0x5f, 0x0b,
0x00, 0x5e, 0x0c, 0x00, 0xed, 0x29, 0x9c, 0x03,
0xec, 0x06, 0x1b, 0x05, 0x12, 0x26, 0x17, 0x0d,
0x2b, 0x17, 0x12, 0x1c, 0x26, 0x08, 0x21, 0x1c,
0x08, 0x22, 0x6d, 0x4f, 0x0d, 0x21, 0x5d, 0x17,
0x17, 0x0d, 0x1e, 0x35, 0x71, 0x17, 0x0e, 0x43,
0x06, 0x01, 0xf2, 0x04, 0x02, 0x01, 0x02, 0x05,
0x02, 0x01, 0x70, 0x03, 0xe4, 0x06, 0x00, 0x01,
0x00, 0xaa, 0x08, 0x00, 0x01, 0x00, 0xbc, 0x07,
0x00, 0x00, 0x00, 0xa6, 0x03, 0x05, 0x01, 0xa6,
0x02, 0x04, 0x01, 0xdc, 0xd0, 0xee, 0x97, 0xe9,
0x0a, 0xd0, 0x42, 0x37, 0x00, 0x00, 0x00, 0x25,
0x00, 0x00, 0xd0, 0xb4, 0xaa, 0xe9, 0x15, 0xb5,
0xd0, 0x9c, 0xb4, 0xa4, 0xe9, 0x09, 0x04, 0x16,
0x02, 0x00, 0x00, 0xc8, 0xeb, 0x4c, 0xbe, 0x00,
0xc8, 0xeb, 0x47, 0xd1, 0xbc, 0x10, 0xaa, 0xe9,
0x37, 0xd0, 0xdd, 0x42, 0x03, 0x02, 0x00, 0x00,
0xd0, 0x24, 0x01, 0x00, 0xac, 0xe9, 0x29, 0xd0,
0xb4, 0xa4, 0xe9, 0x0c, 0xd0, 0x8d, 0xd4, 0x04,
0x17, 0x02, 0x00, 0x00, 0xc8, 0xeb, 0x03, 0xc0,
0xc8, 0xc4, 0x04, 0x18, 0x02, 0x00, 0x00, 0xd0,
0x42, 0x37, 0x00, 0x00, 0x00, 0xbc, 0x10, 0x24,
0x01, 0x00, 0x9e, 0x9e, 0xc8, 0xeb, 0x0b, 0xd0,
0x42, 0x37, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00,
0xc8, 0xc4, 0x28, 0x9c, 0x03, 0x93, 0x07, 0x11,
0x04, 0x22, 0x31, 0x1c, 0x26, 0x2c, 0x12, 0x0d,
0x68, 0x1c, 0x12, 0x21, 0x0d, 0x0e, 0x67, 0x0d,
0x37, 0x07, 0x02, 0x30, 0x0e, 0x43, 0x06, 0x01,
0xf4, 0x04, 0x02, 0x01, 0x02, 0x05, 0x01, 0x01,
0xfe, 0x01, 0x03, 0xe4, 0x06, 0x00, 0x01, 0x00,
0xaa, 0x08, 0x00, 0x01, 0x00, 0xbc, 0x07, 0x00,
0x00, 0x00, 0xf0, 0x04, 0x6a, 0x01, 0x38, 0x48,
0x01, 0x00, 0x00, 0x42, 0xd3, 0x00, 0x00, 0x00,
0xd0, 0x24, 0x01, 0x00, 0x97, 0xe9, 0x29, 0xdc,
0x04, 0x19, 0x02, 0x00, 0x00, 0xad, 0xe9, 0x17,
0x04, 0x1a, 0x02, 0x00, 0x00, 0xd0, 0x42, 0x37,
0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x9e, 0x04,
0x01, 0x02, 0x00, 0x00, 0x9e, 0x28, 0xd0, 0x42,
0x37, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0xd0,
0xb4, 0xaa, 0xe9, 0x15, 0xb5, 0xd0, 0x9c, 0xb4,
0xa4, 0xe9, 0x09, 0x04, 0x16, 0x02, 0x00, 0x00,
0xc8, 0xeb, 0x3e, 0xbe, 0x00, 0xc8, 0xeb, 0x39,
0xd1, 0xbc, 0x10, 0xaa, 0xe9, 0x29, 0xd0, 0xb4,
0xa4, 0xe9, 0x0c, 0xd0, 0x8d, 0xd4, 0x04, 0x17,
0x02, 0x00, 0x00, 0xc8, 0xeb, 0x03, 0xc0, 0xc8,
0xc4, 0x04, 0x18, 0x02, 0x00, 0x00, 0xd0, 0x42,
0x37, 0x00, 0x00, 0x00, 0xbc, 0x10, 0x24, 0x01,
0x00, 0x9e, 0x9e, 0xc8, 0xeb, 0x0b, 0xd0, 0x42,
0x37, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0xc8,
0xd0, 0x98, 0x04, 0x1b, 0x02, 0x00, 0x00, 0xac,
0xe9, 0x13, 0xdc, 0x04, 0x19, 0x02, 0x00, 0x00,
0xad, 0xe9, 0x0a, 0x04, 0xab, 0x01, 0x00, 0x00,
0x95, 0x00, 0xeb, 0x57, 0xdc, 0x04, 0xcf, 0x00,
0x00, 0x00, 0xad, 0xe9, 0x4e, 0xc4, 0x42, 0xe5,
0x01, 0x00, 0x00, 0x04, 0xe6, 0x01, 0x00, 0x00,
0x24, 0x01, 0x00, 0xb4, 0xa4, 0xe9, 0x3c, 0xd1,
0xbc, 0x10, 0xaa, 0x11, 0xe9, 0x12, 0x0e, 0xc4,
0x42, 0xe5, 0x01, 0x00, 0x00, 0x04, 0x1c, 0x02,
0x00, 0x00, 0x24, 0x01, 0x00, 0xb4, 0xa4, 0x11,
0xea, 0x18, 0x0e, 0xd1, 0xbc, 0x0a, 0xaa, 0xe9,
0x1a, 0xc4, 0x42, 0xe5, 0x01, 0x00, 0x00, 0x04,
0x1d, 0x02, 0x00, 0x00, 0x24, 0x01, 0x00, 0xb4,
0xa4, 0xe9, 0x08, 0x04, 0x1e, 0x02, 0x00, 0x00,
0x95, 0x00, 0xc4, 0x28, 0x9c, 0x03, 0xb0, 0x07,
0x1a, 0x04, 0x59, 0x30, 0x6c, 0x08, 0x32, 0x1c,
0x26, 0x2c, 0x12, 0x0d, 0x22, 0x1c, 0x12, 0x21,
0x0d, 0x0e, 0x67, 0x0d, 0x37, 0x62, 0x26, 0x94,
0x8f, 0x7d, 0x27, 0x07, 0x02, 0x30, 0x0e, 0x43,
0x06, 0x01, 0xf6, 0x04, 0x02, 0x01, 0x02, 0x05,
0x01, 0x00, 0x4a, 0x03, 0xe4, 0x06, 0x00, 0x01,
0x00, 0xaa, 0x08, 0x00, 0x01, 0x00, 0xbc, 0x07,
0x00, 0x00, 0x00, 0xf0, 0x04, 0x6a, 0x01, 0xd1,
0xbc, 0x10, 0xaa, 0xe9, 0x29, 0xd0, 0xb4, 0xa4,
0xe9, 0x0c, 0xd0, 0x8d, 0xd4, 0x04, 0x17, 0x02,
0x00, 0x00, 0xc8, 0xeb, 0x03, 0xc0, 0xc8, 0xc4,
0x04, 0x18, 0x02, 0x00, 0x00, 0xd0, 0x42, 0x37,
0x00, 0x00, 0x00, 0xbc, 0x10, 0x24, 0x01, 0x00,
0x9e, 0x9e, 0xc8, 0xeb, 0x0b, 0xd0, 0x42, 0x37,
0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0xc8, 0xdc,
0x04, 0xcf, 0x00, 0x00, 0x00, 0xac, 0xe9, 0x08,
0x04, 0xc6, 0x01, 0x00, 0x00, 0x95, 0x00, 0xc4,
0x28, 0x9c, 0x03, 0xda, 0x07, 0x0c, 0x04, 0x22,
0x1c, 0x12, 0x21, 0x0d, 0x0e, 0x67, 0x0d, 0x36,
0x30, 0x26, 0x0e, 0x43, 0x06, 0x01, 0xf8, 0x04,
0x01, 0x02, 0x01, 0x02, 0x09, 0x01, 0x0b, 0x03,
0xe4, 0x06, 0x00, 0x01, 0x00, 0x6a, 0x00, 0x00,
0x80, 0xbe, 0x08, 0x00, 0x01, 0x80, 0xa2, 0x03,
0x00, 0x0c, 0xac, 0x03, 0x08, 0x01, 0x98, 0x02,
0x02, 0x01, 0x96, 0x02, 0x00, 0x01, 0xf2, 0x04,
0x6b, 0x01, 0xee, 0x04, 0x69, 0x01, 0xf6, 0x04,
0x6d, 0x01, 0xf4, 0x04, 0x6c, 0x01, 0x9e, 0x02,
0x01, 0x01, 0xbf, 0x00, 0xc9, 0x26, 0x00, 0x00,
0xc8, 0xc5, 0xd0, 0xee, 0x29, 0x9c, 0x03, 0xed,
0x07, 0x06, 0x12, 0x00, 0x04, 0x98, 0x01, 0x12,
0x0e, 0x43, 0x06, 0x01, 0xbe, 0x08, 0x01, 0x06,
0x01, 0x05, 0x0b, 0x00, 0x95, 0x06, 0x07, 0xe4,
0x06, 0x00, 0x01, 0x00, 0x8c, 0x07, 0x00, 0x00,
0x00, 0xd8, 0x06, 0x00, 0x01, 0x00, 0xa2, 0x08,
0x00, 0x02, 0x00, 0xc0, 0x08, 0x00, 0x03, 0x00,
0xde, 0x05, 0x00, 0x04, 0x00, 0xbc, 0x07, 0x00,
0x05, 0x00, 0xa2, 0x03, 0x00, 0x0c, 0x6a, 0x00,
0x01, 0xac, 0x03, 0x01, 0x00, 0x98, 0x02, 0x02,
0x00, 0xbe, 0x08, 0x01, 0x01, 0x96, 0x02, 0x03,
0x00, 0xf2, 0x04, 0x04, 0x00, 0xee, 0x04, 0x05,
0x00, 0xf6, 0x04, 0x06, 0x00, 0xf4, 0x04, 0x07,
0x00, 0x9e, 0x02, 0x08, 0x00, 0xd0, 0x98, 0xc3,
0x04, 0x04, 0x49, 0x00, 0x00, 0x00, 0xac, 0x69,
0xdd, 0x01, 0x00, 0x00, 0xd0, 0xf2, 0xe9, 0x0f,
0x65, 0x00, 0x00, 0x42, 0xc4, 0x01, 0x00, 0x00,
0xd0, 0x24, 0x01, 0x00, 0x0e, 0x29, 0xdd, 0x42,
0xe5, 0x01, 0x00, 0x00, 0xd0, 0x24, 0x01, 0x00,
0xb4, 0xa7, 0xe9, 0x13, 0x65, 0x00, 0x00, 0x42,
0xc4, 0x01, 0x00, 0x00, 0x04, 0x21, 0x02, 0x00,
0x00, 0x24, 0x01, 0x00, 0x0e, 0x29, 0xde, 0xe9,
0x62, 0xd0, 0x38, 0x47, 0x01, 0x00, 0x00, 0xa8,
0x11, 0xea, 0x40, 0x0e, 0xd0, 0x38, 0x22, 0x02,
0x00, 0x00, 0xa8, 0x11, 0xea, 0x35, 0x0e, 0xd0,
0x38, 0x23, 0x02, 0x00, 0x00, 0xa8, 0x11, 0xea,
0x2a, 0x0e, 0xd0, 0x38, 0x24, 0x02, 0x00, 0x00,
0xa8, 0x11, 0xea, 0x1f, 0x0e, 0xd0, 0x38, 0x25,
0x02, 0x00, 0x00, 0xa8, 0x11, 0xea, 0x14, 0x0e,
0xd0, 0x38, 0x26, 0x02, 0x00, 0x00, 0xa8, 0x11,
0xea, 0x09, 0x0e, 0xd0, 0x38, 0x27, 0x02, 0x00,
0x00, 0xa8, 0xe9, 0x17, 0x65, 0x00, 0x00, 0x42,
0xc4, 0x01, 0x00, 0x00, 0xd0, 0x42, 0x37, 0x00,
0x00, 0x00, 0x24, 0x00, 0x00, 0x24, 0x01, 0x00,
0x0e, 0x29, 0xdd, 0x42, 0xd5, 0x01, 0x00, 0x00,
0xd0, 0x24, 0x01, 0x00, 0x0e, 0xdf, 0x42, 0x28,
0x02, 0x00, 0x00, 0xd0, 0x24, 0x01, 0x00, 0x69,
0x86, 0x00, 0x00, 0x00, 0xd0, 0xe8, 0xc8, 0x65,
0x00, 0x00, 0x42, 0xc4, 0x01, 0x00, 0x00, 0x04,
0x29, 0x02, 0x00, 0x00, 0x24, 0x01, 0x00, 0x0e,
0xb4, 0xc9, 0xc5, 0xc4, 0xa4, 0xe9, 0x54, 0xc5,
0xb4, 0xad, 0xe9, 0x12, 0x65, 0x00, 0x00, 0x42,
0xc4, 0x01, 0x00, 0x00, 0x04, 0x2a, 0x02, 0x00,
0x00, 0x24, 0x01, 0x00, 0x0e, 0xc5, 0xd0, 0xa9,
0xe9, 0x0b, 0x5e, 0x04, 0x00, 0xd0, 0xc5, 0x47,
0xee, 0x0e, 0xeb, 0x12, 0x65, 0x00, 0x00, 0x42,
0xc4, 0x01, 0x00, 0x00, 0x04, 0x2b, 0x02, 0x00,
0x00, 0x24, 0x01, 0x00, 0x0e, 0xc5, 0xbc, 0x14,
0xa6, 0xe9, 0x14, 0x65, 0x00, 0x00, 0x42, 0xc4,
0x01, 0x00, 0x00, 0x04, 0x2c, 0x02, 0x00, 0x00,
0x24, 0x01, 0x00, 0x0e, 0xeb, 0x05, 0x94, 0x01,
0xeb, 0xa9, 0x65, 0x00, 0x00, 0x42, 0xc4, 0x01,
0x00, 0x00, 0x04, 0x2d, 0x02, 0x00, 0x00, 0x24,
0x01, 0x00, 0x0e, 0xec, 0x9d, 0x00, 0x5e, 0x05,
0x00, 0x42, 0x2e, 0x02, 0x00, 0x00, 0xd0, 0x24,
0x01, 0x00, 0x04, 0x99, 0x00, 0x00, 0x00, 0xac,
0xe9, 0x18, 0x65, 0x00, 0x00, 0x42, 0xc4, 0x01,
0x00, 0x00, 0xd0, 0x42, 0x37, 0x00, 0x00, 0x00,
0x24, 0x00, 0x00, 0x24, 0x01, 0x00, 0x0e, 0xeb,
0x71, 0x5e, 0x05, 0x00, 0x42, 0x11, 0x02, 0x00,
0x00, 0xd0, 0x24, 0x01, 0x00, 0xce, 0xe8, 0xc8,
0x65, 0x00, 0x00, 0x42, 0xc4, 0x01, 0x00, 0x00,
0x04, 0x2f, 0x02, 0x00, 0x00, 0x24, 0x01, 0x00,
0x0e, 0xb4, 0xc9, 0xc5, 0xc4, 0xa4, 0xe9, 0x39,
0xc5, 0xb4, 0xad, 0xe9, 0x12, 0x65, 0x00, 0x00,
0x42, 0xc4, 0x01, 0x00, 0x00, 0x04, 0x2a, 0x02,
0x00, 0x00, 0x24, 0x01, 0x00, 0x0e, 0xc6, 0xc5,
0x47, 0xcb, 0x65, 0x00, 0x00, 0x42, 0xc4, 0x01,
0x00, 0x00, 0xc7, 0x04, 0x30, 0x02, 0x00, 0x00,
0x24, 0x02, 0x00, 0x0e, 0x5e, 0x04, 0x00, 0xd0,
0xc7, 0x47, 0xee, 0x0e, 0x94, 0x01, 0xeb, 0xc4,
0x65, 0x00, 0x00, 0x42, 0xc4, 0x01, 0x00, 0x00,
0x04, 0x31, 0x02, 0x00, 0x00, 0x24, 0x01, 0x00,
0x0e, 0xdd, 0x42, 0x32, 0x02, 0x00, 0x00, 0xd0,
0x24, 0x01, 0x00, 0x0e, 0x29, 0xc1, 0x04, 0x04,
0x48, 0x00, 0x00, 0x00, 0xac, 0xe9, 0x36, 0xd0,
0x42, 0x33, 0x02, 0x00, 0x00, 0x24, 0x00, 0x00,
0xc3, 0x05, 0xe8, 0xbc, 0x4f, 0xa6, 0xe9, 0x16,
0xc1, 0x05, 0x42, 0xc5, 0x01, 0x00, 0x00, 0xb4,
0xbc, 0x4b, 0x24, 0x02, 0x00, 0x04, 0x34, 0x02,
0x00, 0x00, 0x9e, 0xc2, 0x05, 0x65, 0x00, 0x00,
0x42, 0xc4, 0x01, 0x00, 0x00, 0xc1, 0x05, 0x24,
0x01, 0x00, 0x0e, 0x29, 0xc1, 0x04, 0x04, 0x46,
0x00, 0x00, 0x00, 0xac, 0xe9, 0x1e, 0x65, 0x00,
0x00, 0x42, 0xc4, 0x01, 0x00, 0x00, 0x5e, 0x06,
0x00, 0xd0, 0x5e, 0x07, 0x00, 0xe9, 0x05, 0xbc,
0x10, 0xeb, 0x03, 0xbc, 0x0a, 0xef, 0x24, 0x01,
0x00, 0x0e, 0x29, 0xc1, 0x04, 0x04, 0x35, 0x02,
0x00, 0x00, 0xac, 0xe9, 0x1e, 0x65, 0x00, 0x00,
0x42, 0xc4, 0x01, 0x00, 0x00, 0x5e, 0x08, 0x00,
0xd0, 0x5e, 0x07, 0x00, 0xe9, 0x05, 0xbc, 0x10,
0xeb, 0x03, 0xbc, 0x0a, 0xef, 0x24, 0x01, 0x00,
0x0e, 0x29, 0xc1, 0x04, 0x04, 0x1b, 0x02, 0x00,
0x00, 0xac, 0xe9, 0x1e, 0x65, 0x00, 0x00, 0x42,
0xc4, 0x01, 0x00, 0x00, 0x5e, 0x09, 0x00, 0xd0,
0x5e, 0x07, 0x00, 0xe9, 0x05, 0xbc, 0x10, 0xeb,
0x03, 0xbc, 0x0a, 0xef, 0x24, 0x01, 0x00, 0x0e,
0x29, 0xc1, 0x04, 0x04, 0x36, 0x02, 0x00, 0x00,
0xac, 0xe9, 0x1d, 0x65, 0x00, 0x00, 0x42, 0xc4,
0x01, 0x00, 0x00, 0xd0, 0x42, 0x37, 0x00, 0x00,
0x00, 0x24, 0x00, 0x00, 0x04, 0xff, 0x01, 0x00,
0x00, 0x9e, 0x24, 0x01, 0x00, 0x0e, 0x29, 0xc1,
0x04, 0x04, 0x4a, 0x00, 0x00, 0x00, 0xac, 0xe9,
0x13, 0x65, 0x00, 0x00, 0x42, 0xc4, 0x01, 0x00,
0x00, 0x5e, 0x0a, 0x00, 0xd0, 0xee, 0x24, 0x01,
0x00, 0x0e, 0x29, 0xc1, 0x04, 0x04, 0x1b, 0x00,
0x00, 0x00, 0xac, 0xe9, 0x20, 0x65, 0x00, 0x00,
0x42, 0xc4, 0x01, 0x00, 0x00, 0x04, 0x37, 0x02,
0x00, 0x00, 0xd0, 0x41, 0x36, 0x00, 0x00, 0x00,
0x9e, 0x04, 0xbd, 0x01, 0x00, 0x00, 0x9e, 0x24,
0x01, 0x00, 0x0e, 0x29, 0x65, 0x00, 0x00, 0x42,
0xc4, 0x01, 0x00, 0x00, 0xd0, 0x24, 0x01, 0x00,
0x0e, 0x29, 0x9c, 0x03, 0xf0, 0x07, 0x42, 0x05,
0x17, 0x3a, 0x17, 0x44, 0x4e, 0x58, 0x4e, 0x3a,
0x3a, 0x3a, 0x3a, 0x3a, 0x30, 0x6c, 0x08, 0x3a,
0x4e, 0x12, 0x58, 0x26, 0x1c, 0x58, 0x1c, 0x2b,
0x0d, 0x59, 0x21, 0x58, 0x0e, 0x17, 0x58, 0x76,
0x6c, 0x0d, 0x44, 0x0d, 0x58, 0x26, 0x1c, 0x58,
0x17, 0x5d, 0x2b, 0x17, 0x59, 0x3b, 0x3a, 0x3a,
0x21, 0x6c, 0x49, 0x3a, 0x8f, 0x3a, 0x8f, 0x3a,
0x8f, 0x3a, 0x8a, 0x3a, 0x58, 0x3a, 0x99, 0x08,
0x45, 0x0e, 0x43, 0x06, 0x01, 0xfa, 0x04, 0x01,
0x01, 0x01, 0x04, 0x01, 0x00, 0x2c, 0x02, 0xe4,
0x06, 0x00, 0x01, 0x00, 0xa8, 0x07, 0x00, 0x00,
0x00, 0xfa, 0x03, 0x2f, 0x01, 0xd0, 0xb4, 0x47,
0x04, 0x38, 0x02, 0x00, 0x00, 0xad, 0xe9, 0x03,
0xc0, 0x28, 0xb5, 0xc8, 0xc4, 0xd0, 0xe8, 0xa4,
0xe9, 0x0d, 0xdc, 0xd0, 0xc4, 0x47, 0xee, 0x97,
0xea, 0x05, 0x94, 0x00, 0xeb, 0xef, 0xd0, 0x42,
0xc5, 0x01, 0x00, 0x00, 0xb5, 0xc4, 0x25, 0x02,
0x00, 0x9c, 0x03, 0xbd, 0x08, 0x07, 0x04, 0x3a,
0x0d, 0x2b, 0x21, 0x0d, 0x17, 0x0e, 0x43, 0x06,
0x01, 0xfc, 0x04, 0x02, 0x04, 0x02, 0x07, 0x0f,
0x00, 0x86, 0x08, 0x06, 0xd4, 0x03, 0x00, 0x01,
0x00, 0xf2, 0x08, 0x00, 0x01, 0x00, 0xf4, 0x08,
0x00, 0x00, 0x00, 0xf6, 0x08, 0x00, 0x01, 0x00,
0xf8, 0x08, 0x00, 0x02, 0x00, 0xfa, 0x08, 0x00,
0x03, 0x00, 0xfe, 0x04, 0x71, 0x01, 0x9e, 0x03,
0x01, 0x0c, 0xee, 0x04, 0x69, 0x01, 0xca, 0x03,
0x17, 0x01, 0xae, 0x03, 0x09, 0x01, 0xa2, 0x03,
0x00, 0x0c, 0xb8, 0x03, 0x0e, 0x01, 0xa6, 0x02,
0x04, 0x01, 0xbc, 0x03, 0x10, 0x01, 0xba, 0x03,
0x0f, 0x01, 0xf0, 0x03, 0x2a, 0x01, 0xa8, 0x03,
0x06, 0x01, 0xf0, 0x04, 0x6a, 0x01, 0xac, 0x03,
0x08, 0x01, 0xcc, 0x03, 0x18, 0x01, 0xd0, 0x04,
0x3e, 0x02, 0x00, 0x00, 0xac, 0x11, 0xea, 0x14,
0x0e, 0xd0, 0x04, 0x3f, 0x02, 0x00, 0x00, 0xac,
0x11, 0xea, 0x09, 0x0e, 0xd0, 0x04, 0x3f, 0x01,
0x00, 0x00, 0xaa, 0xe9, 0x07, 0xdc, 0xed, 0x0e,
0xec, 0xe1, 0x03, 0xd0, 0x04, 0x40, 0x02, 0x00,
0x00, 0xac, 0xe9, 0x4b, 0xd1, 0x42, 0xc5, 0x01,
0x00, 0x00, 0xd0, 0xe8, 0xb5, 0x9e, 0x24, 0x01,
0x00, 0x42, 0x41, 0x02, 0x00, 0x00, 0x24, 0x00,
0x00, 0xcf, 0x42, 0x42, 0x02, 0x00, 0x00, 0x04,
0xe6, 0x01, 0x00, 0x00, 0x24, 0x01, 0x00, 0xc7,
0x42, 0x42, 0x02, 0x00, 0x00, 0x04, 0xeb, 0x01,
0x00, 0x00, 0x24, 0x01, 0x00, 0xa5, 0xe9, 0x08,
0x04, 0x43, 0x02, 0x00, 0x00, 0x95, 0x03, 0x65,
0x01, 0x00, 0x42, 0x44, 0x02, 0x00, 0x00, 0xc7,
0x24, 0x01, 0x00, 0x0e, 0x09, 0x28, 0xd0, 0x04,
0x45, 0x02, 0x00, 0x00, 0xac, 0xe9, 0x06, 0x0a,
0xe2, 0xec, 0x80, 0x03, 0xd0, 0x04, 0xba, 0x01,
0x00, 0x00, 0xac, 0xe9, 0x06, 0x09, 0xe2, 0xec,
0x72, 0x03, 0xd0, 0x04, 0xf9, 0x01, 0x00, 0x00,
0xac, 0xe9, 0x07, 0xdf, 0x97, 0xe3, 0xec, 0x63,
0x03, 0x5e, 0x04, 0x00, 0x69, 0xa2, 0x01, 0x00,
0x00, 0xd0, 0x04, 0x1c, 0x02, 0x00, 0x00, 0xac,
0x69, 0x96, 0x01, 0x00, 0x00, 0xd1, 0x42, 0xc5,
0x01, 0x00, 0x00, 0xd0, 0xe8, 0xb5, 0x9e, 0x24,
0x01, 0x00, 0x42, 0x41, 0x02, 0x00, 0x00, 0x24,
0x00, 0x00, 0x42, 0x5c, 0x00, 0x00, 0x00, 0x04,
0x09, 0x02, 0x00, 0x00, 0x24, 0x01, 0x00, 0xcc,
0xe8, 0xb5, 0xac, 0xe9, 0x4d, 0xc4, 0xb4, 0x47,
0xc0, 0xac, 0xe9, 0x46, 0x65, 0x05, 0x00, 0x42,
0xc4, 0x01, 0x00, 0x00, 0x04, 0x46, 0x02, 0x00,
0x00, 0x5e, 0x06, 0x00, 0x9e, 0x04, 0x47, 0x02,
0x00, 0x00, 0x9e, 0x5e, 0x07, 0x00, 0x42, 0x03,
0x02, 0x00, 0x00, 0x5e, 0x06, 0x00, 0x5e, 0x08,
0x00, 0x9c, 0x24, 0x01, 0x00, 0x9e, 0x04, 0x48,
0x02, 0x00, 0x00, 0x9e, 0x5e, 0x09, 0x00, 0x9e,
0x04, 0x49, 0x02, 0x00, 0x00, 0x9e, 0x5e, 0x0a,
0x00, 0x9e, 0x24, 0x01, 0x00, 0x0e, 0xec, 0x1e,
0x01, 0xc4, 0xb4, 0x47, 0x04, 0x4a, 0x02, 0x00,
0x00, 0xac, 0xe9, 0x0d, 0xbc, 0x0b, 0x5f, 0x06,
0x00, 0xb9, 0x5f, 0x09, 0x00, 0xec, 0x07, 0x01,
0xc4, 0xb4, 0x47, 0x04, 0x4b, 0x02, 0x00, 0x00,
0xac, 0xe9, 0x0e, 0xbc, 0x18, 0x5f, 0x06, 0x00,
0xbc, 0x08, 0x5f, 0x09, 0x00, 0xec, 0xef, 0x00,
0xc4, 0xb4, 0x47, 0x04, 0x4c, 0x02, 0x00, 0x00,
0xac, 0xe9, 0x0e, 0xbc, 0x35, 0x5f, 0x06, 0x00,
0xbc, 0x0b, 0x5f, 0x09, 0x00, 0xec, 0xd7, 0x00,
0xc4, 0xb4, 0x47, 0x04, 0x4d, 0x02, 0x00, 0x00,
0xac, 0xe9, 0x0e, 0xbc, 0x71, 0x5f, 0x06, 0x00,
0xbc, 0x0f, 0x5f, 0x09, 0x00, 0xec, 0xbf, 0x00,
0x38, 0x4e, 0x02, 0x00, 0x00, 0xc4, 0xb4, 0x47,
0xee, 0xc9, 0xc4, 0xe8, 0xb6, 0xa7, 0xe9, 0x0d,
0x38, 0x4e, 0x02, 0x00, 0x00, 0xc4, 0xb5, 0x47,
0xee, 0xca, 0xeb, 0x0c, 0x38, 0x4f, 0x02, 0x00,
0x00, 0x41, 0x50, 0x02, 0x00, 0x00, 0xca, 0x38,
0x8e, 0x00, 0x00, 0x00, 0x42, 0xed, 0x01, 0x00,
0x00, 0xc5, 0x24, 0x01, 0x00, 0x11, 0xea, 0x1e,
0x0e, 0xc5, 0x38, 0x4f, 0x02, 0x00, 0x00, 0x41,
0x51, 0x02, 0x00, 0x00, 0xa4, 0x11, 0xea, 0x0e,
0x0e, 0xc5, 0x38, 0x4f, 0x02, 0x00, 0x00, 0x41,
0x52, 0x02, 0x00, 0x00, 0xa6, 0xe9, 0x18, 0x65,
0x05, 0x00, 0x42, 0xc4, 0x01, 0x00, 0x00, 0x04,
0x53, 0x02, 0x00, 0x00, 0x5e, 0x0a, 0x00, 0x9e,
0x24, 0x01, 0x00, 0x0e, 0x09, 0x28, 0x38, 0x8e,
0x00, 0x00, 0x00, 0x42, 0xed, 0x01, 0x00, 0x00,
0xc6, 0x24, 0x01, 0x00, 0x11, 0xea, 0x1e, 0x0e,
0xc6, 0x38, 0x4f, 0x02, 0x00, 0x00, 0x41, 0x54,
0x02, 0x00, 0x00, 0xa4, 0x11, 0xea, 0x0e, 0x0e,
0xc6, 0x38, 0x4f, 0x02, 0x00, 0x00, 0x41, 0x50,
0x02, 0x00, 0x00, 0xa6, 0xe9, 0x18, 0x65, 0x05,
0x00, 0x42, 0xc4, 0x01, 0x00, 0x00, 0x04, 0x55,
0x02, 0x00, 0x00, 0x5e, 0x0a, 0x00, 0x9e, 0x24,
0x01, 0x00, 0x0e, 0x09, 0x28, 0xc5, 0x5f, 0x06,
0x00, 0xc6, 0x5f, 0x09, 0x00, 0x09, 0x28, 0x5e,
0x04, 0x00, 0xe9, 0x7c, 0xd0, 0x04, 0x56, 0x02,
0x00, 0x00, 0xac, 0xe9, 0x73, 0xd1, 0x42, 0xc5,
0x01, 0x00, 0x00, 0xd0, 0xe8, 0xb5, 0x9e, 0x24,
0x01, 0x00, 0x42, 0x41, 0x02, 0x00, 0x00, 0x24,
0x00, 0x00, 0xc8, 0x5e, 0x07, 0x00, 0x42, 0x04,
0x02, 0x00, 0x00, 0x5e, 0x0b, 0x00, 0xc4, 0xee,
0x5e, 0x08, 0x00, 0x9b, 0x24, 0x01, 0x00, 0xcd,
0x38, 0x4f, 0x02, 0x00, 0x00, 0x41, 0x51, 0x02,
0x00, 0x00, 0xa4, 0x11, 0xea, 0x0e, 0x0e, 0xc5,
0x38, 0x4f, 0x02, 0x00, 0x00, 0x41, 0x52, 0x02,
0x00, 0x00, 0xa6, 0xe9, 0x18, 0x65, 0x05, 0x00,
0x42, 0xc4, 0x01, 0x00, 0x00, 0x04, 0x53, 0x02,
0x00, 0x00, 0x5e, 0x0a, 0x00, 0x9e, 0x24, 0x01,
0x00, 0x0e, 0x09, 0x28, 0xc5, 0x5f, 0x06, 0x00,
0x38, 0x4f, 0x02, 0x00, 0x00, 0x41, 0x50, 0x02,
0x00, 0x00, 0x5f, 0x09, 0x00, 0x09, 0x28, 0x5e,
0x04, 0x00, 0xe9, 0x70, 0xd0, 0x04, 0x57, 0x02,
0x00, 0x00, 0xac, 0xe9, 0x67, 0xd1, 0x42, 0xc5,
0x01, 0x00, 0x00, 0xd0, 0xe8, 0xb5, 0x9e, 0x24,
0x01, 0x00, 0x42, 0x41, 0x02, 0x00, 0x00, 0x24,
0x00, 0x00, 0xcc, 0xc0, 0xac, 0xe9, 0x1c, 0x65,
0x05, 0x00, 0x42, 0xc4, 0x01, 0x00, 0x00, 0x04,
0x58, 0x02, 0x00, 0x00, 0x5e, 0x0c, 0x00, 0x9e,
0x5e, 0x0a, 0x00, 0x9e, 0x24, 0x01, 0x00, 0x0e,
0xeb, 0x30, 0xc4, 0x04, 0xcf, 0x00, 0x00, 0x00,
0xac, 0x11, 0xea, 0x09, 0x0e, 0xc4, 0x04, 0x19,
0x02, 0x00, 0x00, 0xac, 0xe9, 0x07, 0xc4, 0x5f,
0x0c, 0x00, 0xeb, 0x16, 0x65, 0x05, 0x00, 0x42,
0xc4, 0x01, 0x00, 0x00, 0x04, 0x59, 0x02, 0x00,
0x00, 0x5e, 0x0a, 0x00, 0x9e, 0x24, 0x01, 0x00,
0x0e, 0x09, 0x28, 0xd0, 0x04, 0x5a, 0x02, 0x00,
0x00, 0xac, 0xe9, 0x15, 0x65, 0x05, 0x00, 0x42,
0xc4, 0x01, 0x00, 0x00, 0x04, 0x5b, 0x02, 0x00,
0x00, 0x24, 0x01, 0x00, 0x0e, 0xec, 0xac, 0x00,
0xd0, 0x04, 0x5c, 0x02, 0x00, 0x00, 0xac, 0x11,
0xea, 0x09, 0x0e, 0xd0, 0x04, 0xdf, 0x01, 0x00,
0x00, 0xac, 0xe9, 0x11, 0x65, 0x05, 0x00, 0x42,
0xdf, 0x01, 0x00, 0x00, 0xb4, 0x24, 0x01, 0x00,
0x0e, 0xec, 0x88, 0x00, 0x5e, 0x0d, 0x00, 0xe9,
0x17, 0xd0, 0x04, 0xb2, 0x01, 0x00, 0x00, 0xac,
0xe9, 0x0e, 0x36, 0x5d, 0x02, 0x00, 0x00, 0x0a,
0x3b, 0x5d, 0x02, 0x00, 0x00, 0xeb, 0x6c, 0x5e,
0x0d, 0x00, 0xe9, 0x17, 0xd0, 0x04, 0xc6, 0x01,
0x00, 0x00, 0xac, 0xe9, 0x0e, 0x36, 0x5d, 0x02,
0x00, 0x00, 0x09, 0x3b, 0x5d, 0x02, 0x00, 0x00,
0xeb, 0x51, 0xd0, 0x04, 0x5e, 0x02, 0x00, 0x00,
0xac, 0xe9, 0x2f, 0x5e, 0x0e, 0x00, 0x97, 0x5f,
0x0e, 0x00, 0x65, 0x05, 0x00, 0x42, 0xc4, 0x01,
0x00, 0x00, 0x5e, 0x0e, 0x00, 0xe9, 0x0c, 0x04,
0x5f, 0x02, 0x00, 0x00, 0x5e, 0x0a, 0x00, 0x9e,
0xeb, 0x0a, 0x04, 0x60, 0x02, 0x00, 0x00, 0x5e,
0x0a, 0x00, 0x9e, 0x24, 0x01, 0x00, 0x0e, 0xeb,
0x1a, 0x65, 0x05, 0x00, 0x42, 0xc4, 0x01, 0x00,
0x00, 0x04, 0x61, 0x02, 0x00, 0x00, 0xd0, 0x9e,
0x5e, 0x0a, 0x00, 0x9e, 0x24, 0x01, 0x00, 0x0e,
0x09, 0x28, 0x0a, 0x28, 0x9c, 0x03, 0xc9, 0x08,
0x58, 0x05, 0x9e, 0x12, 0x3f, 0x71, 0x99, 0x26,
0x44, 0x08, 0x35, 0x0d, 0x3f, 0x0d, 0x3f, 0x12,
0x76, 0xb2, 0x3f, 0x76, 0x7b, 0x62, 0x49, 0x1c,
0x17, 0x49, 0x1c, 0x1c, 0x49, 0x1c, 0x1c, 0x49,
0x1c, 0x1c, 0x12, 0x35, 0x21, 0x40, 0x3a, 0x5d,
0x53, 0x49, 0x6c, 0x08, 0x08, 0x5d, 0x53, 0x49,
0x6c, 0x08, 0x08, 0x17, 0x18, 0x08, 0x4e, 0x71,
0x6c, 0x4e, 0x49, 0x6c, 0x08, 0x08, 0x17, 0x44,
0x08, 0x4e, 0x71, 0x17, 0x80, 0x71, 0x17, 0x0d,
0x6d, 0x08, 0x35, 0x58, 0x76, 0x44, 0x58, 0x3a,
0x53, 0x3a, 0x3a, 0x26, 0xbc, 0x0d, 0x76, 0x08,
0x08, 0x0e, 0x43, 0x06, 0x01, 0x00, 0x01, 0x00,
0x01, 0x03, 0x01, 0x00, 0x46, 0x01, 0xd4, 0x03,
0x00, 0x01, 0x00, 0xee, 0x04, 0x69, 0x01, 0xd0,
0x11, 0x04, 0x62, 0x02, 0x00, 0x00, 0xac, 0xe9,
0x05, 0x09, 0xe0, 0xeb, 0x38, 0x11, 0x04, 0x63,
0x02, 0x00, 0x00, 0xac, 0xe9, 0x05, 0x0a, 0xe0,
0xeb, 0x2b, 0x11, 0x04, 0x64, 0x02, 0x00, 0x00,
0xac, 0xe9, 0x0e, 0x36, 0x5d, 0x02, 0x00, 0x00,
0x09, 0x3b, 0x5d, 0x02, 0x00, 0x00, 0xeb, 0x15,
0x11, 0x04, 0x65, 0x02, 0x00, 0x00, 0xac, 0xe9,
0x0c, 0x36, 0x5d, 0x02, 0x00, 0x00, 0x0a, 0x3b,
0x5d, 0x02, 0x00, 0x00, 0x29, 0x9c, 0x03, 0xab,
0x09, 0x0d, 0x03, 0x08, 0x30, 0x0d, 0x0d, 0x30,
0x0d, 0x0d, 0x30, 0x3a, 0x0d, 0x30, 0x3c, 0x0e,
0x43, 0x06, 0x01, 0xfe, 0x04, 0x00, 0x01, 0x00,
0x05, 0x08, 0x01, 0x94, 0x02, 0x01, 0xcc, 0x09,
0x00, 0x00, 0x00, 0xa2, 0x03, 0x00, 0x0c, 0xf0,
0x03, 0x2a, 0x01, 0xee, 0x04, 0x69, 0x01, 0xca,
0x03, 0x17, 0x01, 0xac, 0x03, 0x08, 0x01, 0xae,
0x03, 0x09, 0x01, 0xf0, 0x04, 0x6a, 0x01, 0xaa,
0x03, 0x07, 0x01, 0xbf, 0x00, 0xc8, 0x65, 0x00,
0x00, 0x42, 0xc4, 0x01, 0x00, 0x00, 0x04, 0x67,
0x02, 0x00, 0x00, 0xdd, 0x9e, 0x04, 0x68, 0x02,
0x00, 0x00, 0x9e, 0xc4, 0xde, 0xee, 0x9e, 0x04,
0x69, 0x02, 0x00, 0x00, 0x9e, 0xdd, 0x9e, 0x04,
0x6a, 0x02, 0x00, 0x00, 0x9e, 0xc4, 0xde, 0x97,
0xee, 0x9e, 0x04, 0x6b, 0x02, 0x00, 0x00, 0x9e,
0xdd, 0x9e, 0x04, 0x6c, 0x02, 0x00, 0x00, 0x9e,
0xc4, 0xdf, 0xee, 0x9e, 0x04, 0x6d, 0x02, 0x00,
0x00, 0x9e, 0xdd, 0x9e, 0x04, 0x6e, 0x02, 0x00,
0x00, 0x9e, 0xc4, 0xdf, 0xee, 0x9e, 0x04, 0x6f,
0x02, 0x00, 0x00, 0x9e, 0xdd, 0x9e, 0x04, 0x70,
0x02, 0x00, 0x00, 0x9e, 0xdd, 0x9e, 0x24, 0x01,
0x00, 0x0e, 0x5e, 0x04, 0x00, 0xe9, 0x39, 0x65,
0x00, 0x00, 0x42, 0xc4, 0x01, 0x00, 0x00, 0x04,
0x71, 0x02, 0x00, 0x00, 0xc4, 0x38, 0x5d, 0x02,
0x00, 0x00, 0xee, 0x9e, 0x04, 0x72, 0x02, 0x00,
0x00, 0x9e, 0xdd, 0x9e, 0x04, 0x73, 0x02, 0x00,
0x00, 0x9e, 0xc4, 0x38, 0x5d, 0x02, 0x00, 0x00,
0x97, 0xee, 0x9e, 0x04, 0x74, 0x02, 0x00, 0x00,
0x9e, 0xdd, 0x9e, 0x24, 0x01, 0x00, 0x0e, 0x5e,
0x05, 0x00, 0xe9, 0x3f, 0x65, 0x00, 0x00, 0x42,
0xc4, 0x01, 0x00, 0x00, 0x04, 0x75, 0x02, 0x00,
0x00, 0xdd, 0x9e, 0x04, 0x76, 0x02, 0x00, 0x00,
0x9e, 0xdd, 0x9e, 0x24, 0x01, 0x00, 0x0e, 0x5e,
0x04, 0x00, 0x97, 0xe9, 0x1e, 0x65, 0x00, 0x00,
0x42, 0xc4, 0x01, 0x00, 0x00, 0x04, 0x77, 0x02,
0x00, 0x00, 0x5e, 0x06, 0x00, 0x9e, 0x04, 0x01,
0x02, 0x00, 0x00, 0x9e, 0xdd, 0x9e, 0x24, 0x01,
0x00, 0x0e, 0x5e, 0x07, 0x00, 0x97, 0xe9, 0x27,
0x65, 0x00, 0x00, 0x42, 0xc4, 0x01, 0x00, 0x00,
0x04, 0x78, 0x02, 0x00, 0x00, 0xdd, 0x9e, 0x24,
0x01, 0x00, 0x0e, 0x65, 0x00, 0x00, 0x42, 0xc4,
0x01, 0x00, 0x00, 0x04, 0x79, 0x02, 0x00, 0x00,
0xdd, 0x9e, 0x24, 0x01, 0x00, 0x0e, 0x29, 0x9c,
0x03, 0xbd, 0x09, 0x14, 0x00, 0x03, 0x08, 0x67,
0x5d, 0x62, 0x5d, 0x5d, 0x26, 0x1c, 0xad, 0x72,
0x1c, 0x67, 0x26, 0x21, 0x96, 0x21, 0x62, 0x63,
0x0e, 0x43, 0x06, 0x01, 0xcc, 0x09, 0x01, 0x00,
0x01, 0x01, 0x00, 0x00, 0x0f, 0x01, 0x8c, 0x07,
0x00, 0x01, 0x00, 0xd0, 0xe9, 0x07, 0x04, 0x7c,
0x00, 0x00, 0x00, 0x28, 0x04, 0x09, 0x02, 0x00,
0x00, 0x28, 0x9c, 0x03, 0xbe, 0x09, 0x01, 0x03,
0x0e, 0x43, 0x06, 0x01, 0x80, 0x05, 0x01, 0x03,
0x01, 0x06, 0x0b, 0x00, 0xb1, 0x02, 0x04, 0xf2,
0x08, 0x00, 0x01, 0x00, 0xe4, 0x05, 0x00, 0x00,
0x00, 0xf4, 0x09, 0x00, 0x01, 0x00, 0xe2, 0x05,
0x08, 0x00, 0x03, 0xf0, 0x04, 0x6a, 0x01, 0xaa,
0x02, 0x03, 0x01, 0x9e, 0x03, 0x01, 0x0c, 0xce,
0x03, 0x19, 0x01, 0xcc, 0x03, 0x18, 0x01, 0xa2,
0x03, 0x00, 0x0c, 0xb0, 0x03, 0x0a, 0x01, 0xb2,
0x03, 0x0b, 0x01, 0xf8, 0x04, 0x6e, 0x01, 0xf0,
0x03, 0x2a, 0x01, 0xa4, 0x03, 0x00, 0x03, 0x6c,
0x9d, 0x00, 0x00, 0x00, 0xdc, 0x04, 0x19, 0x02,
0x00, 0x00, 0xac, 0xe9, 0x09, 0x04, 0x7b, 0x02,
0x00, 0x00, 0xd0, 0x9e, 0xd4, 0xdd, 0x11, 0x21,
0x00, 0x00, 0x42, 0x7c, 0x02, 0x00, 0x00, 0x24,
0x00, 0x00, 0xc9, 0x65, 0x02, 0x00, 0x42, 0x7d,
0x02, 0x00, 0x00, 0xd0, 0x0b, 0x0a, 0x4c, 0x7e,
0x02, 0x00, 0x00, 0x24, 0x02, 0x00, 0xc8, 0xdd,
0x11, 0x21, 0x00, 0x00, 0x42, 0x7c, 0x02, 0x00,
0x00, 0x24, 0x00, 0x00, 0xc5, 0x9f, 0xe3, 0x5e,
0x04, 0x00, 0xe9, 0x19, 0x65, 0x05, 0x00, 0x42,
0xc4, 0x01, 0x00, 0x00, 0x5e, 0x06, 0x00, 0x5e,
0x07, 0x00, 0x41, 0x72, 0x01, 0x00, 0x00, 0x47,
0x24, 0x01, 0x00, 0x0e, 0x5e, 0x08, 0x00, 0xc4,
0xee, 0x0e, 0x65, 0x05, 0x00, 0x42, 0xc4, 0x01,
0x00, 0x00, 0x5e, 0x09, 0x00, 0x24, 0x01, 0x00,
0x0e, 0x5e, 0x04, 0x00, 0xe9, 0x15, 0x65, 0x05,
0x00, 0x42, 0xc4, 0x01, 0x00, 0x00, 0x5e, 0x06,
0x00, 0x41, 0x4a, 0x01, 0x00, 0x00, 0x24, 0x01,
0x00, 0x0e, 0x5e, 0x0a, 0x00, 0xc4, 0x43, 0xb4,
0x01, 0x00, 0x00, 0x0e, 0x29, 0xca, 0x6c, 0x90,
0x00, 0x00, 0x00, 0x5e, 0x04, 0x00, 0xe9, 0x19,
0x65, 0x05, 0x00, 0x42, 0xc4, 0x01, 0x00, 0x00,
0x5e, 0x06, 0x00, 0x5e, 0x07, 0x00, 0x41, 0x73,
0x01, 0x00, 0x00, 0x47, 0x24, 0x01, 0x00, 0x0e,
0xc6, 0x38, 0x8d, 0x00, 0x00, 0x00, 0xa8, 0xe9,
0x2c, 0x38, 0x7f, 0x02, 0x00, 0x00, 0x42, 0x80,
0x02, 0x00, 0x00, 0xc6, 0x24, 0x01, 0x00, 0x0e,
0xc6, 0x41, 0x35, 0x00, 0x00, 0x00, 0xe9, 0x35,
0x65, 0x05, 0x00, 0x42, 0xc4, 0x01, 0x00, 0x00,
0xc6, 0x41, 0x35, 0x00, 0x00, 0x00, 0x24, 0x01,
0x00, 0x0e, 0xeb, 0x21, 0x65, 0x05, 0x00, 0x42,
0xc4, 0x01, 0x00, 0x00, 0x04, 0x81, 0x02, 0x00,
0x00, 0x24, 0x01, 0x00, 0x0e, 0x38, 0x7f, 0x02,
0x00, 0x00, 0x42, 0x80, 0x02, 0x00, 0x00, 0xc6,
0x24, 0x01, 0x00, 0x0e, 0x5e, 0x04, 0x00, 0xe9,
0x15, 0x65, 0x05, 0x00, 0x42, 0xc4, 0x01, 0x00,
0x00, 0x5e, 0x06, 0x00, 0x41, 0x4a, 0x01, 0x00,
0x00, 0x24, 0x01, 0x00, 0x0e, 0x0e, 0x29, 0x2f,
0x9c, 0x03, 0xd8, 0x09, 0x1b, 0x05, 0x1c, 0x30,
0x2b, 0x4a, 0x67, 0x53, 0x1c, 0x7c, 0x21, 0x4e,
0x1c, 0x69, 0x30, 0x2b, 0x1c, 0x7c, 0x30, 0x4e,
0x2b, 0x5e, 0x0d, 0x58, 0x4f, 0x1c, 0x68, 0x0d,
0x0e, 0x43, 0x06, 0x01, 0x82, 0x05, 0x00, 0x00,
0x00, 0x04, 0x0b, 0x00, 0x6e, 0x00, 0xaa, 0x03,
0x07, 0x01, 0xac, 0x03, 0x08, 0x01, 0xa2, 0x03,
0x00, 0x0c, 0xae, 0x03, 0x09, 0x01, 0xbc, 0x03,
0x10, 0x01, 0xa6, 0x02, 0x04, 0x01, 0xb8, 0x03,
0x0e, 0x01, 0xba, 0x03, 0x0f, 0x01, 0xf0, 0x04,
0x6a, 0x01, 0xa4, 0x03, 0x00, 0x03, 0x84, 0x05,
0x74, 0x01, 0xdc, 0x97, 0xe9, 0x28, 0xdd, 0xe9,
0x14, 0x65, 0x02, 0x00, 0x42, 0xc4, 0x01, 0x00,
0x00, 0x04, 0x82, 0x02, 0x00, 0x00, 0x24, 0x01,
0x00, 0x0e, 0xeb, 0x12, 0x65, 0x02, 0x00, 0x42,
0xc4, 0x01, 0x00, 0x00, 0x04, 0x83, 0x02, 0x00,
0x00, 0x24, 0x01, 0x00, 0x0e, 0xdf, 0xe9, 0x3c,
0x5e, 0x05, 0x00, 0x42, 0x80, 0x02, 0x00, 0x00,
0xbc, 0x0a, 0x24, 0x01, 0x00, 0x5e, 0x05, 0x00,
0x42, 0x80, 0x02, 0x00, 0x00, 0xb6, 0x24, 0x01,
0x00, 0x9c, 0x5f, 0x04, 0x00, 0xbc, 0x71, 0x5f,
0x06, 0x00, 0xbc, 0x0f, 0x5f, 0x07, 0x00, 0xdd,
0xe9, 0x12, 0x04, 0x19, 0x02, 0x00, 0x00, 0x5f,
0x08, 0x00, 0x5e, 0x09, 0x00, 0xdc, 0x43, 0x5d,
0x02, 0x00, 0x00, 0x5e, 0x0a, 0x00, 0xed, 0x29,
0x9c, 0x03, 0xff, 0x09, 0x0f, 0x03, 0x17, 0x12,
0x63, 0x59, 0x12, 0x94, 0x1c, 0x1c, 0x12, 0x2c,
0x00, 0x09, 0x08, 0x17, 0x0e, 0x43, 0x06, 0x01,
0x84, 0x05, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00,
0x0c, 0x00, 0xe8, 0x04, 0x66, 0x01, 0xde, 0x04,
0x61, 0x01, 0xd2, 0x03, 0x1b, 0x01, 0x86, 0x05,
0x75, 0x01, 0xdc, 0xdd, 0x04, 0x84, 0x02, 0x00,
0x00, 0xde, 0xef, 0xdf, 0xef, 0x29, 0x9c, 0x03,
0x94, 0x0a, 0x02, 0x03, 0x3a, 0x0e, 0x43, 0x06,
0x01, 0x86, 0x05, 0x01, 0x00, 0x01, 0x02, 0x02,
0x00, 0x07, 0x01, 0xf2, 0x08, 0x00, 0x01, 0x00,
0x88, 0x05, 0x76, 0x01, 0x84, 0x05, 0x74, 0x01,
0xdc, 0xd0, 0xee, 0x0e, 0xdd, 0xed, 0x29, 0x9c,
0x03, 0x98, 0x0a, 0x03, 0x03, 0x17, 0x0d, 0x0e,
0x43, 0x06, 0x01, 0x88, 0x05, 0x01, 0x02, 0x01,
0x06, 0x0d, 0x00, 0x9c, 0x01, 0x03, 0xf2, 0x08,
0x00, 0x01, 0x00, 0x9c, 0x07, 0x00, 0x00, 0x00,
0xd4, 0x03, 0x00, 0x01, 0x00, 0xfe, 0x04, 0x71,
0x01, 0xfa, 0x04, 0x6f, 0x01, 0xfc, 0x04, 0x70,
0x01, 0xd0, 0x03, 0x1a, 0x01, 0xf0, 0x03, 0x2a,
0x01, 0x8a, 0x05, 0x77, 0x01, 0xbe, 0x03, 0x11,
0x01, 0xd2, 0x03, 0x1b, 0x01, 0xae, 0x03, 0x09,
0x01, 0x80, 0x05, 0x72, 0x01, 0xb8, 0x03, 0x0e,
0x01, 0xba, 0x03, 0x0f, 0x01, 0x9e, 0x03, 0x01,
0x0c, 0xd0, 0xf2, 0xe9, 0x04, 0xc0, 0xd4, 0x29,
0xd0, 0x04, 0x3f, 0x02, 0x00, 0x00, 0xac, 0xe9,
0x04, 0xdc, 0xed, 0x29, 0xdd, 0xd0, 0xee, 0xcd,
0xe8, 0xb4, 0xa6, 0xe9, 0x17, 0xde, 0xc5, 0xd0,
0xef, 0x97, 0xe9, 0x02, 0x29, 0xd0, 0x42, 0xc5,
0x01, 0x00, 0x00, 0xc5, 0xe8, 0xb5, 0x9e, 0x24,
0x01, 0x00, 0xd4, 0xd0, 0xc0, 0xac, 0xe9, 0x02,
0x29, 0xdf, 0xe9, 0x09, 0xdf, 0x5e, 0x04, 0x00,
0x9e, 0xd0, 0x9e, 0xd4, 0x5e, 0x05, 0x00, 0xd0,
0xee, 0xcc, 0xb4, 0x47, 0x5f, 0x06, 0x00, 0xc4,
0xb5, 0x47, 0x5f, 0x07, 0x00, 0x5e, 0x06, 0x00,
0xe9, 0x04, 0xd0, 0xe3, 0x29, 0xc0, 0xe3, 0x5e,
0x08, 0x00, 0xe9, 0x24, 0x38, 0x4f, 0x02, 0x00,
0x00, 0x42, 0x85, 0x02, 0x00, 0x00, 0x5e, 0x09,
0x00, 0x42, 0x86, 0x02, 0x00, 0x00, 0x07, 0xd0,
0x24, 0x02, 0x00, 0x5e, 0x0a, 0x00, 0x5e, 0x0b,
0x00, 0x24, 0x03, 0x00, 0x0e, 0xeb, 0x07, 0x5e,
0x09, 0x00, 0xd0, 0xee, 0x0e, 0xb4, 0x5f, 0x07,
0x00, 0x65, 0x0c, 0x00, 0x42, 0x87, 0x02, 0x00,
0x00, 0x24, 0x00, 0x00, 0x29, 0x9c, 0x03, 0x9d,
0x0a, 0x1e, 0x05, 0x17, 0x0e, 0x08, 0x30, 0x0e,
0x08, 0x17, 0x1c, 0x26, 0x08, 0x4a, 0x1c, 0x09,
0x12, 0x2b, 0x21, 0x1c, 0x21, 0x1c, 0x0e, 0x08,
0x0e, 0x1c, 0x76, 0x35, 0x0d, 0x22, 0x19, 0x3a,
0x0e, 0x43, 0x06, 0x01, 0x8a, 0x05, 0x01, 0x17,
0x01, 0x04, 0x04, 0x0a, 0x8b, 0x04, 0x18, 0xec,
0x06, 0x00, 0x01, 0x80, 0xd8, 0x06, 0x00, 0x00,
0x80, 0xde, 0x06, 0x00, 0x01, 0x80, 0x80, 0x07,
0x00, 0x02, 0x80, 0x8c, 0x07, 0x00, 0x03, 0x80,
0x86, 0x07, 0x00, 0x04, 0x80, 0x90, 0x0a, 0x00,
0x05, 0x80, 0xd2, 0x03, 0x00, 0x06, 0x00, 0x92,
0x0a, 0x00, 0x07, 0x00, 0x94, 0x0a, 0x00, 0x08,
0x80, 0xde, 0x07, 0x00, 0x09, 0x80, 0x96, 0x0a,
0x00, 0x0a, 0x80, 0x98, 0x0a, 0x00, 0x0b, 0x80,
0x9a, 0x0a, 0x00, 0x0c, 0x80, 0x9c, 0x0a, 0x00,
0x0d, 0x00, 0x9e, 0x0a, 0x00, 0x0e, 0x00, 0xa0,
0x0a, 0x00, 0x0f, 0x00, 0xa2, 0x0a, 0x00, 0x10,
0x00, 0xa4, 0x0a, 0x00, 0x11, 0x00, 0xa6, 0x0a,
0x00, 0x12, 0x80, 0xa8, 0x0a, 0x00, 0x13, 0x80,
0xaa, 0x0a, 0x00, 0x14, 0x80, 0xac, 0x0a, 0x00,
0x15, 0x00, 0xae, 0x0a, 0x00, 0x16, 0x00, 0xf0,
0x03, 0x2a, 0x01, 0xfe, 0x03, 0x31, 0x01, 0x84,
0x04, 0x34, 0x01, 0xfc, 0x03, 0x30, 0x01, 0xbf,
0x00, 0xc2, 0x0a, 0xbf, 0x01, 0xc2, 0x0b, 0xbf,
0x02, 0xc2, 0x0c, 0xbf, 0x03, 0xc2, 0x0d, 0xbf,
0x04, 0xc2, 0x0e, 0xbf, 0x05, 0xc2, 0x0f, 0xbf,
0x06, 0xc2, 0x10, 0xbf, 0x07, 0xc2, 0x11, 0xbf,
0x08, 0xc2, 0x15, 0xbf, 0x09, 0xc2, 0x16, 0xd0,
0xe8, 0xcb, 0xc0, 0xc2, 0x05, 0xb4, 0xc2, 0x06,
0xb5, 0xc2, 0x08, 0x26, 0x00, 0x00, 0xc2, 0x09,
0x04, 0x98, 0x02, 0x00, 0x00, 0x04, 0x99, 0x02,
0x00, 0x00, 0x9e, 0x04, 0x9a, 0x02, 0x00, 0x00,
0x9e, 0x04, 0x9b, 0x02, 0x00, 0x00, 0x9e, 0x04,
0x9c, 0x02, 0x00, 0x00, 0x9e, 0x04, 0x9d, 0x02,
0x00, 0x00, 0x9e, 0x04, 0x9e, 0x02, 0x00, 0x00,
0x9e, 0x04, 0x9f, 0x02, 0x00, 0x00, 0x9e, 0x04,
0xa0, 0x02, 0x00, 0x00, 0x9e, 0x04, 0xa1, 0x02,
0x00, 0x00, 0x9e, 0xc2, 0x12, 0x04, 0xa2, 0x02,
0x00, 0x00, 0xc2, 0x13, 0x04, 0xa3, 0x02, 0x00,
0x00, 0xc2, 0x14, 0xb4, 0xc8, 0xc4, 0xc7, 0xa4,
0x69, 0x71, 0x01, 0x00, 0x00, 0x07, 0xc2, 0x04,
0xc4, 0xca, 0xd0, 0xc4, 0x92, 0xc8, 0x47, 0xcd,
0x11, 0x04, 0x09, 0x02, 0x00, 0x00, 0xac, 0xea,
0x18, 0x11, 0x04, 0x80, 0x01, 0x00, 0x00, 0xac,
0xea, 0x0f, 0x11, 0x04, 0x83, 0x01, 0x00, 0x00,
0xac, 0xea, 0x06, 0x11, 0xdc, 0xac, 0xe9, 0x04,
0x0e, 0xeb, 0xcb, 0x11, 0x04, 0xa4, 0x02, 0x00,
0x00, 0xac, 0xea, 0x0a, 0x11, 0x04, 0x17, 0x02,
0x00, 0x00, 0xac, 0xe9, 0x18, 0xc4, 0xc7, 0xa4,
0xe9, 0x0d, 0xd0, 0xc4, 0x47, 0xc5, 0xaa, 0xe9,
0x06, 0x94, 0x00, 0x0e, 0xeb, 0xa8, 0xb5, 0xc2,
0x08, 0x0e, 0xeb, 0xa2, 0x11, 0x04, 0xeb, 0x01,
0x00, 0x00, 0xac, 0xe9, 0x44, 0xc4, 0xc7, 0xa4,
0xe9, 0x13, 0xd0, 0xc4, 0x47, 0x04, 0x7c, 0x00,
0x00, 0x00, 0xaa, 0xe9, 0x08, 0xc1, 0x0d, 0xed,
0x0e, 0xec, 0xe7, 0x00, 0xc4, 0xc7, 0xa4, 0xe9,
0x13, 0xd0, 0xc4, 0x47, 0x04, 0xeb, 0x01, 0x00,
0x00, 0xaa, 0xe9, 0x08, 0xc1, 0x0e, 0xed, 0x0e,
0xec, 0xd0, 0x00, 0xc1, 0x08, 0xe9, 0x0b, 0xc1,
0x10, 0xed, 0x0e, 0xb4, 0xc2, 0x08, 0xec, 0xc2,
0x00, 0xb5, 0xc2, 0x08, 0x0e, 0xec, 0x57, 0xff,
0x11, 0x04, 0xe7, 0x01, 0x00, 0x00, 0xac, 0xea,
0x13, 0x11, 0x04, 0xe8, 0x01, 0x00, 0x00, 0xac,
0xea, 0x0a, 0x11, 0x04, 0xa5, 0x02, 0x00, 0x00,
0xac, 0xe9, 0x0c, 0xc1, 0x0f, 0xc5, 0xee, 0x0e,
0xb4, 0xc2, 0x08, 0xec, 0x95, 0x00, 0x11, 0x04,
0x00, 0x02, 0x00, 0x00, 0xac, 0xea, 0x13, 0x11,
0x04, 0x0e, 0x02, 0x00, 0x00, 0xac, 0xea, 0x0a,
0x11, 0x04, 0xa6, 0x02, 0x00, 0x00, 0xac, 0xe9,
0x0f, 0xb5, 0xc2, 0x08, 0x94, 0x06, 0xc1, 0x0a,
0xc5, 0xee, 0x0e, 0x0e, 0xec, 0x08, 0xff, 0x11,
0x04, 0x01, 0x02, 0x00, 0x00, 0xac, 0xea, 0x13,
0x11, 0x04, 0xe9, 0x01, 0x00, 0x00, 0xac, 0xea,
0x0a, 0x11, 0x04, 0xea, 0x01, 0x00, 0x00, 0xac,
0xe9, 0x25, 0xb4, 0xc2, 0x08, 0xc1, 0x06, 0xb4,
0xa6, 0xe9, 0x13, 0xde, 0xc1, 0x0b, 0xed, 0xc5,
0xef, 0xe9, 0x0b, 0x93, 0x06, 0xc1, 0x0c, 0xed,
0x0e, 0x0e, 0xec, 0xd2, 0xfe, 0x04, 0x71, 0x01,
0x00, 0x00, 0xc2, 0x04, 0xeb, 0x2c, 0xdf, 0xc5,
0xee, 0xe9, 0x0a, 0xc1, 0x11, 0xed, 0x0e, 0xb4,
0xc2, 0x08, 0xeb, 0x1e, 0xdd, 0xc5, 0xee, 0x11,
0xea, 0x09, 0x0e, 0xc5, 0x04, 0xb5, 0x01, 0x00,
0x00, 0xaa, 0xe9, 0x07, 0xc1, 0x15, 0xed, 0x0e,
0xeb, 0x08, 0xb5, 0xc2, 0x08, 0x0e, 0xec, 0x9e,
0xfe, 0x0e, 0xc1, 0x04, 0x69, 0x98, 0xfe, 0xff,
0xff, 0xc1, 0x16, 0xc6, 0xc4, 0xef, 0x0e, 0xec,
0x8d, 0xfe, 0xc1, 0x16, 0xc7, 0xc7, 0xef, 0x0e,
0xc1, 0x05, 0xc1, 0x06, 0xc1, 0x09, 0x26, 0x03,
0x00, 0x28, 0x9c, 0x03, 0xc8, 0x0a, 0x58, 0xcb,
0x12, 0x21, 0x12, 0x00, 0x05, 0xc0, 0x01, 0x35,
0x21, 0x21, 0x21, 0x21, 0x21, 0x21, 0x21, 0x21,
0x13, 0x26, 0x00, 0x07, 0x54, 0x35, 0x12, 0x0d,
0x21, 0x30, 0x30, 0x30, 0x1c, 0x12, 0x30, 0x30,
0x3f, 0x0d, 0x13, 0x12, 0x12, 0x30, 0x53, 0x17,
0x13, 0x53, 0x17, 0x13, 0x17, 0x17, 0x12, 0x13,
0x12, 0x17, 0x30, 0x30, 0x30, 0x1c, 0x12, 0x12,
0x30, 0x30, 0x30, 0x12, 0x0d, 0x1c, 0x17, 0x30,
0x30, 0x30, 0x12, 0x49, 0x0d, 0x17, 0x18, 0x26,
0x0e, 0x1c, 0x17, 0x12, 0x0e, 0x53, 0x17, 0x0e,
0x12, 0x17, 0x08, 0x26, 0x21, 0x12, 0x21, 0x0e,
0x43, 0x06, 0x01, 0x96, 0x0a, 0x01, 0x00, 0x01,
0x02, 0x01, 0x00, 0x05, 0x01, 0xde, 0x06, 0x00,
0x01, 0x00, 0x90, 0x0a, 0x05, 0x01, 0xdc, 0xd0,
0x9e, 0xe0, 0x29, 0x9c, 0x03, 0xce, 0x0a, 0x00,
0x0e, 0x43, 0x06, 0x01, 0x98, 0x0a, 0x01, 0x00,
0x01, 0x04, 0x01, 0x00, 0x0d, 0x01, 0xde, 0x06,
0x00, 0x01, 0x00, 0x90, 0x0a, 0x05, 0x01, 0xdc,
0x42, 0xc5, 0x01, 0x00, 0x00, 0xdc, 0xe8, 0xb5,
0x9f, 0x25, 0x01, 0x00, 0x9c, 0x03, 0xcf, 0x0a,
0x00, 0x0e, 0x43, 0x06, 0x01, 0x9a, 0x0a, 0x01,
0x00, 0x01, 0x05, 0x02, 0x00, 0x14, 0x01, 0xde,
0x06, 0x00, 0x01, 0x00, 0x98, 0x0a, 0x0b, 0x01,
0x90, 0x0a, 0x05, 0x01, 0xdc, 0xed, 0xd4, 0xdd,
0x42, 0xc5, 0x01, 0x00, 0x00, 0xb4, 0xdd, 0xe8,
0xb5, 0x9f, 0x24, 0x02, 0x00, 0xe1, 0xd0, 0x28,
0x9c, 0x03, 0xd0, 0x0a, 0x03, 0x03, 0x12, 0x4e,
0x0e, 0x43, 0x06, 0x01, 0x9c, 0x0a, 0x00, 0x00,
0x00, 0x03, 0x06, 0x00, 0x49, 0x00, 0x86, 0x07,
0x04, 0x01, 0x96, 0x0a, 0x0a, 0x01, 0xd8, 0x06,
0x00, 0x01, 0x8c, 0x07, 0x03, 0x01, 0xec, 0x06,
0x00, 0x03, 0x9a, 0x0a, 0x0c, 0x01, 0x04, 0x6c,
0x01, 0x00, 0x00, 0xe0, 0xdd, 0x04, 0xeb, 0x01,
0x00, 0x00, 0xee, 0x0e, 0xde, 0x90, 0xe2, 0xde,
0xdf, 0xb5, 0x9f, 0xa4, 0xe9, 0x31, 0x5e, 0x04,
0x00, 0xde, 0x47, 0x04, 0x7c, 0x00, 0x00, 0x00,
0xaa, 0xe9, 0x1f, 0x5e, 0x04, 0x00, 0xde, 0xb5,
0x9e, 0x47, 0x04, 0xeb, 0x01, 0x00, 0x00, 0xaa,
0xe9, 0x10, 0xde, 0xb6, 0x9e, 0xe2, 0x5e, 0x05,
0x00, 0x04, 0xeb, 0x01, 0x00, 0x00, 0xee, 0x0e,
0x29, 0xde, 0x90, 0xe2, 0xeb, 0xca, 0x29, 0x9c,
0x03, 0xd6, 0x0a, 0x09, 0x03, 0x21, 0x2b, 0x35,
0x8f, 0x17, 0x35, 0x09, 0x1c, 0x0e, 0x43, 0x06,
0x01, 0x9e, 0x0a, 0x00, 0x00, 0x00, 0x02, 0x05,
0x00, 0x1d, 0x00, 0x86, 0x07, 0x04, 0x01, 0xd8,
0x06, 0x00, 0x01, 0x8c, 0x07, 0x03, 0x01, 0xec,
0x06, 0x00, 0x03, 0xf0, 0x03, 0x00, 0x00, 0x04,
0x6c, 0x01, 0x00, 0x00, 0xe0, 0xdd, 0x90, 0xe1,
0xdd, 0xde, 0xa4, 0xe9, 0x0f, 0xdf, 0xdd, 0x47,
0x5e, 0x04, 0x00, 0xaa, 0xea, 0x06, 0xdd, 0x90,
0xe1, 0xeb, 0xee, 0x29, 0x9c, 0x03, 0xe2, 0x0a,
0x06, 0x03, 0x21, 0x2b, 0x26, 0x0e, 0x1c, 0x0e,
0x43, 0x06, 0x01, 0xa0, 0x0a, 0x01, 0x00, 0x01,
0x03, 0x08, 0x00, 0x4a, 0x01, 0xce, 0x0a, 0x00,
0x01, 0x00, 0x86, 0x07, 0x04, 0x01, 0x96, 0x0a,
0x0a, 0x01, 0xd8, 0x06, 0x00, 0x01, 0x8c, 0x07,
0x03, 0x01, 0xde, 0x06, 0x01, 0x01, 0xec, 0x06,
0x00, 0x03, 0xf0, 0x03, 0x00, 0x00, 0x9a, 0x0a,
0x0c, 0x01, 0x04, 0x48, 0x00, 0x00, 0x00, 0xe0,
0xdd, 0xd0, 0xee, 0x0e, 0xde, 0xdf, 0xa4, 0xe9,
0x3b, 0x5e, 0x05, 0x00, 0xde, 0x92, 0xe2, 0x47,
0x60, 0x04, 0x00, 0x5e, 0x06, 0x00, 0xaa, 0xe9,
0x09, 0x04, 0x71, 0x01, 0x00, 0x00, 0xe0, 0xeb,
0xe4, 0x5e, 0x04, 0x00, 0x04, 0x38, 0x02, 0x00,
0x00, 0xaa, 0xe9, 0x0b, 0xde, 0xdf, 0xa7, 0xea,
0x13, 0xde, 0x90, 0xe2, 0xeb, 0xcf, 0x5e, 0x04,
0x00, 0xd0, 0xaa, 0xe9, 0xc8, 0x5e, 0x07, 0x00,
0xed, 0x0e, 0x29, 0x29, 0x9c, 0x03, 0xeb, 0x0a,
0x10, 0x03, 0x21, 0x17, 0x1c, 0x35, 0x21, 0x21,
0x0e, 0x3a, 0x12, 0x0d, 0x12, 0x0d, 0x26, 0x1c,
0x0a, 0x0e, 0x43, 0x06, 0x01, 0xa2, 0x0a, 0x00,
0x00, 0x00, 0x03, 0x0a, 0x00, 0xc2, 0x01, 0x00,
0x86, 0x07, 0x04, 0x01, 0x96, 0x0a, 0x0a, 0x01,
0xd8, 0x06, 0x00, 0x01, 0x8c, 0x07, 0x03, 0x01,
0xde, 0x06, 0x01, 0x01, 0xec, 0x06, 0x00, 0x03,
0xf0, 0x03, 0x00, 0x00, 0x98, 0x0a, 0x0b, 0x01,
0x9a, 0x0a, 0x0c, 0x01, 0xfe, 0x03, 0x01, 0x00,
0x04, 0x6d, 0x01, 0x00, 0x00, 0xe0, 0xdd, 0x04,
0xeb, 0x01, 0x00, 0x00, 0xee, 0x0e, 0xde, 0xdf,
0xa4, 0x69, 0xaf, 0x00, 0x00, 0x00, 0x5e, 0x05,
0x00, 0xde, 0x92, 0xe2, 0x47, 0x60, 0x04, 0x00,
0x5e, 0x06, 0x00, 0xaa, 0xe9, 0x09, 0x04, 0x71,
0x01, 0x00, 0x00, 0xe0, 0xeb, 0xe1, 0x5e, 0x04,
0x00, 0x04, 0x38, 0x02, 0x00, 0x00, 0xaa, 0xe9,
0x0b, 0xde, 0xdf, 0xa4, 0xe9, 0xd1, 0xde, 0x90,
0xe2, 0xeb, 0xcc, 0x5e, 0x07, 0x00, 0xed, 0x04,
0x0e, 0x02, 0x00, 0x00, 0xaa, 0xe9, 0x13, 0x5e,
0x04, 0x00, 0x04, 0xe9, 0x01, 0x00, 0x00, 0xaa,
0xe9, 0xb5, 0x5e, 0x08, 0x00, 0xed, 0x0e, 0xeb,
0xae, 0x5e, 0x04, 0x00, 0x04, 0x0e, 0x02, 0x00,
0x00, 0xaa, 0xe9, 0x2e, 0xdd, 0x04, 0x0e, 0x02,
0x00, 0x00, 0xee, 0x0e, 0x5e, 0x05, 0x00, 0xde,
0x47, 0x04, 0x0e, 0x02, 0x00, 0x00, 0xaa, 0x11,
0xea, 0x0d, 0x0e, 0x5e, 0x05, 0x00, 0xde, 0x47,
0x04, 0xe9, 0x01, 0x00, 0x00, 0xaa, 0x69, 0x7f,
0xff, 0xff, 0xff, 0xde, 0x90, 0xe2, 0xec, 0x77,
0xff, 0x5e, 0x04, 0x00, 0x04, 0xeb, 0x01, 0x00,
0x00, 0xaa, 0x69, 0x6b, 0xff, 0xff, 0xff, 0x5e,
0x08, 0x00, 0xed, 0x0e, 0xde, 0xdf, 0xa4, 0xe9,
0x11, 0x5e, 0x09, 0x00, 0x5e, 0x05, 0x00, 0xde,
0x47, 0xee, 0xe9, 0x06, 0xde, 0x90, 0xe2, 0xeb,
0xec, 0x29, 0x9c, 0x03, 0x80, 0x0b, 0x1b, 0x03,
0x21, 0x2b, 0x2b, 0x35, 0x21, 0x21, 0x0e, 0x3a,
0x1c, 0x13, 0x0e, 0x3f, 0x3a, 0x1e, 0x0e, 0x3a,
0x2b, 0x9e, 0x12, 0x13, 0x49, 0x1c, 0x53, 0x00,
0x05, 0x08, 0x0e, 0x43, 0x06, 0x01, 0xa4, 0x0a,
0x00, 0x00, 0x00, 0x03, 0x05, 0x00, 0x41, 0x00,
0x86, 0x07, 0x04, 0x01, 0xd8, 0x06, 0x00, 0x01,
0x8c, 0x07, 0x03, 0x01, 0xfe, 0x03, 0x01, 0x00,
0xec, 0x06, 0x00, 0x03, 0x04, 0x46, 0x00, 0x00,
0x00, 0xe0, 0xdd, 0xde, 0xa4, 0xe9, 0x36, 0xdf,
0x5e, 0x04, 0x00, 0xdd, 0x47, 0xee, 0x11, 0xea,
0x25, 0x0e, 0x5e, 0x04, 0x00, 0xdd, 0x47, 0x04,
0xe6, 0x01, 0x00, 0x00, 0xaa, 0xe9, 0x1e, 0xdd,
0xde, 0xb5, 0x9f, 0xaa, 0x11, 0xea, 0x0f, 0x0e,
0x5e, 0x04, 0x00, 0xdd, 0xb5, 0x9e, 0x47, 0x04,
0xe6, 0x01, 0x00, 0x00, 0xab, 0xe9, 0x06, 0xdd,
0x90, 0xe1, 0xeb, 0xc7, 0x29, 0x9c, 0x03, 0xa5,
0x0b, 0x07, 0x03, 0x21, 0x00, 0x35, 0x02, 0x12,
0x0d, 0x0e, 0x43, 0x06, 0x01, 0xac, 0x0a, 0x00,
0x02, 0x00, 0x05, 0x0a, 0x00, 0xb3, 0x01, 0x02,
0xd0, 0x0a, 0x00, 0x00, 0x00, 0xd2, 0x0a, 0x00,
0x01, 0x00, 0x94, 0x0a, 0x08, 0x01, 0xd8, 0x06,
0x00, 0x01, 0x8c, 0x07, 0x03, 0x01, 0xfe, 0x03,
0x01, 0x00, 0xec, 0x06, 0x00, 0x03, 0x80, 0x07,
0x02, 0x01, 0xa6, 0x0a, 0x12, 0x01, 0x86, 0x07,
0x04, 0x01, 0xa8, 0x0a, 0x13, 0x01, 0xaa, 0x0a,
0x14, 0x01, 0xb5, 0xe0, 0xdd, 0xde, 0xa4, 0xe9,
0x0f, 0xdf, 0x5e, 0x04, 0x00, 0xdd, 0x47, 0xee,
0xe9, 0x06, 0xdd, 0x90, 0xe1, 0xeb, 0xee, 0x04,
0x98, 0x02, 0x00, 0x00, 0x5e, 0x04, 0x00, 0x42,
0xc5, 0x01, 0x00, 0x00, 0x5e, 0x05, 0x00, 0xdd,
0x24, 0x02, 0x00, 0x9e, 0x04, 0x98, 0x02, 0x00,
0x00, 0x9e, 0xc8, 0x5e, 0x06, 0x00, 0x42, 0xe5,
0x01, 0x00, 0x00, 0xc4, 0x24, 0x01, 0x00, 0xb4,
0xa7, 0xe9, 0x1c, 0x04, 0x6e, 0x01, 0x00, 0x00,
0x5f, 0x07, 0x00, 0x5e, 0x08, 0x00, 0x42, 0xe5,
0x01, 0x00, 0x00, 0xc4, 0x24, 0x01, 0x00, 0xb4,
0xa7, 0xe9, 0x03, 0xb4, 0xe0, 0x29, 0xdd, 0xc9,
0xc5, 0xde, 0xa4, 0xe9, 0x12, 0x5e, 0x04, 0x00,
0xc5, 0x47, 0x04, 0x09, 0x02, 0x00, 0x00, 0xaa,
0xe9, 0x05, 0x94, 0x01, 0xeb, 0xeb, 0xc5, 0xde,
0xa4, 0xe9, 0x17, 0x5e, 0x04, 0x00, 0xc5, 0x47,
0x04, 0x00, 0x02, 0x00, 0x00, 0xaa, 0xe9, 0x0a,
0x04, 0x1b, 0x00, 0x00, 0x00, 0x5f, 0x07, 0x00,
0x29, 0x5e, 0x09, 0x00, 0x42, 0xe5, 0x01, 0x00,
0x00, 0xc4, 0x24, 0x01, 0x00, 0xb4, 0xa7, 0xe9,
0x0a, 0x04, 0x6f, 0x01, 0x00, 0x00, 0x5f, 0x07,
0x00, 0x29, 0x04, 0x70, 0x01, 0x00, 0x00, 0x5f,
0x07, 0x00, 0xb4, 0xe0, 0x29, 0x9c, 0x03, 0xba,
0x0b, 0x15, 0x03, 0x0e, 0x49, 0x1d, 0x90, 0x53,
0x2b, 0x53, 0x0e, 0x09, 0x0d, 0x5d, 0x18, 0x5d,
0x2c, 0x09, 0x53, 0x2c, 0x09, 0x2b, 0x0d, 0x0e,
0x43, 0x06, 0x01, 0xae, 0x0a, 0x02, 0x00, 0x02,
0x03, 0x02, 0x00, 0x2b, 0x02, 0xf2, 0x01, 0x00,
0x01, 0x00, 0xd4, 0x0a, 0x00, 0x01, 0x00, 0xde,
0x07, 0x09, 0x01, 0x86, 0x07, 0x04, 0x01, 0xdc,
0xe8, 0xd0, 0xa4, 0xe9, 0x12, 0xdc, 0x42, 0xd5,
0x01, 0x00, 0x00, 0x04, 0x16, 0x00, 0x00, 0x00,
0x24, 0x01, 0x00, 0x0e, 0xeb, 0xea, 0xdc, 0xe8,
0xd1, 0xa4, 0xe9, 0x0e, 0xdc, 0x42, 0xd5, 0x01,
0x00, 0x00, 0xdd, 0x24, 0x01, 0x00, 0x0e, 0xeb,
0xee, 0x29, 0x9c, 0x03, 0xdb, 0x0b, 0x05, 0x03,
0x21, 0x58, 0x21, 0x44,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_repl.c | C | apache-2.0 | 121,759 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_rtc_size = 682;
const uint8_t jslib_rtc[682] = {
0x01, 0x19, 0x14, 0x73, 0x72, 0x63, 0x2f, 0x72,
0x74, 0x63, 0x2e, 0x6a, 0x73, 0x06, 0x52, 0x54,
0x43, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x0e,
0x73, 0x65, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x0e,
0x67, 0x65, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x0a,
0x63, 0x6c, 0x6f, 0x73, 0x65, 0x08, 0x6f, 0x70,
0x65, 0x6e, 0x08, 0x74, 0x69, 0x6d, 0x65, 0x08,
0x64, 0x61, 0x74, 0x65, 0x22, 0x70, 0x61, 0x72,
0x61, 0x6d, 0x73, 0x20, 0x69, 0x73, 0x20, 0x69,
0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x0e, 0x67,
0x65, 0x74, 0x59, 0x65, 0x61, 0x72, 0x08, 0x79,
0x65, 0x61, 0x72, 0x10, 0x67, 0x65, 0x74, 0x4d,
0x6f, 0x6e, 0x74, 0x68, 0x0a, 0x6d, 0x6f, 0x6e,
0x74, 0x68, 0x0e, 0x67, 0x65, 0x74, 0x44, 0x61,
0x74, 0x65, 0x06, 0x64, 0x61, 0x79, 0x10, 0x67,
0x65, 0x74, 0x48, 0x6f, 0x75, 0x72, 0x73, 0x08,
0x68, 0x6f, 0x75, 0x72, 0x14, 0x67, 0x65, 0x74,
0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x73, 0x0c,
0x6d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x14, 0x67,
0x65, 0x74, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64,
0x73, 0x0c, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64,
0x0e, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
0x06, 0x6c, 0x6f, 0x67, 0x10, 0x70, 0x61, 0x72,
0x73, 0x65, 0x49, 0x6e, 0x74, 0x0f, 0x9c, 0x03,
0x01, 0x9e, 0x03, 0x04, 0x00, 0x01, 0xa0, 0x03,
0x00, 0x02, 0xa2, 0x03, 0x00, 0x03, 0xa4, 0x03,
0x00, 0x04, 0xa6, 0x03, 0x00, 0x01, 0x00, 0xf8,
0x01, 0x00, 0x0e, 0x00, 0x06, 0x01, 0xa0, 0x01,
0x00, 0x00, 0x00, 0x01, 0x05, 0x04, 0x0f, 0x00,
0x9e, 0x03, 0x00, 0x0d, 0xa0, 0x03, 0x00, 0x01,
0xa2, 0x03, 0x01, 0x01, 0xa4, 0x03, 0x02, 0x01,
0xa6, 0x03, 0x03, 0x01, 0xbf, 0x00, 0xe1, 0xbf,
0x01, 0xe2, 0xbf, 0x02, 0xe3, 0xbf, 0x03, 0x5f,
0x04, 0x00, 0x29, 0x9c, 0x03, 0x01, 0x04, 0x01,
0x00, 0x0e, 0x46, 0x0e, 0x43, 0x06, 0x01, 0xa0,
0x03, 0x00, 0x00, 0x00, 0x02, 0x01, 0x00, 0x0c,
0x00, 0x9e, 0x03, 0x00, 0x0c, 0x65, 0x00, 0x00,
0x42, 0xd4, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00,
0x29, 0x9c, 0x03, 0x03, 0x02, 0x03, 0x3a, 0x0e,
0x43, 0x06, 0x01, 0xa2, 0x03, 0x01, 0x01, 0x01,
0x03, 0x01, 0x00, 0x8f, 0x01, 0x02, 0xaa, 0x03,
0x00, 0x01, 0x00, 0xac, 0x03, 0x00, 0x00, 0x00,
0x9e, 0x03, 0x00, 0x0c, 0xd0, 0x97, 0xe9, 0x10,
0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0xd7,
0x00, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0xd0,
0x38, 0x95, 0x00, 0x00, 0x00, 0xa8, 0x97, 0xe9,
0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04,
0xd7, 0x00, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f,
0x0b, 0xd0, 0x42, 0xd8, 0x00, 0x00, 0x00, 0x24,
0x00, 0x00, 0x4c, 0xd9, 0x00, 0x00, 0x00, 0xd0,
0x42, 0xda, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00,
0x4c, 0xdb, 0x00, 0x00, 0x00, 0xd0, 0x42, 0xdc,
0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x4c, 0xdd,
0x00, 0x00, 0x00, 0xd0, 0x42, 0xde, 0x00, 0x00,
0x00, 0x24, 0x00, 0x00, 0x4c, 0xdf, 0x00, 0x00,
0x00, 0xd0, 0x42, 0xe0, 0x00, 0x00, 0x00, 0x24,
0x00, 0x00, 0x4c, 0xe1, 0x00, 0x00, 0x00, 0xd0,
0x42, 0xe2, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00,
0x4c, 0xe3, 0x00, 0x00, 0x00, 0xc8, 0x65, 0x00,
0x00, 0x42, 0xd1, 0x00, 0x00, 0x00, 0xc4, 0x24,
0x01, 0x00, 0x29, 0x9c, 0x03, 0x07, 0x10, 0x03,
0x17, 0x49, 0x09, 0x35, 0x49, 0x09, 0x08, 0x49,
0x49, 0x49, 0x49, 0x49, 0x49, 0x08, 0x3f, 0x0e,
0x43, 0x06, 0x01, 0xa4, 0x03, 0x00, 0x01, 0x00,
0x09, 0x01, 0x00, 0x71, 0x01, 0xaa, 0x03, 0x00,
0x00, 0x00, 0x9e, 0x03, 0x00, 0x0c, 0x65, 0x00,
0x00, 0x42, 0xd2, 0x00, 0x00, 0x00, 0x24, 0x00,
0x00, 0xc8, 0x38, 0xe4, 0x00, 0x00, 0x00, 0x42,
0xe5, 0x00, 0x00, 0x00, 0xc4, 0x24, 0x01, 0x00,
0x0e, 0x38, 0x95, 0x00, 0x00, 0x00, 0x11, 0x38,
0xe6, 0x00, 0x00, 0x00, 0xc4, 0x41, 0xd9, 0x00,
0x00, 0x00, 0xee, 0xbd, 0x6c, 0x07, 0x9e, 0x38,
0xe6, 0x00, 0x00, 0x00, 0xc4, 0x41, 0xdb, 0x00,
0x00, 0x00, 0xee, 0x38, 0xe6, 0x00, 0x00, 0x00,
0xc4, 0x41, 0xdd, 0x00, 0x00, 0x00, 0xee, 0x38,
0xe6, 0x00, 0x00, 0x00, 0xc4, 0x41, 0xdf, 0x00,
0x00, 0x00, 0xee, 0x38, 0xe6, 0x00, 0x00, 0x00,
0xc4, 0x41, 0xe1, 0x00, 0x00, 0x00, 0xee, 0x38,
0xe6, 0x00, 0x00, 0x00, 0xc4, 0x41, 0xe3, 0x00,
0x00, 0x00, 0xee, 0x21, 0x06, 0x00, 0x28, 0x9c,
0x03, 0x1b, 0x03, 0x03, 0x3f, 0x4e, 0x0e, 0x43,
0x06, 0x01, 0xa6, 0x03, 0x00, 0x00, 0x00, 0x02,
0x01, 0x00, 0x0c, 0x00, 0x9e, 0x03, 0x00, 0x0c,
0x65, 0x00, 0x00, 0x42, 0xd3, 0x00, 0x00, 0x00,
0x24, 0x00, 0x00, 0x29, 0x9c, 0x03, 0x21, 0x02,
0x03, 0x3a,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_rtc.c | C | apache-2.0 | 4,337 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_spi_size = 1188;
const uint8_t jslib_spi[1188] = {
0x01, 0x1b, 0x14, 0x73, 0x72, 0x63, 0x2f, 0x73,
0x70, 0x69, 0x2e, 0x6a, 0x73, 0x06, 0x53, 0x50,
0x49, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x0c, 0x48,
0x57, 0x5f, 0x53, 0x50, 0x49, 0x2c, 0x62, 0x79,
0x74, 0x65, 0x41, 0x72, 0x72, 0x61, 0x79, 0x54,
0x6f, 0x41, 0x72, 0x72, 0x61, 0x79, 0x42, 0x75,
0x66, 0x66, 0x65, 0x72, 0x0a, 0x5f, 0x6f, 0x70,
0x65, 0x6e, 0x0a, 0x77, 0x72, 0x69, 0x74, 0x65,
0x08, 0x72, 0x65, 0x61, 0x64, 0x12, 0x72, 0x65,
0x61, 0x64, 0x57, 0x72, 0x69, 0x74, 0x65, 0x0a,
0x63, 0x6c, 0x6f, 0x73, 0x65, 0x12, 0x62, 0x79,
0x74, 0x65, 0x41, 0x72, 0x72, 0x61, 0x79, 0x0c,
0x62, 0x75, 0x66, 0x66, 0x65, 0x72, 0x0e, 0x6f,
0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x04, 0x69,
0x64, 0x24, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
0x73, 0x20, 0x69, 0x73, 0x20, 0x69, 0x6e, 0x76,
0x61, 0x6c, 0x69, 0x64, 0x0e, 0x73, 0x75, 0x63,
0x63, 0x65, 0x73, 0x73, 0x08, 0x66, 0x61, 0x69,
0x6c, 0x16, 0x73, 0x70, 0x69, 0x49, 0x6e, 0x73,
0x74, 0x61, 0x6e, 0x63, 0x65, 0x08, 0x63, 0x61,
0x6c, 0x6c, 0x1e, 0x5b, 0x6f, 0x62, 0x6a, 0x65,
0x63, 0x74, 0x20, 0x4f, 0x62, 0x6a, 0x65, 0x63,
0x74, 0x5d, 0x08, 0x64, 0x61, 0x74, 0x61, 0x42,
0x73, 0x70, 0x69, 0x20, 0x6e, 0x6f, 0x74, 0x20,
0x69, 0x6e, 0x69, 0x74, 0x20, 0x6f, 0x72, 0x20,
0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x20, 0x69,
0x73, 0x20, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69,
0x64, 0x0a, 0x62, 0x79, 0x74, 0x65, 0x73, 0x0a,
0x73, 0x6c, 0x69, 0x63, 0x65, 0x10, 0x73, 0x65,
0x6e, 0x64, 0x44, 0x61, 0x74, 0x61, 0x10, 0x73,
0x65, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x76, 0x18,
0x73, 0x70, 0x69, 0x20, 0x6e, 0x6f, 0x74, 0x20,
0x69, 0x6e, 0x69, 0x74, 0x0f, 0x9c, 0x03, 0x01,
0x9e, 0x03, 0x01, 0x00, 0x03, 0xa0, 0x03, 0x00,
0x01, 0x00, 0xf8, 0x01, 0x00, 0x0e, 0x00, 0x06,
0x01, 0xa0, 0x01, 0x00, 0x02, 0x00, 0x03, 0x04,
0x08, 0x46, 0x02, 0xa2, 0x03, 0x02, 0x00, 0x60,
0xea, 0x01, 0x03, 0x01, 0xe0, 0x9e, 0x03, 0x00,
0x0d, 0xa4, 0x03, 0x00, 0x01, 0xa2, 0x03, 0x01,
0x09, 0xa0, 0x03, 0x02, 0x01, 0xbf, 0x00, 0xe1,
0xbf, 0x07, 0xe3, 0x61, 0x00, 0x00, 0x06, 0x61,
0x01, 0x00, 0xbe, 0x01, 0x56, 0xd1, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x02, 0x54, 0xd3, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x03, 0x54, 0xd4, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x04, 0x54, 0xd5, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x05, 0x54, 0xd6, 0x00, 0x00,
0x00, 0x00, 0xbf, 0x06, 0x54, 0xd7, 0x00, 0x00,
0x00, 0x00, 0x06, 0xc9, 0x0e, 0xcc, 0x68, 0x01,
0x00, 0xe2, 0x29, 0x9c, 0x03, 0x01, 0x17, 0x01,
0x00, 0x06, 0x0e, 0x00, 0x0f, 0x2c, 0x00, 0x08,
0x0e, 0x00, 0x08, 0x0e, 0x00, 0x08, 0x0e, 0x00,
0x08, 0x0e, 0x2b, 0x00, 0x08, 0x08, 0x0e, 0x43,
0x06, 0x01, 0xa4, 0x03, 0x01, 0x00, 0x01, 0x03,
0x00, 0x00, 0x10, 0x01, 0xb0, 0x03, 0x00, 0x01,
0x00, 0x38, 0x9e, 0x00, 0x00, 0x00, 0x11, 0xd0,
0x21, 0x01, 0x00, 0x41, 0xd9, 0x00, 0x00, 0x00,
0x28, 0x9c, 0x03, 0x03, 0x01, 0x03, 0x0e, 0x42,
0x07, 0x01, 0x00, 0x01, 0x01, 0x01, 0x03, 0x01,
0x02, 0x6d, 0x02, 0xb4, 0x03, 0x00, 0x01, 0x00,
0x10, 0x00, 0x01, 0x00, 0xea, 0x01, 0x01, 0x0d,
0x08, 0xc8, 0x2b, 0x65, 0x00, 0x00, 0x11, 0xe9,
0x06, 0xc4, 0x1b, 0x24, 0x00, 0x00, 0x0e, 0xd0,
0x97, 0x11, 0xea, 0x09, 0x0e, 0xd0, 0x41, 0xdb,
0x00, 0x00, 0x00, 0x97, 0xe9, 0x10, 0x38, 0x8d,
0x00, 0x00, 0x00, 0x11, 0x04, 0xdc, 0x00, 0x00,
0x00, 0x21, 0x01, 0x00, 0x2f, 0xc4, 0x0b, 0xd0,
0x41, 0xdb, 0x00, 0x00, 0x00, 0x4c, 0xdb, 0x00,
0x00, 0x00, 0x43, 0xda, 0x00, 0x00, 0x00, 0xc4,
0xd0, 0x41, 0xdd, 0x00, 0x00, 0x00, 0x11, 0xea,
0x04, 0x0e, 0xbf, 0x00, 0x43, 0xdd, 0x00, 0x00,
0x00, 0xc4, 0xd0, 0x41, 0xde, 0x00, 0x00, 0x00,
0x11, 0xea, 0x04, 0x0e, 0xbf, 0x01, 0x43, 0xde,
0x00, 0x00, 0x00, 0xc4, 0x42, 0xd3, 0x00, 0x00,
0x00, 0x24, 0x00, 0x00, 0x29, 0x9c, 0x03, 0x08,
0x0a, 0x4e, 0x4e, 0x49, 0x09, 0x0d, 0x3a, 0x1d,
0x5d, 0x5d, 0x30, 0x0e, 0x43, 0x06, 0x01, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
0x29, 0x9c, 0x03, 0x11, 0x00, 0x0e, 0x43, 0x06,
0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x01, 0x00, 0x29, 0x9c, 0x03, 0x12, 0x00, 0x0e,
0x42, 0x07, 0x01, 0x00, 0x00, 0x01, 0x00, 0x04,
0x01, 0x00, 0x59, 0x01, 0x10, 0x00, 0x01, 0x00,
0x9e, 0x03, 0x00, 0x0c, 0x08, 0xc8, 0xc4, 0x65,
0x00, 0x00, 0x42, 0xd0, 0x00, 0x00, 0x00, 0xc4,
0x41, 0xda, 0x00, 0x00, 0x00, 0x41, 0xdb, 0x00,
0x00, 0x00, 0x24, 0x01, 0x00, 0x43, 0xdf, 0x00,
0x00, 0x00, 0x38, 0x8b, 0x00, 0x00, 0x00, 0x41,
0x3b, 0x00, 0x00, 0x00, 0x41, 0x37, 0x00, 0x00,
0x00, 0x42, 0xe0, 0x00, 0x00, 0x00, 0xc4, 0x41,
0xdf, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0x04,
0xe1, 0x00, 0x00, 0x00, 0xad, 0xe9, 0x0c, 0xc4,
0x42, 0xde, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00,
0x0e, 0x29, 0xc4, 0x42, 0xdd, 0x00, 0x00, 0x00,
0x24, 0x00, 0x00, 0x0e, 0x29, 0x9c, 0x03, 0x16,
0x06, 0x0d, 0x8f, 0xbc, 0x35, 0x08, 0x36, 0x0e,
0x42, 0x07, 0x01, 0x00, 0x01, 0x01, 0x01, 0x04,
0x01, 0x00, 0x31, 0x02, 0xc4, 0x03, 0x00, 0x01,
0x00, 0x10, 0x00, 0x01, 0x00, 0xa4, 0x03, 0x01,
0x00, 0x08, 0xc8, 0xc4, 0x41, 0xdf, 0x00, 0x00,
0x00, 0x97, 0x11, 0xea, 0x04, 0x0e, 0xd0, 0x97,
0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11,
0x04, 0xe3, 0x00, 0x00, 0x00, 0x21, 0x01, 0x00,
0x2f, 0xc4, 0x41, 0xdf, 0x00, 0x00, 0x00, 0x42,
0xd4, 0x00, 0x00, 0x00, 0xdc, 0xd0, 0xee, 0x25,
0x01, 0x00, 0x9c, 0x03, 0x1f, 0x04, 0x0d, 0x4e,
0x49, 0x08, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x01,
0x01, 0x01, 0x07, 0x00, 0x00, 0x4f, 0x02, 0xc8,
0x03, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00,
0x08, 0xc8, 0xc4, 0x41, 0xdf, 0x00, 0x00, 0x00,
0x97, 0x11, 0xea, 0x04, 0x0e, 0xd0, 0x97, 0xe9,
0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04,
0xe3, 0x00, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f,
0x38, 0x8c, 0x00, 0x00, 0x00, 0x41, 0x3b, 0x00,
0x00, 0x00, 0x41, 0xe5, 0x00, 0x00, 0x00, 0x42,
0xe0, 0x00, 0x00, 0x00, 0x38, 0x9e, 0x00, 0x00,
0x00, 0x11, 0xc4, 0x41, 0xdf, 0x00, 0x00, 0x00,
0x42, 0xd5, 0x00, 0x00, 0x00, 0xd0, 0x24, 0x01,
0x00, 0x21, 0x01, 0x00, 0x25, 0x01, 0x00, 0x9c,
0x03, 0x26, 0x04, 0x0d, 0x4e, 0x49, 0x08, 0x0e,
0x42, 0x07, 0x01, 0x00, 0x02, 0x01, 0x02, 0x08,
0x01, 0x00, 0x58, 0x03, 0xcc, 0x03, 0x00, 0x01,
0x00, 0xc8, 0x03, 0x00, 0x01, 0x00, 0x10, 0x00,
0x01, 0x00, 0xa4, 0x03, 0x01, 0x00, 0x08, 0xc8,
0xc4, 0x41, 0xdf, 0x00, 0x00, 0x00, 0x97, 0x11,
0xea, 0x0a, 0x0e, 0xd0, 0x97, 0x11, 0xea, 0x04,
0x0e, 0xd1, 0x97, 0xe9, 0x10, 0x38, 0x8d, 0x00,
0x00, 0x00, 0x11, 0x04, 0xe3, 0x00, 0x00, 0x00,
0x21, 0x01, 0x00, 0x2f, 0x38, 0x8c, 0x00, 0x00,
0x00, 0x41, 0x3b, 0x00, 0x00, 0x00, 0x41, 0xe5,
0x00, 0x00, 0x00, 0x42, 0xe0, 0x00, 0x00, 0x00,
0x38, 0x9e, 0x00, 0x00, 0x00, 0x11, 0xc4, 0x41,
0xdf, 0x00, 0x00, 0x00, 0x42, 0xe7, 0x00, 0x00,
0x00, 0xdc, 0xd0, 0xee, 0xd1, 0x24, 0x02, 0x00,
0x21, 0x01, 0x00, 0x25, 0x01, 0x00, 0x9c, 0x03,
0x2d, 0x04, 0x0d, 0x6c, 0x49, 0x08, 0x0e, 0x42,
0x07, 0x01, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00,
0x00, 0x2f, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08,
0xc8, 0xc4, 0x41, 0xdf, 0x00, 0x00, 0x00, 0x97,
0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11,
0x04, 0xe8, 0x00, 0x00, 0x00, 0x21, 0x01, 0x00,
0x2f, 0xc4, 0x41, 0xdf, 0x00, 0x00, 0x00, 0x42,
0xd7, 0x00, 0x00, 0x00, 0xc4, 0x41, 0xdf, 0x00,
0x00, 0x00, 0x24, 0x01, 0x00, 0x29, 0x9c, 0x03,
0x34, 0x05, 0x0d, 0x30, 0x49, 0x08, 0x67, 0x0e,
0x43, 0x06, 0x01, 0xa0, 0x03, 0x01, 0x00, 0x01,
0x03, 0x01, 0x00, 0x09, 0x01, 0xb4, 0x03, 0x00,
0x01, 0x00, 0xa2, 0x03, 0x02, 0x08, 0x65, 0x00,
0x00, 0x11, 0xd0, 0x21, 0x01, 0x00, 0x28, 0x9c,
0x03, 0x3c, 0x01, 0x03,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_spi.c | C | apache-2.0 | 7,438 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_tcp_size = 1792;
const uint8_t jslib_tcp[1792] = {
0x01, 0x28, 0x14, 0x73, 0x72, 0x63, 0x2f, 0x74,
0x63, 0x70, 0x2e, 0x6a, 0x73, 0x0c, 0x65, 0x76,
0x65, 0x6e, 0x74, 0x73, 0x06, 0x54, 0x43, 0x50,
0x18, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43,
0x6c, 0x69, 0x65, 0x6e, 0x74, 0x12, 0x54, 0x43,
0x50, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x0a,
0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x45, 0x76,
0x65, 0x6e, 0x74, 0x45, 0x6d, 0x69, 0x74, 0x74,
0x65, 0x72, 0x10, 0x5f, 0x63, 0x6f, 0x6e, 0x6e,
0x65, 0x63, 0x74, 0x08, 0x73, 0x65, 0x6e, 0x64,
0x18, 0x5f, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74,
0x65, 0x6e, 0x69, 0x6e, 0x67, 0x0a, 0x63, 0x6c,
0x6f, 0x73, 0x65, 0x12, 0x72, 0x65, 0x63, 0x6f,
0x6e, 0x6e, 0x65, 0x63, 0x74, 0x0e, 0x6f, 0x70,
0x74, 0x69, 0x6f, 0x6e, 0x73, 0x08, 0x68, 0x6f,
0x73, 0x74, 0x08, 0x70, 0x6f, 0x72, 0x74, 0x1c,
0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x20,
0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x0e, 0x73,
0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x08, 0x66,
0x61, 0x69, 0x6c, 0x04, 0x63, 0x62, 0x12, 0x63,
0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x65, 0x64,
0x18, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53,
0x6f, 0x63, 0x6b, 0x65, 0x74, 0x08, 0x62, 0x69,
0x6e, 0x64, 0x08, 0x65, 0x6d, 0x69, 0x74, 0x0a,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x74, 0x63,
0x70, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63,
0x74, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x06,
0x72, 0x65, 0x74, 0x22, 0x74, 0x63, 0x70, 0x43,
0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x73,
0x74, 0x61, 0x6e, 0x63, 0x65, 0x0e, 0x63, 0x6f,
0x6e, 0x6e, 0x65, 0x63, 0x74, 0x32, 0x74, 0x63,
0x70, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x20, 0x6d,
0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x20, 0x69,
0x73, 0x20, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x22,
0x74, 0x63, 0x70, 0x20, 0x6e, 0x6f, 0x74, 0x20,
0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x65,
0x64, 0x1c, 0x74, 0x63, 0x70, 0x20, 0x73, 0x65,
0x6e, 0x64, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x20, 0x74, 0x63, 0x70, 0x20, 0x73, 0x65, 0x6e,
0x64, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73,
0x73, 0x24, 0x74, 0x63, 0x70, 0x73, 0x65, 0x72,
0x76, 0x65, 0x72, 0x20, 0x6e, 0x6f, 0x74, 0x20,
0x69, 0x6e, 0x69, 0x74, 0x08, 0x72, 0x65, 0x63,
0x76, 0x0e, 0x64, 0x61, 0x74, 0x61, 0x6c, 0x65,
0x6e, 0x08, 0x64, 0x61, 0x74, 0x61, 0x32, 0x74,
0x63, 0x70, 0x20, 0x72, 0x65, 0x63, 0x65, 0x69,
0x76, 0x65, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61,
0x67, 0x65, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x14, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x6e, 0x6e,
0x65, 0x63, 0x74, 0x2c, 0x74, 0x63, 0x70, 0x20,
0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20, 0x63,
0x6c, 0x6f, 0x73, 0x65, 0x20, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x30, 0x74, 0x63, 0x70, 0x20, 0x73,
0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20, 0x63, 0x6c,
0x6f, 0x73, 0x65, 0x20, 0x73, 0x75, 0x63, 0x63,
0x65, 0x73, 0x73, 0x0f, 0x9c, 0x03, 0x02, 0x9e,
0x03, 0xa0, 0x03, 0x01, 0x00, 0x03, 0xa2, 0x03,
0x00, 0x02, 0x00, 0xf8, 0x01, 0x00, 0x01, 0xf8,
0x01, 0x01, 0x0e, 0x00, 0x06, 0x01, 0xa0, 0x01,
0x00, 0x02, 0x00, 0x03, 0x04, 0x07, 0x4a, 0x02,
0xa4, 0x03, 0x02, 0x00, 0x60, 0xea, 0x01, 0x03,
0x01, 0xe0, 0xa6, 0x03, 0x00, 0x0d, 0xa0, 0x03,
0x01, 0x0d, 0xa4, 0x03, 0x00, 0x09, 0xa2, 0x03,
0x01, 0x01, 0xbf, 0x06, 0xe3, 0x61, 0x00, 0x00,
0x65, 0x00, 0x00, 0x41, 0xd4, 0x00, 0x00, 0x00,
0x61, 0x01, 0x00, 0xbe, 0x00, 0x56, 0xd2, 0x00,
0x00, 0x00, 0x01, 0xbf, 0x01, 0x54, 0xd5, 0x00,
0x00, 0x00, 0x00, 0xbf, 0x02, 0x54, 0xd6, 0x00,
0x00, 0x00, 0x00, 0xbf, 0x03, 0x54, 0xd7, 0x00,
0x00, 0x00, 0x00, 0xbf, 0x04, 0x54, 0xd8, 0x00,
0x00, 0x00, 0x00, 0xbf, 0x05, 0x54, 0xd9, 0x00,
0x00, 0x00, 0x00, 0x06, 0xc9, 0x0e, 0xcc, 0x68,
0x01, 0x00, 0xe2, 0x29, 0x9c, 0x03, 0x01, 0x17,
0x01, 0x00, 0x03, 0x0a, 0x00, 0x16, 0x48, 0x00,
0x08, 0x26, 0x00, 0x08, 0x2a, 0x00, 0x08, 0x18,
0x00, 0x08, 0x0e, 0x2b, 0x00, 0x08, 0x08, 0x0e,
0xc6, 0x07, 0x01, 0x00, 0x01, 0x03, 0x01, 0x03,
0x01, 0x02, 0xa3, 0x01, 0x04, 0xb4, 0x03, 0x00,
0x01, 0x00, 0xe2, 0x01, 0x00, 0x01, 0x00, 0xe0,
0x01, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x40,
0xea, 0x01, 0x01, 0x0d, 0x0c, 0x02, 0xc8, 0x0c,
0x03, 0xc9, 0x61, 0x02, 0x00, 0x2b, 0xc4, 0x34,
0xc5, 0x21, 0x00, 0x00, 0x11, 0x64, 0x02, 0x00,
0x65, 0x00, 0x00, 0x11, 0xe9, 0x08, 0x62, 0x02,
0x00, 0x1b, 0x24, 0x00, 0x00, 0x0e, 0x0e, 0xd0,
0x97, 0x11, 0xea, 0x14, 0x0e, 0xd0, 0x41, 0xdb,
0x00, 0x00, 0x00, 0x97, 0x11, 0xea, 0x09, 0x0e,
0xd0, 0x41, 0xdc, 0x00, 0x00, 0x00, 0x97, 0xe9,
0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04,
0xdd, 0x00, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f,
0x62, 0x02, 0x00, 0x0b, 0xd0, 0x41, 0xdb, 0x00,
0x00, 0x00, 0x4c, 0xdb, 0x00, 0x00, 0x00, 0xd0,
0x41, 0xdc, 0x00, 0x00, 0x00, 0x4c, 0xdc, 0x00,
0x00, 0x00, 0x43, 0xda, 0x00, 0x00, 0x00, 0x62,
0x02, 0x00, 0xd0, 0x41, 0xde, 0x00, 0x00, 0x00,
0x11, 0xea, 0x04, 0x0e, 0xbf, 0x00, 0x43, 0xde,
0x00, 0x00, 0x00, 0x62, 0x02, 0x00, 0xd0, 0x41,
0xdf, 0x00, 0x00, 0x00, 0x11, 0xea, 0x04, 0x0e,
0xbf, 0x01, 0x43, 0xdf, 0x00, 0x00, 0x00, 0x62,
0x02, 0x00, 0x42, 0xd5, 0x00, 0x00, 0x00, 0x24,
0x00, 0x00, 0x0e, 0x62, 0x02, 0x00, 0x28, 0x9c,
0x03, 0x06, 0x0c, 0x35, 0x80, 0x85, 0x49, 0x09,
0x17, 0x3a, 0x3a, 0x1d, 0x67, 0x67, 0x3f, 0x0e,
0x43, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x01, 0x00, 0x29, 0x9c, 0x03, 0x11,
0x00, 0x0e, 0x43, 0x06, 0x01, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x29, 0x9c,
0x03, 0x12, 0x00, 0x0e, 0x42, 0x07, 0x01, 0x00,
0x00, 0x02, 0x00, 0x06, 0x01, 0x01, 0x4f, 0x02,
0xc0, 0x03, 0x00, 0x00, 0x00, 0x10, 0x00, 0x01,
0x00, 0xa0, 0x03, 0x01, 0x0c, 0x08, 0xc9, 0xc5,
0x09, 0x43, 0xe1, 0x00, 0x00, 0x00, 0xbf, 0x00,
0x4d, 0xe0, 0x00, 0x00, 0x00, 0xc8, 0x65, 0x00,
0x00, 0x42, 0xe2, 0x00, 0x00, 0x00, 0xc5, 0x41,
0xda, 0x00, 0x00, 0x00, 0xc4, 0x42, 0xe3, 0x00,
0x00, 0x00, 0xc5, 0x24, 0x01, 0x00, 0x24, 0x02,
0x00, 0xb4, 0xa4, 0xe9, 0x1f, 0xc5, 0x42, 0xdf,
0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x0e, 0xc5,
0x42, 0xe4, 0x00, 0x00, 0x00, 0x04, 0xe5, 0x00,
0x00, 0x00, 0x04, 0xe6, 0x00, 0x00, 0x00, 0x24,
0x02, 0x00, 0x0e, 0x29, 0x9c, 0x03, 0x16, 0x08,
0x0d, 0x00, 0x07, 0x18, 0x2c, 0x9e, 0x35, 0x68,
0x0e, 0x43, 0x06, 0x01, 0x00, 0x01, 0x01, 0x01,
0x04, 0x00, 0x00, 0x56, 0x02, 0xce, 0x03, 0x00,
0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc8,
0xd0, 0xb4, 0xa4, 0xe9, 0x1f, 0xc4, 0x42, 0xdf,
0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x0e, 0xc4,
0x42, 0xe4, 0x00, 0x00, 0x00, 0x04, 0xe5, 0x00,
0x00, 0x00, 0x04, 0xe6, 0x00, 0x00, 0x00, 0x24,
0x02, 0x00, 0x29, 0xc4, 0xd0, 0x43, 0xe8, 0x00,
0x00, 0x00, 0xc4, 0x0a, 0x43, 0xe1, 0x00, 0x00,
0x00, 0xc4, 0x42, 0xde, 0x00, 0x00, 0x00, 0x24,
0x00, 0x00, 0x0e, 0xc4, 0x42, 0xe4, 0x00, 0x00,
0x00, 0x04, 0xe9, 0x00, 0x00, 0x00, 0x24, 0x01,
0x00, 0x0e, 0xc4, 0x42, 0xd7, 0x00, 0x00, 0x00,
0x24, 0x00, 0x00, 0x29, 0x9c, 0x03, 0x18, 0x0a,
0x0d, 0x1c, 0x35, 0x63, 0x08, 0x26, 0x26, 0x35,
0x4e, 0x30, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x01,
0x01, 0x01, 0x07, 0x01, 0x01, 0x56, 0x02, 0xb4,
0x03, 0x00, 0x01, 0x80, 0x10, 0x00, 0x01, 0x00,
0xa0, 0x03, 0x01, 0x0c, 0x08, 0xc8, 0xd0, 0x41,
0x33, 0x00, 0x00, 0x00, 0x97, 0xe9, 0x10, 0x38,
0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0xea, 0x00,
0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0xc4, 0x41,
0xe1, 0x00, 0x00, 0x00, 0x09, 0xac, 0xe9, 0x10,
0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0xeb,
0x00, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0x65,
0x00, 0x00, 0x42, 0xd6, 0x00, 0x00, 0x00, 0xc4,
0x41, 0xe8, 0x00, 0x00, 0x00, 0xd0, 0x41, 0x33,
0x00, 0x00, 0x00, 0xbf, 0x00, 0x42, 0xe3, 0x00,
0x00, 0x00, 0xc4, 0x24, 0x01, 0x00, 0x24, 0x03,
0x00, 0x29, 0x9c, 0x03, 0x2b, 0x0b, 0x0d, 0x30,
0x49, 0x09, 0x35, 0x49, 0x08, 0x00, 0x14, 0x10,
0x49, 0x0e, 0x43, 0x06, 0x01, 0x00, 0x01, 0x01,
0x01, 0x04, 0x01, 0x00, 0x55, 0x02, 0xce, 0x03,
0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0xb4,
0x03, 0x00, 0x03, 0x08, 0xc8, 0xd0, 0xb4, 0xa4,
0xe9, 0x28, 0xc4, 0x42, 0xe4, 0x00, 0x00, 0x00,
0x04, 0xe5, 0x00, 0x00, 0x00, 0x04, 0xec, 0x00,
0x00, 0x00, 0x24, 0x02, 0x00, 0x0e, 0xdc, 0x41,
0xdf, 0x00, 0x00, 0x00, 0xe9, 0x0b, 0xdc, 0x42,
0xdf, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x0e,
0x29, 0xc4, 0x42, 0xe4, 0x00, 0x00, 0x00, 0x04,
0xd6, 0x00, 0x00, 0x00, 0x04, 0xed, 0x00, 0x00,
0x00, 0x24, 0x02, 0x00, 0x0e, 0xdc, 0x41, 0xde,
0x00, 0x00, 0x00, 0xe9, 0x0b, 0xdc, 0x42, 0xde,
0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x0e, 0x29,
0x9c, 0x03, 0x33, 0x07, 0x0d, 0x1c, 0x67, 0x5e,
0x08, 0x67, 0x5d, 0x0e, 0x42, 0x07, 0x01, 0x00,
0x00, 0x01, 0x00, 0x06, 0x01, 0x01, 0x37, 0x01,
0x10, 0x00, 0x01, 0x00, 0xa0, 0x03, 0x01, 0x0c,
0x08, 0xc8, 0xc4, 0x41, 0xe8, 0x00, 0x00, 0x00,
0x97, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00,
0x11, 0x04, 0xee, 0x00, 0x00, 0x00, 0x21, 0x01,
0x00, 0x2f, 0x65, 0x00, 0x00, 0x42, 0xef, 0x00,
0x00, 0x00, 0xc4, 0x41, 0xe8, 0x00, 0x00, 0x00,
0xbf, 0x00, 0x42, 0xe3, 0x00, 0x00, 0x00, 0xc4,
0x24, 0x01, 0x00, 0x24, 0x02, 0x00, 0x29, 0x9c,
0x03, 0x3e, 0x08, 0x0d, 0x30, 0x49, 0x08, 0x00,
0x0e, 0x1c, 0x49, 0x0e, 0x43, 0x06, 0x01, 0x00,
0x02, 0x01, 0x02, 0x04, 0x00, 0x00, 0x54, 0x03,
0xe0, 0x03, 0x00, 0x01, 0x00, 0xe2, 0x03, 0x00,
0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc8,
0xd0, 0xbc, 0xfe, 0xac, 0xe9, 0x1c, 0xc4, 0x09,
0x43, 0xe1, 0x00, 0x00, 0x00, 0xc4, 0x42, 0xe4,
0x00, 0x00, 0x00, 0x04, 0xe5, 0x00, 0x00, 0x00,
0x04, 0xf2, 0x00, 0x00, 0x00, 0x24, 0x02, 0x00,
0x29, 0xd0, 0xb3, 0xac, 0xe9, 0x17, 0xc4, 0x09,
0x43, 0xe1, 0x00, 0x00, 0x00, 0xc4, 0x42, 0xe4,
0x00, 0x00, 0x00, 0x04, 0xf3, 0x00, 0x00, 0x00,
0x24, 0x01, 0x00, 0x29, 0xd0, 0xb4, 0xa6, 0xe9,
0x11, 0xc4, 0x42, 0xe4, 0x00, 0x00, 0x00, 0x04,
0x33, 0x00, 0x00, 0x00, 0xd1, 0x24, 0x02, 0x00,
0x0e, 0x29, 0x9c, 0x03, 0x42, 0x0b, 0x0d, 0x21,
0x26, 0x63, 0x08, 0x1c, 0x26, 0x4a, 0x08, 0x1c,
0x54, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x02,
0x00, 0x04, 0x01, 0x00, 0x58, 0x02, 0xce, 0x03,
0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00, 0xa0,
0x03, 0x01, 0x0c, 0x08, 0xc9, 0xc5, 0x41, 0xe8,
0x00, 0x00, 0x00, 0x97, 0xe9, 0x10, 0x38, 0x8d,
0x00, 0x00, 0x00, 0x11, 0x04, 0xee, 0x00, 0x00,
0x00, 0x21, 0x01, 0x00, 0x2f, 0x65, 0x00, 0x00,
0x42, 0xd8, 0x00, 0x00, 0x00, 0xc5, 0x41, 0xe8,
0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0xcc, 0xb4,
0xab, 0xe9, 0x15, 0xc5, 0x42, 0xe4, 0x00, 0x00,
0x00, 0x04, 0xe5, 0x00, 0x00, 0x00, 0x04, 0xf4,
0x00, 0x00, 0x00, 0x24, 0x02, 0x00, 0x29, 0xc5,
0x42, 0xe4, 0x00, 0x00, 0x00, 0x04, 0xd8, 0x00,
0x00, 0x00, 0x04, 0xf5, 0x00, 0x00, 0x00, 0x24,
0x02, 0x00, 0x29, 0x9c, 0x03, 0x53, 0x09, 0x0d,
0x30, 0x49, 0x08, 0x5d, 0x17, 0x63, 0x08, 0x62,
0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x01, 0x00,
0x03, 0x01, 0x00, 0x26, 0x01, 0x10, 0x00, 0x01,
0x00, 0xa0, 0x03, 0x01, 0x0c, 0x08, 0xc8, 0xc4,
0x41, 0xe8, 0x00, 0x00, 0x00, 0xe9, 0x13, 0x65,
0x00, 0x00, 0x42, 0xd8, 0x00, 0x00, 0x00, 0xc4,
0x41, 0xe8, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00,
0x0e, 0xc4, 0x42, 0xd5, 0x00, 0x00, 0x00, 0x24,
0x00, 0x00, 0x29, 0x9c, 0x03, 0x5f, 0x04, 0x0d,
0x2b, 0x5e, 0x30, 0x0e, 0x43, 0x06, 0x01, 0xa2,
0x03, 0x01, 0x00, 0x01, 0x03, 0x01, 0x00, 0x09,
0x01, 0xb4, 0x03, 0x00, 0x01, 0x00, 0xa4, 0x03,
0x02, 0x08, 0x65, 0x00, 0x00, 0x11, 0xd0, 0x21,
0x01, 0x00, 0x28, 0x9c, 0x03, 0x67, 0x01, 0x03,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_tcp.c | C | apache-2.0 | 11,137 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_uart_size = 1451;
const uint8_t jslib_uart[1451] = {
0x01, 0x22, 0x16, 0x73, 0x72, 0x63, 0x2f, 0x75,
0x61, 0x72, 0x74, 0x2e, 0x6a, 0x73, 0x08, 0x55,
0x41, 0x52, 0x54, 0x0c, 0x65, 0x76, 0x65, 0x6e,
0x74, 0x73, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x0e,
0x48, 0x57, 0x5f, 0x55, 0x41, 0x52, 0x54, 0x0a,
0x65, 0x76, 0x65, 0x6e, 0x74, 0x2c, 0x62, 0x79,
0x74, 0x65, 0x41, 0x72, 0x72, 0x61, 0x79, 0x54,
0x6f, 0x41, 0x72, 0x72, 0x61, 0x79, 0x42, 0x75,
0x66, 0x66, 0x65, 0x72, 0x18, 0x45, 0x76, 0x65,
0x6e, 0x74, 0x45, 0x6d, 0x69, 0x74, 0x74, 0x65,
0x72, 0x0a, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x0a,
0x77, 0x72, 0x69, 0x74, 0x65, 0x08, 0x72, 0x65,
0x61, 0x64, 0x06, 0x6f, 0x66, 0x66, 0x0e, 0x5f,
0x6f, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x0a, 0x63,
0x6c, 0x6f, 0x73, 0x65, 0x0e, 0x6f, 0x6e, 0x5f,
0x6d, 0x6f, 0x64, 0x65, 0x12, 0x62, 0x79, 0x74,
0x65, 0x41, 0x72, 0x72, 0x61, 0x79, 0x0c, 0x62,
0x75, 0x66, 0x66, 0x65, 0x72, 0x0e, 0x6f, 0x70,
0x74, 0x69, 0x6f, 0x6e, 0x73, 0x04, 0x69, 0x64,
0x24, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
0x20, 0x69, 0x73, 0x20, 0x69, 0x6e, 0x76, 0x61,
0x6c, 0x69, 0x64, 0x08, 0x6d, 0x6f, 0x64, 0x65,
0x0e, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73,
0x08, 0x66, 0x61, 0x69, 0x6c, 0x08, 0x70, 0x6f,
0x6c, 0x6c, 0x18, 0x75, 0x61, 0x72, 0x74, 0x49,
0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x08,
0x64, 0x61, 0x74, 0x61, 0x1a, 0x75, 0x61, 0x72,
0x74, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x69, 0x6e,
0x69, 0x74, 0x08, 0x63, 0x61, 0x6c, 0x6c, 0x1e,
0x5b, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5d, 0x24,
0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x41, 0x6c,
0x6c, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65,
0x72, 0x73, 0x04, 0x6f, 0x6e, 0x08, 0x62, 0x69,
0x6e, 0x64, 0x06, 0x6c, 0x65, 0x6e, 0x08, 0x65,
0x6d, 0x69, 0x74, 0x0f, 0x9c, 0x03, 0x02, 0x9e,
0x03, 0xa0, 0x03, 0x01, 0x00, 0x04, 0xa2, 0x03,
0x00, 0x02, 0x00, 0xf8, 0x01, 0x00, 0x01, 0xf8,
0x01, 0x01, 0x0e, 0x00, 0x06, 0x01, 0xa0, 0x01,
0x00, 0x02, 0x00, 0x03, 0x05, 0x0a, 0x5f, 0x02,
0xa4, 0x03, 0x02, 0x00, 0x60, 0xea, 0x01, 0x03,
0x01, 0xe0, 0x9e, 0x03, 0x00, 0x0d, 0xa6, 0x03,
0x01, 0x0d, 0xa8, 0x03, 0x00, 0x01, 0xa4, 0x03,
0x01, 0x09, 0xa2, 0x03, 0x02, 0x01, 0xbf, 0x00,
0xe2, 0xbf, 0x09, 0x5f, 0x04, 0x00, 0x61, 0x00,
0x00, 0x65, 0x01, 0x00, 0x41, 0xd5, 0x00, 0x00,
0x00, 0x61, 0x01, 0x00, 0xbe, 0x01, 0x56, 0xd2,
0x00, 0x00, 0x00, 0x01, 0xbf, 0x02, 0x54, 0xd6,
0x00, 0x00, 0x00, 0x00, 0xbf, 0x03, 0x54, 0xd7,
0x00, 0x00, 0x00, 0x00, 0xbf, 0x04, 0x54, 0xd8,
0x00, 0x00, 0x00, 0x00, 0xbf, 0x05, 0x54, 0xd9,
0x00, 0x00, 0x00, 0x00, 0xbf, 0x06, 0x54, 0xda,
0x00, 0x00, 0x00, 0x00, 0xbf, 0x07, 0x54, 0xdb,
0x00, 0x00, 0x00, 0x00, 0xbf, 0x08, 0x54, 0xdc,
0x00, 0x00, 0x00, 0x00, 0x06, 0xc9, 0x0e, 0xcc,
0x68, 0x01, 0x00, 0xe3, 0x29, 0x9c, 0x03, 0x01,
0x1d, 0x01, 0x00, 0x08, 0x10, 0x00, 0x16, 0x36,
0x00, 0x08, 0x18, 0x00, 0x08, 0x0e, 0x00, 0x08,
0x0e, 0x00, 0x08, 0x12, 0x00, 0x08, 0x0e, 0x00,
0x08, 0x0e, 0x2b, 0x00, 0x08, 0x08, 0x0e, 0x43,
0x06, 0x01, 0xa8, 0x03, 0x01, 0x00, 0x01, 0x03,
0x00, 0x00, 0x10, 0x01, 0xba, 0x03, 0x00, 0x01,
0x00, 0x38, 0x9e, 0x00, 0x00, 0x00, 0x11, 0xd0,
0x21, 0x01, 0x00, 0x41, 0xde, 0x00, 0x00, 0x00,
0x28, 0x9c, 0x03, 0x04, 0x01, 0x03, 0x0e, 0xc6,
0x07, 0x01, 0x00, 0x01, 0x03, 0x01, 0x03, 0x01,
0x02, 0xb9, 0x01, 0x04, 0xbe, 0x03, 0x00, 0x01,
0x00, 0xe2, 0x01, 0x00, 0x01, 0x00, 0xe0, 0x01,
0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x40, 0xea,
0x01, 0x01, 0x0d, 0x0c, 0x02, 0xc8, 0x0c, 0x03,
0xc9, 0x61, 0x02, 0x00, 0x2b, 0xc4, 0x34, 0xc5,
0x21, 0x00, 0x00, 0x11, 0x64, 0x02, 0x00, 0x65,
0x00, 0x00, 0x11, 0xe9, 0x08, 0x62, 0x02, 0x00,
0x1b, 0x24, 0x00, 0x00, 0x0e, 0x0e, 0xd0, 0x97,
0x11, 0xea, 0x09, 0x0e, 0xd0, 0x41, 0xe0, 0x00,
0x00, 0x00, 0x97, 0xe9, 0x10, 0x38, 0x8d, 0x00,
0x00, 0x00, 0x11, 0x04, 0xe1, 0x00, 0x00, 0x00,
0x21, 0x01, 0x00, 0x2f, 0x62, 0x02, 0x00, 0x0b,
0xd0, 0x41, 0xe0, 0x00, 0x00, 0x00, 0x4c, 0xe0,
0x00, 0x00, 0x00, 0xd0, 0x41, 0xe2, 0x00, 0x00,
0x00, 0x4c, 0xe2, 0x00, 0x00, 0x00, 0x43, 0xdf,
0x00, 0x00, 0x00, 0x62, 0x02, 0x00, 0xd0, 0x41,
0xe3, 0x00, 0x00, 0x00, 0x11, 0xea, 0x04, 0x0e,
0xbf, 0x00, 0x43, 0xe3, 0x00, 0x00, 0x00, 0x62,
0x02, 0x00, 0xd0, 0x41, 0xe4, 0x00, 0x00, 0x00,
0x11, 0xea, 0x04, 0x0e, 0xbf, 0x01, 0x43, 0xe4,
0x00, 0x00, 0x00, 0x62, 0x02, 0x00, 0x42, 0xd6,
0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x0e, 0x62,
0x02, 0x00, 0x41, 0xdf, 0x00, 0x00, 0x00, 0x41,
0xe2, 0x00, 0x00, 0x00, 0x04, 0xe5, 0x00, 0x00,
0x00, 0xad, 0xe9, 0x0d, 0x62, 0x02, 0x00, 0x42,
0xda, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x0e,
0x62, 0x02, 0x00, 0x28, 0x9c, 0x03, 0x09, 0x0e,
0x35, 0x81, 0x4e, 0x49, 0x08, 0x17, 0x3a, 0x3a,
0x1d, 0x67, 0x67, 0x3f, 0x6c, 0x40, 0x0e, 0x43,
0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x01, 0x00, 0x29, 0x9c, 0x03, 0x14, 0x00,
0x0e, 0x43, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x01, 0x00, 0x29, 0x9c, 0x03,
0x15, 0x00, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00,
0x01, 0x00, 0x04, 0x01, 0x00, 0x3b, 0x01, 0x10,
0x00, 0x01, 0x00, 0x9e, 0x03, 0x00, 0x0c, 0x08,
0xc8, 0xc4, 0x65, 0x00, 0x00, 0x42, 0xd1, 0x00,
0x00, 0x00, 0xc4, 0x41, 0xdf, 0x00, 0x00, 0x00,
0x41, 0xe0, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00,
0x43, 0xe6, 0x00, 0x00, 0x00, 0xc4, 0x41, 0xe6,
0x00, 0x00, 0x00, 0xf2, 0xe9, 0x0b, 0xc4, 0x42,
0xe4, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x29,
0xc4, 0x42, 0xe3, 0x00, 0x00, 0x00, 0x24, 0x00,
0x00, 0x29, 0x9c, 0x03, 0x1c, 0x06, 0x0d, 0x8f,
0x30, 0x31, 0x08, 0x30, 0x0e, 0x42, 0x07, 0x01,
0x00, 0x01, 0x01, 0x01, 0x04, 0x01, 0x00, 0x64,
0x02, 0xce, 0x03, 0x00, 0x01, 0x00, 0x10, 0x00,
0x01, 0x00, 0xa8, 0x03, 0x02, 0x00, 0x08, 0xc8,
0xc4, 0x41, 0xe6, 0x00, 0x00, 0x00, 0xf2, 0x11,
0xea, 0x04, 0x0e, 0xd0, 0x97, 0xe9, 0x10, 0x38,
0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0xe8, 0x00,
0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0x38, 0x8b,
0x00, 0x00, 0x00, 0x41, 0x3b, 0x00, 0x00, 0x00,
0x41, 0x37, 0x00, 0x00, 0x00, 0x42, 0xe9, 0x00,
0x00, 0x00, 0xd0, 0x24, 0x01, 0x00, 0x04, 0xea,
0x00, 0x00, 0x00, 0xad, 0xe9, 0x14, 0xc4, 0x41,
0xe6, 0x00, 0x00, 0x00, 0x42, 0xd7, 0x00, 0x00,
0x00, 0xdc, 0xd0, 0xee, 0x24, 0x01, 0x00, 0x0e,
0x29, 0xc4, 0x41, 0xe6, 0x00, 0x00, 0x00, 0x42,
0xd7, 0x00, 0x00, 0x00, 0xd0, 0x24, 0x01, 0x00,
0x0e, 0x29, 0x9c, 0x03, 0x25, 0x08, 0x0d, 0x4e,
0x49, 0x09, 0xa3, 0x5d, 0x08, 0x54, 0x0e, 0x42,
0x07, 0x01, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00,
0x00, 0x28, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08,
0xc8, 0xc4, 0x41, 0xe6, 0x00, 0x00, 0x00, 0xf2,
0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11,
0x04, 0xe8, 0x00, 0x00, 0x00, 0x21, 0x01, 0x00,
0x2f, 0xc4, 0x41, 0xe6, 0x00, 0x00, 0x00, 0x42,
0xd8, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x9c,
0x03, 0x31, 0x04, 0x0d, 0x30, 0x49, 0x08, 0x0e,
0x42, 0x07, 0x01, 0x00, 0x00, 0x01, 0x00, 0x03,
0x00, 0x00, 0x29, 0x01, 0x10, 0x00, 0x01, 0x00,
0x08, 0xc8, 0xc4, 0x41, 0xe6, 0x00, 0x00, 0x00,
0xf2, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00, 0x00,
0x11, 0x04, 0xe8, 0x00, 0x00, 0x00, 0x21, 0x01,
0x00, 0x2f, 0xc4, 0x42, 0xeb, 0x00, 0x00, 0x00,
0x04, 0xe7, 0x00, 0x00, 0x00, 0x24, 0x01, 0x00,
0x29, 0x9c, 0x03, 0x38, 0x05, 0x0d, 0x30, 0x49,
0x08, 0x49, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00,
0x01, 0x00, 0x05, 0x00, 0x01, 0x34, 0x01, 0x10,
0x00, 0x01, 0x00, 0x08, 0xc8, 0xc4, 0x41, 0xe6,
0x00, 0x00, 0x00, 0xf2, 0xe9, 0x10, 0x38, 0x8d,
0x00, 0x00, 0x00, 0x11, 0x04, 0xe8, 0x00, 0x00,
0x00, 0x21, 0x01, 0x00, 0x2f, 0xc4, 0x41, 0xe6,
0x00, 0x00, 0x00, 0x42, 0xec, 0x00, 0x00, 0x00,
0xbf, 0x00, 0x42, 0xed, 0x00, 0x00, 0x00, 0xc4,
0x24, 0x01, 0x00, 0x24, 0x01, 0x00, 0x29, 0x9c,
0x03, 0x3e, 0x06, 0x0d, 0x30, 0x49, 0x09, 0x3b,
0x49, 0x0e, 0x43, 0x06, 0x01, 0x00, 0x02, 0x01,
0x02, 0x05, 0x00, 0x00, 0x13, 0x03, 0xce, 0x03,
0x00, 0x01, 0x00, 0xdc, 0x03, 0x00, 0x01, 0x00,
0x10, 0x00, 0x01, 0x00, 0x08, 0xc8, 0xc4, 0x42,
0xef, 0x00, 0x00, 0x00, 0x04, 0xe7, 0x00, 0x00,
0x00, 0xd0, 0xd1, 0x24, 0x03, 0x00, 0x29, 0x9c,
0x03, 0x43, 0x02, 0x0d, 0x53, 0x0e, 0x42, 0x07,
0x01, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00,
0x29, 0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0xc8,
0xc4, 0x41, 0xe6, 0x00, 0x00, 0x00, 0xf2, 0xe9,
0x10, 0x38, 0x8d, 0x00, 0x00, 0x00, 0x11, 0x04,
0xe8, 0x00, 0x00, 0x00, 0x21, 0x01, 0x00, 0x2f,
0xc4, 0x41, 0xe6, 0x00, 0x00, 0x00, 0x42, 0xdb,
0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x29, 0x9c,
0x03, 0x48, 0x05, 0x0d, 0x30, 0x49, 0x08, 0x49,
0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x01, 0x00,
0x03, 0x00, 0x00, 0x24, 0x01, 0x10, 0x00, 0x01,
0x00, 0x08, 0xc8, 0xc4, 0x41, 0xe6, 0x00, 0x00,
0x00, 0xf2, 0xe9, 0x10, 0x38, 0x8d, 0x00, 0x00,
0x00, 0x11, 0x04, 0xe8, 0x00, 0x00, 0x00, 0x21,
0x01, 0x00, 0x2f, 0xc4, 0x42, 0xda, 0x00, 0x00,
0x00, 0x24, 0x00, 0x00, 0x29, 0x9c, 0x03, 0x4f,
0x05, 0x0d, 0x30, 0x49, 0x08, 0x30, 0x0e, 0x43,
0x06, 0x01, 0xa2, 0x03, 0x01, 0x00, 0x01, 0x03,
0x01, 0x00, 0x09, 0x01, 0xbe, 0x03, 0x00, 0x01,
0x00, 0xa4, 0x03, 0x03, 0x08, 0x65, 0x00, 0x00,
0x11, 0xd0, 0x21, 0x01, 0x00, 0x28, 0x9c, 0x03,
0x57, 0x01, 0x03,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_uart.c | C | apache-2.0 | 9,051 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_udp_size = 1347;
const uint8_t jslib_udp[1347] = {
0x01, 0x25, 0x14, 0x73, 0x72, 0x63, 0x2f, 0x75,
0x64, 0x70, 0x2e, 0x6a, 0x73, 0x06, 0x55, 0x44,
0x50, 0x0c, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73,
0x18, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53,
0x6f, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x55, 0x44,
0x50, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x0a,
0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x45, 0x76,
0x65, 0x6e, 0x74, 0x45, 0x6d, 0x69, 0x74, 0x74,
0x65, 0x72, 0x08, 0x62, 0x69, 0x6e, 0x64, 0x08,
0x73, 0x65, 0x6e, 0x64, 0x0a, 0x63, 0x6c, 0x6f,
0x73, 0x65, 0x18, 0x5f, 0x6f, 0x6e, 0x4c, 0x69,
0x73, 0x74, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x22,
0x75, 0x64, 0x70, 0x43, 0x6c, 0x69, 0x65, 0x6e,
0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63,
0x65, 0x28, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
0x20, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x21, 0x12, 0x6c,
0x6f, 0x63, 0x61, 0x6c, 0x50, 0x6f, 0x72, 0x74,
0x08, 0x70, 0x6f, 0x72, 0x74, 0x14, 0x62, 0x69,
0x6e, 0x64, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
0x32, 0x75, 0x64, 0x70, 0x20, 0x73, 0x65, 0x6e,
0x64, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
0x65, 0x20, 0x69, 0x73, 0x20, 0x65, 0x6d, 0x70,
0x74, 0x79, 0x0c, 0x62, 0x75, 0x66, 0x66, 0x65,
0x72, 0x0c, 0x73, 0x65, 0x6e, 0x64, 0x74, 0x6f,
0x06, 0x72, 0x65, 0x74, 0x0e, 0x63, 0x6f, 0x6e,
0x73, 0x6f, 0x6c, 0x65, 0x06, 0x6c, 0x6f, 0x67,
0x20, 0x73, 0x65, 0x6e, 0x64, 0x74, 0x6f, 0x20,
0x63, 0x61, 0x6c, 0x6c, 0x62, 0x61, 0x63, 0x6b,
0x20, 0x08, 0x65, 0x6d, 0x69, 0x74, 0x0a, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x1c, 0x75, 0x64, 0x70,
0x20, 0x73, 0x65, 0x6e, 0x64, 0x20, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x08, 0x66, 0x61, 0x69, 0x6c,
0x20, 0x75, 0x64, 0x70, 0x20, 0x73, 0x65, 0x6e,
0x64, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73,
0x73, 0x0e, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73,
0x73, 0x2c, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x20,
0x75, 0x64, 0x70, 0x20, 0x73, 0x6f, 0x63, 0x6b,
0x65, 0x74, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x64,
0x20, 0x75, 0x64, 0x70, 0x20, 0x63, 0x6c, 0x69,
0x65, 0x6e, 0x74, 0x20, 0x63, 0x6c, 0x6f, 0x73,
0x65, 0x10, 0x72, 0x65, 0x63, 0x76, 0x66, 0x72,
0x6f, 0x6d, 0x08, 0x64, 0x61, 0x74, 0x61, 0x0a,
0x72, 0x69, 0x6e, 0x66, 0x6f, 0x06, 0x65, 0x72,
0x72, 0x3a, 0x75, 0x64, 0x70, 0x20, 0x63, 0x6c,
0x69, 0x65, 0x6e, 0x74, 0x20, 0x72, 0x65, 0x63,
0x65, 0x69, 0x76, 0x65, 0x20, 0x64, 0x61, 0x74,
0x61, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x0f,
0x9c, 0x03, 0x02, 0x9e, 0x03, 0xa0, 0x03, 0x01,
0x00, 0x03, 0xa2, 0x03, 0x00, 0x02, 0x00, 0xf8,
0x01, 0x00, 0x01, 0xf8, 0x01, 0x01, 0x0e, 0x00,
0x06, 0x01, 0xa0, 0x01, 0x00, 0x02, 0x00, 0x03,
0x04, 0x06, 0x42, 0x02, 0xa4, 0x03, 0x02, 0x00,
0x60, 0xea, 0x01, 0x03, 0x01, 0xe0, 0x9e, 0x03,
0x00, 0x0d, 0xa6, 0x03, 0x01, 0x0d, 0xa4, 0x03,
0x00, 0x09, 0xa2, 0x03, 0x01, 0x01, 0xbf, 0x05,
0xe3, 0x61, 0x00, 0x00, 0x65, 0x01, 0x00, 0x41,
0xd4, 0x00, 0x00, 0x00, 0x61, 0x01, 0x00, 0xbe,
0x00, 0x56, 0xd2, 0x00, 0x00, 0x00, 0x01, 0xbf,
0x01, 0x54, 0xd5, 0x00, 0x00, 0x00, 0x00, 0xbf,
0x02, 0x54, 0xd6, 0x00, 0x00, 0x00, 0x00, 0xbf,
0x03, 0x54, 0xd7, 0x00, 0x00, 0x00, 0x00, 0xbf,
0x04, 0x54, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x06,
0xc9, 0x0e, 0xcc, 0x68, 0x01, 0x00, 0xe2, 0x29,
0x9c, 0x03, 0x01, 0x14, 0x01, 0x00, 0x03, 0x0c,
0x00, 0x16, 0x20, 0x00, 0x08, 0x22, 0x00, 0x08,
0x12, 0x00, 0x08, 0x18, 0x2b, 0x00, 0x08, 0x08,
0x0e, 0xc6, 0x07, 0x01, 0x00, 0x00, 0x03, 0x00,
0x03, 0x02, 0x00, 0x5e, 0x03, 0xe2, 0x01, 0x00,
0x01, 0x00, 0xe0, 0x01, 0x00, 0x01, 0x00, 0x10,
0x00, 0x01, 0x40, 0xea, 0x01, 0x01, 0x0d, 0x9e,
0x03, 0x00, 0x0c, 0x0c, 0x02, 0xc8, 0x0c, 0x03,
0xc9, 0x61, 0x02, 0x00, 0x2b, 0xc4, 0x34, 0xc5,
0x21, 0x00, 0x00, 0x11, 0x64, 0x02, 0x00, 0x65,
0x00, 0x00, 0x11, 0xe9, 0x08, 0x62, 0x02, 0x00,
0x1b, 0x24, 0x00, 0x00, 0x0e, 0x0e, 0x62, 0x02,
0x00, 0x65, 0x01, 0x00, 0x42, 0xd1, 0x00, 0x00,
0x00, 0x24, 0x00, 0x00, 0x43, 0xd9, 0x00, 0x00,
0x00, 0x62, 0x02, 0x00, 0x41, 0xd9, 0x00, 0x00,
0x00, 0xb4, 0xa4, 0xe9, 0x10, 0x38, 0x8d, 0x00,
0x00, 0x00, 0x11, 0x04, 0xda, 0x00, 0x00, 0x00,
0x21, 0x01, 0x00, 0x2f, 0x62, 0x02, 0x00, 0xb4,
0x43, 0xdb, 0x00, 0x00, 0x00, 0x62, 0x02, 0x00,
0x28, 0x9c, 0x03, 0x07, 0x07, 0x35, 0x80, 0x62,
0x3f, 0x49, 0x08, 0x30, 0x0e, 0x42, 0x07, 0x01,
0x00, 0x01, 0x01, 0x01, 0x04, 0x01, 0x00, 0x42,
0x02, 0xb8, 0x03, 0x00, 0x01, 0x00, 0x10, 0x00,
0x01, 0x00, 0x9e, 0x03, 0x00, 0x0c, 0x08, 0xc8,
0xc4, 0xd0, 0x11, 0xea, 0x03, 0x0e, 0xb4, 0x43,
0xdb, 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x42,
0xd5, 0x00, 0x00, 0x00, 0xc4, 0x41, 0xd9, 0x00,
0x00, 0x00, 0xc4, 0x41, 0xdb, 0x00, 0x00, 0x00,
0x24, 0x02, 0x00, 0xb4, 0xa4, 0xe9, 0x10, 0x38,
0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0xdd, 0x00,
0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0xc4, 0x42,
0xd8, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x29,
0x9c, 0x03, 0x10, 0x06, 0x0d, 0x3f, 0x8a, 0x49,
0x08, 0x30, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x01,
0x01, 0x01, 0x07, 0x01, 0x01, 0x58, 0x02, 0xbc,
0x03, 0x00, 0x01, 0x80, 0x10, 0x00, 0x01, 0x00,
0x9e, 0x03, 0x00, 0x0c, 0x08, 0xc8, 0xd0, 0x41,
0x33, 0x00, 0x00, 0x00, 0x38, 0x8c, 0x00, 0x00,
0x00, 0xa8, 0x97, 0xe9, 0x10, 0x38, 0x8d, 0x00,
0x00, 0x00, 0x11, 0x04, 0xdf, 0x00, 0x00, 0x00,
0x21, 0x01, 0x00, 0x2f, 0xd0, 0x38, 0x9e, 0x00,
0x00, 0x00, 0x11, 0xd0, 0x41, 0x33, 0x00, 0x00,
0x00, 0x21, 0x01, 0x00, 0x41, 0xe0, 0x00, 0x00,
0x00, 0x43, 0x33, 0x00, 0x00, 0x00, 0x65, 0x00,
0x00, 0x42, 0xe1, 0x00, 0x00, 0x00, 0xc4, 0x41,
0xd9, 0x00, 0x00, 0x00, 0xd0, 0xbf, 0x00, 0x42,
0xd5, 0x00, 0x00, 0x00, 0xc4, 0x24, 0x01, 0x00,
0x24, 0x03, 0x00, 0x29, 0x9c, 0x03, 0x18, 0x09,
0x0d, 0x4e, 0x49, 0x08, 0x85, 0x00, 0x0f, 0x12,
0x49, 0x0e, 0x43, 0x06, 0x01, 0x00, 0x01, 0x01,
0x01, 0x04, 0x01, 0x00, 0x6a, 0x02, 0xc4, 0x03,
0x00, 0x01, 0x00, 0x10, 0x00, 0x01, 0x00, 0xbc,
0x03, 0x00, 0x03, 0x08, 0xc8, 0x38, 0xe3, 0x00,
0x00, 0x00, 0x42, 0xe4, 0x00, 0x00, 0x00, 0x04,
0xe5, 0x00, 0x00, 0x00, 0xd0, 0x9e, 0x24, 0x01,
0x00, 0x0e, 0xd0, 0xb4, 0xa4, 0xe9, 0x28, 0xc4,
0x42, 0xe6, 0x00, 0x00, 0x00, 0x04, 0xe7, 0x00,
0x00, 0x00, 0x04, 0xe8, 0x00, 0x00, 0x00, 0x24,
0x02, 0x00, 0x0e, 0xdc, 0x41, 0xe9, 0x00, 0x00,
0x00, 0xe9, 0x0b, 0xdc, 0x42, 0xe9, 0x00, 0x00,
0x00, 0x24, 0x00, 0x00, 0x0e, 0x29, 0xc4, 0x42,
0xe6, 0x00, 0x00, 0x00, 0x04, 0xd6, 0x00, 0x00,
0x00, 0x04, 0xea, 0x00, 0x00, 0x00, 0x24, 0x02,
0x00, 0x0e, 0xdc, 0x41, 0xeb, 0x00, 0x00, 0x00,
0xe9, 0x0b, 0xdc, 0x42, 0xeb, 0x00, 0x00, 0x00,
0x24, 0x00, 0x00, 0x0e, 0x29, 0x9c, 0x03, 0x1d,
0x08, 0x0d, 0x6c, 0x1c, 0x67, 0x5e, 0x08, 0x67,
0x5d, 0x0e, 0x42, 0x07, 0x01, 0x00, 0x00, 0x02,
0x00, 0x04, 0x01, 0x00, 0x3f, 0x02, 0xc4, 0x03,
0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00, 0x9e,
0x03, 0x00, 0x0c, 0x08, 0xc9, 0x65, 0x00, 0x00,
0x42, 0xd7, 0x00, 0x00, 0x00, 0xc5, 0x41, 0xd9,
0x00, 0x00, 0x00, 0x24, 0x01, 0x00, 0xcc, 0xb4,
0xa4, 0xe9, 0x14, 0x38, 0xe3, 0x00, 0x00, 0x00,
0x42, 0xe4, 0x00, 0x00, 0x00, 0x04, 0xec, 0x00,
0x00, 0x00, 0x24, 0x01, 0x00, 0x29, 0xc5, 0x42,
0xe6, 0x00, 0x00, 0x00, 0x04, 0xd7, 0x00, 0x00,
0x00, 0x04, 0xed, 0x00, 0x00, 0x00, 0x24, 0x02,
0x00, 0x29, 0x9c, 0x03, 0x29, 0x06, 0x0d, 0x5d,
0x17, 0x5e, 0x08, 0x62, 0x0e, 0x42, 0x07, 0x01,
0x00, 0x00, 0x01, 0x00, 0x06, 0x01, 0x01, 0x1f,
0x01, 0x10, 0x00, 0x01, 0x00, 0x9e, 0x03, 0x00,
0x0c, 0x08, 0xc8, 0x65, 0x00, 0x00, 0x42, 0xee,
0x00, 0x00, 0x00, 0xc4, 0x41, 0xd9, 0x00, 0x00,
0x00, 0xbf, 0x00, 0x42, 0xd5, 0x00, 0x00, 0x00,
0xc4, 0x24, 0x01, 0x00, 0x24, 0x02, 0x00, 0x29,
0x9c, 0x03, 0x32, 0x05, 0x0d, 0x00, 0x0e, 0x10,
0x49, 0x0e, 0x43, 0x06, 0x01, 0x00, 0x03, 0x01,
0x03, 0x05, 0x00, 0x00, 0x33, 0x04, 0xde, 0x03,
0x00, 0x01, 0x00, 0xe0, 0x03, 0x00, 0x01, 0x00,
0xe2, 0x03, 0x00, 0x01, 0x00, 0x10, 0x00, 0x01,
0x00, 0x08, 0xc8, 0xd2, 0xbc, 0xfc, 0xac, 0xe9,
0x15, 0xc4, 0x42, 0xe6, 0x00, 0x00, 0x00, 0x04,
0xe7, 0x00, 0x00, 0x00, 0x04, 0xf2, 0x00, 0x00,
0x00, 0x24, 0x02, 0x00, 0x29, 0xd2, 0xb4, 0xa6,
0xe9, 0x12, 0xc4, 0x42, 0xe6, 0x00, 0x00, 0x00,
0x04, 0x33, 0x00, 0x00, 0x00, 0xd0, 0xd1, 0x24,
0x03, 0x00, 0x0e, 0x29, 0x9c, 0x03, 0x33, 0x06,
0x0d, 0x21, 0x63, 0x08, 0x1c, 0x59, 0x0e, 0x43,
0x06, 0x01, 0xa2, 0x03, 0x01, 0x00, 0x01, 0x03,
0x01, 0x00, 0x09, 0x01, 0xbc, 0x03, 0x00, 0x01,
0x00, 0xa4, 0x03, 0x02, 0x08, 0x65, 0x00, 0x00,
0x11, 0xd0, 0x21, 0x01, 0x00, 0x28, 0x9c, 0x03,
0x3f, 0x01, 0x03,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_udp.c | C | apache-2.0 | 8,412 |
/* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t jslib_wdg_size = 268;
const uint8_t jslib_wdg[268] = {
0x01, 0x07, 0x14, 0x73, 0x72, 0x63, 0x2f, 0x77,
0x64, 0x67, 0x2e, 0x6a, 0x73, 0x06, 0x57, 0x44,
0x47, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x08,
0x66, 0x65, 0x65, 0x64, 0x08, 0x73, 0x74, 0x6f,
0x70, 0x0e, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75,
0x74, 0x22, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73,
0x20, 0x69, 0x73, 0x20, 0x69, 0x6e, 0x76, 0x61,
0x6c, 0x69, 0x64, 0x0f, 0x9c, 0x03, 0x01, 0x9e,
0x03, 0x03, 0x00, 0x01, 0xa0, 0x03, 0x00, 0x02,
0xa2, 0x03, 0x00, 0x03, 0xa4, 0x03, 0x00, 0x01,
0x00, 0xf8, 0x01, 0x00, 0x0e, 0x00, 0x06, 0x01,
0xa0, 0x01, 0x00, 0x00, 0x00, 0x01, 0x04, 0x03,
0x0a, 0x00, 0x9e, 0x03, 0x00, 0x0d, 0xa0, 0x03,
0x00, 0x01, 0xa2, 0x03, 0x01, 0x01, 0xa4, 0x03,
0x02, 0x01, 0xbf, 0x00, 0xe1, 0xbf, 0x01, 0xe2,
0xbf, 0x02, 0xe3, 0x29, 0x9c, 0x03, 0x01, 0x04,
0x01, 0x00, 0x09, 0x20, 0x0e, 0x43, 0x06, 0x01,
0xa0, 0x03, 0x01, 0x00, 0x01, 0x03, 0x01, 0x00,
0x20, 0x01, 0xa6, 0x03, 0x00, 0x01, 0x00, 0x9e,
0x03, 0x00, 0x0c, 0xd0, 0x97, 0xe9, 0x10, 0x38,
0x8d, 0x00, 0x00, 0x00, 0x11, 0x04, 0xd4, 0x00,
0x00, 0x00, 0x21, 0x01, 0x00, 0x2f, 0x65, 0x00,
0x00, 0x42, 0xd0, 0x00, 0x00, 0x00, 0xd0, 0x24,
0x01, 0x00, 0x29, 0x9c, 0x03, 0x03, 0x05, 0x03,
0x17, 0x49, 0x08, 0x3f, 0x0e, 0x43, 0x06, 0x01,
0xa2, 0x03, 0x00, 0x00, 0x00, 0x02, 0x01, 0x00,
0x0c, 0x00, 0x9e, 0x03, 0x00, 0x0c, 0x65, 0x00,
0x00, 0x42, 0xd1, 0x00, 0x00, 0x00, 0x24, 0x00,
0x00, 0x29, 0x9c, 0x03, 0x0a, 0x02, 0x03, 0x3a,
0x0e, 0x43, 0x06, 0x01, 0xa4, 0x03, 0x00, 0x00,
0x00, 0x02, 0x01, 0x00, 0x0c, 0x00, 0x9e, 0x03,
0x00, 0x0c, 0x65, 0x00, 0x00, 0x42, 0xd2, 0x00,
0x00, 0x00, 0x24, 0x00, 0x00, 0x29, 0x9c, 0x03,
0x0e, 0x02, 0x03, 0x3a,
};
| YifuLiu/AliOS-Things | components/amp/jslib/bytecode/jslib_wdg.c | C | apache-2.0 | 1,801 |
.\qjsc.exe -c -m -M GPIO -N jslib_gpio -o bytecode\jslib_gpio.c src\gpio.js
.\qjsc.exe -c -m -N jslib_events -o bytecode\jslib_events.c src\events.js
.\qjsc.exe -c -m -M events -M CRYPTO -N jslib_crypto -o bytecode\jslib_crypto.c src\crypto.js
.\qjsc.exe -c -m -M events -M APPOTA -N jslib_appota -o bytecode\jslib_appota.c src\appota.js
.\qjsc.exe -c -m -M events -M AIOT_DEVICE -M AIOT_GATEWAY -N jslib_iot -o bytecode\jslib_iot.c src\iot.js
.\qjsc.exe -c -m -M events -M BT_HOST -N jslib_bt_host -o bytecode\jslib_bt_host.c src\bt_host.js
.\qjsc.exe -c -m -M REPL -M os -M std -N jslib_repl -o bytecode\jslib_repl.c src\repl.js
.\qjsc.exe -c -m -M events -M UART -N jslib_uart -o bytecode\jslib_uart.c src\uart.js
.\qjsc.exe -c -m -M events -M FS -N jslib_fs -o bytecode\jslib_fs.c src\fs.js
.\qjsc.exe -c -m -M events -M AUDIOPLAYER -N jslib_audioplayer -o bytecode\jslib_audioplayer.c src\audioplayer.js
.\qjsc.exe -c -m -M kv -N jslib_device -o bytecode\jslib_device.c src\device.js
.\qjsc.exe -c -m -M events -M NETMGR -N jslib_netmgr -o bytecode\jslib_netmgr.c src\netmgr.js
.\qjsc.exe -c -m -M events -M NETWORK -M NETMGR -M CELLULAR -N jslib_network -o bytecode\jslib_network.c src\network.js
.\qjsc.exe -c -m -M events -M MQTT -N jslib_mqtt -o bytecode\jslib_mqtt.c src\mqtt.js
.\qjsc.exe -c -m -M events -M TCP -N jslib_tcp -o bytecode\jslib_tcp.c src\tcp.js
.\qjsc.exe -c -m -M NETWORK -M NETMGR -M CELLULAR -N jslib_location -o bytecode\jslib_location.c src\location.js
| YifuLiu/AliOS-Things | components/amp/jslib/gen_bytecode.bat | Batchfile | apache-2.0 | 1,484 |
./qjsc_linux -c -m src/gpio.js -N jslib_gpio -M GPIO -o bytecode/jslib_gpio.c
./qjsc_linux -c -m src/events.js -N jslib_events -o bytecode/jslib_events.c
./qjsc_linux -c -m src/crypto.js -N jslib_crypto -M events -M CRYPTO -o bytecode/jslib_crypto.c
./qjsc_linux -c -m src/appota.js -N jslib_appota -M events -M APPOTA -o bytecode/jslib_appota.c
./qjsc_linux -c -m src/iot.js -N jslib_iot -M events -M AIOT_DEVICE -M AIOT_GATEWAY -o bytecode/jslib_iot.c
./qjsc_linux -c -m src/bt_host.js -N jslib_bt_host -M events -M BT_HOST -o bytecode/jslib_bt_host.c
./qjsc_linux -c -m src/repl.js -o bytecode/jslib_repl.c -N jslib_repl -M REPL -M os -M std
./qjsc_linux -c -m src/uart.js -o bytecode/jslib_uart.c -N jslib_uart -M events -M UART
./qjsc_linux -c -m src/fs.js -o bytecode/jslib_fs.c -N jslib_fs -M events -M FS
./qjsc_linux -c -m src/audioplayer.js -o bytecode/jslib_audioplayer.c -N jslib_audioplayer -M events -M AUDIOPLAYER
./qjsc_linux -c -m src/device.js -o bytecode/jslib_device.c -N jslib_device -M kv
./qjsc_linux -c -m src/network.js -N jslib_network -M events -M NETWORK -M NETMGR -M CELLULAR -o bytecode/jslib_network.c
./qjsc_linux -c -m src/netmgr.js -N jslib_netmgr -M events -M NETMGR -o bytecode/jslib_netmgr.c
./qjsc_linux -c -m src/mqtt.js -N jslib_mqtt -M MQTT -M events -o bytecode/jslib_mqtt.c
./qjsc_linux -c -m src/tcp.js -N jslib_tcp -M events -M TCP -o bytecode/jslib_tcp.c
./qjsc_linux -c -m src/location.js -N jslib_location -M NETWORK -M NETMGR -M CELLULAR -o bytecode/jslib_location.c
./qjsc_linux -c -m src/i2c.js -N jslib_i2c -M I2C -o bytecode/jslib_i2c.c
| YifuLiu/AliOS-Things | components/amp/jslib/gen_bytecode_linux.sh | Shell | apache-2.0 | 1,590 |
./qjsc_macos -c -m -M GPIO -N jslib_gpio -o bytecode/jslib_gpio.c src/gpio.js
./qjsc_macos -c -m -N jslib_events -o bytecode/jslib_events.c src/events.js
./qjsc_macos -c -m -M events -M CRYPTO -N jslib_crypto -o bytecode/jslib_crypto.c src/crypto.js
./qjsc_macos -c -m -M events -M APPOTA -N jslib_appota -o bytecode/jslib_appota.c src/appota.js
./qjsc_macos -c -m -M events -M AIOT_DEVICE -M AIOT_GATEWAY -N jslib_iot -o bytecode/jslib_iot.c src/iot.js
./qjsc_macos -c -m -M events -M BT_HOST -N jslib_bt_host -o bytecode/jslib_bt_host.c src/bt_host.js
./qjsc_macos -c -m -M REPL -M os -M std -N jslib_repl -o bytecode/jslib_repl.c src/repl.js
./qjsc_macos -c -m -M events -M UART -N jslib_uart -o bytecode/jslib_uart.c src/uart.js
./qjsc_macos -c -m -M events -M FS -N jslib_fs -o bytecode/jslib_fs.c src/fs.js
./qjsc_macos -c -m -M events -M AUDIOPLAYER -N jslib_audioplayer -o bytecode/jslib_audioplayer.c src/audioplayer.js
./qjsc_macos -c -m -M kv -N jslib_device -o bytecode/jslib_device.c src/device.js
./qjsc_macos -c -m -M events -M NETMGR -N jslib_netmgr -o bytecode/jslib_netmgr.c src/netmgr.js
./qjsc_macos -c -m -M events -M NETWORK -M NETMGR -M CELLULAR -N jslib_network -o bytecode/jslib_network.c src/network.js
./qjsc_macos -c -m -M MQTT -M events -N jslib_mqtt -o bytecode/jslib_mqtt.c src/mqtt.js
./qjsc_macos -c -m -M events -M TCP -N jslib_tcp -o bytecode/jslib_tcp.c src/tcp.js
./qjsc_macos -c -m -M events -M UDP -N jslib_udp -o bytecode/jslib_udp.c src/udp.js
./qjsc_macos -c -m -M NETWORK -M NETMGR -M CELLULAR -N jslib_location -o bytecode/jslib_location.c src/location.js
./qjsc_macos -c -m -M events -M SPI -N jslib_spi -o bytecode/jslib_spi.c src/spi.js
| YifuLiu/AliOS-Things | components/amp/jslib/gen_bytecode_macos.sh | Shell | apache-2.0 | 1,684 |
import * as ADC from 'ADC'
class HW_ADC {
constructor(options) {
if (!options || !options.id) {
throw new Error('options is invalid');
}
this.options = {
id: options.id
};
this.success = options.success || function(){};
this.fail = options.fail || function(){};
this._open();
}
_open() {
this.adcInstance = ADC.open(this.options.id);
if (!this.adcInstance) {
this.fail();
return;
}
this.success();
}
readValue() {
if (!this.adcInstance) {
throw new Error('adc not init');
}
return this.adcInstance.read();
};
close() {
if (!this.adcInstance) {
throw new Error('adc not init');
}
this.adcInstance.close();
};
}
export function open(options) {
return new HW_ADC(options);
}
| YifuLiu/AliOS-Things | components/amp/jslib/src/adc.js | JavaScript | apache-2.0 | 925 |
import * as APPOTA from 'APPOTA'
import * as event from 'events'
class UTILS_APPOTA extends event.EventEmitter {
constructor(options){
super();
if (!options) {
throw new Error('options invalid');
}
this._init(options);
}
_init(options) {
//console.log(iothandle)
APPOTA.otaInit(options, function(res) {
this.emit('new', res);
}.bind(this));
}
download(options, cb) {
APPOTA.otaDownload(options, cb);
}
verify(options, cb) {
APPOTA.otaVerify(options, cb);
}
report(options) {
var res = APPOTA.otaReport(options);
if (res < 0) {
this.emit('error');
}
}
upgrade(options, cb) {
APPOTA.otaUpgrade(options, cb);
}
}
export function open(options) {
return new UTILS_APPOTA(options);
} | YifuLiu/AliOS-Things | components/amp/jslib/src/appota.js | JavaScript | apache-2.0 | 878 |
import * as events from 'events'
import * as AUDIOPLAYER from 'AUDIOPLAYER';
class AUDIO_PLAYER extends events.EventEmitter {
constructor(){
super();
this._onState();
}
play(source, callback) {
if (!source || !callback) {
throw new Error('invalid params');
}
console.log('play ' + source);
return AUDIOPLAYER.play(source, callback);
};
pause() {
return AUDIOPLAYER.pause();
};
resume() {
return AUDIOPLAYER.resume();
};
stop() {
return AUDIOPLAYER.stop();
};
seekto(seconds) {
if (seconds < 0) {
throw new Error('invalid params');
}
return AUDIOPLAYER.seekto(seconds);
};
getPosition() {
return AUDIOPLAYER.getPosition();
};
getDuration() {
return AUDIOPLAYER.getDuration();
};
getState() {
return AUDIOPLAYER.getState();
};
_onState() {
AUDIOPLAYER.onState(function(state) {
this.emit('stateChange', state);
}.bind(this));
};
listPlay(sourcelist, callback) {
if (!sourcelist || !callback) {
throw new Error('invalid params');
}
return AUDIOPLAYER.listPlay(sourcelist, callback);
};
listPlayStop() {
return AUDIOPLAYER.listPlayStop();
};
setVolume(volume) {
if (volume < 0) {
throw new Error('invalid params');
}
return AUDIOPLAYER.setVolume(volume);
};
getVolume() {
return AUDIOPLAYER.getVolume();
};
}
export function open() {
return new AUDIO_PLAYER();
}
| YifuLiu/AliOS-Things | components/amp/jslib/src/audioplayer.js | JavaScript | apache-2.0 | 1,650 |
import * as events from 'events'
import * as AUDIORECORDER from 'AUDIORECORDER';
class AUDIO_RECORDER extends events.EventEmitter {
constructor(){
super();
}
record(samplerate, channels, sbits, frames, sink) {
if (!sink) {
throw new Error('invalid params');
}
return AUDIORECORDER.record(samplerate, channels, sbits, frames, sink);
};
pause() {
return AUDIORECORDER.pause();
};
resume() {
return AUDIORECORDER.resume();
};
stop() {
return AUDIORECORDER.stop();
};
getPosition() {
return AUDIORECORDER.getPosition();
};
getState() {
return AUDIORECORDER.getState();
};
}
export function open() {
return new AUDIO_RECORDER();
}
| YifuLiu/AliOS-Things | components/amp/jslib/src/audiorecorder.js | JavaScript | apache-2.0 | 779 |
import * as BT_HOST from 'BT_HOST'
import * as events from 'events'
class bt_host extends events.EventEmitter{
constructor(options) {
super();
if (!options) {
throw new Error('options is invalid');
}
if (this.inited == true) {
throw new Error('bt_host already inited');
}
this.options = {
deviceName: options.deviceName,
conn_num_max: options.conn_num_max,
};
this.success = options.success|| function(){};
this.failed = options.failed|| function(){};
this._init();
}
_init() {
console.log('bt_host native init')
let result = BT_HOST.init(this.options);
if (result == 0) {
this.inited = true;
console.log('bt host inited');
this.success();
} else {
console.log('bt host init failed');
this.failed();
}
}
start_adv(params) {
console.log('bt host start adv')
if (this.inited == false) {
throw new Error('bt host not initialed');
}
if (this.adv_flag == true) {
this.stop_adv()
}
let result = BT_HOST.start_adv(params, function(conn_handle, connect){
console.log('connect callback'/*+conn_handle+connect*/);
if (connect) {
this.adv_flag = false
this.emit('connect', conn_handle);
} else {
this.emit('disconnect', conn_handle);
}
}.bind(this));
if (result == 0) {
this.adv_flag = true;
if (params.success) {
params.success();
}
} else {
if (params.failed) {
params.failed();
}
}
}
stop_adv(params) {
if (this.inited == false) {
throw new Error('bt host not initialed');
}
if (this.adv_flag == false) {
return;
}
let result = BT_HOST.stop_adv();
if (result == 0) {
if (params.success) {
params.success();
}
this.adv_flag = false;
} else {
if (params.failed) {
params.failed();
}
}
}
start_scan(params) {
console.log('bt host start scan')
if (this.inited == false) {
throw new Error('bt host not initialed');
}
if (this.scan_flag == true) {
stop_scan()
}
let result = BT_HOST.start_scan(params, function(addr, addr_type, adv_type, adv_data, rssi){
console.log('scan result callback'+' addr:'+addr+' data:'+adv_data);
}.bind(this));
if (result == 0) {
this.scan_flag = true;
if (params.success) {
params.success();
}
} else {
if (params.failed) {
params.failed();
}
}
}
stop_scan(params) {
if (this.inited == false) {
throw new Error('bt host not initialed');
}
if (this.scan_flag == false) {
return;
}
let result = BT_HOST.stop_scan();
if (result == 0) {
this.scan_flag = false;
if (params.success) {
params.success();
}
} else {
if (params.failed) {
params.failed();
}
}
}
add_service(params) {
if (this.inited == false) {
throw new Error('bt host not initialed');
}
console.log('srvc_cfg: ' + params.service);
let result = BT_HOST.add_service(params.service, function(len, data){
console.log('add_service: len: ' + len + ', data: ' + data);
this.emit('onCharWrite', data);
}.bind(this));
console.log('add_service result: ' + result);
if (result == 0) {
if (params.success) {
params.success();
}
} else {
if (params.failed) {
params.failed();
}
}
}
update_char(params) {
if (this.inited == false) {
throw new Error('bt host not initialed');
}
let result = BT_HOST.update_chars(params.arg);
if (result == 0) {
if (params.success) {
params.success();
}
} else {
if (params.failed) {
params.failed();
}
}
}
}
export function open(options) {
return new bt_host(options);
}
| YifuLiu/AliOS-Things | components/amp/jslib/src/bt_host.js | JavaScript | apache-2.0 | 3,618 |
import * as CRYPTO from 'CRYPTO'
export function encrypt(param) {
let result = CRYPTO.encrypt(
{'crypt_mode': "aes_cbc"},
param
);
if (result != '') {
console.log('encrypt success:'+result);
} else {
console.log('encrypt failed');
}
return result;
}
export function decrypt(param) {
let result = CRYPTO.decrypt(
{'crypt_mode': "aes_cbc"},
param
);
if (result != '') {
console.log('decrypt success:'+result);
} else {
console.log('decrypt failed');
}
return result;
}
| YifuLiu/AliOS-Things | components/amp/jslib/src/crypto.js | JavaScript | apache-2.0 | 556 |
import * as DAC from 'DAC'
class HW_DAC {
constructor(options) {
if (!options || !options.id) {
throw new Error('options is invalid');
}
this.options = {
id: options.id
};
this.success = options.success || function(){};
this.fail = options.fail || function(){};
this._open();
}
_open() {
this.dacInstance = DAC.open(this.options.id);
if (!this.dacInstance) {
this.fail();
return;
}
this.success();
}
readValue() {
if (!this.dacInstance) {
throw new Error('dac not init');
}
return this.dacInstance.getVol();
};
writeValue(value) {
if (!this.dacInstance || !value) {
throw new Error('dac not init or params is invalid');
}
this.dacInstance.setVol(value);
};
close() {
if (!this.dacInstance) {
throw new Error('dac not init');
}
this.dacInstance.close();
};
}
export function open(options) {
return new HW_DAC(options);
}
| YifuLiu/AliOS-Things | components/amp/jslib/src/dac.js | JavaScript | apache-2.0 | 1,115 |
import * as kv from 'kv';
export function setDeviceInfo(pk, ps) {
if (!pk || !ps) {
throw new Error('params is invalid');
}
var productkey_key = '_amp_internal_productkey';
var productsecret_key = '_amp_internal_productsecret';
kv.setStorageSync(productkey_key, pk);
kv.setStorageSync(productsecret_key, ps);
}
export function setToken(token) {
if(!token) {
throw new Error("invalid params");
}
var token_key = '_amp_device_token';
kv.setStorageSync(token_key, token);
}
export function getToken() {
return kv.getStorageSync('_amp_device_token');
}
| YifuLiu/AliOS-Things | components/amp/jslib/src/device.js | JavaScript | apache-2.0 | 614 |
'use strict';
var spliceOne;
function EventEmitter() {
EventEmitter.init.call(this);
}
EventEmitter.EventEmitter = EventEmitter;
EventEmitter.usingDomains = false;
EventEmitter.prototype._events = undefined;
EventEmitter.prototype._eventsCount = 0;
EventEmitter.prototype._maxListeners = undefined;
var defaultMaxListeners = 10;
Object.defineProperty(EventEmitter, 'defaultMaxListeners', {
enumerable: true,
get: function () {
return defaultMaxListeners;
},
set: function (arg) {
if (typeof arg !== 'number' || arg < 0 || Number.isNaN(arg)) {
throw new Error('defaultMaxListeners:a non-negative number');
}
defaultMaxListeners = arg;
}
});
EventEmitter.init = function () {
if (this._events === undefined ||
this._events === Object.getPrototypeOf(this)._events) {
this._events = Object.create(null);
this._eventsCount = 0;
}
this._maxListeners = this._maxListeners || undefined;
};
EventEmitter.prototype.setMaxListeners = function setMaxListeners(n) {
if (typeof n !== 'number' || n < 0 || Number.isNaN(n)) {
throw new Error('a non-negative number');
}
this._maxListeners = n;
var that = this;
return that;
};
function _getMaxListeners(that) {
if (that._maxListeners === undefined)
return EventEmitter.defaultMaxListeners;
return that._maxListeners;
}
EventEmitter.prototype.getMaxListeners = function getMaxListeners() {
return _getMaxListeners(this);
};
function longestSeqContainedIn(a, b) {
for (var len = a.length; len >= 3; --len) {
for (var i = 0; i < a.length - len; ++i) {
for (var j = 0; j < b.length - len; ++j) {
var matches = true;
for (var k = 0; k < len; ++k) {
if (a[i + k] !== b[j + k]) {
matches = false;
break;
}
}
if (matches)
return [len, i, j];
}
}
}
return [0, 0, 0];
}
function enhanceStackTrace(err, own) {
var sep = '\nEmitted \'error\' event at:\n';
var errStack = err.stack.split('\n').slice(1);
var ownStack = own.stack.split('\n').slice(1);
var seq = longestSeqContainedIn(ownStack, errStack);
if (seq.len > 0) {
ownStack.splice(seq.off + 1, seq.len - 1,
' [... lines matching original stack trace ...]');
}
err.stack = err.stack + sep + ownStack.join('\n');
}
EventEmitter.prototype.emit = function emit(type) {
var doError = (type === 'error');
var events = this._events;
if (events !== undefined)
doError = (doError && events.error === undefined);
else if (!doError)
return false;
var args = [];
for (var i = 1, len = arguments.length; i < len; i++) {
args.push(arguments[i]);
}
if (doError) {
var er;
if (args.length > 0)
er = args[0];
if (er instanceof Error) {
throw er;
}
throw new Error('unhandled error');
}
var handler = events[type];
if (handler === undefined)
return false;
if (typeof handler === 'function') {
Function.prototype.apply.call(handler, this, args);
} else {
var len = handler.length;
var listeners = arrayClone(handler, len);
for (var i = 0; i < len; ++i)
Function.prototype.apply.call(listeners[i], this, args);
}
return true;
};
function _addListener(target, type, listener, prepend) {
var m;
var events;
var existing;
if (typeof listener !== 'function') {
throw new Error('addListener invalid arg type: Function');
}
events = target._events;
if (events === undefined) {
events = target._events = Object.create(null);
target._eventsCount = 0;
} else {
if (events.newListener !== undefined) {
target.emit('newListener', type,
listener.listener ? listener.listener : listener);
events = target._events;
}
existing = events[type];
}
if (existing === undefined) {
existing = events[type] = listener;
++target._eventsCount;
} else {
if (typeof existing === 'function') {
existing = events[type] =
prepend ? [listener, existing] : [existing, listener];
} else if (prepend) {
existing.unshift(listener);
} else {
existing.push(listener);
}
}
return target;
}
EventEmitter.prototype.addListener = function addListener(type, listener) {
return _addListener(this, type, listener, false);
};
EventEmitter.prototype.on = EventEmitter.prototype.addListener;
EventEmitter.prototype.prependListener =
function prependListener(type, listener) {
return _addListener(this, type, listener, true);
};
function onceWrapper() {
if (!this.fired) {
this.target.removeListener(this.type, this.wrapFn);
this.fired = true;
Function.prototype.apply.call(this.listener, this.target, arguments);
}
}
function _onceWrap(target, type, listener) {
var state = { fired: false, wrapFn: undefined, target: target, type: type, listener: listener };
var wrapped = onceWrapper.bind(state);
wrapped.listener = listener;
state.wrapFn = wrapped;
return wrapped;
}
EventEmitter.prototype.once = function once(type, listener) {
if (typeof listener !== 'function') {
throw new Error('listener invalid arg type');
}
this.on(type, _onceWrap(this, type, listener));
var that = this;
return that;
};
EventEmitter.prototype.prependOnceListener =
function prependOnceListener(type, listener) {
if (typeof listener !== 'function') {
throw new Error('prependOnceListener invalid arg type');
}
this.prependListener(type, _onceWrap(this, type, listener));
var that = this;
return that;
};
EventEmitter.prototype.removeListener =
function removeListener(type, listener) {
var list, events, position, i, originalListener;
var that = this;
if (typeof listener !== 'function') {
throw new Error('removeListener invalid arg type');
}
events = this._events;
if (events === undefined)
return that;
list = events[type];
if (list === undefined)
return that;
if (list === listener || list.listener === listener) {
if (--this._eventsCount === 0)
this._events = Object.create(null);
else {
delete events[type];
if (events.removeListener)
this.emit('removeListener', type, list.listener || listener);
}
} else if (typeof list !== 'function') {
position = -1;
for (i = list.length - 1; i >= 0; i--) {
if (list[i] === listener || list[i].listener === listener) {
originalListener = list[i].listener;
position = i;
break;
}
}
if (position < 0)
return that;
if (position === 0)
list.shift();
else {
if (spliceOne === undefined)
spliceOne = require('internal/util').spliceOne;
spliceOne(list, position);
}
if (list.length === 1)
events[type] = list[0];
if (events.removeListener !== undefined)
this.emit('removeListener', type, originalListener || listener);
}
return that;
};
EventEmitter.prototype.off = EventEmitter.prototype.removeListener;
EventEmitter.prototype.removeAllListeners =
function removeAllListeners(type) {
var listeners, events, i;
var that = this;
events = this._events;
if (events === undefined)
return that;
if (events.removeListener === undefined) {
if (arguments.length === 0) {
this._events = Object.create(null);
this._eventsCount = 0;
} else if (events[type] !== undefined) {
if (--this._eventsCount === 0)
this._events = Object.create(null);
else
delete events[type];
}
return that;
}
if (arguments.length === 0) {
var keys = Object.keys(events);
var key;
for (i = 0; i < keys.length; ++i) {
key = keys[i];
if (key === 'removeListener') continue;
this.removeAllListeners(key);
}
this.removeAllListeners('removeListener');
this._events = Object.create(null);
this._eventsCount = 0;
return that;
}
listeners = events[type];
if (typeof listeners === 'function') {
this.removeListener(type, listeners);
} else if (listeners !== undefined) {
for (i = listeners.length - 1; i >= 0; i--) {
this.removeListener(type, listeners[i]);
}
}
return that;
};
function _listeners(target, type, unwrap) {
var events = target._events;
if (events === undefined)
return [];
var evlistener = events[type];
if (evlistener === undefined)
return [];
if (typeof evlistener === 'function')
return unwrap ? [evlistener.listener || evlistener] : [evlistener];
return unwrap ?
unwrapListeners(evlistener) : arrayClone(evlistener, evlistener.length);
}
EventEmitter.prototype.listeners = function listeners(type) {
return _listeners(this, type, true);
};
EventEmitter.prototype.rawListeners = function rawListeners(type) {
return _listeners(this, type, false);
};
EventEmitter.listenerCount = function (emitter, type) {
if (typeof emitter.listenerCount === 'function') {
return emitter.listenerCount(type);
} else {
return listenerCount.call(emitter, type);
}
};
EventEmitter.prototype.listenerCount = listenerCount;
function listenerCount(type) {
var events = this._events;
if (events !== undefined) {
var evlistener = events[type];
if (typeof evlistener === 'function') {
return 1;
} else if (evlistener !== undefined) {
return evlistener.length;
}
}
return 0;
}
EventEmitter.prototype.eventNames = function eventNames() {
return this._eventsCount > 0 ? Function.prototype.apply.call(this._events) : [];
};
function arrayClone(arr, n) {
var copy = new Array(n);
for (var i = 0; i < n; ++i)
copy[i] = arr[i];
return copy;
}
function unwrapListeners(arr) {
var ret = new Array(arr.length);
for (var i = 0; i < ret.length; ++i) {
ret[i] = arr[i].listener || arr[i];
}
return ret;
}
export {EventEmitter};
| YifuLiu/AliOS-Things | components/amp/jslib/src/events.js | JavaScript | apache-2.0 | 11,136 |
import * as FS from 'FS'
export function writeSync(path, data, options) {
if (!path || !data) {
throw new Error('params is invalid');
}
options = options || {flag: 'w'};
FS.write(path, data, options);
}
export function readSync(path) {
if(!path) {
throw new Error("invalid params");
}
var content = FS.read(path);
if (!content) {
throw 'file open error';
}
return content;
}
export function unlinkSync(path) {
if(!path) {
throw new Error("invalid params");
}
FS.delete(path);
}
export function totalSize() {
return FS.totalSize();
}
export function usedSize() {
return FS.usedSize();
}
export function freeSize() {
return FS.freeSize();
}
| YifuLiu/AliOS-Things | components/amp/jslib/src/fs.js | JavaScript | apache-2.0 | 741 |
import * as GPIO from 'GPIO'
class HW_GPIO {
constructor(options) {
if (!options || !options.id) {
throw new Error("options is invalid");
}
this.options = {
id: options.id
};
this.success = options.success || function(){};
this.fail = options.fail || function(){};
this._open();
}
_open() {
this.gpioInstance = GPIO.open(this.options.id);
if (!this.gpioInstance) {
this.fail();
return;
}
this.success();
}
writeValue(level) {
if (!this.gpioInstance) {
throw new Error("gpio not init");
}
this.gpioInstance.write(level);
}
toggle() {
if (!this.gpioInstance) {
throw new Error("gpio not init");
}
this.gpioInstance.toggle();
}
onIRQ(options) {
if (!this.gpioInstance || !options || !options.cb) {
throw new Error("gpio not init or params is invalid");
}
this.gpioInstance.on(options.cb);
}
readValue() {
if (!this.gpioInstance) {
throw new Error("gpio not init");
}
return this.gpioInstance.read();
};
close() {
if (!this.gpioInstance) {
throw new Error("gpio not init");
}
this.gpioInstance.close();
};
}
export function open(options) {
return new HW_GPIO(options);
}
| YifuLiu/AliOS-Things | components/amp/jslib/src/gpio.js | JavaScript | apache-2.0 | 1,454 |
import * as I2C from 'I2C'
function byteArrayToArrayBuffer(byteArray) {
return new Uint8Array(byteArray).buffer
}
class HW_I2C {
constructor(options) {
if (!options || !options.id) {
throw new Error("options is invalid");
}
this.options = {
id: options.id
};
this.success = options.success || function(){};
this.fail = options.fail || function(){};
this._open();
}
_open() {
this.i2cInstance = I2C.open(this.options.id);
if (!this.i2cInstance) {
this.fail();
return;
}
this.success();
}
write(data) {
if (!this.i2cInstance || !data) {
throw new Error("i2c not init or params is invalid");
}
return this.i2cInstance.write(byteArrayToArrayBuffer(data));
}
read(bytes) {
if (!this.i2cInstance || !bytes) {
throw new Error("i2c not init or params is invalid");
}
return Array.prototype.slice.call(new Uint8Array(this.i2cInstance.read(bytes)));
};
writeMem(memaddr, data) {
if (!this.i2cInstance) {
throw new Error("i2c not init or params is invalid");
}
return this.i2cInstance.writeReg(memaddr, byteArrayToArrayBuffer(data));
}
readMem(memaddr, bytes) {
if (!this.i2cInstance) {
throw new Error("i2c not init or params is invalid");
}
return Array.prototype.slice.call(new Uint8Array(this.i2cInstance.readReg(memaddr, bytes)));
};
close() {
if (!this.i2cInstance) {
throw new Error("i2c not init");
}
this.i2cInstance.close();
};
}
export function open(options) {
return new HW_I2C(options);
}
| YifuLiu/AliOS-Things | components/amp/jslib/src/i2c.js | JavaScript | apache-2.0 | 1,781 |
import * as event from 'events'
import * as AIOT_DEVICE from 'AIOT_DEVICE'
import * as AIOT_GATEWAY from 'AIOT_GATEWAY'
class IotDeviceClient extends event.EventEmitter {
constructor(options){
super();
if(!options || !options.productKey || !options.deviceName || !options.deviceSecret){
throw new Error('device info error');
}
this.options = {
productKey: options.productKey,
deviceName: options.deviceName,
deviceSecret: options.deviceSecret,
region: options.region || 'cn-shanghai',
keepaliveSec: 60
}
this._connect();
}
_connect() {
this.IoTDeviceInstance = AIOT_DEVICE.device(this.options, function(res) {
if (!res.handle) {
console.log("res.handle is empty");
return;
}
this.iot_device_handle = res.handle;
switch (res.code) {
case 0:
this.emit('connect'); break;
case 1:
this.emit('reconnect'); break;
case 2:
this.emit('disconnect'); break;
case 3:
this.emit('message', res); break;
default : break ;
}
}.bind(this));
}
getDeviceHandle() {
return this.iot_device_handle;
}
subscribe(options, cb) {
console.log("subscribe is called");
var ret = this.IoTDeviceInstance.subscribe(options, cb || function() {});
if (ret < 0) {
throw new Error('subscribe topic error', options.topic);
}
return ret;
}
unsubscribe(topic, cb) {
var ret = this.IoTDeviceInstance.unsubscribe(topic, cb || function() {});
if (ret < 0) {
throw new Error('unsubscribe topic error', topic);
}
return ret;
}
publish(options, cb) {
var ret = this.IoTDeviceInstance.publish(options, cb || function() {});
if (ret < 0) {
throw new Error('publish topic info error', options.topic);
}
return ret;
}
getNtpTime(cb) {
var ret = this.IoTDeviceInstance.getNtpTime(cb || function() {});
if (ret < 0) {
throw new Error('get ntp time error');
}
return ret;
}
postProps(params, cb) {
console.log("postProps is called");
var ret = this.IoTDeviceInstance.postProps(params, cb || function() {});
if (ret < 0) {
throw new Error('post props error');
}
return ret;
}
onProps(cb) {
var ret = this.IoTDeviceInstance.onProps(cb);
if (ret < 0) {
throw new Error('on props error');
}
return ret;
}
postEvent(options, cb) {
console.log("postEvent is called");
var ret = this.IoTDeviceInstance.postEvent(options, cb || function() {});
if (ret < 0) {
throw new Error('post event error');
}
return ret;
}
onService(cb) {
var ret = this.IoTDeviceInstance.onService(cb);
if (ret < 0) {
throw new Error('on service error');
}
return ret;
}
end(cb) {
var ret = this.IoTDeviceInstance.close(cb || function() {});
if (ret < 0) {
throw new Error('end iot client error');
}
return ret;
}
}
class IotGatewayClient extends event.EventEmitter{
constructor(options){
super();
if(!options || !options.productKey || !options.deviceName || !options.deviceSecret){
throw new Error('device info error');
}
this.options = {
productKey: options.productKey,
deviceName: options.deviceName,
deviceSecret: options.deviceSecret,
keepaliveSec: options.keepaliveSec || 60,
region: options.region || 'cn-shanghai'
}
this._on();
this._connect();
}
_connect() {
this.IoTGatewayInstance = AIOT_GATEWAY.gateway(this.options, function(res) {
if (!res.handle || res.code != 0) {
return;
}
this.iot_gateway_handle = res.handle;
this.emit('connect');
}.bind(this));
}
getGatewayHandle() {
return this.iot_gateway_handle;
}
_on() {
AIOT_GATEWAY.onMqttMessage(function(res) {
switch (res.code) {
case 1:
this.emit('reconnect'); break;
case 2:
this.emit('disconnect'); break;
case 3:
this.emit('message', res); break;
default : break ;
}
}.bind(this));
}
addTopo(options, cb) {
var ret = this.IoTGatewayInstance.addTopo(options, cb || function() {});
if (ret < 0) {
throw new Error('add topo error');
}
return ret;
}
getTopo(cb) {
var ret = this.IoTGatewayInstance.getTopo(cb || function() {});
if (ret < 0) {
throw new Error('get topo error');
}
return ret;
}
removeTopo(options, cb) {
var ret = this.IoTGatewayInstance.removeTopo(options, cb || function() {});
if (ret < 0) {
throw new Error('remove topo error');
}
return ret;
}
login(options, cb) {
var ret = this.IoTGatewayInstance.login(options, cb || function() {});
if (ret < 0) {
throw new Error('aiot subdev login error');
}
return ret;
}
logout(options, cb) {
var ret = this.IoTGatewayInstance.logout(options, cb || function() {});
if (ret < 0) {
throw new Error('aiot subdev logout error');
}
return ret;
}
registerSubDevice(options, cb) {
var ret = this.IoTGatewayInstance.registerSubDevice(options, cb || function() {});
if (ret < 0) {
throw new Error('aiot register subdev error');
}
return ret;
}
subscribe(params, cb) {
var ret = this.IoTGatewayInstance.subscribe(params, cb || function() {});
if (ret < 0) {
throw new Error('subscribe topic error', options.topic);
}
return ret;
}
unsubscribe(topic, cb) {
var ret = this.IoTGatewayInstance.unsubscribe(topic, cb || function() {});
if (ret < 0) {
throw new Error('unsubscribe topic error', topic);
}
return ret;
}
publish(options, cb) {
var ret = this.IoTGatewayInstance.publish(options, cb || function() {});
if (ret < 0) {
throw new Error('publish topic info error', options.topic);
}
return ret;
}
getNtpTime(cb) {
var ret = this.IoTGatewayInstance.getNtpTime(cb || function() {});
if (ret < 0) {
throw new Error('get ntp time error');
}
return ret;
}
}
export function device(options) {
console.log("create IotDeviceClient");
return new IotDeviceClient(options);
}
export function gateway(options){
console.log("create IotGatewayClient");
return new IotGatewayClient(options);
}
export function dynreg(options, cb) {
var ret = AIOT_DEVICE.register(options, cb);
if (ret < 0) {
throw new Error('dynmic register error');
}
return ret;
} | YifuLiu/AliOS-Things | components/amp/jslib/src/iot.js | JavaScript | apache-2.0 | 7,502 |
import * as std from 'std'
import * as NETWORK from 'NETWORK';
var WIFI_TYPE = 0;
var CELLULAR_TYPE = 1;
var ETHNET_TYPE = 2;
class ADVANCED_LOCATION {
constructor() {
this.devType = NETWORK.getType();
if (this.devType === WIFI_TYPE) {
std.eval('import * as NETMGR from \'NETMGR\'; globalThis.NETMGR = NETMGR');
}
else if (this.devType === CELLULAR_TYPE) {
std.eval('import * as CELLULAR from \'CELLULAR\'; globalThis.CELLULAR = CELLULAR');
}
}
getAccessApInfo() {
var info = { mac: null, ip: null, rssi: null };
var dev_handler = NETMGR.getDev('/dev/wifi0');
if (this.devType === WIFI_TYPE) {
if (NETMGR.getState(dev_handler) === 5) {
var { mac, ip_addr, rssi } = NETMGR.getIfConfig(dev_handler);
info.mac = mac;
info.ip = ip_addr;
info.rssi = rssi;
} else {
console.log('ERROR: wifi is not connected');
}
} else {
console.log('ERROR: board does not support wifi');
}
return info;
}
getAccessedLbsInfo() {
var info = {
cellid: null,
lac: null,
mcc: null,
mnc: null,
signal: null
};
if (this.devType === CELLULAR_TYPE) {
if (CELLULAR.getStatus() === 1) {
var { cellid, lac, mcc, mnc, signal } = CELLULAR.getLocatorInfo();
info.cellid = cellid;
info.lac = lac;
info.mcc = mcc;
info.mnc = mnc;
info.signal = signal;
} else {
console.log('ERROR: cellular is not connected')
}
} else {
console.log('ERROR: board does not support cellular')
}
return info;
}
}
export function init() {
return new ADVANCED_LOCATION();
}
| YifuLiu/AliOS-Things | components/amp/jslib/src/location.js | JavaScript | apache-2.0 | 1,688 |
import * as event from 'events'
import * as MQTT from 'MQTT'
class MQTTClient extends event.EventEmitter {
constructor(options) {
super();
if (!options || !options.host) {
throw new Error('options is invalid');
}
this.options = {
host: options.host,
port: options.port || 1883,
client_id: options.clientId || this._getRandomClientId(),
username: options.username || '',
password: options.password || '',
keepalive_interval: options.keepalive_interval || 60
};
this._fail = options.fail || function () { };
this._success = options.success || function () { };
this.connected = false;
this.mqttInstance = 0;
this._connect();
}
_getRandomClientId() {
return 'amp-' + parseInt(Math.random() * 1000000);
}
_connect() {
MQTT.start(this.options, function (res) {
if (!res.handle) {
return;
}
this.mqttInstance = res.handle;
switch (res.code) {
case 0:
this.connected = true;
this.emit('connect'); break;
case 1:
this.connected = true;
this.emit('reconnect'); break;
case 2:
this.connected = false;
this.emit('disconnect'); break;
case 3:
this.emit('message', res.topic, res.payload); break;
default: break;
}
}.bind(this));
}
subscribe(options) {
if (!this.mqttInstance || !options || !options.topic) {
throw new Error('mqtt not init or options invalid');
}
if (this.connected === false) {
this.emit('error', 'subscirbe fail: not connected');
return;
}
var ret = MQTT.subscribe(this.mqttInstance, options.topic, options.qos || 0);
if (ret < 0) {
if (typeof options.fail === 'function') {
options.fail();
}
this.emit('error', 'subscribe error');
}
else {
if (typeof options.success === 'function') {
options.success();
}
}
}
unsubscribe(options) {
if (!this.mqttInstance || !options || !options.topic) {
throw new Error('mqtt not init or mqtt topic is invalid');
}
if (this.connected === false) {
this.emit('error', 'unsubscribe fail: not connected');
return;
}
var ret = MQTT.unsubscribe(this.mqttInstance, options.topic);
if (ret < 0) {
if (typeof options.fail === 'function') {
options.fail();
}
this.emit('error', 'unsubscribe error');
return
}
if (typeof options.success === 'function') {
options.success();
}
}
publish(options) {
if (!this.mqttInstance || !options || !options.topic || !options.message) {
throw new Error('mqtt not init or options invalid');
}
if (this.connected === false) {
this.emit('error', 'publish fail: not connected');
return;
}
MQTT.publish(this.mqttInstance, options.topic, options.message, options.qos || 0, function (ret) {
if (ret < 0) {
if (typeof options.fail === 'function') {
options.fail();
}
this.emit('error', options.topic);
return;
}
if (typeof options.success === 'function') {
options.success();
}
}.bind(this));
}
close() {
if (!this.mqttInstance) {
throw new Error('mqtt not init');
}
MQTT.close(this.mqttInstance, function (ret) {
if (ret != 0) {
this.emit('error', 'mqtt client close error');
return;
}
this.emit('close');
}.bind(this));
}
}
export function createClient(options) {
return new MQTTClient(options);
}
| YifuLiu/AliOS-Things | components/amp/jslib/src/mqtt.js | JavaScript | apache-2.0 | 4,249 |
import * as NETMGR from 'NETMGR'
import * as events from 'events'
class netMgr extends events.EventEmitter {
constructor(options) {
super();
if (!options || !options.name) {
throw new Error('device info error');
}
this.options = {
name: options.name
};
this.name = options.name
this._init();
this.dev_handler = this._getDev();
}
_init() {
if (NETMGR.serviceInit() !== 0) {
this.emit('error', 'netmgr init error');
}
}
_getDev() {
console.log('wifi name:' + this.name)
var dev_handler = NETMGR.getDev(this.name);
if (dev_handler == -1) {
console.log('netmgr get wifi dev error: ' + this.name);
return;
}
return dev_handler;
}
setMsgCb(cb) {
NETMGR.setMsgCb(this.dev_handler, cb);
}
delMsgCb(cb) {
NETMGR.delMsgCb(this.dev_handler, cb);
}
setAutoReconnect(flag) {
var ret = NETMGR.setAutoReconnect(this.dev_handler, flag);
if (ret !== 0) {
this.emit('error', 'netmgr set auto reconnect error');
}
}
connect(options) {
options = {
ssid: options.ssid,
password: options.password,
bssid: options.bssid || '',
timeout_ms: options.timeout_ms || 18000
}
NETMGR.connect(this.dev_handler, options, function (status) {
if (status == 'DISCONNECT') {
this.emit('disconnect', options.ssid);
return;
}
this.emit('connect', options.ssid);
}.bind(this));
}
disconnect() {
var ret = NETMGR.disconnect(this.dev_handler);
if (ret !== 0) {
this.emit('error', 'netmgr disconnect error');
return;
}
this.emit('disconnect', ssid);
}
getType() {
return NETMGR.getType();
}
getState() {
var ret = NETMGR.getState(this.dev_handler);
switch (ret) {
case 0:
return 'disconnecting';
case 1:
return 'disconnected';
case 2:
return 'connecting';
case 3:
return 'connected';
case 4:
return 'obtaining ip';
case 5:
return 'network connected';
case 6:
return 'failed';
}
}
saveConfig() {
var ret = NETMGR.saveConfig(this.dev_handler);
if (ret !== 0) {
this.emit('error', 'netmgr save config error');
}
}
setIfConfig(options) {
options = {
dhcp_en: options.dhcp_en || true,
ip_addr: options.ip_addr || '',
mask: options.mask || '',
gw: options.gw || '',
dns_server: options.dns_server || '',
mac: options.mac || ''
}
var ret = NETMGR.setIfConfig(this.dev_handler, options);
if (ret !== 0) {
this.emit('error', 'netmgr save config error');
}
}
getIfConfig() {
var config = NETMGR.getIfConfig(this.dev_handler);
if (!config) {
this.emit('error', 'get if config error');
}
return config;
}
}
export function openNetMgrClient(options) {
return new netMgr(options);
}
| YifuLiu/AliOS-Things | components/amp/jslib/src/netmgr.js | JavaScript | apache-2.0 | 3,424 |
'use strict';
import * as std from 'std'
import * as events from 'events'
import * as NETWORK from 'NETWORK'
var devType = 0;
class netWork extends events.EventEmitter {
constructor(options) {
super();
if (!options || !options.devType) {
devType = this.getType();
}
else {
devType = options.devType;
}
if(devType != 'wifi' && devType != 'cellular' && devType != 'ethnet') {
throw new Error('devType only support cellular/wifi/ethnet, please check input!');
}
console.log('devType is ' + devType);
if (devType == 'wifi') {
std.eval('import * as NETMGR from \'NETMGR\'; globalThis.NETMGR = NETMGR')
this.name = '/dev/wifi0';
this._netmgrInit();
this.dev_handler = this._netmgrGetDev();
}
else if (devType == 'ethnet') {
std.eval('import * as NETMGR from \'NETMGR\'; globalThis.NETMGR = NETMGR')
this.name = '/dev/eth0';
this._netmgrInit();
this.dev_handler = this._netmgrGetDev();
// this._onConnect();
}
else if (devType == 'cellular') {
std.eval('import * as CELLULAR from \'CELLULAR\'; globalThis.CELLULAR = CELLULAR')
this._onConnect();
}
}
_netmgrInit() {
if (NETMGR.serviceInit() !== 0) {
throw new Error('netmgr init error');
}
}
_netmgrGetDev() {
console.log('device net name:' + this.name)
var dev_handler = NETMGR.getDev(this.name);
if (dev_handler == -1) {
throw new Error('netmgr get dev handle error: ' + this.name);
}
return dev_handler;
}
_onConnect() {
if (devType == 'cellular') {
var cb = function (status) {
if (status === 1) {
this.emit('connect');
} else {
this.emit('disconnect');
}
}
if (CELLULAR.onConnect(cb.bind(this)) !== 0) {
throw new Error('network on cellular status error');
}
return;
}
if (devType == 'ethnet') {
var cb_ = function(status) {
if (status == 'DISCONNECT') {
console.log('ethnet disconnect');
this.emit('disconnect');
} else {
console.log('ethnet connect');
this.emit('connect');
}
}
if (NETMGR.connect(this.dev_handler, cb_.bind(this)) !== 0) {
throw new Error('network on ethnet status error');
}
return;
}
}
/**
* get device net type
*/
getType() {
if (devType == 0) {
var type = NETWORK.getType();
switch (type) {
case 0:
type = 'wifi'; break;
case 1:
type = 'cellular'; break;
case 2:
type = 'ethnet'; break;
default:
type = 'unknow'; break;
}
return type;
} else {
return devType;
}
}
/**
* only wifi device support connect
*/
connect(options) {
if (devType != 'wifi') {
console.log('Not wifi dev, can\'t connect');
return;
}
options = {
ssid: options.ssid,
password: options.password,
bssid: options.bssid || '',
timeout_ms: options.timeout_ms || 18000
}
NETMGR.connect(this.dev_handler, options, function (status) {
if (status == 'DISCONNECT') {
this.emit('disconnect', options.ssid);
return;
}
this.emit('connect', options.ssid);
}.bind(this));
}
/**
* only wifi device support disconnect
*/
disconnect() {
if (devType != 'wifi') {
throw new Error('Not wifi dev, can\'t disconnect');
}
var ret = NETMGR.disconnect(this.dev_handler);
if (ret !== 0) {
this.emit('error', 'netmgr disconnect error');
return;
}
this.emit('disconnect', ssid);
}
getInfo() {
var info = {
simInfo: null,
locatorInfo: null,
netInfo: null
};
var type = devType;
if (type == 'wifi' || type == 'ethnet') {
info.netInfo = this.getIfConfig();
return info;
}
if (type == 'cellular') {
info.simInfo = CELLULAR.getSimInfo();
info.locatorInfo = CELLULAR.getLocatorInfo();
return info;
}
console.log('net mode invalid');
return;
}
getStatus() {
var type = devType;
if (type == 'wifi' || type == 'ethnet') {
var ret = NETMGR.getState(this.dev_handler);
if (ret == 5) {
return 'connect';
} else {
return 'disconnect';
}
}
if (type == 'cellular') {
if (CELLULAR.getStatus() != 1) {
return 'disconnect';
}
return 'connect';
}
}
saveConfig() {
if (devType == 'cellular') {
throw new Error('cellular device isn\'t support saveConfig!');
}
var ret = NETMGR.saveConfig(this.dev_handler);
if (ret !== 0) {
throw new Error('netmgr save config error');
}
}
setIfConfig(options) {
if (devType == 'cellular') {
throw new Error('setIfConfig: cellular device isn\'t support!');
}
if (!options.hasOwnProperty('dhcp_en')) {
throw new Error('setIfConfig: property dhcp_en undefined and should be bool type!');
}
options = {
dhcp_en: options.dhcp_en,
ip_addr: options.ip_addr || '',
mask: options.mask || '',
gw: options.gw || '',
dns_server: options.dns_server || ''
}
if (options.dhcp_en) {
console.log('setIfConfig: enable dhcp');
}
var ret = NETMGR.setIfConfig(this.dev_handler, options);
if (ret !== 0) {
throw new Error('netmgr save config error');
}
this._onConnect();
}
getIfConfig() {
if (devType == 'cellular') {
throw new Error('cellular device isn\'t support getIfConfig!');
}
var config = NETMGR.getIfConfig(this.dev_handler);
if (!config) {
throw new Error('get if config error');
}
return config;
}
}
export function openNetWorkClient(options) {
return new netWork(options);
}
| YifuLiu/AliOS-Things | components/amp/jslib/src/network.js | JavaScript | apache-2.0 | 6,904 |
import * as ONEWIRE from 'ONEWIRE'
class HW_ONEWIRE {
constructor(options) {
if (!options || !options.id) {
throw new Error("options is invalid");
}
this.options = {
id: options.id
};
this.success = options.success || function(){};
this.fail = options.fail || function(){};
this._open();
}
_open() {
this.onewireinstance = ONEWIRE.open(this.options.id);
if (!this.onewireinstance) {
this.fail();
return;
}
this.success();
}
setspeed(standard) {
if (!this.onewireinstance) {
throw new Error("onewire not init");
}
this.onewireinstance.setspeed(standard);
}
reset() {
if (!this.onewireinstance) {
throw new Error("onewire not init");
}
this.onewireinstance.reset();
}
readByte() {
if (!this.onewireinstance) {
throw new Error("onewire not init");
}
return this.onewireinstance.readByte();
};
writeByte(data) {
if (!this.onewireinstance) {
throw new Error("onewire not init");
}
return this.onewireinstance.writeByte(data);
};
close() {
if (!this.onewireinstance) {
throw new Error("onewire not init");
}
this.onewireinstance.close();
}
}
export function open(options) {
return new HW_ONEWIRE(options);
}
| YifuLiu/AliOS-Things | components/amp/jslib/src/onewire.js | JavaScript | apache-2.0 | 1,486 |
import * as PWM from 'PWM'
class HW_PWM {
constructor(options) {
if (!options || !options.id) {
throw new Error("options is invalid");
}
console.log('pwm: pwm constructor start ' + options.id)
this.options = {
id: options.id
};
this.success = options.success || function(){};
this.fail = options.fail || function(){};
this._open();
}
_open() {
console.log('pwm: pwm test start ' + this.options.id)
this.pwmInstance = PWM.open(this.options.id);
if (!this.pwmInstance) {
this.fail();
return;
}
this.success();
}
set(options) {
if (!this.pwmInstance || !options) {
throw new Error("pwm not init or params is invalid");
}
this.pwmInstance.setConfig(options);
};
get() {
if (!this.pwmInstance) {
throw new Error("pwm not init");
}
return this.pwmInstance.getConfig();
};
close() {
if (!this.pwmInstance) {
throw new Error("pwm not init");
}
this.pwmInstance.close();
};
}
export function open(options) {
return new HW_PWM(options);
}
| YifuLiu/AliOS-Things | components/amp/jslib/src/pwm.js | JavaScript | apache-2.0 | 1,240 |
/*
* QuickJS Read Eval Print Loop
*
* Copyright (c) 2017-2020 Fabrice Bellard
* Copyright (c) 2017-2020 Charlie Gordon
*
* 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.
*/
//"use strip";
import * as std from "std";
import * as os from "os";
import * as REPL from "REPL";
(function(g) {
/* add 'os' and 'std' bindings */
g.os = os;
g.std = std;
/* close global objects */
var Object = g.Object;
var String = g.String;
var Array = g.Array;
var Date = g.Date;
var Math = g.Math;
var isFinite = g.isFinite;
var parseFloat = g.parseFloat;
/* XXX: use preprocessor ? */
var config_numcalc = (typeof os.open === "undefined");
var has_jscalc = (typeof Fraction === "function");
var has_bignum = (typeof BigFloat === "function");
var colors = {
none: "\x1b[0m",
black: "\x1b[30m",
red: "\x1b[31m",
green: "\x1b[32m",
yellow: "\x1b[33m",
blue: "\x1b[34m",
magenta: "\x1b[35m",
cyan: "\x1b[36m",
white: "\x1b[37m",
gray: "\x1b[30;1m",
grey: "\x1b[30;1m",
bright_red: "\x1b[31;1m",
bright_green: "\x1b[32;1m",
bright_yellow: "\x1b[33;1m",
bright_blue: "\x1b[34;1m",
bright_magenta: "\x1b[35;1m",
bright_cyan: "\x1b[36;1m",
bright_white: "\x1b[37;1m",
};
var styles;
if (config_numcalc) {
styles = {
'default': 'black',
'comment': 'white',
'string': 'green',
'regex': 'cyan',
'number': 'green',
'keyword': 'blue',
'function': 'gray',
'type': 'bright_magenta',
'identifier': 'yellow',
'error': 'bright_red',
'result': 'black',
'error_msg': 'bright_red',
};
} else {
styles = {
'default': 'bright_green',
'comment': 'white',
'string': 'bright_cyan',
'regex': 'cyan',
'number': 'green',
'keyword': 'bright_white',
'function': 'bright_yellow',
'type': 'bright_magenta',
'identifier': 'bright_green',
'error': 'red',
'result': 'bright_white',
'error_msg': 'bright_red',
};
}
var history = [];
var clip_board = "";
var prec;
var expBits;
var log2_10;
var pstate = "";
var prompt = "";
var plen = 0;
var ps1;
if (config_numcalc)
ps1 = "> ";
else
ps1 = "amp > ";
var ps2 = " ... ";
var utf8 = true;
var show_time = false;
var show_colors = false;
var eval_time = 0;
var mexpr = "";
var level = 0;
var cmd = "";
var cursor_pos = 0;
var last_cmd = "";
var last_cursor_pos = 0;
var history_index;
var this_fun, last_fun;
var quote_flag = false;
var utf8_state = 0;
var utf8_val = 0;
var term_fd;
var term_read_buf;
var term_width;
/* current X position of the cursor in the terminal */
var term_cursor_x = 0;
var CRLF = '\r\n';
function termInit() {
var tab;
term_fd = 0;
//term_fd = std.in.fileno();
/* get the terminal size */
term_width = 80;
// if (os.isatty(term_fd)) {
// if (os.ttyGetWinSize) {
// tab = os.ttyGetWinSize(term_fd);
// if (tab)
// term_width = tab[0];
// }
// if (os.ttySetRaw) {
// /* set the TTY to raw mode */
// os.ttySetRaw(term_fd);
// }
// }
/* install a Ctrl-C signal handler */
//os.signal(os.SIGINT, sigint_handler);
/* install a handler to read stdin */
term_read_buf = new Uint8Array(64);
//os.setReadHandler(term_fd, term_read_handler);
REPL.setReadHandler(term_read_handler);
REPL.open()
}
function sigint_handler() {
/* send Ctrl-C to readline */
handle_byte(3);
}
function term_read_handler() {
var l, i;
//l = os.read(term_fd, term_read_buf.buffer, 0, term_read_buf.length);
l = REPL.read(term_read_buf.buffer, 0, term_read_buf.length);
for(i = 0; i < l; i++)
handle_byte(term_read_buf[i]);
}
function handle_byte(c) {
if (!utf8) {
handle_char(c);
} else if (utf8_state !== 0 && (c >= 0x80 && c < 0xc0)) {
utf8_val = (utf8_val << 6) | (c & 0x3F);
utf8_state--;
if (utf8_state === 0) {
handle_char(utf8_val);
}
} else if (c >= 0xc0 && c < 0xf8) {
utf8_state = 1 + (c >= 0xe0) + (c >= 0xf0);
utf8_val = c & ((1 << (6 - utf8_state)) - 1);
} else {
utf8_state = 0;
handle_char(c);
}
}
function is_alpha(c) {
return typeof c === "string" &&
((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z'));
}
function is_digit(c) {
return typeof c === "string" && (c >= '0' && c <= '9');
}
function is_word(c) {
return typeof c === "string" &&
(is_alpha(c) || is_digit(c) || c == '_' || c == '$');
}
function ucs_length(str) {
var len, c, i, str_len = str.length;
len = 0;
/* we never count the trailing surrogate to have the
following property: ucs_length(str) =
ucs_length(str.substring(0, a)) + ucs_length(str.substring(a,
str.length)) for 0 <= a <= str.length */
for(i = 0; i < str_len; i++) {
c = str.charCodeAt(i);
if (c < 0xdc00 || c >= 0xe000)
len++;
}
return len;
}
function is_trailing_surrogate(c) {
var d;
if (typeof c !== "string")
return false;
d = c.codePointAt(0); /* can be NaN if empty string */
return d >= 0xdc00 && d < 0xe000;
}
function is_balanced(a, b) {
switch (a + b) {
case "()":
case "[]":
case "{}":
return true;
}
return false;
}
function print_color_text(str, start, style_names) {
var i, j;
for (j = start; j < str.length;) {
var style = style_names[i = j];
while (++j < str.length && style_names[j] == style)
continue;
REPL.puts(colors[styles[style] || 'default']);
REPL.puts(str.substring(i, j));
REPL.puts(colors['none']);
}
}
function print_csi(n, code) {
REPL.puts("\x1b[" + ((n != 1) ? n : "") + code);
}
/* XXX: handle double-width characters */
function move_cursor(delta) {
var i, l;
if (delta > 0) {
while (delta != 0) {
if (term_cursor_x == (term_width - 1)) {
REPL.puts(CRLF); /* translated to CRLF */
term_cursor_x = 0;
delta--;
} else {
l = Math.min(term_width - 1 - term_cursor_x, delta);
print_csi(l, "C"); /* right */
delta -= l;
term_cursor_x += l;
}
}
} else {
delta = -delta;
while (delta != 0) {
if (term_cursor_x == 0) {
print_csi(1, "A"); /* up */
print_csi(term_width - 1, "C"); /* right */
delta--;
term_cursor_x = term_width - 1;
} else {
l = Math.min(delta, term_cursor_x);
print_csi(l, "D"); /* left */
delta -= l;
term_cursor_x -= l;
}
}
}
}
function update() {
var i, cmd_len;
/* cursor_pos is the position in 16 bit characters inside the
UTF-16 string 'cmd' */
if (cmd != last_cmd) {
if (!show_colors && last_cmd.substring(0, last_cursor_pos) == cmd.substring(0, last_cursor_pos)) {
/* optimize common case */
REPL.puts(cmd.substring(last_cursor_pos));
} else {
/* goto the start of the line */
move_cursor(-ucs_length(last_cmd.substring(0, last_cursor_pos)));
if (show_colors) {
var str = mexpr ? mexpr + 'CRLF' + cmd : cmd;
var start = str.length - cmd.length;
var colorstate = colorize_js(str);
print_color_text(str, start, colorstate[2]);
} else {
REPL.puts(cmd);
}
}
term_cursor_x = (term_cursor_x + ucs_length(cmd)) % term_width;
if (term_cursor_x == 0) {
/* show the cursor on the next line */
REPL.puts(" \x08");
}
/* remove the trailing characters */
if (show_colors) {
REPL.puts("\x1b[J");
}
last_cmd = cmd;
last_cursor_pos = cmd.length;
}
if (cursor_pos > last_cursor_pos) {
move_cursor(ucs_length(cmd.substring(last_cursor_pos, cursor_pos)));
} else if (cursor_pos < last_cursor_pos) {
move_cursor(-ucs_length(cmd.substring(cursor_pos, last_cursor_pos)));
}
last_cursor_pos = cursor_pos;
std.out.flush();
}
/* editing commands */
function insert(str) {
if (str) {
cmd = cmd.substring(0, cursor_pos) + str + cmd.substring(cursor_pos);
cursor_pos += str.length;
}
}
function quoted_insert() {
quote_flag = true;
}
function abort() {
cmd = "";
cursor_pos = 0;
return -2;
}
function alert() {
}
function beginning_of_line() {
cursor_pos = 0;
}
function end_of_line() {
cursor_pos = cmd.length;
}
function forward_char() {
if (cursor_pos < cmd.length) {
cursor_pos++;
while (is_trailing_surrogate(cmd.charAt(cursor_pos)))
cursor_pos++;
}
}
function backward_char() {
if (cursor_pos > 0) {
cursor_pos--;
while (is_trailing_surrogate(cmd.charAt(cursor_pos)))
cursor_pos--;
}
}
function skip_word_forward(pos) {
while (pos < cmd.length && !is_word(cmd.charAt(pos)))
pos++;
while (pos < cmd.length && is_word(cmd.charAt(pos)))
pos++;
return pos;
}
function skip_word_backward(pos) {
while (pos > 0 && !is_word(cmd.charAt(pos - 1)))
pos--;
while (pos > 0 && is_word(cmd.charAt(pos - 1)))
pos--;
return pos;
}
function forward_word() {
cursor_pos = skip_word_forward(cursor_pos);
}
function backward_word() {
cursor_pos = skip_word_backward(cursor_pos);
}
function accept_line() {
REPL.puts(CRLF);
history_add(cmd);
return -1;
}
function history_add(str) {
if (str) {
history.push(str);
}
history_index = history.length;
}
function previous_history() {
if (history_index > 0) {
if (history_index == history.length) {
history.push(cmd);
}
history_index--;
cmd = history[history_index];
cursor_pos = cmd.length;
}
}
function next_history() {
if (history_index < history.length - 1) {
history_index++;
cmd = history[history_index];
cursor_pos = cmd.length;
}
}
function history_search(dir) {
var pos = cursor_pos;
for (var i = 1; i <= history.length; i++) {
var index = (history.length + i * dir + history_index) % history.length;
if (history[index].substring(0, pos) == cmd.substring(0, pos)) {
history_index = index;
cmd = history[index];
return;
}
}
}
function history_search_backward() {
return history_search(-1);
}
function history_search_forward() {
return history_search(1);
}
function delete_char_dir(dir) {
var start, end;
start = cursor_pos;
if (dir < 0) {
start--;
while (is_trailing_surrogate(cmd.charAt(start)))
start--;
}
end = start + 1;
while (is_trailing_surrogate(cmd.charAt(end)))
end++;
if (start >= 0 && start < cmd.length) {
if (last_fun === kill_region) {
kill_region(start, end, dir);
} else {
cmd = cmd.substring(0, start) + cmd.substring(end);
cursor_pos = start;
}
}
}
function delete_char() {
delete_char_dir(1);
}
function control_d() {
if (cmd.length == 0) {
REPL.puts(CRLF);
return -3; /* exit read eval print loop */
} else {
delete_char_dir(1);
}
}
function backward_delete_char() {
delete_char_dir(-1);
}
function transpose_chars() {
var pos = cursor_pos;
if (cmd.length > 1 && pos > 0) {
if (pos == cmd.length)
pos--;
cmd = cmd.substring(0, pos - 1) + cmd.substring(pos, pos + 1) +
cmd.substring(pos - 1, pos) + cmd.substring(pos + 1);
cursor_pos = pos + 1;
}
}
function transpose_words() {
var p1 = skip_word_backward(cursor_pos);
var p2 = skip_word_forward(p1);
var p4 = skip_word_forward(cursor_pos);
var p3 = skip_word_backward(p4);
if (p1 < p2 && p2 <= cursor_pos && cursor_pos <= p3 && p3 < p4) {
cmd = cmd.substring(0, p1) + cmd.substring(p3, p4) +
cmd.substring(p2, p3) + cmd.substring(p1, p2);
cursor_pos = p4;
}
}
function upcase_word() {
var end = skip_word_forward(cursor_pos);
cmd = cmd.substring(0, cursor_pos) +
cmd.substring(cursor_pos, end).toUpperCase() +
cmd.substring(end);
}
function downcase_word() {
var end = skip_word_forward(cursor_pos);
cmd = cmd.substring(0, cursor_pos) +
cmd.substring(cursor_pos, end).toLowerCase() +
cmd.substring(end);
}
function kill_region(start, end, dir) {
var s = cmd.substring(start, end);
if (last_fun !== kill_region)
clip_board = s;
else if (dir < 0)
clip_board = s + clip_board;
else
clip_board = clip_board + s;
cmd = cmd.substring(0, start) + cmd.substring(end);
if (cursor_pos > end)
cursor_pos -= end - start;
else if (cursor_pos > start)
cursor_pos = start;
this_fun = kill_region;
}
function kill_line() {
kill_region(cursor_pos, cmd.length, 1);
}
function backward_kill_line() {
kill_region(0, cursor_pos, -1);
}
function kill_word() {
kill_region(cursor_pos, skip_word_forward(cursor_pos), 1);
}
function backward_kill_word() {
kill_region(skip_word_backward(cursor_pos), cursor_pos, -1);
}
function yank() {
insert(clip_board);
}
function control_c() {
if (last_fun === control_c) {
REPL.puts(CRLF);
REPL.exit(0);
} else {
REPL.puts(CRLF + "(Press Ctrl-C again to quit)" + CRLF);
readline_print_prompt();
}
}
function reset() {
cmd = "";
cursor_pos = 0;
}
function get_context_word(line, pos) {
var s = "";
while (pos > 0 && is_word(line[pos - 1])) {
pos--;
s = line[pos] + s;
}
return s;
}
function get_context_object(line, pos) {
var obj, base, c;
if (pos <= 0 || " ~!%^&*(-+={[|:;,<>?/".indexOf(line[pos - 1]) >= 0)
return g;
if (pos >= 2 && line[pos - 1] === ".") {
pos--;
obj = {};
switch (c = line[pos - 1]) {
case '\'':
case '\"':
return "a";
case ']':
return [];
case '}':
return {};
case '/':
return / /;
default:
if (is_word(c)) {
base = get_context_word(line, pos);
if (["true", "false", "null", "this"].includes(base) || !isNaN(+base))
return eval(base);
obj = get_context_object(line, pos - base.length);
if (obj === null || obj === void 0)
return obj;
if (obj === g && obj[base] === void 0)
return eval(base);
else
return obj[base];
}
return {};
}
}
return void 0;
}
function get_completions(line, pos) {
var s, obj, ctx_obj, r, i, j, paren;
s = get_context_word(line, pos);
ctx_obj = get_context_object(line, pos - s.length);
r = [];
/* enumerate properties from object and its prototype chain,
add non-numeric regular properties with s as e prefix
*/
for (i = 0, obj = ctx_obj; i < 10 && obj !== null && obj !== void 0; i++) {
var props = Object.getOwnPropertyNames(obj);
/* add non-numeric regular properties */
for (j = 0; j < props.length; j++) {
var prop = props[j];
if (typeof prop == "string" && ""+(+prop) != prop && prop.startsWith(s))
r.push(prop);
}
obj = Object.getPrototypeOf(obj);
}
if (r.length > 1) {
/* sort list with internal names last and remove duplicates */
function symcmp(a, b) {
if (a[0] != b[0]) {
if (a[0] == '_')
return 1;
if (b[0] == '_')
return -1;
}
if (a < b)
return -1;
if (a > b)
return +1;
return 0;
}
r.sort(symcmp);
for(i = j = 1; i < r.length; i++) {
if (r[i] != r[i - 1])
r[j++] = r[i];
}
r.length = j;
}
/* 'tab' = list of completions, 'pos' = cursor position inside
the completions */
return { tab: r, pos: s.length, ctx: ctx_obj };
}
function completion() {
var tab, res, s, i, j, len, t, max_width, col, n_cols, row, n_rows;
res = get_completions(cmd, cursor_pos);
tab = res.tab;
if (tab.length === 0)
return;
s = tab[0];
len = s.length;
/* add the chars which are identical in all the completions */
for(i = 1; i < tab.length; i++) {
t = tab[i];
for(j = 0; j < len; j++) {
if (t[j] !== s[j]) {
len = j;
break;
}
}
}
for(i = res.pos; i < len; i++) {
insert(s[i]);
}
if (last_fun === completion && tab.length == 1) {
/* append parentheses to function names */
var m = res.ctx[tab[0]];
if (typeof m == "function") {
insert('(');
if (m.length == 0)
insert(')');
} else if (typeof m == "object") {
insert('.');
}
}
/* show the possible completions */
if (last_fun === completion && tab.length >= 2) {
max_width = 0;
for(i = 0; i < tab.length; i++)
max_width = Math.max(max_width, tab[i].length);
max_width += 2;
n_cols = Math.max(1, Math.floor((term_width + 1) / max_width));
n_rows = Math.ceil(tab.length / n_cols);
REPL.puts(CRLF);
/* display the sorted list column-wise */
for (row = 0; row < n_rows; row++) {
for (col = 0; col < n_cols; col++) {
i = col * n_rows + row;
if (i >= tab.length)
break;
s = tab[i];
if (col != n_cols - 1)
s = s.padEnd(max_width);
REPL.puts(s);
}
REPL.puts(CRLF);
}
/* show a new prompt */
readline_print_prompt();
}
}
var commands = { /* command table */
"\x01": beginning_of_line, /* ^A - bol */
"\x02": backward_char, /* ^B - backward-char */
"\x03": control_c, /* ^C - abort */
"\x04": control_d, /* ^D - delete-char or exit */
"\x05": end_of_line, /* ^E - eol */
"\x06": forward_char, /* ^F - forward-char */
"\x07": abort, /* ^G - bell */
"\x08": backward_delete_char, /* ^H - backspace */
"\x09": completion, /* ^I - history-search-backward */
"\x0a": accept_line, /* ^J - newline */
"\x0b": kill_line, /* ^K - delete to end of line */
"\x0d": accept_line, /* ^M - enter */
"\x0e": next_history, /* ^N - down */
"\x10": previous_history, /* ^P - up */
"\x11": quoted_insert, /* ^Q - quoted-insert */
"\x12": alert, /* ^R - reverse-search */
"\x13": alert, /* ^S - search */
"\x14": transpose_chars, /* ^T - transpose */
"\x18": reset, /* ^X - cancel */
"\x19": yank, /* ^Y - yank */
"\x1bOA": previous_history, /* ^[OA - up */
"\x1bOB": next_history, /* ^[OB - down */
"\x1bOC": forward_char, /* ^[OC - right */
"\x1bOD": backward_char, /* ^[OD - left */
"\x1bOF": forward_word, /* ^[OF - ctrl-right */
"\x1bOH": backward_word, /* ^[OH - ctrl-left */
"\x1b[1;5C": forward_word, /* ^[[1;5C - ctrl-right */
"\x1b[1;5D": backward_word, /* ^[[1;5D - ctrl-left */
"\x1b[1~": beginning_of_line, /* ^[[1~ - bol */
"\x1b[3~": delete_char, /* ^[[3~ - delete */
"\x1b[4~": end_of_line, /* ^[[4~ - eol */
"\x1b[5~": history_search_backward,/* ^[[5~ - page up */
"\x1b[6~": history_search_forward, /* ^[[5~ - page down */
"\x1b[A": previous_history, /* ^[[A - up */
"\x1b[B": next_history, /* ^[[B - down */
"\x1b[C": forward_char, /* ^[[C - right */
"\x1b[D": backward_char, /* ^[[D - left */
"\x1b[F": end_of_line, /* ^[[F - end */
"\x1b[H": beginning_of_line, /* ^[[H - home */
"\x1b\x7f": backward_kill_word, /* M-C-? - backward_kill_word */
"\x1bb": backward_word, /* M-b - backward_word */
"\x1bd": kill_word, /* M-d - kill_word */
"\x1bf": forward_word, /* M-f - backward_word */
"\x1bk": backward_kill_line, /* M-k - backward_kill_line */
"\x1bl": downcase_word, /* M-l - downcase_word */
"\x1bt": transpose_words, /* M-t - transpose_words */
"\x1bu": upcase_word, /* M-u - upcase_word */
"\x7f": backward_delete_char, /* ^? - delete */
};
function dupstr(str, count) {
var res = "";
while (count-- > 0)
res += str;
return res;
}
var readline_keys;
var readline_state;
var readline_cb;
function readline_print_prompt()
{
REPL.puts(prompt);
term_cursor_x = ucs_length(prompt) % term_width;
last_cmd = "";
last_cursor_pos = 0;
}
function readline_start(defstr, cb) {
cmd = defstr || "";
cursor_pos = cmd.length;
history_index = history.length;
readline_cb = cb;
prompt = pstate;
if (mexpr) {
prompt += dupstr(" ", plen - prompt.length);
prompt += ps2;
} else {
if (show_time) {
var t = Math.round(eval_time) + " ";
eval_time = 0;
t = dupstr("0", 5 - t.length) + t;
prompt += t.substring(0, t.length - 4) + "." + t.substring(t.length - 4);
}
plen = prompt.length;
prompt += ps1;
}
readline_print_prompt();
update();
readline_state = 0;
}
function handle_char(c1) {
var c;
c = String.fromCodePoint(c1);
switch(readline_state) {
case 0:
if (c == '\x1b') { /* '^[' - ESC */
readline_keys = c;
readline_state = 1;
} else {
handle_key(c);
}
break;
case 1: /* '^[ */
readline_keys += c;
if (c == '[') {
readline_state = 2;
} else if (c == 'O') {
readline_state = 3;
} else {
handle_key(readline_keys);
readline_state = 0;
}
break;
case 2: /* '^[[' - CSI */
readline_keys += c;
if (!(c == ';' || (c >= '0' && c <= '9'))) {
handle_key(readline_keys);
readline_state = 0;
}
break;
case 3: /* '^[O' - ESC2 */
readline_keys += c;
handle_key(readline_keys);
readline_state = 0;
break;
}
}
function handle_key(keys) {
var fun;
if (quote_flag) {
if (ucs_length(keys) === 1)
insert(keys);
quote_flag = false;
} else if (fun = commands[keys]) {
this_fun = fun;
switch (fun(keys)) {
case -1:
readline_cb(cmd);
return;
case -2:
readline_cb(null);
return;
case -3:
/* uninstall a Ctrl-C signal handler */
os.signal(os.SIGINT, null);
/* uninstall the stdin read handler */
os.setReadHandler(term_fd, null);
return;
}
last_fun = this_fun;
} else if (ucs_length(keys) === 1 && keys >= ' ') {
insert(keys);
last_fun = insert;
} else {
alert(); /* beep! */
}
cursor_pos = (cursor_pos < 0) ? 0 :
(cursor_pos > cmd.length) ? cmd.length : cursor_pos;
update();
}
var hex_mode = false;
var eval_mode = "std";
function number_to_string(a, radix) {
var s;
if (!isFinite(a)) {
/* NaN, Infinite */
return a.toString();
} else {
if (a == 0) {
if (1 / a < 0)
s = "-0";
else
s = "0";
} else {
if (radix == 16 && a === Math.floor(a)) {
var s;
if (a < 0) {
a = -a;
s = "-";
} else {
s = "";
}
s += "0x" + a.toString(16);
} else {
s = a.toString();
}
}
return s;
}
}
function bigfloat_to_string(a, radix) {
var s;
if (!BigFloat.isFinite(a)) {
/* NaN, Infinite */
if (eval_mode !== "math") {
return "BigFloat(" + a.toString() + ")";
} else {
return a.toString();
}
} else {
if (a == 0) {
if (1 / a < 0)
s = "-0";
else
s = "0";
} else {
if (radix == 16) {
var s;
if (a < 0) {
a = -a;
s = "-";
} else {
s = "";
}
s += "0x" + a.toString(16);
} else {
s = a.toString();
}
}
if (typeof a === "bigfloat" && eval_mode !== "math") {
s += "l";
} else if (eval_mode !== "std" && s.indexOf(".") < 0 &&
((radix == 16 && s.indexOf("p") < 0) ||
(radix == 10 && s.indexOf("e") < 0))) {
/* add a decimal point so that the floating point type
is visible */
s += ".0";
}
return s;
}
}
function bigint_to_string(a, radix) {
var s;
if (radix == 16) {
var s;
if (a < 0) {
a = -a;
s = "-";
} else {
s = "";
}
s += "0x" + a.toString(16);
} else {
s = a.toString();
}
if (eval_mode === "std")
s += "n";
return s;
}
function print(a) {
var stack = [];
function print_rec(a) {
var n, i, keys, key, type, s;
type = typeof(a);
if (type === "object") {
if (a === null) {
REPL.puts(a);
} else if (stack.indexOf(a) >= 0) {
REPL.puts("[circular]");
} else if (has_jscalc && (a instanceof Fraction ||
a instanceof Complex ||
a instanceof Mod ||
a instanceof Polynomial ||
a instanceof PolyMod ||
a instanceof RationalFunction ||
a instanceof Series)) {
REPL.puts(a.toString());
} else {
stack.push(a);
if (Array.isArray(a)) {
n = a.length;
REPL.puts("[ ");
for(i = 0; i < n; i++) {
if (i !== 0)
REPL.puts(", ");
if (i in a) {
print_rec(a[i]);
} else {
REPL.puts("<empty>");
}
if (i > 20) {
REPL.puts("...");
break;
}
}
REPL.puts(" ]");
} else if (Object.__getClass(a) === "RegExp") {
REPL.puts(a.toString());
} else {
keys = Object.keys(a);
n = keys.length;
REPL.puts("{ ");
for(i = 0; i < n; i++) {
if (i !== 0)
REPL.puts(", ");
key = keys[i];
REPL.puts(key, ": ");
print_rec(a[key]);
}
REPL.puts(" }");
}
stack.pop(a);
}
} else if (type === "string") {
s = a.__quote();
if (s.length > 79)
s = s.substring(0, 75) + "...\"";
REPL.puts(s);
} else if (type === "number") {
REPL.puts(number_to_string(a, hex_mode ? 16 : 10));
} else if (type === "bigint") {
REPL.puts(bigint_to_string(a, hex_mode ? 16 : 10));
} else if (type === "bigfloat") {
REPL.puts(bigfloat_to_string(a, hex_mode ? 16 : 10));
} else if (type === "bigdecimal") {
REPL.puts(a.toString() + "m");
} else if (type === "symbol") {
REPL.puts(String(a));
} else if (type === "function") {
REPL.puts("function " + a.name + "()");
} else {
REPL.puts(a);
}
}
print_rec(a);
}
function extract_directive(a) {
var pos;
if (a[0] !== '\\')
return "";
for (pos = 1; pos < a.length; pos++) {
if (!is_alpha(a[pos]))
break;
}
return a.substring(1, pos);
}
/* return true if the string after cmd can be evaluted as JS */
function handle_directive(cmd, expr) {
var param, prec1, expBits1;
if (cmd === "h" || cmd === "?" || cmd == "help") {
help();
} else if (cmd === "load") {
var filename = expr.substring(cmd.length + 1).trim();
if (filename.lastIndexOf(".") <= filename.lastIndexOf("/"))
filename += ".js";
std.loadScript(filename);
return false;
} else if (cmd === "x") {
hex_mode = true;
} else if (cmd === "d") {
hex_mode = false;
} else if (cmd === "t") {
show_time = !show_time;
} else if (has_bignum && cmd === "p") {
param = expr.substring(cmd.length + 1).trim().split(" ");
if (param.length === 1 && param[0] === "") {
REPL.puts("BigFloat precision=" + prec + " bits (~" +
Math.floor(prec / log2_10) +
" digits), exponent size=" + expBits + " bits" + CRLF);
} else if (param[0] === "f16") {
prec = 11;
expBits = 5;
} else if (param[0] === "f32") {
prec = 24;
expBits = 8;
} else if (param[0] === "f64") {
prec = 53;
expBits = 11;
} else if (param[0] === "f128") {
prec = 113;
expBits = 15;
} else {
prec1 = parseInt(param[0]);
if (param.length >= 2)
expBits1 = parseInt(param[1]);
else
expBits1 = BigFloatEnv.expBitsMax;
if (Number.isNaN(prec1) ||
prec1 < BigFloatEnv.precMin ||
prec1 > BigFloatEnv.precMax) {
REPL.puts("Invalid precision" + CRLF);
return false;
}
if (Number.isNaN(expBits1) ||
expBits1 < BigFloatEnv.expBitsMin ||
expBits1 > BigFloatEnv.expBitsMax) {
REPL.puts("Invalid exponent bits" + CRLF);
return false;
}
prec = prec1;
expBits = expBits1;
}
return false;
} else if (has_bignum && cmd === "digits") {
param = expr.substring(cmd.length + 1).trim();
prec1 = Math.ceil(parseFloat(param) * log2_10);
if (prec1 < BigFloatEnv.precMin ||
prec1 > BigFloatEnv.precMax) {
REPL.puts("Invalid precision" + CRLF);
return false;
}
prec = prec1;
expBits = BigFloatEnv.expBitsMax;
return false;
} else if (has_bignum && cmd === "mode") {
param = expr.substring(cmd.length + 1).trim();
if (param === "") {
REPL.puts("Running mode=" + eval_mode + CRLF);
} else if (param === "std" || param === "math") {
eval_mode = param;
} else {
REPL.puts("Invalid mode" + CRLF);
}
return false;
} else if (cmd === "clear") {
REPL.puts("\x1b[H\x1b[J");
} else if ((cmd === "q") || (cmd === "exit")) {
REPL.exit(0);
} else if (has_jscalc && cmd === "a") {
algebraicMode = true;
} else if (has_jscalc && cmd === "n") {
algebraicMode = false;
} else if (cmd === "color") {
show_colors = !show_colors;
REPL.puts(show_colors ? "turn on colors" + CRLF : "turn off colors" + CRLF);
} else {
REPL.puts("Unknown directive: " + cmd + CRLF);
return false;
}
return true;
}
if (config_numcalc) {
/* called by the GUI */
g.execCmd = function (cmd) {
switch(cmd) {
case "dec":
hex_mode = false;
break;
case "hex":
hex_mode = true;
break;
case "num":
algebraicMode = false;
break;
case "alg":
algebraicMode = true;
break;
}
}
}
function help() {
function sel(n) {
return n ? "*": " ";
}
REPL.puts("\\h this help" + CRLF +
"\\x " + sel(hex_mode) + "hexadecimal number display" + CRLF +
"\\d " + sel(!hex_mode) + "decimal number display" + CRLF +
"\\t " + sel(show_time) + "toggle timing display" + CRLF +
"\\color " + sel(show_time) + "toggle color display" + CRLF +
"\\clear clear the terminal" + CRLF);
if (has_jscalc) {
REPL.puts("\\a " + sel(algebraicMode) + "algebraic mode" + CRLF +
"\\n " + sel(!algebraicMode) + "numeric mode" + CRLF);
}
if (has_bignum) {
REPL.puts("\\p [m [e]] set the BigFloat precision to 'm' bits" + CRLF +
"\\digits n set the BigFloat precision to 'ceil(n*log2(10))' bits" + CRLF);
if (!has_jscalc) {
REPL.puts("\\mode [std|math] change the running mode (current = " + eval_mode + ")" + CRLF);
}
}
if (!config_numcalc) {
REPL.puts("\\q exit" + CRLF);
REPL.puts("\\exit exit" + CRLF);
}
}
function eval_and_print(expr) {
var result;
try {
if (eval_mode === "math")
expr = '"use math"; void 0;' + expr;
var now = (new Date).getTime();
/* eval as a script */
result = std.evalScript(expr, { backtrace_barrier: true });
eval_time = (new Date).getTime() - now;
if (show_colors) {
REPL.puts(colors[styles.result]);
}
print(result);
REPL.puts(CRLF);
if (show_colors) {
REPL.puts(colors.none);
}
/* set the last result */
g._ = result;
} catch (error) {
if (show_colors) {
REPL.puts(colors[styles.error_msg]);
}
if (error instanceof Error) {
console.log(error);
if (error.stack) {
REPL.puts(error.stack);
}
} else {
REPL.puts("Throw: ");
console.log(error);
}
if (show_colors) {
REPL.puts(colors.none);
}
}
}
function cmd_start() {
if (!config_numcalc) {
if (has_jscalc)
REPL.puts('QJSCalc - Type "\\h" for help\n');
else
REPL.puts('QuickJS - Type "\\h" for help\n');
}
if (has_bignum) {
log2_10 = Math.log(10) / Math.log(2);
prec = 113;
expBits = 15;
if (has_jscalc) {
eval_mode = "math";
/* XXX: numeric mode should always be the default ? */
g.algebraicMode = config_numcalc;
}
}
cmd_readline_start();
}
function cmd_readline_start() {
readline_start(dupstr(" ", level), readline_handle_cmd);
}
function readline_handle_cmd(expr) {
handle_cmd(expr);
cmd_readline_start();
}
function handle_cmd(expr) {
var colorstate, cmd;
if (expr === null) {
expr = "";
return;
}
if (expr === "?") {
help();
return;
}
cmd = extract_directive(expr);
if (cmd.length > 0) {
if (!handle_directive(cmd, expr))
return;
expr = expr.substring(cmd.length + 1);
}
if (expr === "")
return;
if (mexpr)
expr = mexpr + CRLF + expr;
colorstate = colorize_js(expr);
pstate = colorstate[0];
level = colorstate[1];
if (pstate) {
mexpr = expr;
return;
}
mexpr = "";
if (has_bignum) {
BigFloatEnv.setPrec(eval_and_print.bind(null, expr),
prec, expBits);
} else {
eval_and_print(expr);
}
level = 0;
/* run the garbage collector after each command */
std.gc();
}
function colorize_js(str) {
var i, c, start, n = str.length;
var style, state = "", level = 0;
var primary, can_regex = 1;
var r = [];
function push_state(c) { state += c; }
function last_state(c) { return state.substring(state.length - 1); }
function pop_state(c) {
var c = last_state();
state = state.substring(0, state.length - 1);
return c;
}
function parse_block_comment() {
style = 'comment';
push_state('/');
for (i++; i < n - 1; i++) {
if (str[i] == '*' && str[i + 1] == '/') {
i += 2;
pop_state('/');
break;
}
}
}
function parse_line_comment() {
style = 'comment';
for (i++; i < n; i++) {
if (str[i] == CRLF) {
break;
}
}
}
function parse_string(delim) {
style = 'string';
push_state(delim);
while (i < n) {
c = str[i++];
if (c == CRLF) {
style = 'error';
continue;
}
if (c == '\\') {
if (i >= n)
break;
i++;
} else
if (c == delim) {
pop_state();
break;
}
}
}
function parse_regex() {
style = 'regex';
push_state('/');
while (i < n) {
c = str[i++];
if (c == CRLF) {
style = 'error';
continue;
}
if (c == '\\') {
if (i < n) {
i++;
}
continue;
}
if (last_state() == '[') {
if (c == ']') {
pop_state()
}
// ECMA 5: ignore '/' inside char classes
continue;
}
if (c == '[') {
push_state('[');
if (str[i] == '[' || str[i] == ']')
i++;
continue;
}
if (c == '/') {
pop_state();
while (i < n && is_word(str[i]))
i++;
break;
}
}
}
function parse_number() {
style = 'number';
while (i < n && (is_word(str[i]) || (str[i] == '.' && (i == n - 1 || str[i + 1] != '.')))) {
i++;
}
}
var js_keywords = "|" +
"break|case|catch|continue|debugger|default|delete|do|" +
"else|finally|for|function|if|in|instanceof|new|" +
"return|switch|this|throw|try|typeof|while|with|" +
"class|const|enum|import|export|extends|super|" +
"implements|interface|let|package|private|protected|" +
"public|static|yield|" +
"undefined|null|true|false|Infinity|NaN|" +
"eval|arguments|" +
"await|";
var js_no_regex = "|this|super|undefined|null|true|false|Infinity|NaN|arguments|";
var js_types = "|void|var|";
function parse_identifier() {
can_regex = 1;
while (i < n && is_word(str[i]))
i++;
var w = '|' + str.substring(start, i) + '|';
if (js_keywords.indexOf(w) >= 0) {
style = 'keyword';
if (js_no_regex.indexOf(w) >= 0)
can_regex = 0;
return;
}
var i1 = i;
while (i1 < n && str[i1] == ' ')
i1++;
if (i1 < n && str[i1] == '(') {
style = 'function';
return;
}
if (js_types.indexOf(w) >= 0) {
style = 'type';
return;
}
style = 'identifier';
can_regex = 0;
}
function set_style(from, to) {
while (r.length < from)
r.push('default');
while (r.length < to)
r.push(style);
}
for (i = 0; i < n;) {
style = null;
start = i;
switch (c = str[i++]) {
case ' ':
case '\t':
case '\r':
case CRLF:
continue;
case '+':
case '-':
if (i < n && str[i] == c) {
i++;
continue;
}
can_regex = 1;
continue;
case '/':
if (i < n && str[i] == '*') { // block comment
parse_block_comment();
break;
}
if (i < n && str[i] == '/') { // line comment
parse_line_comment();
break;
}
if (can_regex) {
parse_regex();
can_regex = 0;
break;
}
can_regex = 1;
continue;
case '\'':
case '\"':
case '`':
parse_string(c);
can_regex = 0;
break;
case '(':
case '[':
case '{':
can_regex = 1;
level++;
push_state(c);
continue;
case ')':
case ']':
case '}':
can_regex = 0;
if (level > 0 && is_balanced(last_state(), c)) {
level--;
pop_state();
continue;
}
style = 'error';
break;
default:
if (is_digit(c)) {
parse_number();
can_regex = 0;
break;
}
if (is_word(c) || c == '$') {
parse_identifier();
break;
}
can_regex = 1;
continue;
}
if (style)
set_style(start, i);
}
set_style(n, n);
return [ state, level, r ];
}
termInit();
cmd_start();
})(globalThis);
| YifuLiu/AliOS-Things | components/amp/jslib/src/repl.js | JavaScript | apache-2.0 | 50,081 |
import * as RTC from 'RTC'
export function start() {
RTC.open();
}
export function setTime(time) {
if (!time) {
throw new Error('params is invalid');
}
if (!(time instanceof Date)) {
throw new Error('params is invalid');
}
var date = {
year: time.getYear(),
month: time.getMonth(),
day: time.getDate(),
hour: time.getHours(),
minute: time.getMinutes(),
second: time.getSeconds()
}
RTC.setTime(date);
}
export function getTime() {
var time = RTC.getTime();
console.log(time);
return new Date(parseInt(time.year) + 1900, parseInt(time.month), parseInt(time.day), parseInt(time.hour), parseInt(time.minute), parseInt(time.second));
}
export function close() {
RTC.close();
}
| YifuLiu/AliOS-Things | components/amp/jslib/src/rtc.js | JavaScript | apache-2.0 | 790 |